- The benchmark was run on a MacBook Pro 14 (48 GB RAM, M4 14/20 Cores, OSX 15.1.1), {version}
+ The benchmark was run on a MacBook Pro 14 (48 GB RAM, M4 14/20 Cores, OSX 26.0.1), {version}
(arm64) using the puppeteer benchmark driver with reduced tracing.
);
@@ -69,6 +69,9 @@ const App = () => {
{" "}
to compute the overall result.
+
+ Starting with chrome 137 we're benchmarking the non-keyed implementations only for even chrome versions.
+
diff --git a/webdriver-ts-results/src/Common.ts b/webdriver-ts-results/src/Common.ts
index cdbddcdcc..7703bb6e0 100644
--- a/webdriver-ts-results/src/Common.ts
+++ b/webdriver-ts-results/src/Common.ts
@@ -2,6 +2,13 @@ import { jStat } from "jstat";
import { formatEn } from "@/utils";
import { knownIssues } from "@/helpers/issues";
+// Formatter for memory results with 2 decimal places
+const formatMemory = new Intl.NumberFormat("en-US", {
+ minimumFractionDigits: 2,
+ maximumFractionDigits: 2,
+ useGrouping: true,
+});
+
export enum StatisticResult {
SLOWER,
UNDECIDED,
@@ -41,6 +48,14 @@ export enum BenchmarkType {
SIZE = 5,
}
+// Map of benchmark types to their corresponding formatters
+const benchmarkFormatters = new Map([
+ [BenchmarkType.CPU, formatEn],
+ [BenchmarkType.MEM, formatMemory],
+ [BenchmarkType.STARTUP, formatEn],
+ [BenchmarkType.SIZE, formatEn],
+]);
+
const benchmarkTypes = [BenchmarkType.CPU, BenchmarkType.MEM, BenchmarkType.STARTUP, BenchmarkType.SIZE];
export interface Benchmark {
@@ -463,7 +478,8 @@ export class ResultTableData {
const confidenceInterval =
(1.959964 * (resultValues.standardDeviation || 0)) / Math.sqrt(resultValues.values.length);
const confidenceIntervalStr = benchmark.type === BenchmarkType.CPU ? confidenceInterval.toFixed(1) : null;
- const formattedValue = formatEn.format(value);
+ const formatter = benchmarkFormatters.get(benchmark.type) || formatEn;
+ const formattedValue = formatter.format(value);
if (!this.compareWith || benchmark.type !== BenchmarkType.CPU) {
return new TableResultValueEntry(
diff --git a/webdriver-ts-results/src/components/ResultTable/ResultTable.tsx b/webdriver-ts-results/src/components/ResultTable/ResultTable.tsx
index de4d59561..a59486f50 100644
--- a/webdriver-ts-results/src/components/ResultTable/ResultTable.tsx
+++ b/webdriver-ts-results/src/components/ResultTable/ResultTable.tsx
@@ -39,7 +39,7 @@ const ResultTable = ({ type }: Props) => {
!data ||
data.frameworks.length === 0 ||
(data.getResult(BenchmarkType.CPU).benchmarks.length === 0 &&
- data.getResult(BenchmarkType.STARTUP).benchmarks.length === 0 &&
+ data.getResult(BenchmarkType.SIZE).benchmarks.length === 0 &&
data.getResult(BenchmarkType.MEM).benchmarks.length === 0)
) {
return null;
diff --git a/webdriver-ts-results/src/components/SelectionToolbar/BenchmarkSelector/BenchmarkSelector.tsx b/webdriver-ts-results/src/components/SelectionToolbar/BenchmarkSelector/BenchmarkSelector.tsx
index cf6b40660..4f3aab3bf 100644
--- a/webdriver-ts-results/src/components/SelectionToolbar/BenchmarkSelector/BenchmarkSelector.tsx
+++ b/webdriver-ts-results/src/components/SelectionToolbar/BenchmarkSelector/BenchmarkSelector.tsx
@@ -6,7 +6,7 @@ import { useState, useEffect } from "react";
const content = (
<>
-
+
>
);
diff --git a/webdriver-ts-results/src/components/SelectionToolbar/BenchmarkSelector/BenchmarkSelectorCategory.tsx b/webdriver-ts-results/src/components/SelectionToolbar/BenchmarkSelector/BenchmarkSelectorCategory.tsx
index 2f9dac987..38da8732a 100644
--- a/webdriver-ts-results/src/components/SelectionToolbar/BenchmarkSelector/BenchmarkSelectorCategory.tsx
+++ b/webdriver-ts-results/src/components/SelectionToolbar/BenchmarkSelector/BenchmarkSelectorCategory.tsx
@@ -1,4 +1,4 @@
-import { BenchmarkType } from "@/Common";
+import { BenchmarkType, FrameworkType } from "@/Common";
import { useRootStore } from "@/store";
import SelectorContentContainer from "@/components/SelectionToolbar/SelectorContentContainer";
import BenchmarkSelectorList from "./BenchmarkSelectorList";
diff --git a/webdriver-ts-results/src/components/SelectionToolbar/FrameworkSelector/FrameworkSelectorCategory.tsx b/webdriver-ts-results/src/components/SelectionToolbar/FrameworkSelector/FrameworkSelectorCategory.tsx
index 766c4d114..721c97422 100644
--- a/webdriver-ts-results/src/components/SelectionToolbar/FrameworkSelector/FrameworkSelectorCategory.tsx
+++ b/webdriver-ts-results/src/components/SelectionToolbar/FrameworkSelector/FrameworkSelectorCategory.tsx
@@ -14,18 +14,22 @@ const FrameworkSelectorCategory = ({ label, frameworkType }: Props) => {
const selectedFrameworks = useRootStore((state) => state.selectedFrameworks);
const frameworks = useRootStore((state) => state.frameworkLists[frameworkType]);
const isNoneSelected = useRootStore((state) => state.isNoneFrameworkSelected);
+ const isUnflaggedSelected = useRootStore((state) => state.isUnflaggedFrameworkSelected);
const areAllSelected = useRootStore((state) => state.areAllFrameworksSelected);
const selectFramework = useRootStore((state) => state.selectFramework);
const selectAllFrameworks = useRootStore((state) => state.selectAllFrameworks);
+ const selectUnflaggedFrameworks = useRootStore((state) => state.selectUnflaggedFrameworks);
return (
selectAllFrameworks(frameworkType, false)}
selectAll={() => selectAllFrameworks(frameworkType, true)}
+ selectUnflagged={() => selectUnflaggedFrameworks(frameworkType)}
label={label}
>
void;
+ selectUnflagged?: (event: React.SyntheticEvent) => void;
selectAll: (event: React.SyntheticEvent) => void;
isNoneSelected: boolean;
+ isUnflaggedSelected?: boolean;
areAllSelected: boolean;
grid?: boolean;
label: string;
@@ -15,7 +17,9 @@ interface Props {
const SelectorContentContainer = ({
selectAll,
selectNone,
+ selectUnflagged,
isNoneSelected,
+ isUnflaggedSelected,
areAllSelected,
children,
grid = false,
@@ -25,6 +29,10 @@ const SelectorContentContainer = ({
!isNoneSelected && selectNone(event);
};
+ const handleSelectUnflagged = (event: React.MouseEvent) => {
+ !isUnflaggedSelected && selectUnflagged && selectUnflagged(event);
+ };
+
const handleSelectAll = (event: React.MouseEvent) => {
!areAllSelected && selectAll(event);
};
@@ -40,6 +48,10 @@ const SelectorContentContainer = ({
All
+ {selectUnflagged &&
+ (
+ Unflagged
+ )}
diff --git a/webdriver-ts-results/src/helpers/issues.ts b/webdriver-ts-results/src/helpers/issues.ts
index 3727df191..b2784f3ec 100644
--- a/webdriver-ts-results/src/helpers/issues.ts
+++ b/webdriver-ts-results/src/helpers/issues.ts
@@ -44,7 +44,7 @@ export const knownIssues: Issue[] = [
{
number: 1139,
severity: Severity.NOTE,
- text: "[Note]: Implementation uses runtime code generation",
+ text: "[Note]: Implementation doesn't pass strict CSP",
link: "https://github.com/krausest/js-framework-benchmark/issues/1139",
},
{
diff --git a/webdriver-ts-results/src/results.ts b/webdriver-ts-results/src/results.ts
index ccdbc8b13..1d47f579a 100644
--- a/webdriver-ts-results/src/results.ts
+++ b/webdriver-ts-results/src/results.ts
@@ -1,212 +1,220 @@
import {RawResult} from './Common';
export const results: RawResult[]=[
-{"f":0,"b":[{"b":0,"v":{"total":[80.8,81.9,81.4,79.8,79.9,80.3,79.7,78.7,81.6,81.6,79.7,79.5,79.7,81.3,79.3],"script":[54.3,56.1,55.4,54.3,54.5,54.7,54,53.3,55.6,56.1,53.5,53.7,53.7,55.6,53.6],"paint":[25.1,25.2,25.4,25,24.8,25.1,25.2,24.9,25.5,25,25.7,25.3,25.5,25.3,25.2]}},{"b":1,"v":{"total":[100.1,99.1,100.7,99.8,96.7,101.7,100.6,99.4,100,101.1,101.7,99.9,99.7,100.2,100.1],"script":[73.4,73,74.5,73.2,73.6,75,74.2,76,73.8,74.7,75.4,73.5,73.4,74.1,73.8],"paint":[26.2,25.6,25.7,26.1,22.5,26.2,25.9,22.8,25.6,25.9,25.7,25.9,25.7,25.6,25.8]}},{"b":2,"v":{"total":[17.4,16.2,16.8,16.8,16.6,16.8,17.2,17.6,17,16,16.8,16.4,16.6,17.1,16.6],"script":[3.7,3.2,3.6,2.9,3.2,3.6,3.6,3.6,3.5,2.8,3.9,2.7,3.3,3.8,3.2],"paint":[12.3,11.3,10.5,12.1,11.3,12.9,12.6,12.2,12.4,12.3,11.9,12.7,11.4,11.9,11.5]}},{"b":3,"v":{"total":[30.6,31.1,30.8,30.6,30.2,29.2,30.6,29.1,30.5,29.8,30.5,30.4,28.8,30.5,30.8,29.1,28.7,29.8,30.8,29.8,31.6,30.3,30,30.2,28.7],"script":[27,27.3,27.4,26.7,26.6,25.7,27.1,26.1,26.9,27,26.9,26.7,25.8,27.4,26.8,25.4,25.2,26.5,27.5,26.4,28.2,27.3,26.3,26.8,25.6],"paint":[2.4,1.5,1.6,1.9,1.1,2.1,2.6,1.5,2.7,1.6,2.7,2.6,2,2.1,2.7,1.6,2.3,1.7,2,1.7,1.6,1.2,2.4,1.2,1.1]}},{"b":4,"v":{"total":[28.8,28.6,28.3,27.6,27.5,27,27,26.2,27,27.4,27.5,28.2,26.3,27.2,26.9],"script":[10.5,10.5,11.1,10.6,9.9,10.3,10.2,9.5,10,10.2,10.1,10.4,9.7,10.5,9.8],"paint":[16.4,17.1,16.1,15,15.8,14.9,15.6,15.2,14.8,15.4,15.7,15.7,14.2,15.1,15.6]}},{"b":5,"v":{"total":[20,19.1,18.8,18.8,18.7,18.7,18.7,18.8,18.9,19.1,18.5,18.5,18.5,18.7,18.7],"script":[6.9,6.8,6.9,6.8,6.7,7,6.7,6.6,6.8,6.7,6.8,6.4,6.4,6.6,7],"paint":[11.7,11.6,11.3,11.1,11.6,10.7,11.3,11.2,11.4,11.7,10.9,11.6,11,11.4,11]}},{"b":6,"v":{"total":[682.1,683.9,683.4,684.9,684.9,680.6,684.6,683.6,681.5,684.6,691.4,688.1,686.2,688.1,691.3],"script":[427.8,427.8,427.5,427.3,428.6,423.7,427.6,425.9,426,426.3,428.3,429.9,427,428.6,432.5],"paint":[247,248.6,248.2,250.2,248.9,249.9,249.5,250.6,248.4,251.1,255.3,250.8,252,251.9,251.2]}},{"b":7,"v":{"total":[93.7,93.3,95.6,92.7,93.8,95.4,93.7,95.1,95.2,95,94.6,93.2,95.1,95,95.8],"script":[63,62.4,64.6,62.2,63.3,64.7,62.4,64.5,64.3,64.3,63.5,62.6,64.7,64.2,64.9],"paint":[29.7,29.9,29.9,29.5,29.6,29.7,30.3,29.5,29.8,29.7,30,29.6,29.5,29.8,29.9]}},{"b":8,"v":{"total":[53.4,55.1,53.7,54.3,54.1,52.5,52.1,53.9,53.5,53,53.7,54.2,52,54.6,51.6],"script":[51.4,53.6,51.8,52.1,52.2,50.3,49.9,52.1,51.4,51.5,51.5,52.3,49.5,52.8,48.9],"paint":[1.3,1.4,1,1.6,0.5,1.8,1.4,0.9,1.9,0.7,2,0.9,1.2,1.1,1.9]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[16.7]}},{"b":11,"v":{"DEFAULT":[16.7]}},{"b":12,"v":{"DEFAULT":[1.5]}},{"b":13,"v":{"DEFAULT":[156]}},{"b":14,"v":{"DEFAULT":[47.3]}},{"b":15,"v":{"DEFAULT":[14.7]}},{"b":16,"v":{"DEFAULT":[69.4]}}]},
-{"f":1,"b":[{"b":0,"v":{"total":[36.6,36.5,36.8,37.3,36.5,37.1,37.2,36.7,36.6,36.2,36.9,37,37.2,36.7,37.3],"script":[12.5,12.5,12.4,13.3,12.4,12.8,12.5,12.4,12.5,12.3,12.4,12.6,12.3,12.5,12.7],"paint":[23.5,23.5,23.8,23.4,23.5,23.7,24.2,23.7,23.4,23.4,23.9,23.8,24.4,23.6,24]}},{"b":1,"v":{"total":[42.9,43.8,43.6,43.4,43.4,42.7,44,43.4,43.3,43.2,43.1,42.4,43.7,42.9,42.9],"script":[18.5,19.4,19.2,18.9,18.7,18.5,19.7,18.9,18.5,18.9,18.8,18.5,19,18.8,19],"paint":[23.8,23.7,23.8,23.8,24,23.7,23.7,23.9,24.2,23.7,23.7,23.3,24.1,23.5,23.3]}},{"b":2,"v":{"total":[20.7,19.7,19.9,19,19.4,20.4,19.6,20.1,19.7,20.6,21.8,19.3,20.6,20,20.1],"script":[7.9,7.1,7.1,6.2,6.8,7.3,7,6.9,7.6,7.5,6.9,6.9,7.2,7.4,7.7],"paint":[10.1,10.3,10.6,10.6,10.8,11.7,11.3,11.4,10.2,11.6,12.1,10.3,12.6,11.2,10.2]}},{"b":3,"v":{"total":[8.7,8.6,9.3,8.8,9.5,8.7,9,8.8,9,9.1,8.6,9.6,8.8,9.3,9.1,9.2,8.3,9.3,9.4,8.6,8.7,9.4,9.2,9.7,8.9],"script":[6,6.2,6.1,5.9,6.4,5.5,6.2,5.5,5.8,6,5.9,6.3,6.6,6.5,5.9,5.8,6.2,6.3,6.2,5.5,5.5,6.6,6.1,6.6,5.9],"paint":[1.3,1.8,2.2,1.1,1.2,1.7,1.7,2.2,1.4,1.8,2,1.3,1,1.3,2.2,2.3,1.1,2.2,1.8,1.5,0.7,1.2,2.8,1.5,1.7]}},{"b":4,"v":{"total":[22.4,21.2,22.5,22.6,22.1,21.3,21.7,21.1,22.6,21.5,22.2,22.6,22.1,22,22],"script":[7.1,6.6,7.6,6.7,7,6.7,6.5,6.7,6.8,6.9,7.1,7.2,6.9,6.9,6.9],"paint":[13.6,13.2,13.8,13.9,13.1,13.1,13.3,11.6,13,12.3,12.6,13.8,13.4,13.8,13.9]}},{"b":5,"v":{"total":[80.5,78.4,80.1,79.5,79.6,79.4,80.3,78.8,79.8,78.8,79.9,79.8,79.8,79,80.1],"script":[30.5,29.8,30.2,29.8,30.8,29.7,30.5,29.7,30.1,29.5,29.9,29.6,29.8,29.8,30.3],"paint":[48.3,47.6,48.1,48.2,47.2,47.6,48.5,47.7,48.4,48,48.8,48.9,48,47.6,48.5]}},{"b":6,"v":{"total":[361.8,358.7,362.2,359.7,363.2,359.4,361.7,362.2,358,360,361,361.4,360,359.2,361.9],"script":[123.6,119.6,122.6,121.5,122.7,121.4,122.7,120.1,121,121.7,122.9,122.5,119.9,120.9,121.6],"paint":[232.2,233.2,233.3,232,233.7,232.1,232.7,234.3,230.7,232.1,231.7,232.8,234.1,232.1,233.9]}},{"b":7,"v":{"total":[42.8,43.1,42.2,42.4,42.9,43.1,42.8,42.9,42.5,45.7,42.5,43.2,42.2,43.1,42.7],"script":[14.5,14.5,14,14.7,14.4,14.5,14.3,14,14.3,16.4,14.3,14.3,14.3,14.5,14.4],"paint":[27.3,27.6,27.3,26.8,27.6,27.7,27.5,27.9,27.3,28.4,27.2,28.1,26.9,27.7,27.4]}},{"b":8,"v":{"total":[14,13.4,14.6,13.8,13.9,13,13.4,14.1,14,13.9,14,13.8,12.2,13.6,13.5],"script":[11.7,11.4,12.3,11.6,12,11.5,11.5,11.9,11.8,11.5,12,11.3,10.8,11.3,10.7],"paint":[1.3,0.9,2,1.1,1,0.2,0.7,1.1,1.1,1.4,1,1.6,0.2,1.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[6.4]}},{"b":11,"v":{"DEFAULT":[8.1]}},{"b":12,"v":{"DEFAULT":[4.9]}},{"b":13,"v":{"DEFAULT":[46.7]}},{"b":14,"v":{"DEFAULT":[257.1]}},{"b":15,"v":{"DEFAULT":[73.5]}},{"b":16,"v":{"DEFAULT":[39]}}]},
-{"f":2,"b":[{"b":0,"v":{"total":[35,34.7,34.7,34.9,34.2,34.1,34.4,34.4,34.4,34,35,34.6,33.7,34.5,34.8],"script":[6.3,6.3,6,6.2,5.9,5.7,6,6,6,5.8,6,6.2,5.8,6,6.1],"paint":[25.3,24.9,25.2,25.2,24.9,25,25,24.9,24.8,24.8,25.4,25,24.5,25.1,25.3]}},{"b":1,"v":{"total":[39.4,40.5,38.9,38.7,39.7,40.9,39.3,40,39.9,40,40,40.3,39.9,40.1,39.9],"script":[11.7,12.4,11.5,11.7,12,12.3,11.9,12.1,11.9,12.3,12.1,12.2,12.2,12,11.9],"paint":[24.3,24.7,24.1,23.7,24.4,25.1,24,24.3,24.5,24.4,24.4,24.5,24.3,24.6,24.5]}},{"b":2,"v":{"total":[13,12.2,12.9,13.4,12.5,13.1,13.9,12.6,12.9,12.6,12.2,13,12.9,13.8,12.2],"script":[1.2,1.3,1.4,2.3,1.2,1.3,2.3,1,1.5,1.5,1,2,1.4,2.5,1.4],"paint":[10.8,9.7,10,9.9,10,10.9,10.5,10.7,9.9,9.5,10.3,9.7,10.9,10.2,9.5]}},{"b":3,"v":{"total":[4.9,4.1,4.4,4.9,3.7,4,5,3.7,4.8,4,4.6,3.4,2.5,3.1,3.6,3.7,4.3,3.6,4.2,4.1,3.4,3.7,3.2,3.9,3.7],"script":[2.5,2,1.6,2.2,1,1.8,2.6,1.4,2.1,2,2.1,0.7,1,1,1.5,1.5,1.5,1.4,1.6,1.7,1.3,1.4,0.9,1.3,0.7],"paint":[1.9,1.1,2.7,2.5,1.2,1.1,1.6,1.2,1.8,1.1,1.4,2.1,1.3,2,1.9,1.4,1.7,1.1,2.2,1.4,1.9,1.3,1.1,1.6,2.9]}},{"b":4,"v":{"total":[16,16.8,15.8,15.9,16.5,16.9,16.4,17.1,17,15.8,16.1,16.7,16.7,15.9,15.6],"script":[1.2,2.4,1.2,1.7,2.2,1.6,2.2,1.8,2.5,1.6,1,1,2.6,1.4,1],"paint":[13.5,12.9,13.3,12.5,13.3,13.3,12.2,14.6,13.5,12.8,13.8,14.8,13.4,13.5,13.3]}},{"b":5,"v":{"total":[12.3,12.1,12.7,12.2,12.2,12.6,12.5,12.7,12.2,12.7,12.7,12.4,12.5,12.7,12.7],"script":[0.8,0.9,1.1,0.9,1,0.8,1.2,1.1,0.9,1.1,1.3,1.2,1,0.8,0.8],"paint":[11.1,10,10.9,10.2,10.6,11.1,10.6,11,10.6,10.9,10.4,9.9,10.6,11.6,11.5]}},{"b":6,"v":{"total":[371,370.2,374.1,372.5,376.9,371.8,370.1,375.2,372.9,371.6,374.4,373,374.8,372,371.5],"script":[74.4,74.7,75.3,74.2,74.8,74.5,74.9,75.5,74.7,75,75.2,75,75.4,75.2,75.1],"paint":[245.8,244.9,247.2,245.3,248.2,247.4,244.9,247,248,245.9,248.5,246.8,247.9,246.6,244.8]}},{"b":7,"v":{"total":[40.2,38.7,38.6,39.7,39.3,38.6,38.5,39.5,40,39.4,38,39,38.4,38.7,39.5],"script":[6.7,6.5,6.4,6.4,6.4,6.5,6.5,6.6,6.6,6.5,6.5,6.5,6.6,6.5,6.5],"paint":[29.5,28.4,28.4,29.2,28.9,28.3,28.2,29.1,29.4,29,27.8,28.6,28,28.4,28.9]}},{"b":8,"v":{"total":[22.1,19.5,19.8,18,22.6,20.7,19.9,19.7,18.6,21.3,21.7,20.3,19.3,21.2,17.8],"script":[19.4,17.5,17.7,15.9,20.4,18.4,18.4,17.3,16.6,18.5,19.2,17.9,17,18.8,16.2],"paint":[2.4,0.6,0.6,0.3,2,0.8,0.4,1.3,0.9,1.7,2,1.5,2,2.1,1.3]}},{"b":9,"v":{"DEFAULT":[1.5]}},{"b":10,"v":{"DEFAULT":[4.8]}},{"b":11,"v":{"DEFAULT":[4.9]}},{"b":12,"v":{"DEFAULT":[2.1]}},{"b":13,"v":{"DEFAULT":[29.3]}},{"b":14,"v":{"DEFAULT":[141]}},{"b":15,"v":{"DEFAULT":[43.6]}},{"b":16,"v":{"DEFAULT":[151.7]}}]},
-{"f":3,"b":[{"b":0,"v":{"total":[33.1,39,39.5,37.9,38.4,39.1,38.4,38.5,38.1,39.2,37.8,40,39,38.3,37.3],"script":[4.9,4.9,5,4.8,4.9,4.8,4.8,4.9,4.9,4.9,5,4.8,5.3,4.9,4.9],"paint":[23.8,23.1,24.4,23.1,23.1,23.1,23.5,23.4,23.2,23.3,23,23.9,23.4,23.3,23.2]}},{"b":1,"v":{"total":[42.6,42,37.8,44.5,42.6,42.6,40.8,43.1,42,42.6,35.7,41.5,41.8,42.3,43.2],"script":[9.4,9.2,9.1,9.9,9,9.2,9.2,9,9.3,9.3,9.1,9.2,9.2,9.4,9.5],"paint":[23.6,24,23.9,24.3,23.5,23.8,23.8,23.8,23.4,23.6,23.6,23.9,24.7,24.1,23.7]}},{"b":2,"v":{"total":[13,28.5,12,13.2,12.4,28.6,11.8,28.3,12.3,11.7,28.1,12.4,29.2,11.4,27.8],"script":[2.3,1.7,1.7,3,2.3,1.7,1.5,1,1.8,1.3,1.7,1.4,2.3,1,1.5],"paint":[10.5,10.1,10,10,10,10.2,10.2,10.6,9.9,10.3,10.3,9.4,10.5,9.6,10.2]}},{"b":3,"v":{"total":[4.9,5.1,5.5,4.2,4,5.8,5,4.7,4,3.8,4.1,4.6,5.5,4.8,3.9,4.5,4.6,4.3,4.8,4.7,3.3,5.7,4.9,5.4,4.7],"script":[2.4,2.4,3.4,1.8,1.4,3.2,2.7,2.8,1.5,1.4,2.2,2.5,3.2,2.2,1.9,2.1,2,1.5,2.3,2.3,1.5,2.7,1.7,2.6,2.1],"paint":[1.7,1.9,0.8,1.3,1.6,1.8,2.2,1.7,1.7,2.3,1.1,1.4,2.2,1.6,1.1,1.7,2,2.1,2.4,1.9,1.7,2.3,0.9,1.9,2.4]}},{"b":4,"v":{"total":[31.3,16,31.5,15.3,30.9,17,14.4,17.2,32.7,31.6,33.8,15.9,32.8,31.8,32.8],"script":[1.6,2,2.1,1.7,2.4,2.5,1.3,1.8,2.5,2.1,3.2,2.5,2.5,1.3,1.7],"paint":[13.1,13.8,12.7,13.5,12.4,12.3,12,15,14.1,13.4,14.5,12.1,14.5,14.1,15]}},{"b":5,"v":{"total":[13.8,16.7,12.3,15.4,13.5,15.8,12.5,13.8,13.2,13,11.4,13.1,16,11.1,13.4],"script":[1.8,1.9,1.1,1.5,1.1,1.1,1.4,1.6,1.2,1,2,0.9,0.9,1.2,1.6],"paint":[10.3,10.2,9.4,9.8,9.8,9.8,9.3,10,9.5,10.1,9.3,9.4,9.9,9.8,9.6]}},{"b":6,"v":{"total":[367.8,367.2,365.5,369.4,364,366.5,363.3,366.5,366.1,364.7,367.7,364.2,366.9,366.8,366.2],"script":[60.9,60.1,60.6,60.8,60.2,60.3,60.6,59.7,61,61.2,60.9,61.5,60.9,61,60.8],"paint":[253.1,252,251.7,253.6,251.7,251.5,250.4,253,252.1,251.7,255,250.8,252.6,253,252]}},{"b":7,"v":{"total":[36.5,41.4,41.6,37,44.3,41.3,43,37.3,43.2,37.1,44.2,41.8,37.1,41.7,43.2],"script":[5.9,5.8,6.5,6.6,6.4,6,5.8,6.5,6.5,6.7,5.9,6.4,6.6,6.4,6],"paint":[27.2,27.7,27,27.1,27.9,27,27.4,27.4,27.7,27,27.7,27.4,27.1,27.4,27.1]}},{"b":8,"v":{"total":[17.6,32.4,30.5,15.3,32.3,32.2,31.8,16.8,31.3,14.4,16.5,32.9,32.8,32.1,32],"script":[14.7,15.1,13.8,13.5,15,14.7,14.2,14.5,13.7,12.7,14.8,14.6,15.3,15.1,14.5],"paint":[2,1.3,0.7,1.1,1.2,0.5,0.7,0.8,1.5,0.9,1.6,2.2,1.5,0.9,1.4]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[3.7]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[1.7]}},{"b":13,"v":{"DEFAULT":[22.8]}},{"b":14,"v":{"DEFAULT":[107.5]}},{"b":15,"v":{"DEFAULT":[32.6]}},{"b":16,"v":{"DEFAULT":[123.2]}}]},
-{"f":4,"b":[{"b":0,"v":{"total":[32,32.8,32.2,32,31.9,32.1,31.2,32.3,31.6,31.8,33,32,32.5,31.9,32.4],"script":[4.8,4.7,4.9,4.8,4.8,4.9,4.8,5,4.8,4.8,4.9,4.8,4.8,4.8,4.8],"paint":[23.9,24.7,24,23.9,23.8,23.9,23.4,23.8,23.5,23.8,24.7,23.9,24.4,23.8,24.3]}},{"b":1,"v":{"total":[36.5,36.3,37.3,37.6,36.7,36.9,36.8,38,38.1,37.4,36.8,36.6,36.9,36.5,37.4],"script":[9.3,9.3,9.6,9.8,9.2,9.3,9.4,10.1,9.9,9.4,9.3,9.4,9.4,9.2,9.7],"paint":[23.7,23.7,24.2,24.3,24.1,24.2,24,24.6,24.8,24.5,24.1,23.8,24,23.8,24.3]}},{"b":2,"v":{"total":[12.5,14.1,12.6,12.5,12.8,11.7,13.3,12.6,13.4,13.3,13,13.3,12.2,13.1,12],"script":[0.6,2.5,0.6,1.2,1.7,1.1,2.2,0.3,2.4,1.7,1,1.4,0.9,1.8,0.6],"paint":[10.9,10.6,11.1,10,9.8,9.5,10.5,11,9.6,10.2,11.2,10.6,10,9.7,10.1]}},{"b":3,"v":{"total":[3.4,4.4,4,4.2,4.8,3.6,4.6,3.2,4.4,3.9,4.1,4.6,4.3,3.6,3.4,4.5,3.8,4.3,2.8,5.3,3.1,3.3,4.6,3,3.2],"script":[0.7,2.2,1.6,1.9,2.4,1.1,2.4,1,1.4,0.7,1.9,2.2,1.6,1.1,0.7,1.8,1.2,2.5,0.9,2.6,1.2,1.4,1,1.3,0.9],"paint":[2,1.4,1.2,1.4,1.9,1.7,1.2,1.4,1.8,3,0.9,2.1,2.5,2.2,2.6,2.5,1.8,1,1.7,2.2,1.7,1.2,1.8,1.1,1.3]}},{"b":4,"v":{"total":[16.3,17.4,16.5,15.9,15.2,15.7,16.5,16.9,15,16.6,16.4,16.7,16.6,16.4,17.1],"script":[1.5,2.9,1.6,1.8,1.5,1.2,0.9,1.1,0.7,2.4,1.7,0.9,2.2,1.1,2.5],"paint":[13.1,13.4,12.5,13,13,13.8,14.4,14.8,13.6,13.5,13.9,14.3,13.4,13.7,13.6]}},{"b":5,"v":{"total":[12.1,12.4,12,12.1,11.9,11.6,12.2,12.8,11.9,12,11.7,12.2,11.9,11.8,12.4],"script":[0.9,1,1,0.7,0.8,0.8,0.9,1.1,0.7,0.6,0.7,0.7,0.8,0.6,0.7],"paint":[10.4,10.7,10.3,10.5,10.1,10.2,10.7,11,10.5,10.6,10.4,10.5,10.1,10.6,11]}},{"b":6,"v":{"total":[367.7,363.9,367.2,360.5,372,363.8,364,367.9,363,363.6,365.9,363.6,364.7,361.8,365.2],"script":[61.7,60.7,60.8,60.2,61,61.5,60.3,61.1,59.6,60.4,60.4,60.9,61.6,60.3,60.4],"paint":[252.2,252.3,253.8,249.7,256.2,251.5,252.5,251.9,251.5,251.2,252.5,250.2,251.8,250.8,252.5]}},{"b":7,"v":{"total":[37.1,37.2,37.1,37,37.7,37.3,37.4,37.6,37.8,37.2,36.7,36.9,37.9,38.5,37.4],"script":[6,5.9,5.9,5.7,6,5.9,5.8,5.9,6.1,5.8,6.1,5.8,5.9,5.8,6.1],"paint":[27.2,27.4,27.5,27.5,27.8,27.4,27.7,27.6,27.7,27.5,26.8,27.2,28.2,28.6,27.6]}},{"b":8,"v":{"total":[15.9,14.7,17.5,14.6,16.4,16.8,16.4,14.6,16.1,14.2,19.5,17.8,15.5,14.8,16.5],"script":[14,11.6,15.2,12.5,14,15.2,14.3,12.5,13.9,12.3,16.7,15.8,13.7,12.4,14],"paint":[1,2.1,1.5,1,1,0.3,1.1,0.9,0.5,1,1.1,0.9,0.9,2.1,1.3]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[3.7]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[1.7]}},{"b":13,"v":{"DEFAULT":[22.8]}},{"b":14,"v":{"DEFAULT":[107.8]}},{"b":15,"v":{"DEFAULT":[32.7]}},{"b":16,"v":{"DEFAULT":[125]}}]},
-{"f":5,"b":[{"b":0,"v":{"total":[33.6,34.4,34.2,34.5,34.5,34.6,34.2,35.3,34.1,34.8,34.3,33.9,33.6,34.7,34.7],"script":[5.5,5.8,5.8,6.3,5.8,6,5.9,5.8,5.7,6.1,5.8,5.8,5.6,6.1,6.1],"paint":[24.7,25,24.9,24.8,25.2,25,24.8,25.8,24.8,25.2,25.1,24.6,24.5,25.1,25.1]}},{"b":1,"v":{"total":[41.4,39.3,39.4,40.3,39.7,38.7,40.1,39.4,40.1,38.9,39.5,40.7,39.8,39.2,39.5],"script":[12.5,12,12.1,12.1,11.9,11.6,12.1,12,12.1,11.8,11.9,12.4,12,12.2,12.2],"paint":[25.4,23.8,23.9,24.7,24.3,23.8,24.6,23.8,24.4,23.7,24.2,24.7,24.2,23.7,23.9]}},{"b":2,"v":{"total":[13.8,12.6,13.3,13.1,13.5,11.9,13.6,13.6,14.4,12.5,13.3,13.9,12.8,12.6,13.1],"script":[1.4,1,2.3,1.6,1.5,1,1.1,1.9,2.1,1.8,2.1,2.1,1,1.3,1.6],"paint":[11.1,9.7,10,10.5,11.1,9.9,11.3,10.2,11.6,9.5,9.7,10.7,10.8,10.1,10.6]}},{"b":3,"v":{"total":[4.8,4.1,4.2,4.5,5.5,3.4,5,4.1,4.7,4.7,4.1,4.2,4.3,5.6,4.3,4.6,3.3,3.2,4.8,4,3.7,4.3,4.2,5.4,4.5],"script":[2.2,1.3,1.7,1.8,3.5,1.2,2.6,1.2,1.9,2,1.8,1.4,1.8,2.6,1.3,1.6,1.6,1.5,2.2,1.7,1.3,1.8,2.1,2.7,1.6],"paint":[1.6,2,1,1.7,1.9,1.4,2.3,2.3,2.3,1.4,1.8,1.8,1.5,2.8,1.3,1.9,1,0.7,1.5,1.9,2.3,1.7,1.4,2.4,2.7]}},{"b":4,"v":{"total":[15.9,16.7,17,15.8,16.6,17.7,16.7,15.9,16.6,16.3,15.7,16.5,17.2,16.2,15.6],"script":[1,2.5,2.3,1.3,1.6,2.8,0.9,1.7,1.5,2.3,1.8,1.9,1.5,2,1.2],"paint":[13.7,13.2,13.5,13.1,13.3,13.6,14.4,13.3,14.2,12.9,13.5,13.4,14.4,13,12.8]}},{"b":5,"v":{"total":[14.7,13.4,14.4,13.9,14,13.5,13.9,13.5,13.7,13.8,14,13.6,13.8,13.6,13.9],"script":[1.8,1.3,2,1.6,1.3,0.8,1.7,1.2,1.8,1.6,1.7,1.1,1.5,1.4,1.6],"paint":[11.4,11,11.2,11.1,11.3,11.3,11.2,11.1,10.9,11.1,11.4,11.3,11.4,10.9,11.2]}},{"b":6,"v":{"total":[371.7,374,371.9,375.5,372.1,371.8,369.8,374.1,373,371.8,373.6,374.4,374.6,373.6,372.9],"script":[76.1,75.4,75.5,75.9,74.6,75.5,75.1,75.8,75.9,73.3,76.7,75.7,76.4,75.3,75.5],"paint":[244.3,249,246.2,248.3,247.1,245.4,245.4,248,246.7,247.4,246,248.3,247.7,247.3,246.2]}},{"b":7,"v":{"total":[38.9,39.3,39.2,39.8,38.8,39.1,38.4,38.5,38.6,38.9,39.7,38.5,39.2,38.3,38.7],"script":[6.7,6.6,7.2,6.8,6.8,6.7,6.8,7.1,7,7,6.9,6.6,7.2,6.8,7],"paint":[28.3,28.7,28.3,28.9,28.1,28.4,27.8,27.7,27.8,28.1,28.6,28.1,28,27.7,27.9]}},{"b":8,"v":{"total":[20.5,20.2,21.9,19.9,20.1,19.3,19.3,19.8,21.3,22.8,20.6,19.8,18.6,19.1,19.2],"script":[18,17.6,19.4,17.2,17.2,17.3,17.3,18.1,18.9,20.5,18.4,17.9,16.7,17,17.5],"paint":[1.2,1.8,0.8,0.7,2.1,1.1,1.1,1,2.2,0.8,1,0.5,0.3,1.3,0.3]}},{"b":9,"v":{"DEFAULT":[1.5]}},{"b":10,"v":{"DEFAULT":[4.8]}},{"b":11,"v":{"DEFAULT":[4.9]}},{"b":12,"v":{"DEFAULT":[2.2]}},{"b":13,"v":{"DEFAULT":[29.6]}},{"b":14,"v":{"DEFAULT":[142.3]}},{"b":15,"v":{"DEFAULT":[44]}},{"b":16,"v":{"DEFAULT":[155.4]}}]},
-{"f":6,"b":[{"b":0,"v":{"total":[39,37.9,38.9,38,37.7,39.2,37.8,38.3,38.2,39.4,38.5,38.8,39.1,40,38.5],"script":[5,5,5.4,4.9,4.9,4.9,4.9,4.9,5.1,5.4,5,4.9,5,4.9,5],"paint":[23.3,23.5,23.3,23.9,23.6,24.1,23.5,24,24.1,23.5,23.5,24.1,23.7,23.9,23.5]}},{"b":1,"v":{"total":[36.7,42.5,42.8,42.1,42.1,44.1,42.9,41.1,37.6,42.3,38.4,43.1,43.5,42.4,43.3],"script":[9.3,9.7,9.3,9.1,9.1,9,9.2,9.8,9.2,9,10,9.7,9.2,9,9.6],"paint":[24.1,24.3,24.4,23.7,23.8,24.1,24,24.3,23.9,24.1,24.1,24.1,24.7,24.3,23.9]}},{"b":2,"v":{"total":[29.9,12.3,11.9,30.5,28.5,28.9,12.3,12.4,30.1,13.9,28.3,12.8,13.7,12.5,30.9],"script":[3.1,1.5,1,3.1,1.9,2.2,1.9,1.9,3.4,3.3,1.4,1.7,3.5,1.3,2.9],"paint":[9.8,10.7,10.8,11.1,10.5,9.8,10.3,10.3,10.4,9.6,10.8,10,9.7,10.6,11.6]}},{"b":3,"v":{"total":[5.5,5.8,4.4,4,5.6,4.3,4.7,5.9,5.7,5,4.6,4.3,4.9,5.8,3.6,5.7,4,3.9,4.3,5.5,4.4,4.2,4.9,4.7,5.6],"script":[3.6,2.9,1.8,1.7,3,1.7,1.7,2.7,3.5,2.1,1.9,1.8,2.4,4.1,1.2,3.1,1.7,1.7,1.7,3.3,2.5,1.5,1.9,2.5,3.3],"paint":[1.8,2.3,2.1,1.4,1.9,2.1,2,2.3,1.1,1.4,2.6,1.3,1.5,1.6,1.3,2,2.1,1.5,1.9,1.3,1,2.2,2.7,1.2,1.4]}},{"b":4,"v":{"total":[15.7,16.2,16.9,34.7,33.6,32.6,32.4,16.6,17.5,33.8,33.1,33.6,32.6,33,33.1],"script":[0.8,2.6,3.3,3.9,2.9,2.9,2.7,2.7,2.3,2.7,3.4,2.8,2.5,1.7,3.4],"paint":[14.2,13.4,12.4,13.5,14.8,13.8,12.7,13.5,11.5,14.6,13.8,14.7,14.4,16,13.4]}},{"b":5,"v":{"total":[12,14.6,12.1,12.8,14.2,14.5,13.3,16,13.3,16.3,16.7,14.3,14.1,16.5,16],"script":[1.2,1.6,1.1,2,1.2,1.2,1.4,1.6,1,2.4,2,1.5,1.3,1.8,1.5],"paint":[10.2,10.8,10.3,10.7,10.8,10.7,10.1,10.6,10.6,10.4,10.5,10.1,10.3,10.7,10.4]}},{"b":6,"v":{"total":[371.1,368.8,365.2,368.4,372.6,369.7,372.3,367.9,366.8,365.5,367.6,367.4,367.8,364.6,370.6],"script":[60.5,61.5,61.5,61.7,61.2,60.5,61.1,62.1,61,61.4,60.5,60.9,62,62.2,61.1],"paint":[253.8,254.6,251.8,251.7,253.2,255.7,255.9,252.8,251.9,252.1,253,253.2,252.9,251.2,254]}},{"b":7,"v":{"total":[43.7,42.6,38.4,42.2,42,41.5,42.3,42.4,43,39,38.3,42.6,44.9,42.5,42.5],"script":[6.6,6.8,6.9,6.7,6.7,6.6,6.6,6.7,6.6,6.6,6.9,6.6,6.7,6.6,6.8],"paint":[27.6,27.6,27.9,27.4,27.1,27,27.4,27.5,28.1,28.7,28.1,27.5,27.5,27.9,27.5]}},{"b":8,"v":{"total":[33.1,14.4,13.6,15.4,32.8,15.4,33.4,17.5,32.3,31.3,32.8,14.1,15.2,32.8,32.8],"script":[15.5,13.4,12.5,14.4,15.2,13,15.5,15.8,15.3,14,14.8,12.8,13.4,15,14.6],"paint":[0.3,1,0.4,0.9,1.5,1.9,1.7,1.6,0.9,1.3,0.7,1.2,1.6,1,2]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[23]}},{"b":14,"v":{"DEFAULT":[108.8]}},{"b":15,"v":{"DEFAULT":[33]}},{"b":16,"v":{"DEFAULT":[127.7]}}]},
-{"f":7,"b":[{"b":0,"v":{"total":[34.3,34.4,34.5,34.8,34,34.1,34.2,34.3,34.3,34.9,34.8,34.2,34.7,34.4,34.4],"script":[6,6,5.9,6.1,6.2,6,6,5.9,6,6,6.1,6,5.8,6,5.9],"paint":[24.8,25,25.1,25.3,24.4,24.5,24.7,24.9,24.7,25.4,25.1,24.8,25.3,24.9,25]}},{"b":1,"v":{"total":[39,37.6,38.8,38.8,38.1,38.8,39,38,38.5,38.2,38.1,38.3,38.3,38.4,38],"script":[11.3,10.6,10.8,10.7,10.6,10.8,11.1,10.6,10.5,10.7,10.7,10.7,10.9,11,10.6],"paint":[24.2,23.6,24.5,24.6,24,24.5,24.5,24.1,24.6,24.1,23.9,24.1,24,24.1,24]}},{"b":2,"v":{"total":[13.5,12.8,12.6,14.2,12.6,12.4,13.5,12.3,14,12.8,13.2,12.7,13.2,14,13.7],"script":[2.4,1,0.9,2.1,1,1.4,1.6,1.2,2.4,1.1,1,1.7,1.7,2.1,2.4],"paint":[9.9,10.3,10.2,10,10.2,9.5,11.3,10.2,10.5,10.4,10.5,9.5,10.3,10.7,10.7]}},{"b":3,"v":{"total":[3.8,3.8,4.2,4.8,4,3.6,4.4,4.3,4.6,4.1,3.9,3.9,3.9,3.8,4.8,4.6,4.9,3.7,3.5,3.8,3.3,3.1,4,4.1,3.6],"script":[2.1,1.6,1.4,2.4,1.5,0.7,2,0.4,2.1,1.5,1.8,1.3,1.1,1.4,1.9,1.6,2,1.1,1.6,1.6,1.1,1.1,1.8,1.5,1.3],"paint":[1.6,1,1.9,1.2,2.3,2.1,1.6,1.1,2.3,1.6,1.4,1.6,0.6,2.2,2,1.6,2,1.3,1.7,1.4,1.6,1.2,1.3,1.7,1.7]}},{"b":4,"v":{"total":[139,136.8,137.7,135.4,139.1,134.9,135.3,135.6,137,134.3,134.2,139.7,136.2,137.8,137],"script":[25.7,24.9,25.2,24.5,25.6,25.2,24.7,25.2,25.3,24.4,25.9,27.1,25.3,25.9,25.3],"paint":[97.7,96.7,97.6,95.7,97.9,93.6,96.8,94.8,95.4,95.8,94.3,97.6,93.1,96.3,96.7]}},{"b":5,"v":{"total":[12.2,12,12.4,12.1,12,12.3,12.2,12,12,12.2,12.3,12.3,12.1,13.4,12],"script":[1.2,0.9,1,0.9,1,1.1,0.8,0.8,0.7,1.3,1.1,1.2,0.8,1.6,0.8],"paint":[10,10.3,10.6,10.3,10.2,10.1,10.5,10.3,10.7,10.1,10.3,10.4,10.8,11.1,10.5]}},{"b":6,"v":{"total":[378.4,376.4,375.4,373.9,375.9,375.5,375.4,379.5,379.8,379.8,372.9,371.9,375.4,373.4,376.7],"script":[79.8,79.5,78.5,78.7,79.8,78.3,78.1,78.5,78.4,79.3,77.9,76.8,79,78.7,78.7],"paint":[248,247.6,244.9,243.8,246.2,245.6,247.6,250.2,248.3,247.8,244.1,245.9,246.6,244.8,248.5]}},{"b":7,"v":{"total":[39.5,38.1,39.4,39.2,39.4,38.9,37.9,40,39,38.9,39.9,39.2,39.2,39.8,41.7],"script":[6.8,6.5,6.6,6.7,6.5,6.7,6.6,6.6,6.7,6.9,6.9,6.5,6.8,6.6,6.7],"paint":[28.8,27.9,28.5,28.6,28.9,28.3,27.5,29.2,28.2,28,28.8,28.7,28.4,29.1,30.6]}},{"b":8,"v":{"total":[22.5,21.8,22.8,20.7,20.6,21.1,21,21,21.5,21,22.5,21.9,20.8,21.8,21.6],"script":[19.9,19.5,20.1,18.4,17.7,19.1,18.5,18.5,19,18.9,19.7,19.4,18.3,19.3,18.8],"paint":[2.4,1.4,1.3,0.9,2,1.1,1.4,1.2,1.4,1.5,2.2,1.1,1.4,1,1.9]}},{"b":9,"v":{"DEFAULT":[1.6]}},{"b":10,"v":{"DEFAULT":[5]}},{"b":11,"v":{"DEFAULT":[5.1]}},{"b":12,"v":{"DEFAULT":[2.4]}},{"b":13,"v":{"DEFAULT":[30.9]}},{"b":14,"v":{"DEFAULT":[150]}},{"b":15,"v":{"DEFAULT":[45.8]}},{"b":16,"v":{"DEFAULT":[164]}}]},
-{"f":8,"b":[{"b":0,"v":{"total":[33.6,33.2,33.4,33,33,33,33.1,33.2,34,34.1,33.8,33.6,33.9,33.7,33.2],"script":[8.4,8.5,8.7,8.6,8.4,8.3,8.3,8.6,8.8,8.7,8.7,8.6,8.7,8.5,8.7],"paint":[24.5,24.2,24.1,23.7,24,24.1,24.3,24,24.7,24.8,24.5,24.5,24.6,24.6,23.9]}},{"b":1,"v":{"total":[38.1,37.9,38,37.4,37.5,37.5,37.7,38.1,37.2,37.7,38,38,37.9,37.2,38],"script":[12.9,12.9,12.9,12.5,12.7,12.7,12.7,12.6,12.5,12.7,12.9,12.9,12.8,12.5,12.7],"paint":[24.5,24.4,24.4,24.2,24.2,24.1,24.5,24.9,24.1,24.4,24.5,24.5,24.5,24.1,24.7]}},{"b":2,"v":{"total":[41.6,43.1,41.2,41,41.1,40.9,40.7,40.2,40.2,41.6,41,40.9,40.3,41,40.8],"script":[27.7,28.3,27,27.8,27.8,27.4,27.1,27.5,26.5,28.8,28.1,27.8,27.3,27.4,27.3],"paint":[11.2,12.9,11.1,11.2,10.9,12.4,10,10.2,12.6,11.2,11.4,10.9,11.3,10.8,11.4]}},{"b":3,"v":{"total":[30,30.2,31.7,30.9,29.8,33.4,31.7,30.8,30,34.1,30.8,30.4,31,30.5,30.3,31,29.8,30.8,31.2,30.4,30.6,31.8,29.3,31.1,30.8],"script":[26.2,26.5,28.1,27.3,26.7,29.8,27.4,26.9,26.8,29.4,27.6,27.2,28.2,27.3,26.6,27.7,26.4,27.3,26.8,26.8,27,28.3,26.1,27.2,27.3],"paint":[2.3,1.8,2.1,2.7,1.5,1.9,2.5,2.4,1.6,2,1.1,1.1,0.9,1.3,1.8,1.4,2,2.7,2.3,1.1,2.2,1.5,1,2.2,2]}},{"b":4,"v":{"total":[41.7,42.9,43.4,42.4,42.9,42.8,46.3,43.1,44.6,42.1,44.7,42.3,43.4,44.1,44.6],"script":[25.9,26.2,27.1,26,27.3,27.5,29.2,27,27.6,27.2,27.9,26.3,27,27.5,28],"paint":[13.2,14.5,13.1,14.2,13.2,13,14.1,14,15.2,12.5,14.6,13.2,13.7,14.5,14.8]}},{"b":5,"v":{"total":[92.7,91.4,91.9,91.2,92.5,91.8,92,94.2,92.1,92.5,94.2,92.2,92.4,93.1,91.1],"script":[42.9,42.3,41.9,41.9,42.1,41.6,42.2,42.9,41.8,42,43.3,42.4,41.4,42.2,41.7],"paint":[48,47.6,48.4,47.9,49.1,48.5,48.5,49.6,48.8,48.5,49.2,48.8,49.2,49.8,48.2]}},{"b":6,"v":{"total":[330.9,334.6,332.1,332.1,328.9,334.5,329.5,330.2,332.9,335.5,330.7,332.5,329.6,329.5,332.9],"script":[87.6,90.1,89,89.9,86.5,90.8,85.1,87,90,89.7,87,87.1,86.3,87.2,86.3],"paint":[237,238,236.6,235.8,235.8,237.1,237.8,236.6,236.7,239.3,236.9,238.9,236.8,236,239.8]}},{"b":7,"v":{"total":[46.7,46.2,46.6,46.7,45.5,44.5,44.6,44.6,44.7,44.9,45.6,44.7,44.6,44.4,44.4],"script":[15.9,16,15.8,16,16.1,15.5,15.7,15.7,15.7,15.6,15.5,15.6,15.5,15.6,15.4],"paint":[29.7,29.3,29.7,29.6,28.4,28,27.8,27.9,28.1,28.3,29.1,28.1,28.1,27.8,28.1]}},{"b":8,"v":{"total":[12.2,13.1,12.8,13,12.2,12.1,12.9,12.2,13.1,12.8,12.7,12.6,12.6,12.4,11.6],"script":[10.3,11,10.6,10.5,10.4,10.3,11.1,10.1,10.4,11.1,10.8,10.2,10.4,10,9.6],"paint":[0.6,0.6,1.2,1.8,0.3,0.9,0.3,1.5,1.2,0.3,0.3,0.9,0.9,1.4,0.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[8.5]}},{"b":13,"v":{"DEFAULT":[18]}},{"b":14,"v":{"DEFAULT":[19]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[44.1]}}]},
-{"f":9,"b":[{"b":0,"v":{"total":[86.9,82.2,83.3,86.3,86,84.6,83.3,81.9,87.5,84.4,83,84.9,81,83.2,80.3],"script":[50.8,50.7,51.6,50.6,51.3,51.1,51.3,50.7,51.1,51.5,50.7,50.9,51,51.5,51],"paint":[26.4,25.9,26.1,26.3,26.1,26.8,26.3,25.9,26.1,25.9,26.2,25.9,26.1,26.1,25.9]}},{"b":1,"v":{"total":[87.8,89.1,85.1,83.4,87.5,87.6,89.4,86.4,85.3,84.5,90.3,86.6,86.3,87,92],"script":[53.6,54.7,54.5,54.1,56,55.2,55,54.9,54,55.1,55.7,54.9,54.9,55,55.4],"paint":[26.1,26.1,25.5,25.8,26.2,25.6,25.6,25.6,25.7,25.5,25.9,25.9,25.5,26.1,26]}},{"b":2,"v":{"total":[55.1,53.3,53.2,53.5,54.9,36.4,54.2,36.8,35.7,55.3,54.3,55.2,38.1,53.7,53.7],"script":[22.8,21.8,21.5,20.8,21.3,21.2,22.9,22.2,20.8,22.2,20.8,22.5,22.4,21.5,21.3],"paint":[13.2,13.6,13.8,13.8,14.8,13.6,14,13.6,13.2,14.5,14.4,14.3,15,14.6,14.7]}},{"b":3,"v":{"total":[12.6,13.4,15.5,10.4,11.8,13.3,9.7,10,10.2,15.5,15.6,11.2,10.5,13.8,12.2,9.6,13.4,10.5,13.1,9.9,9.7,10,10.8,15.5,9.8],"script":[5.8,6.1,6.4,6.3,6.1,5.7,5.2,6.4,5.2,6.1,5.8,5.1,6.3,5.5,5.7,6,6.6,6.1,6.3,5,6.1,6.5,6.1,5.4,5.9],"paint":[3.2,2.3,2.6,2.9,1.9,2.7,2.3,2.6,1.7,3.8,3.6,1.9,3,2,3.9,2.9,2,3.2,3.5,3.2,2,2.4,3.6,3.4,2.5]}},{"b":4,"v":{"total":[59.4,55.7,40.5,60,39.9,57.1,58.4,56.8,41.7,57,39.6,39.9,40.9,57.5,41.1],"script":[24.3,21.8,22.4,22.5,21.9,23,22.4,22.9,24,22.8,21.2,22.1,22.2,22.7,23],"paint":[15.6,15.7,16.3,15.9,15.2,16,16.8,16.7,16.5,16.4,16.3,16.7,15.8,16.5,17.1]}},{"b":5,"v":{"total":[71.3,77.4,70.4,70.7,73,73.9,70.7,71.4,71.6,74.3,71.2,72,73.3,73.6,76.6],"script":[16.9,16.6,16.5,16.9,17.1,18,17,16.8,16.4,16.9,16.7,16.8,17,16,17],"paint":[53.2,53.6,52.2,52.2,54.2,52.4,52.2,53.1,52,53.5,52.9,53.6,53,52.5,54.1]}},{"b":6,"v":{"total":[672.5,682,683.6,687.9,678.7,685.9,674.7,685.2,686.3,676.1,684.7,692.5,675.7,684.8,686.4],"script":[414.8,414.8,415.3,419,412.5,424,411.8,420.4,421.2,414.7,418.5,426.7,412.8,418.9,422.2],"paint":[253.4,262.7,263.9,264.4,261.2,257.4,258.6,260.3,260.7,257,262,261.4,258.6,261.5,259.8]}},{"b":7,"v":{"total":[94.6,92.2,95.7,92.8,91.7,91.9,90.7,91.9,95.7,91.9,92.2,93.3,95.2,92.6,91],"script":[56.6,55.2,55.7,57.2,56,55.9,55.1,56.1,55.1,55.9,55.3,57.1,56.5,56.7,55.4],"paint":[30.1,30.3,30.1,30.1,30.1,30.5,30.2,30.3,30.5,30.5,30.1,30.5,30.5,30.2,30.1]}},{"b":8,"v":{"total":[23.6,21.8,21.8,20.5,20.3,43.8,22.1,22.1,20.6,21.1,21.6,21.3,20.6,21,44.2],"script":[17.8,16.5,17.4,16.4,16.3,18.1,18.3,18.1,17.3,17.1,17.9,17.1,16.7,18,18.1],"paint":[3,2.2,3.3,2.9,2.9,2.4,2.8,2.9,1.2,3,2.6,2,3,2.6,2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[10.9]}},{"b":11,"v":{"DEFAULT":[11.1]}},{"b":12,"v":{"DEFAULT":[50.7]}},{"b":13,"v":{"DEFAULT":[103.6]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[47.4]}}]},
-{"f":10,"b":[{"b":0,"v":{"total":[41.8,40.1,36.1,41.3,40.9,35.7,41,37.3,33.6,35.6,33.9,32.3,42.5,41,33.4],"script":[6.5,5.8,5.6,5.7,5.3,5.6,5.7,5.7,5.5,5.6,5.5,7.2,6.5,5.6,6],"paint":[22.6,23.2,24,23.9,24.1,24.1,23.9,25.2,24,24.3,24,24,23.5,24.2,24]}},{"b":1,"v":{"total":[38.4,37.3,38.3,36.1,37.1,36.8,36.7,38.3,39.8,38.1,41.2,33,36.5,37,38.8],"script":[8.5,8.1,8.5,8.4,9,8.8,8.5,8.7,9,8.4,9,8.3,8.4,8.7,9],"paint":[23.7,23.5,23.4,23.5,23.9,24.1,23.8,23.9,23.4,23.7,23.5,24.3,23.9,23.5,23.7]}},{"b":2,"v":{"total":[37.2,17.8,36.1,34.1,36.9,34.2,34.9,35.8,35.8,19.8,34.7,36.5,34.6,35.6,36.8],"script":[6.1,5.1,5.5,5,5.9,5.1,4.8,5,5.1,5.2,4.3,6.4,4.3,4.9,4.7],"paint":[13.2,11.4,12.9,12.2,13,12.3,12,13.4,12.9,12.3,13.1,12.5,12.9,12.4,13.2]}},{"b":3,"v":{"total":[15.7,5.6,9.2,6.3,7.6,6.2,12.7,9.5,7.9,6.9,6.6,11.5,6,7.9,12.1,5.9,8,7.2,11.3,8.7,7,6,9.4,5.2,6],"script":[3,1.3,2.3,2.5,2.7,2.5,2.4,2.7,2.5,3,2.7,2.9,3.3,3.4,2.4,2.1,1.6,2.7,2.9,2.4,3,2.6,2.3,2.4,2.3],"paint":[2.7,2.8,3.9,2.2,2,2.4,3.9,2.8,1.7,2,2.8,3.3,2.5,2.8,1.3,2.4,2.3,2.5,3.2,2.8,2.5,2.5,2.5,1.7,1.7]}},{"b":4,"v":{"total":[35.9,35.3,35.9,36.4,35.9,36.1,39.4,35.5,36,19.6,35.3,38.6,18.2,34.7,34.3],"script":[1.6,2.2,2.8,2.2,2.1,2.9,3.1,2.4,3.1,1.8,2.1,2.5,2.4,2.7,2.6],"paint":[14.7,15.9,14.9,14.9,15.9,16.3,16.2,15,15.4,15.6,16,13.8,13.6,15.8,14.4]}},{"b":5,"v":{"total":[14.2,13.9,15.3,17.3,16.4,14.8,16,15.7,16.4,16.9,13.9,16.4,14.1,15.8,14.7],"script":[1.3,1.4,1.3,1.2,1.4,1.4,1.8,1.7,1.5,1.2,1.5,1.4,1.3,1.6,1.2],"paint":[11.3,11,10.9,11.2,11.9,11.1,11,11.8,11.5,11.4,11.1,11,10.8,11,11.1]}},{"b":6,"v":{"total":[319.7,317.3,320.5,318,315.5,312.7,313.3,319.5,321.7,317.6,311,319.5,318,317.3,317.2],"script":[74.3,74.7,74.3,74.7,72.3,69.7,71.1,74.5,76.3,73.7,70.1,72,74,75,73.9],"paint":[237.3,235.9,236.8,236.6,238.4,237.9,237.6,236.8,237.8,236.3,237.7,238.3,237,235.2,236.9]}},{"b":7,"v":{"total":[42.4,36.1,37.1,36.8,38,37.5,36.2,36.3,43.5,43.2,37.5,36.5,41.4,41.3,43],"script":[7.1,7.6,7.5,7.4,7.6,7.4,7.5,7.6,7.5,7.6,8.2,7.6,7.5,7.5,7.4],"paint":[28,27.8,29,28.7,29.1,29,28.1,28,27.4,27.3,28.6,28.1,27.8,27.7,27.3]}},{"b":8,"v":{"total":[37,12,12.3,11.3,11.3,12.3,13.2,12.8,12.7,12.2,12.9,12.5,12.4,13.8,12],"script":[10.1,7.6,8.4,7.8,7.4,8.2,8.8,8.9,8.8,8.4,7.8,9.4,9,8.8,7.9],"paint":[3,2.3,2.2,3,3.1,2.5,1.2,1.5,1.1,2.3,3.8,1.5,1.8,4.5,2.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[31.6]}},{"b":14,"v":{"DEFAULT":[14.3]}},{"b":15,"v":{"DEFAULT":[4.6]}},{"b":16,"v":{"DEFAULT":[46.2]}}]},
-{"f":11,"b":[{"b":0,"v":{"total":[35.1,35.1,35.1,35.4,34.4,35.1,34.5,34.5,35,34.8,34.5,34.4,33.7,33.7,34.1],"script":[10.1,10.1,10.4,10.1,9.7,9.7,9.7,10,10.4,10.2,10.1,10,9.5,9.4,9.7],"paint":[24.2,24.4,24.1,24.7,24.2,24.9,24.2,24.1,24.1,24.2,23.8,23.9,23.6,23.8,23.8]}},{"b":1,"v":{"total":[40.1,40.3,40.4,40.6,41,39.6,40.2,40.4,40.8,40.1,40.5,40.6,40.2,40.6,40.6],"script":[14.8,15,14.8,15.1,15.7,14.8,15.1,15.1,15.3,15,14.9,15.3,15.3,15,15.3],"paint":[24.7,24.6,25.1,24.9,24.7,24.3,24.5,24.8,24.9,24.5,25,24.7,24.3,24.9,24.6]}},{"b":2,"v":{"total":[23.9,25.4,13.3,24.9,14.2,25.2,26.4,13.9,25.1,13.3,26.1,15.1,13.9,26.3,12.9],"script":[1,1.2,1.8,2.1,2,2,1.1,1.2,1.8,1.9,1,2.1,2.1,1.1,2],"paint":[10.5,11.5,10.9,10.3,11.4,10.4,12.1,11.5,11.7,11.2,11.7,11.4,11.2,11.5,10.8]}},{"b":3,"v":{"total":[6.9,6.4,6.7,6.6,6.1,5.8,5.6,7.4,6.4,7,6.5,7.6,6.2,5.4,6.7,7.3,6,7.1,5.8,6.4,6.5,6.6,7,6.4,6.7],"script":[4.8,4.7,4.8,4.1,4.3,3.9,3.8,4.2,3.9,4,4.7,4,4,3.3,3.7,4.3,4.1,4.8,4.2,4.5,3.2,3.2,3.9,4.5,4.2],"paint":[1.9,0.9,0.5,1.7,1.6,0.9,1.5,1.7,1.4,1.5,1.2,1.1,1.1,0.9,2.4,0.9,1.8,1.1,0.7,1.3,2.3,1.4,1.9,0.5,0.5]}},{"b":4,"v":{"total":[18.4,17.2,19.8,17.4,19.1,17.1,16.7,16.8,18,18.8,18,17.5,18.5,17.6,18],"script":[3.2,2.5,2.6,2.5,3,2,1.9,1.6,2,3,2.2,2,2.5,2.5,2.1],"paint":[13.8,13.9,15.5,13.8,14.7,13.5,13.3,14.1,14.4,14.4,14.4,14.2,15.2,13.2,13.6]}},{"b":5,"v":{"total":[12.7,12.6,13.1,12.6,12,12.6,12.5,12.4,12.5,12.4,12.6,12.6,12.4,12.2,12.5],"script":[1.3,1.5,1.6,1.5,1.2,1.3,1.3,1.5,1.2,1.5,1.2,1.5,1.2,1.4,1.5],"paint":[10.6,10.4,10.8,10.5,10.1,10.7,10.7,10.1,10.9,10.4,10.4,10.3,10.6,10.3,10.2]}},{"b":6,"v":{"total":[372,372.3,370.5,371,370.9,368.4,371.6,374.9,371.9,372,368.7,369.9,371.8,372.2,371.2],"script":[117.7,117.5,116.2,117.8,115.8,116.5,117.2,118.6,118.6,117.6,116.6,117.1,116,117.4,117.3],"paint":[247.1,247.8,247.7,246.9,248.3,245.7,247.6,249.7,246.8,247.8,245.9,246,248.6,247.5,246.9]}},{"b":7,"v":{"total":[41.2,41.4,41.3,41,41.6,43,41.1,41.1,41.6,41.2,41.1,41.2,40.1,41.1,41.5],"script":[11.4,11.3,11.4,11.3,11.7,11.8,11.5,11.6,11.7,11.6,11.3,11,10.9,11.5,11.6],"paint":[28.8,29.1,28.9,28.7,28.8,29.7,28.5,28.5,28.9,28.6,28.8,29.3,28.2,28.6,28.9]}},{"b":8,"v":{"total":[22.3,22.3,24.1,23.7,23.9,22.6,22.4,22.8,24.2,24.2,25.5,22.4,26.6,23.1,22.7],"script":[20.6,20,22.4,21.2,21.7,19.7,20.6,20.3,21.8,22,23,20.7,24,20.9,21.4],"paint":[0.3,1.1,0.7,0.9,1.4,0.7,0.5,1.8,2.1,1.2,0.7,1.1,2.2,0.7,1]}},{"b":9,"v":{"DEFAULT":[2]}},{"b":10,"v":{"DEFAULT":[6.9]}},{"b":11,"v":{"DEFAULT":[7]}},{"b":12,"v":{"DEFAULT":[7]}},{"b":13,"v":{"DEFAULT":[48]}},{"b":14,"v":{"DEFAULT":[203.9]}},{"b":15,"v":{"DEFAULT":[56.3]}},{"b":16,"v":{"DEFAULT":[222.3]}}]},
-{"f":12,"b":[{"b":0,"v":{"total":[89.9,91.8,87.9,91,96.4,93.7,96.4,89.2,96.2,88.1,97.8,88.3,97.3,89.2,88.4],"script":[60.2,58.6,58.1,60.9,61.4,61.3,60.5,59.5,60.6,57.9,61.4,58.6,61.6,59,58.5],"paint":[26.2,29.5,26.5,26.7,27.1,27.2,26.6,26.4,27.6,26.8,27.1,26.4,27.4,26.6,26.6]}},{"b":1,"v":{"total":[103.7,103.8,104.2,102.8,102.6,104.1,103.1,103.4,104.3,104,104.6,102.3,103.8,104.8,102.8],"script":[72.9,71.9,73.3,72.2,71.9,72.5,72.1,72.7,72.9,73,73.4,71.5,73,72.3,71.6],"paint":[26.8,27.7,27.1,26.8,26.9,27.6,27.1,26.9,27.4,27,27.4,26.9,27,28.4,27.2]}},{"b":2,"v":{"total":[94.1,93.8,94.3,94.3,93.8,94,94.4,94.9,94.7,96.1,94.2,95,94.4,95.1,93.4],"script":[48.1,47.6,48.6,47.4,47,47.5,47.4,48.4,47.6,48.6,47.5,47.3,54.8,48.7,48.2],"paint":[12,11.6,13.6,13.3,12.4,14,13.6,12.7,12.2,12,13.9,13.8,13,13.6,12.5]}},{"b":3,"v":{"total":[90,84,85.9,83,84.5,84.9,85.6,85.9,83.6,85.6,83.7,85.9,83.4,86.1,85.2,81.2,83.9,85.9,85.7,84.4,83.6,81.8,84.8,85.8,84.6],"script":[43.3,44.5,43.1,44,45.6,44.3,42.4,43.3,43.2,42.5,43.1,43.6,43.3,43.7,44.6,42.3,43.7,43.8,43.6,43.7,43.8,44.1,43.5,43.8,43.4],"paint":[2.2,2,2.3,2.5,2.6,1.2,1.9,2.3,0.9,2.3,1.3,1.9,2.2,2.7,1.9,1.4,2.6,2,1.4,2.3,2,1.4,2.3,1.8,1.4]}},{"b":4,"v":{"total":[95.8,95.3,95.8,94.9,94.9,90.2,84.6,81.6,87.6,83.7,86,89.1,86.7,94.2,86.3],"script":[43.3,42.8,41.6,42.4,42.1,43.1,42.6,42.7,42.2,42.7,41.7,42.8,43.2,43.2,42.1],"paint":[14.9,14.7,16,15.6,16.1,15.6,17,15.3,15.4,15.5,14.2,15.3,14.4,14.3,16.5]}},{"b":5,"v":{"total":[40.6,42.2,43.4,36.1,36.2,35,34.9,42.8,34.8,38.9,35,41.3,35.3,37,34.9],"script":[21.9,21.8,22.2,21.6,22.9,22,21.6,21.9,22.3,22.5,21.4,21.8,21.8,22.7,22.1],"paint":[11.2,11.7,11.5,11.4,11.4,11.6,10.9,12.6,11,11.9,11.2,10.9,10.9,12.1,11.2]}},{"b":6,"v":{"total":[816.6,813.5,822.9,822.7,829.2,819.7,827,819.1,824,819.5,827.6,817,822.9,828.3,832.6],"script":[469.6,473.4,474.6,476.3,475,470.5,477.5,471.6,473.7,469.9,476.5,470.2,479.6,478.1,481.9],"paint":[292.4,286.8,294.2,293.6,297.9,295.4,296,291.2,294.5,294.4,296.3,290.4,290.4,294.2,295.6]}},{"b":7,"v":{"total":[101.9,103.2,102.8,102.6,102,99.6,102.4,104.9,102.5,102.7,102.2,104,104.4,102.8,104.1],"script":[69.7,70.9,69.9,71.2,70.2,68.3,69.9,71.3,70.6,70.6,70.2,70.6,70.2,70.1,70.9],"paint":[27.6,27.9,28.3,27,27.2,27.3,27.9,28.7,27.5,27.7,27.4,28.8,29.6,28,28.4]}},{"b":8,"v":{"total":[39.5,39.4,39.6,36.3,36.5,38.1,35.8,38,37.5,38.7,39.6,38.7,36.7,36.8,38.6],"script":[37.4,37.6,37.5,34.7,35.1,36.1,33.8,36.4,36.1,37,37.4,36.8,35.3,35.7,37],"paint":[2,1,1.9,1.1,0.4,1.9,1.2,0.3,0.7,0.5,0.4,1.7,1.5,0.3,1.5]}},{"b":9,"v":{"DEFAULT":[41.2]}},{"b":10,"v":{"DEFAULT":[52.8]}},{"b":11,"v":{"DEFAULT":[53]}},{"b":12,"v":{"DEFAULT":[49.4]}},{"b":13,"v":{"DEFAULT":[133.8]}},{"b":14,"v":{"DEFAULT":[4208.3]}},{"b":15,"v":{"DEFAULT":[1377]}},{"b":16,"v":{"DEFAULT":[72.3]}}]},
-{"f":13,"b":[{"b":0,"v":{"total":[85,94.4,95,90.2,87.5,86.4,95.3,90.9,94.8,94.8,87.3,86.3,95.6,86,88.6],"script":[54.8,58.8,57.5,58.2,56.8,55.8,57.9,59.5,58.4,59,55.1,56.1,58.3,55.7,56.6],"paint":[26.8,27.4,27.8,27.1,26.7,27.3,27.8,27.5,26.7,27.4,27.1,26.9,27.5,27,26.8]}},{"b":1,"v":{"total":[96.4,94.7,95,94,94.2,93.7,94.5,93.4,93.3,94.7,94.3,94.5,94.1,94.2,92.6],"script":[64.7,63.7,64.5,63.7,63.4,62.5,63.7,63.4,62.9,64.2,63.5,63.9,63.5,63.7,62.2],"paint":[28.2,27.2,27,26.9,27.1,27.6,27.4,26.6,27,27,27.5,27.2,27,27,26.9]}},{"b":2,"v":{"total":[92.9,94.2,93.7,93.5,93.9,94.2,94.9,95.6,93.8,95.7,95,95.1,94.8,93.1,95],"script":[35,34,34.7,34.5,34.7,34.9,34.9,35.5,34,35.3,34.7,33.8,33.8,33.9,34.3],"paint":[13.8,13.5,13.5,12.9,12.8,13.2,11,12.6,12.4,14.2,13.2,12.8,12.8,12.2,12]}},{"b":3,"v":{"total":[81.6,89.9,89.3,89,88.3,90,89.1,89.3,89.2,89.8,89.5,83,89.6,89.1,89.2,88.3,83.5,89.5,88.6,88.8,90.1,89.1,89.2,88.7,88.7],"script":[34.8,34.6,36.1,36.3,34.6,34.7,34.9,34.7,35.2,34.6,34.3,35.7,35.5,33.3,34.7,33.6,34.1,37.8,35.3,36,36.6,34.9,34.8,35.1,36.3],"paint":[2.5,2,1.7,2.7,2.3,2.2,1.2,2,1.3,2.4,2.1,2,0.7,2.4,2.5,2.4,1.7,1.9,1.4,2.5,2.3,1.4,1.6,1.7,2.4]}},{"b":4,"v":{"total":[94.6,83.9,93.6,93.7,95.1,89.1,83.9,95.1,84.1,94.9,84.7,94.8,86.2,94.2,82.4],"script":[33.1,32.5,33,33.4,34.5,34.1,33,33.2,35,34.2,34.1,33.8,32.6,32.5,32.7],"paint":[15.9,14.7,16.9,15.6,15.5,15,14.6,16.4,15.3,14.3,15,14,14.9,14,15.7]}},{"b":5,"v":{"total":[31.2,91.3,89.9,91.8,88.2,89.4,94.8,34.1,94.7,89.8,95.3,94.6,95,89.6,89.5],"script":[17.9,17.7,17.8,17.6,18.2,18.5,17.7,17.4,18.5,18.3,18.2,17.7,19.1,17.6,17.8],"paint":[11.3,10.4,11.7,10.5,11,11.8,11.1,10.7,11.2,11.2,11.5,11.2,11.5,11.1,10.8]}},{"b":6,"v":{"total":[793.3,795.3,785.6,795.1,787.6,789.2,793.4,785.2,786,787.8,790.9,777.1,793.2,787.1,793.3],"script":[447.8,450.1,442.2,449.1,446.9,447.4,445.2,445.1,444.9,444.4,446.2,440,450.1,446.8,445.4],"paint":[288.9,290.3,288,292.1,287.4,285.7,293,287.4,286.4,288.2,289.5,280.2,289,284.5,289]}},{"b":7,"v":{"total":[116.6,112.8,114,111.9,112.8,119,114.4,113.7,99.8,114.2,116.4,115.2,115.8,101.8,115.7],"script":[60.3,58.7,59.6,59.2,60,59.5,59.6,59.5,60,58.4,60.2,60.2,59.3,62.5,60.1],"paint":[31.1,31.5,31.8,30.9,31,30.4,30.3,31.2,32.3,31,30.7,31.2,31.4,32.1,31]}},{"b":8,"v":{"total":[38,42.2,41,42.2,41.7,41.8,42.4,41.5,43.4,42.4,42.2,41.9,42,39.6,43.9],"script":[36.5,40.2,40,40.5,40.5,40.2,40.9,39.9,41.8,40.6,40.8,40,40.5,37.8,42.3],"paint":[1.4,1.9,0.6,1.1,1.1,1.5,0.3,0.8,1.5,1.8,0.3,1.7,0.7,1.8,0.7]}},{"b":9,"v":{"DEFAULT":[52.4]}},{"b":10,"v":{"DEFAULT":[65.4]}},{"b":11,"v":{"DEFAULT":[65.4]}},{"b":12,"v":{"DEFAULT":[61.9]}},{"b":13,"v":{"DEFAULT":[137.3]}},{"b":14,"v":{"DEFAULT":[12639]}},{"b":15,"v":{"DEFAULT":[2951.5]}},{"b":16,"v":{"DEFAULT":[70.7]}}]},
-{"f":14,"b":[{"b":0,"v":{"total":[26.5,26.1,26.4,26.3,26,25.8,25.7,25.8,25.7,25.9,26,25.9,25.7,25.9,26],"script":[2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.4],"paint":[23.8,23.4,23.7,23.6,23.3,23.2,23.1,23.1,23.1,23.2,23.4,23.1,23,23.3,23.2]}},{"b":1,"v":{"total":[28.9,28.8,29,28.6,28.3,28.6,28.6,28.8,28.7,28.8,28.8,28.5,29.3,29.3,28.7],"script":[4.9,4.7,4.7,4.7,4.5,4.6,4.7,4.8,4.7,4.7,4.8,4.6,4.9,4.6,4.5],"paint":[23.6,23.7,23.9,23.4,23.4,23.6,23.6,23.6,23.6,23.7,23.5,23.5,24.1,24.3,23.7]}},{"b":2,"v":{"total":[11.7,10.4,11.9,11.5,11.2,11.8,10.8,11.4,12,10.7,12.4,11.2,12.1,11.4,11.9],"script":[0.6,0.7,0.2,0.6,0.8,1.5,0.2,0.8,1,0.2,1.2,0.2,0.6,0.6,1.4],"paint":[9.4,8.4,9.9,9.9,9.5,9.5,9.4,9.9,10.3,9.5,9.6,8.9,9.4,9.5,8.9]}},{"b":3,"v":{"total":[3.6,2.1,2.4,2.4,2.5,2.8,2.4,2.5,2.2,2.4,2.1,1.9,2.9,2,2.2,2,3.5,3.9,2.4,2,1.6,2.4,2.6,2.4,3.1],"script":[0.7,0.1,0.6,0.5,0.1,0.6,0.1,0.1,0.1,0.6,0.5,0.8,1.1,0.1,0.1,0.1,0.1,0.9,0.8,0.1,0.1,0.8,0.8,0.1,0.8],"paint":[1.7,1.9,1.6,1,2.2,1.6,1.3,1.4,1.3,1.1,1.5,1,1.2,0.9,1.7,1.6,1.8,1.5,1.5,1,0.7,1.5,1,1.4,1.1]}},{"b":4,"v":{"total":[14.4,13.4,14.6,13.3,13.1,14.2,14,13.4,13.9,14.2,13.5,13.9,14.2,15.1,13.9],"script":[0.9,0.5,0.5,0.1,0.7,0.6,0.5,0.1,0.5,1.2,0.1,0.8,0.8,0.7,0.4],"paint":[12.5,11.8,12.7,11.6,10.4,13.4,12.5,11.9,11.9,12,11.9,12.4,12.4,13.8,12.5]}},{"b":5,"v":{"total":[10.8,11,10.7,10.7,10.6,10.7,10.7,10.3,10.9,10.4,10.5,10.4,10.6,10.6,10.8],"script":[0.1,0.3,0.1,0.3,0.3,0.3,0.3,0.1,0.5,0.1,0.1,0.1,0.3,0.2,0.4],"paint":[10.1,9.9,10,9.6,9.3,9.7,9.8,9.9,9.2,9.5,9.7,9.4,9.7,9.7,9.8]}},{"b":6,"v":{"total":[278.5,278.3,274.8,277.4,277.7,276.4,277.5,278.2,274.1,274.9,277.4,276.4,276.2,274.9,275.3],"script":[29.9,29.5,29,29.3,30.2,29.7,29.9,29.5,29.6,29.7,31.1,29.6,30.7,29.5,29.6],"paint":[242.6,243,240.3,242,241.8,239.9,241.8,242.7,238.7,239.2,240.5,241,239.8,239.6,240]}},{"b":7,"v":{"total":[28.5,28.7,29.3,29.1,28.7,28.2,29.5,28.8,29.4,29.6,29.7,28.9,28.7,28.9,28.9],"script":[2,2,2.1,2,2,2,2.1,2.1,2,2,2.1,2.1,2,2,2],"paint":[25.8,26,26.5,26.4,26,25.6,26.7,26,26.4,26.9,26.8,26.2,26,26.2,26.1]}},{"b":8,"v":{"total":[9.2,8.9,10,8.7,9.5,9,9.6,9,9.1,8.6,9.4,9.4,9.1,9.5,9.8],"script":[6.8,6.8,8.1,6.6,7.3,7,7.6,6.7,7.2,7.1,7,7.2,6.8,7.1,7.8],"paint":[2.2,1.3,0.3,0.7,0.7,1.1,0.9,1.9,1.6,0.2,1,1.9,2,1.5,1.4]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[18.3]}},{"b":14,"v":{"DEFAULT":[17]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[44.7]}}]},
-{"f":15,"b":[{"b":0,"v":{"total":[30.7,36.7,36.1,35.1,34.5,32.7,32.8,32.4,35.2,31.5,31.4,36.6,30.2,32.3,34.2],"script":[5.7,5.7,5.8,5.9,5.8,5.8,5.9,5.8,5.6,5.7,5.8,5.6,5.9,6,6.1],"paint":[23.5,23.7,24.1,23.9,23.5,23.8,24.2,24,23.4,24.1,23.9,23.3,24,24.7,25.1]}},{"b":1,"v":{"total":[34.1,40.3,34.9,38.3,40.3,34.3,39.7,38.2,38.6,38.9,39.9,34.4,39.2,41,34.8],"script":[10,9.7,10.2,10,10.3,10.1,10,9.9,10.3,10.2,10.3,10.2,10,10.2,10.1],"paint":[23.8,23.5,24.4,23.7,24.3,23.9,23.4,23.6,23.6,22.9,23.4,23.9,23.4,23.2,24.4]}},{"b":2,"v":{"total":[14.7,13.6,30.4,13.7,14.9,14,15.7,14.6,15.2,14.7,29.8,14.3,13.5,14.7,14.1],"script":[3.3,2.9,3.6,2.6,3.2,2.5,2.8,3,2.9,2.5,3,2.9,2.8,3.6,2.5],"paint":[10.9,10.6,10.7,10.1,11.5,10.2,11.2,10.8,10.1,10.1,10.7,10.5,10.5,10.7,11.4]}},{"b":3,"v":{"total":[3.8,4.2,3.5,3.6,4.6,3.5,4,4.3,4.2,3.7,3.8,3.2,3.6,3,3.5,4,3.4,6.8,3.3,4.1,3.7,3.3,3.2,3.9,4.1],"script":[1.3,1.6,1.8,1.3,1.6,1.5,1.9,2,1.5,1.5,1.9,1.4,1.2,1.1,1.6,1.1,1.7,1.1,1,1.1,1.3,1.1,2,1.6,1.7],"paint":[1.4,2.5,1.6,1.7,1.6,1.1,1.9,1.3,2.3,1.1,1.2,1.7,1.9,1.7,1.8,1.5,1.5,2.4,1.1,1.3,1.3,0.7,1,2.1,1.6]}},{"b":4,"v":{"total":[14.7,32.4,31.3,14.1,32.8,16.7,15.1,30.9,32.4,31.4,15.5,32.3,16.1,31.7,31.6],"script":[1.3,1.8,1.5,1,1.5,3.2,2.1,1.3,1.6,1.2,1.7,2.3,1.2,1.7,1.7],"paint":[12.8,14.2,14.2,12.1,16.1,13.4,12.9,14,14.1,13.4,12.8,12.5,14.8,13.1,12.8]}},{"b":5,"v":{"total":[12.3,11.3,11.4,10.6,10.3,10.5,10.3,11.3,11.9,10.6,11.1,10.8,10.4,10.2,10.7],"script":[0.9,0.7,1.9,0.8,0.7,0.7,0.6,1.8,2.5,0.9,0.7,0.7,0.7,0.7,0.8],"paint":[9.7,10.3,9.1,9.8,8.9,9.1,9.3,9,9.2,9.3,9.8,9.9,9.3,9.4,9.6]}},{"b":6,"v":{"total":[314.1,311.8,311.1,309.9,309.3,311.9,317.5,317.4,315.5,310.8,309.9,310.4,307.7,310.3,310.2],"script":[64.3,66.2,65.7,66.1,65.2,64.9,66.1,66.2,65.7,65.7,65.7,65.8,65.3,64.3,65.9],"paint":[241.3,241.4,241.1,240.7,240.1,242.8,242.7,242.7,241,240.8,241.3,241.5,239.5,238.4,240]}},{"b":7,"v":{"total":[42.1,38.5,38.9,34.2,38.4,39.5,39,42.6,38.6,38.5,38.6,34.6,39,39.5,33.9],"script":[6.5,6.6,6.7,6.9,6.5,6.6,7.2,6.8,6.5,6.7,6.4,6.5,6.6,7,6.8],"paint":[26.2,26.4,26.4,26.9,26.3,26.7,26.2,29.9,26.5,26.2,26.4,27.7,26.8,27,26.6]}},{"b":8,"v":{"total":[10.9,28.6,12.9,12.9,13.3,10.6,10.8,27.2,11.6,27,11.9,11.7,27.6,12.6,10.3],"script":[8.2,10.6,10.3,10.1,9.9,8.5,9.3,9.2,9.5,9.2,9.3,9,9.8,9,9.3],"paint":[2.1,0.7,2.3,1.5,1,1,1.4,1.9,2,1,1.2,1.7,1,2.5,0.2]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.7]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[1.6]}},{"b":13,"v":{"DEFAULT":[28]}},{"b":14,"v":{"DEFAULT":[48.3]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[74.3]}}]},
-{"f":16,"b":[{"b":0,"v":{"total":[25.4,25,24.8,25.4,25,25.5,26.3,25.8,25.3,24.9,25.1,25,24.8,25,24.7],"script":[1.8,1.7,1.7,1.8,1.8,1.7,1.7,1.8,1.8,1.8,1.8,1.8,1.7,1.8,1.7],"paint":[23.2,22.9,22.7,23.3,22.8,23.4,24.2,23.6,23.1,22.8,23,22.8,22.7,22.9,22.6]}},{"b":1,"v":{"total":[27.8,27.7,28.1,27.7,28,27.8,27.7,27.6,28.2,27.7,28.5,27.6,27.8,27.7,27.9],"script":[4,3.9,4,3.9,4.2,4,4,4.1,4.1,4.1,4.1,3.9,3.9,3.9,4],"paint":[23.3,23.4,23.6,23.4,23.4,23.4,23.3,23.2,23.8,23.2,24,23.3,23.6,23.4,23.4]}},{"b":2,"v":{"total":[11.9,12,11,11.3,11.8,12,11.6,11.6,11.6,11.1,11.1,11.6,11.7,12.5,11.3],"script":[0.9,0.7,0.7,0.5,0.9,0.6,1,0.6,0.7,0.2,0.8,0.9,0.9,0.6,0.2],"paint":[9.7,10.1,9.7,9.8,9.9,10.3,10,9.9,10.3,10,9.6,9.6,9.7,9.8,9.9]}},{"b":3,"v":{"total":[3.3,1.7,2.4,1.6,2,2.4,1.7,2.1,2,2.1,1.9,2,3.2,2,1.9,2.7,2.4,3.5,1.6,2.4,2.4,3.1,2.3,2,2.1],"script":[0,0,0.5,0,0.1,0.5,0,0.1,0.4,0.4,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0.3,0],"paint":[1.6,0.7,1.4,1.4,1.2,1.2,1.5,1.2,1.5,1.1,1.1,1.9,1.2,1.1,1.4,1.2,2.1,1.5,1.2,1.7,2.2,1.6,1.4,1.6,1.1]}},{"b":4,"v":{"total":[14.9,13.9,13.9,14.7,13.7,14.7,13.4,13.6,14.6,13.8,13.7,13.6,13.4,13.8,13.5],"script":[0.1,0.6,0.1,0.9,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.5,0.1],"paint":[13.2,12.2,12.8,12.3,11.4,13.9,12.2,13.2,12.7,12,12.3,11.8,12.4,11.3,12.3]}},{"b":5,"v":{"total":[11.3,11,11.3,11.5,10.9,10.9,10.8,11,11.2,11,11,11,10.9,11.3,10.5],"script":[0.4,0.3,0.5,0.5,0.5,0.3,0.4,0.3,0.5,0.5,0.5,0.5,0.5,0.4,0.2],"paint":[10.6,10,10.1,10.3,9.9,10,9.8,10.1,9.9,9.9,9.8,10.2,9.8,10.4,9.7]}},{"b":6,"v":{"total":[273.1,273.6,275.6,274.1,272.7,274.8,274.4,273.6,274.4,274.6,274.3,272.9,274.4,272.7,272.4],"script":[27.7,27.3,28.4,27.9,27.5,27.9,28.3,27.4,28.2,27.8,28.1,29,27.8,27.9,28.5],"paint":[239.7,240.2,240.8,240.1,239.4,241,240.4,240.1,240,240.6,239.8,237.9,240.8,239.2,238.1]}},{"b":7,"v":{"total":[29,28.6,28.4,28.6,28.5,28.4,29,28.8,28.7,28.9,28.5,28.1,28.6,28.4,28.3],"script":[2,2,2.1,2,2,2.1,2,2.1,2,2,2,2,2,2,2],"paint":[26,25.9,25.6,25.8,25.8,25.6,26.3,26,26,26.1,25.8,25.4,25.9,25.7,25.6]}},{"b":8,"v":{"total":[9.5,8.9,9.2,8.9,10.2,9.7,8.7,8.9,9.3,9.7,8.9,9.2,9.1,9.3,8.8],"script":[7.4,6.8,7.6,6.7,7.5,7.9,6.7,6.9,7.5,7.3,7.5,6.9,7.4,7.5,7.3],"paint":[1.8,1.2,0.2,1.1,1.9,1,0.9,1.6,1.6,1.4,0.2,1.3,0.7,0.7,0.6]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[18.6]}},{"b":14,"v":{"DEFAULT":[66]}},{"b":15,"v":{"DEFAULT":[16.5]}},{"b":16,"v":{"DEFAULT":[82.9]}}]},
-{"f":17,"b":[{"b":0,"v":{"total":[52.7,54.1,53.3,53.1,53.3,53.5,53.7,53.2,53.7,53.6,52.7,54.1,53.3,53.9,53.6],"script":[29.1,30.3,29.8,29.4,30.2,30.3,30.1,29.8,30.3,30.2,29.5,30.5,29.8,30.3,30],"paint":[23.1,23.4,23.1,23.3,22.7,22.8,23.2,23,23,23,22.8,23.1,23.2,23.2,23.2]}},{"b":1,"v":{"total":[56,57.3,56.7,56.5,55.9,56.7,57.7,56.8,55.9,56.5,56.2,57.1,56.7,56.5,56.7],"script":[31.8,33.1,32.5,32,32.1,32.7,33.5,32.6,31.7,32.3,32.3,32.9,32.5,32.6,32.7],"paint":[23.6,23.7,23.7,24.1,23.3,23.5,23.8,23.8,23.7,23.8,23.5,23.7,23.7,23.5,23.4]}},{"b":2,"v":{"total":[102.2,102,100.5,102.4,101,101.6,102.3,101.7,100.8,102.7,101,101.6,101.3,99.6,103.3],"script":[89.3,89.8,87.7,89.7,87.8,88.6,89.4,88.9,87.5,89.5,87.7,88.6,88.9,86.4,90.3],"paint":[11.5,10.3,11.4,11.4,11.1,12,11.2,11.1,11.8,11.7,11.6,10,10.1,11.6,11.5]}},{"b":3,"v":{"total":[90.3,90.7,88.7,88.2,88.6,88,89.4,90.4,89.2,88.8,89.7,89.4,87.8,87.8,88.7,90,89.3,89.7,89.5,89.8,89.7,88.6,89.3,87.1,88.9],"script":[86.7,87,85,85.3,85.5,84.3,85.5,87.1,85.8,85.5,85.4,85.6,84.6,84.7,85.4,86.8,86.1,86.5,86.4,86.5,85.7,84.9,85.5,83.7,85.6],"paint":[2,1.6,1.4,1.6,2,2,2.2,2.2,1.8,1.4,3.2,2.2,1.3,2.1,1.4,1.3,1.5,1,1.2,1.9,1.7,2.3,1.2,1.9,2]}},{"b":4,"v":{"total":[101.5,100.8,101.3,101.3,101.7,100.9,100.9,100.8,101.5,112.5,102.1,100.2,101.7,101.6,101.7],"script":[86,85.9,86,86.2,87,85.5,85.8,85.5,85.9,97.3,86.1,85.6,86.7,86.6,86.6],"paint":[13.1,13.1,13.6,13.3,12.5,13.9,13.6,13.3,13.2,13.7,12.8,12.4,14,13.2,13.8]}},{"b":5,"v":{"total":[53.8,58.5,53.8,54.5,53.3,53.1,54.7,53.6,52.3,53.9,53,53.4,54.6,54.9,53.7],"script":[42.1,46.5,41.6,41.7,41.8,41.6,42.7,42,40.5,41.9,41.6,41.9,42.6,42,41.8],"paint":[10.7,11.3,11.4,12,10.6,10.2,11.3,11.1,11,11.1,10.7,10.5,11,11.7,11.3]}},{"b":6,"v":{"total":[550.5,553.3,547.2,544.8,545,548.8,545,546.8,548.6,546.1,546,546,545.2,546.7,549],"script":[304.3,307.3,303.8,301.1,301,304.4,302.4,303.7,303.2,302.5,301.4,301,300.7,302.9,304],"paint":[239.7,240.1,237.6,238,238.4,238.7,237,237.6,239.5,238,239.2,239.5,239,238.3,239]}},{"b":7,"v":{"total":[79.8,79.9,79.2,79.8,79.2,79.8,79.2,79.9,78.9,80.6,79.4,79.8,79.7,79.7,80.7],"script":[52.2,51.9,51.4,51.7,51.6,51.8,51.2,51.7,51.3,52.2,51.6,51.7,51.9,51.6,51.9],"paint":[26.9,27.3,27,27.3,26.9,27.2,27.2,27.4,26.9,27.5,27,27.3,27.1,27.3,28]}},{"b":8,"v":{"total":[12.9,13.1,12.5,11.4,12.2,12.1,11.4,11.8,11.6,11.6,11.9,12.2,13.1,13.4,12.5],"script":[11.3,10.9,11.3,9.8,10.9,10.4,10.1,10,10.6,10,10.6,10.5,11.3,11.8,11.1],"paint":[1.5,2,1,1.4,0.7,1.6,1.2,1.6,0.3,1.2,1.2,1.5,1.7,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[28.9]}},{"b":14,"v":{"DEFAULT":[25.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[59.3]}}]},
-{"f":18,"b":[{"b":0,"v":{"total":[35.3,34.2,35,34.1,33.7,33.7,34.5,33.9,33.6,33.6,33.4,33.9,34,34.3,33.4],"script":[10.2,10,10.3,10.1,10.4,9.9,10.8,10.6,9.8,9.9,9.8,9.8,10,10.1,9.7],"paint":[24.6,23.7,24.2,23.6,22.9,23.3,23.3,22.9,23.4,23.3,23.3,23.7,23.5,23.8,23.3]}},{"b":1,"v":{"total":[39.3,38.6,39.9,40.1,39.2,40,39.3,39.1,38.8,39.4,39.3,39.4,39.7,38.9,39.2],"script":[14.2,14.2,14.8,14.7,14.6,14.8,14.7,14.6,14.1,14.4,14.9,14.3,14.8,14.4,14.5],"paint":[24.6,23.7,24.2,24.8,23.9,24.6,24,23.9,23.9,24.4,23.8,24.5,24.3,23.8,24.1]}},{"b":2,"v":{"total":[14.1,13.9,14.7,13.8,14.2,14.6,15.2,13.6,13.6,13.6,14.3,13.7,14.6,16.1,14.5],"script":[2.2,2.6,2.2,2.6,2.6,2.5,2.6,1.6,2.5,2.7,2.4,2.7,2.6,2.8,3],"paint":[10.8,10.2,11.1,10,10.2,11.1,11.4,10,9.4,9.6,9.8,10.3,10.9,11.6,10.9]}},{"b":3,"v":{"total":[5.9,3.4,2.9,3,5,3.1,2.8,3.1,3.3,2.9,2.8,3.6,3.3,2.1,6,3,3.3,3.2,5.2,3.7,2.7,2.6,3.1,2.9,5.3],"script":[0.8,1,0.6,0.7,0.2,0.5,0.9,1.1,0.5,1.1,0.9,0.9,0.6,0.2,0.8,1.2,0.6,1,0.2,1.2,0.5,0.2,0.9,0.2,0.2],"paint":[1.2,1.3,1.7,1.8,2.3,1.6,1.7,1.6,0.9,0.7,1.6,1.7,1.5,0.7,1.5,1,2.1,1.5,1.7,1.2,1.2,1,1.4,2,1.3]}},{"b":4,"v":{"total":[17.4,16.6,16.6,17.3,17.5,17.5,16.7,16.5,17.2,17.4,16.9,17,17.1,17.2,17.3],"script":[3.1,3.2,2.9,3.1,2.8,3,2.7,3,3.1,3.5,2.9,2.9,2.9,3,3],"paint":[12.8,12.1,12.1,13.3,14,12.9,12.8,12,12.6,12.3,12.4,12.1,12.9,13.1,12.8]}},{"b":5,"v":{"total":[12.7,12.6,12.3,12.1,12.7,12.6,12.7,12.6,13.4,13.4,12.8,12.1,12.4,12.1,12.5],"script":[1.6,1.8,1.5,1.5,1.8,1.8,1.8,1.5,2.8,1.7,1.9,1.5,1.8,1.5,1.8],"paint":[10.3,10.2,9.7,9.8,10.2,10,10.1,10.2,9.8,11,10.2,10,9.8,9.7,9.9]}},{"b":6,"v":{"total":[337.1,336.3,338.4,337.6,339.1,337.6,335.7,335.8,335.8,335,337.1,338.2,335.2,336.8,339],"script":[99.9,98.2,100,99.3,98.5,99.1,98.2,98.1,98.7,98.1,98.5,98.9,97.2,99,98.8],"paint":[229.4,230.7,230.6,230.5,233.1,231,229.8,230.5,229.6,229.4,230.6,231.7,230.5,230,232.2]}},{"b":7,"v":{"total":[41,40.7,42.3,40.6,40.4,39.9,40.8,40.7,40,40.3,40.2,40.5,40.1,39.9,39.8],"script":[11.7,12.1,12.1,11.5,12.1,11.7,11.6,11.6,11.7,11.7,11.5,11.5,11.7,11.7,11.7],"paint":[28.2,27.6,29.1,28.1,27.3,27.3,28.2,28.1,27.3,27.7,27.7,27.9,27.4,27.3,27.1]}},{"b":8,"v":{"total":[10.8,11.6,12.7,10.9,10.8,11.9,11,11.2,11.7,12,11.2,11.1,11.1,12.1,10.5],"script":[9.2,9.3,10.4,9.4,9.3,9.5,9.2,9,8.6,9.1,9.8,8.8,9,9.8,8.5],"paint":[1.1,1.1,0.9,0.9,0.2,1,0.3,2,2.4,1.8,0.4,2.1,1,1.3,0.9]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[4.6]}},{"b":11,"v":{"DEFAULT":[4.6]}},{"b":12,"v":{"DEFAULT":[1.3]}},{"b":13,"v":{"DEFAULT":[36.4]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[12.3]}},{"b":16,"v":{"DEFAULT":[62.2]}}]},
-{"f":19,"b":[{"b":0,"v":{"total":[25.2,25.4,25.2,25.4,25.2,25.3,25.3,25.4,25.1,25.2,25.3,25.1,25.1,25.5,25.3],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2],"paint":[23.7,23.8,23.7,23.8,23.6,23.7,23.7,23.8,23.6,23.7,23.8,23.5,23.6,24,23.8]}},{"b":1,"v":{"total":[27.3,27,27.2,27.2,27.2,27.3,27.5,27.3,27,27.4,27.1,27.3,27.2,27.5,27.5],"script":[3,2.9,3.1,3.1,3,3,3.1,3,2.9,3.1,2.9,3,3.1,3.1,3.1],"paint":[23.9,23.7,23.7,23.7,23.9,23.9,23.9,23.9,23.7,23.9,23.8,23.8,23.8,24,23.9]}},{"b":2,"v":{"total":[11.7,11.2,10.9,11.4,11.7,10.4,12.7,11.2,11,11.1,11.6,11.5,12,11.3,10.7],"script":[0.5,0.8,0.3,0.3,0.7,0.1,0.5,0.5,0.8,0.1,1.1,0.5,0.1,0.1,0.1],"paint":[10.2,9.2,10.3,10.3,9.7,9.3,10.8,10.4,9.3,10.2,9.4,9.9,10.1,9.6,9.4]}},{"b":3,"v":{"total":[1.6,1.7,1.9,1.8,1.6,1.9,2.4,2.2,1.9,2,2.1,1.9,2.1,2.2,2.4,1.9,2.3,2.7,1.4,1.5,2,2.1,1.8,2.2,1.8],"script":[0,0,0,0.7,0,0,0,0,0,0,0,0,0,0,0.5,0,0.4,0.4,0,0,0.9,0,0,0,0],"paint":[1.1,1.6,1.1,1,0.7,1.1,2,1.5,1.4,1.5,0.9,1,1.1,1.3,1.3,1.7,1.7,1.1,1.3,1,1,1.9,1,1.1,1]}},{"b":4,"v":{"total":[13.9,13.7,13.7,13,12.7,13.6,14.3,14.1,15,12.9,14.2,13.1,13.8,13.1,14],"script":[0.5,0.1,0.8,0.1,0.1,0.1,0.1,0.6,0.6,0.1,0.1,0.3,0.1,0.1,0.1],"paint":[12.4,12.3,12.2,12.1,11.4,11.9,11.7,11.1,12.5,11.5,12.7,11.6,12,10.9,13]}},{"b":5,"v":{"total":[10.6,9.9,11,10.3,10.8,10.6,10.5,10.6,10.7,10.5,10.4,10.4,10.9,10.3,10.6],"script":[0.2,0.1,0.1,0.1,0.4,0.3,0.2,0.3,0.1,0.2,0.1,0.4,0.4,0.2,0.2],"paint":[9.7,9.3,10,9.6,9.8,9.7,9.6,9.8,10.2,9.7,9.8,9.3,9.5,9.5,9.9]}},{"b":6,"v":{"total":[262.4,261.9,261.6,262,260.6,260.6,260.9,260.9,262.5,261.1,260.1,259.7,261.3,260.2,260.4],"script":[14.7,15,14.8,14.7,14.8,14.7,14.9,15,14.9,14.9,15,14.5,14.6,15,15.1],"paint":[241.5,241.1,240.9,241.1,239.9,240.1,240,239.9,241.8,240,239.4,239.1,240.8,239.3,239.6]}},{"b":7,"v":{"total":[29.4,28.6,28.3,28.2,28.3,27.7,29.1,28.1,28.7,28.6,28.3,27.9,28.2,29.4,28],"script":[1.3,1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.3,1.3,1.3,1.2,1.3,1.3,1.2],"paint":[27.4,26.6,26.4,26.3,26.3,25.8,27.1,26.2,26.7,26.6,26.4,26,26.3,27.4,26.1]}},{"b":8,"v":{"total":[9.4,9.7,9.1,9.5,8.7,9.6,8.9,9.3,8.8,9.2,9.8,9.4,9.9,8.5,8.6],"script":[7,8,7.5,7.6,6.6,7.6,7.2,7.5,6.8,6.8,8,7.6,7.5,7,6.6],"paint":[1.8,0.2,1,1.7,1,1.7,0.9,0.7,0.4,1.5,1.2,1.6,0.8,0.6,0.8]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[12.6]}},{"b":14,"v":{"DEFAULT":[9.9]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[43.1]}}]},
-{"f":20,"b":[{"b":0,"v":{"total":[27.4,27.3,27.7,27.5,27.4,27.5,28,27.7,27.7,27.8,27.4,27.9,27.7,27.7,27.6],"script":[3.8,3.9,4,3.9,3.8,3.9,4.3,3.8,3.8,3.9,3.8,3.9,3.9,3.9,4],"paint":[23.2,23.1,23.4,23.3,23.2,23.2,23.3,23.6,23.6,23.5,23.3,23.5,23.4,23.4,23.3]}},{"b":1,"v":{"total":[30.2,30.3,30.7,30.6,31.1,31,30.1,31,31.1,30.9,31,30.1,30.9,30.7,30.7],"script":[6.1,5.7,6,6.5,6.6,6.4,5.7,6.3,6.5,6.2,6.5,5.7,6.3,6.2,6.4],"paint":[23.5,24,24.2,23.5,24,24,23.8,24.1,24,24.1,23.9,23.9,24,23.9,23.8]}},{"b":2,"v":{"total":[13,12.5,12.1,11.6,13.2,12.6,12.3,11.8,12.3,12.1,13.1,12.2,12.4,12.6,11.8],"script":[1.3,1.2,0.6,0.2,1,1.2,1,0.9,0.6,1,1,1,1.2,0.9,0.8],"paint":[9,10.3,10.4,9.9,11.6,10.5,9.7,10,10.7,10.1,10.7,9.7,9.8,10.5,9]}},{"b":3,"v":{"total":[2.2,2.4,1.9,2.9,2.1,2.4,1.7,2.4,1.8,2.4,2.6,2.1,2.4,3.5,2.3,2,4.5,2.2,2.3,2.1,2.3,2.4,2.2,2.6,1.8],"script":[0.1,0.1,0.1,1,0.1,0.1,0.1,0.9,0.1,0.1,0.8,0.8,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.2,0.1],"paint":[1.9,1.8,1,1.3,1.9,1.3,1.5,1,1.6,1.1,1.2,0.7,1.9,2,2.2,1.2,1.7,1.3,1.8,1.3,1.5,1.8,1.4,1.2,1.7]}},{"b":4,"v":{"total":[13.6,13.6,13.1,13.9,13.4,13.5,13.4,13.6,13.5,13.7,13.2,13.4,12.9,13.8,13.2],"script":[0.1,0.7,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1],"paint":[13.2,12,11.9,12.8,12.3,12.2,11,12.4,12.5,12.5,12.1,12.2,12.2,13.4,12.1]}},{"b":5,"v":{"total":[10.4,10.4,10.8,10.7,10.6,10.7,10.4,10.7,11.6,10.5,10.3,10.7,11.4,10.6,10.4],"script":[0.1,0.3,0.4,0.1,0.2,0.1,0.1,0.1,0.4,0.1,0.2,0.3,0.1,0.3,0.2],"paint":[9.1,9.5,9.7,9.9,9.7,10.1,9.7,9.9,10.3,9.5,9.3,9.9,10.8,9.6,9.5]}},{"b":6,"v":{"total":[298,295.6,294.5,295.5,294.8,294.8,293.1,295,294.9,294.9,294.9,293.7,296,295.2,296.5],"script":[52.1,50.5,49.7,49.7,48.8,48.5,48.1,49.9,48.7,48.6,49.1,49.8,50,49.5,49.3],"paint":[240,239.2,239.1,239.2,240.2,240.3,238.8,239.4,239.4,240.1,239.6,238.1,240.2,239.8,240.6]}},{"b":7,"v":{"total":[33.3,31.8,32.1,32.8,31.8,32.6,31.8,31.3,31.6,31.6,32.6,31.8,32.3,31.6,31.1],"script":[4.5,4.1,4.3,4.2,4.4,4.3,4.3,4,4.2,4.3,4.5,4.1,4.4,4.1,4],"paint":[28.1,27,27.2,27.9,26.7,27.6,26.8,26.7,26.8,26.5,27.4,27.1,27.2,26.8,26.4]}},{"b":8,"v":{"total":[10.1,9.8,10.7,9.7,10.4,10.6,11.1,10.9,9.8,10.1,11.7,9.8,10.9,10.8,10.3],"script":[8.2,8.2,8.5,7.5,8.6,8.8,8.9,8.7,8,8,9.1,8.1,8.7,8.5,8.2],"paint":[1.2,0.2,0.9,1,1.3,1.2,0.8,1.2,0.8,1.5,1.7,0.2,1.9,1.5,0.7]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[19.9]}},{"b":14,"v":{"DEFAULT":[17.4]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[49.9]}}]},
-{"f":21,"b":[{"b":0,"v":{"total":[30,29.8,30.3,30,30,30.1,30.3,29.9,29.8,30,29.7,29.6,30,30.5,30.2],"script":[6,5.9,5.9,6,5.9,6,5.8,6,6,6,5.8,5.9,6,6,6],"paint":[23.2,23.1,23.7,23.2,23.5,23.2,23.5,23.3,23,23.2,23,22.9,23.2,23.7,23.4]}},{"b":1,"v":{"total":[34.7,34,34.9,34.6,35.3,34.3,34.1,34.2,34.4,33.9,34.2,34,34.2,34.5,33.7],"script":[9.7,9.3,10,9.7,9.8,9.5,9.5,9.6,9.8,9.6,9.6,9.7,9.6,9.8,9.4],"paint":[24.4,24.1,24.3,24.4,24.8,24.2,24,24,24,23.7,24,23.7,23.9,24.1,23.6]}},{"b":2,"v":{"total":[19.1,20,19,18,19.1,18.5,18.7,19,18.3,18.4,18.6,17.8,18.9,19.7,18.8],"script":[6.7,6.9,6.6,6.9,6.7,6.5,7,6.3,6.7,6.2,6.6,6.7,5.7,6.2,7.2],"paint":[10.6,11.8,10.9,10,10.9,9.6,10,10.6,9.2,9.7,10.2,8.5,11.4,10.3,9.2]}},{"b":3,"v":{"total":[10.7,10.8,10.1,10.6,10.4,10.1,10.7,10.5,9.8,9.9,9.9,10,9.8,10.2,9.6,10.2,10.6,10.3,10.4,10.6,10.9,10.4,10.6,10.7,9.5],"script":[7.9,7.6,8.1,7.9,7.8,7.9,8.3,7.7,7.3,7.7,7.2,7.9,7.3,7.8,7.1,8,7.9,7.6,8,7.7,7.6,7.7,8.1,8.5,7.3],"paint":[2,2,1.7,2.3,2.2,1.5,0.9,1.5,0.8,1.1,1.6,1.1,0.7,1.3,1.3,1.1,1.8,2,1.3,1.8,1.1,1.2,2,1.1,1]}},{"b":4,"v":{"total":[22.8,22.5,23.3,23,23.3,22.6,23.3,22.3,23,22.9,22.3,23.1,21.7,22.7,23.3],"script":[8.1,8.1,7.9,7.9,8.5,8.2,8.7,8.2,8.7,8.7,8.2,8.3,8,8.6,8.7],"paint":[12.5,12.1,13.9,12.8,12,12.8,13.4,12.5,12.4,11.8,12.3,13,12.3,13.2,12.5]}},{"b":5,"v":{"total":[14.9,14.4,14.4,14.6,14.4,15.3,15.7,14.9,14.7,14.8,14.6,14.8,15.1,14.9,14.6],"script":[4.2,4.2,4.1,4.1,4.1,4.3,4.1,4.2,4.2,4.2,4.2,4.2,4.5,4.2,4.1],"paint":[10.2,9.3,9.3,10.1,10,10.3,10.7,10.2,10.1,10.1,10.1,9.9,9.5,10.2,10.1]}},{"b":6,"v":{"total":[297.7,294.9,298.4,298.7,297.9,296.4,295.4,294.3,299.6,295.2,297.9,299.1,295.2,295.8,301.6],"script":[47.7,46.4,48.1,48.7,47.4,45.3,45.3,45.5,47.8,46.9,47.9,48.2,46,48.1,48.4],"paint":[243.6,242.3,243.7,243.3,243.9,244.5,243.4,242,245.7,242.1,243.7,244.1,243,241.5,246]}},{"b":7,"v":{"total":[35,34,34.5,34.9,33.8,35,34.6,34.7,34.5,34.3,34.4,35.2,35.4,34.8,35.3],"script":[7.2,6.7,6.7,6.9,6.6,7.5,6.8,7,6.8,6.8,7,7,7.4,7.5,6.9],"paint":[26.9,26.4,26.9,27.1,26.3,26.5,26.9,26.8,26.8,26.7,26.5,27.3,27,26.4,27.5]}},{"b":8,"v":{"total":[21.2,21.5,23.7,21.9,23.1,22.7,25,24.5,23.9,24.3,26.3,21.5,21.6,22.6,22.1],"script":[19,19.3,21.4,19.7,20.7,19.8,22.2,22.3,21.8,22.1,23.4,19.6,19.2,20.4,19.9],"paint":[1,0.3,2,2,1.2,0.9,2.5,0.7,1.1,0.7,2.7,1,1.3,1.9,0.3]}},{"b":9,"v":{"DEFAULT":[1.9]}},{"b":10,"v":{"DEFAULT":[5.4]}},{"b":11,"v":{"DEFAULT":[5.5]}},{"b":12,"v":{"DEFAULT":[5.6]}},{"b":13,"v":{"DEFAULT":[37.7]}},{"b":14,"v":{"DEFAULT":[276.7]}},{"b":15,"v":{"DEFAULT":[78.2]}},{"b":16,"v":{"DEFAULT":[358]}}]},
-{"f":22,"b":[{"b":0,"v":{"total":[26.5,26.6,26.5,26.9,26.8,26.8,26.4,27.2,26.7,27.2,26.9,26.7,27,26.4,26.7],"script":[2.3,2.3,2.3,2.4,2.4,2.6,2.4,2.7,2.5,2.7,2.6,2.6,2.4,2.4,2.4],"paint":[23.8,23.9,23.8,24.1,24,23.8,23.7,24.1,23.8,24.2,23.9,23.7,24.2,23.6,24]}},{"b":1,"v":{"total":[30.4,30.7,30.6,30.4,30.8,30.6,30.7,30.3,30.8,30.9,30.1,30.9,30.7,30.6,30.5],"script":[5.5,5.4,5.4,5.5,5.7,5.6,5.5,5.5,5.5,5.7,5.4,5.5,5.5,5.5,5.3],"paint":[24.4,24.7,24.7,24.3,24.6,24.5,24.6,24.2,24.7,24.6,24.1,24.8,24.6,24.6,24.6]}},{"b":2,"v":{"total":[12.8,11.5,12.5,11.6,12.4,12.2,11.8,12,11.9,12,11.8,12.2,12.8,11.7,11.5],"script":[0.6,0.3,1.2,0.9,1,0.9,0.6,1.1,1.1,1,0.8,0.6,1.3,1,1.2],"paint":[10.6,10.3,9.6,9.3,10.1,10.5,10,9.7,9.9,10.4,10,10.5,10.9,9.5,9.1]}},{"b":3,"v":{"total":[2.7,2.6,1.9,2.6,2.8,2.2,2.5,2,2.2,2.7,2,2.4,1.9,2.2,2.2,2.4,2.5,2.3,2.5,2.7,3.9,2.7,2.4,2.7,3],"script":[0.2,0.7,0.8,0.7,0.7,0.1,0.1,0.1,0.4,0.9,0.1,0.5,0.1,0.1,0.1,0.1,0.5,0.6,0.1,0.8,0.9,0.7,0.6,0.6,0.5],"paint":[1.8,1.8,1,1.7,1.9,2,1.9,1.1,1.4,1.3,1.6,1.3,1.7,1.2,1.9,0.3,1.2,1.3,2.1,1.8,1.3,1.9,1.6,1.6,1.1]}},{"b":4,"v":{"total":[16.1,16.2,16.3,17,16,16.4,17.4,16.1,16.3,16.1,16.6,16.5,16,16,16.5],"script":[2.6,2.2,3,2.5,2.4,3.4,3.2,2.6,2.7,2.7,2.9,2.8,3.1,2.4,3.1],"paint":[11.8,11.7,11.6,13.8,12.1,11.8,12.4,12,12.9,11.9,12.7,11.6,11.7,12,12.4]}},{"b":5,"v":{"total":[11.7,11.6,11.4,11.4,11.6,11.1,11.7,11.5,11.9,11.4,11.1,11.2,11.8,11.4,11.5],"script":[1.1,0.8,0.8,1,1.1,0.9,0.8,1.2,1,1.1,0.8,0.9,0.9,0.9,1.1],"paint":[9.8,9.9,9.7,9.8,10.1,9.6,10.3,9.8,10.5,9.7,9.4,9.8,10.1,9.6,9.7]}},{"b":6,"v":{"total":[279.9,276.7,278.8,279.8,277.3,279.5,278.6,276.6,278.5,275.7,276.9,276.7,276.2,278,277],"script":[32,30.5,31.1,31.4,29.9,29.5,30.4,30.2,31.1,30.7,30.4,29.4,29.6,31,30.7],"paint":[242,240.5,241.1,242,240.8,243.3,241.5,240.1,241,239.1,240.5,241.1,240.5,241,240.1]}},{"b":7,"v":{"total":[32.1,32,31.5,32.2,31.8,32.3,32.4,33.4,31.8,31.8,32.5,32,32.1,32,31.7],"script":[3.7,3.8,3.7,4.1,3.7,4.1,3.8,4,3.7,3.8,3.8,3.7,3.8,3.7,3.8],"paint":[27.7,27.4,27,27.4,27.4,27.5,27.8,28.6,27.4,27.3,27.6,27.5,27.5,27.6,27.2]}},{"b":8,"v":{"total":[9.3,9.8,9,9.2,9.7,7.8,9.2,9.3,9.7,9.1,9.8,8.5,9.1,8.7,8.9],"script":[7.7,8,7.2,7.4,7.9,6.1,6.8,7.9,7.9,7.5,7.7,7.3,7.6,7.1,7.2],"paint":[0.3,0.4,0.7,0.9,1.3,1.4,1,0.2,0.9,1,0.8,0.6,0.2,0.4,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.2]}},{"b":11,"v":{"DEFAULT":[2.2]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[16]}},{"b":14,"v":{"DEFAULT":[18.2]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[49.4]}}]},
-{"f":23,"b":[{"b":0,"v":{"total":[48.5,48.5,45.8,49.5,49.4,48.7,49.9,48.6,49.4,47.7,49.1,45.9,49,49.7,47.7],"script":[20.1,20,19.8,20.5,20.6,20.1,19.9,20.5,19.9,20.4,20.2,20.3,20.1,20.2,20.1],"paint":[22.9,22.8,23.3,22.6,23,23,22.9,22.8,22.8,22.6,22.7,22.7,22.6,23.3,22.4]}},{"b":1,"v":{"total":[58.8,54.3,56.1,56,54.7,53.5,51.8,54.7,57.5,54.1,55.6,54.6,55.2,57.3,52.2],"script":[23.6,24.2,24.1,24.8,24.4,24.6,24.3,24.8,24.6,23.7,23.6,24.4,24.6,24.5,23.8],"paint":[25.2,25,25.2,25.3,24.9,25.2,24.9,25.1,25.1,25.4,26.2,25.1,25.4,25,25.1]}},{"b":2,"v":{"total":[34.8,34.6,35.8,35,36.1,19.1,34.2,36,37.3,36.2,19.5,35.4,35.7,35.2,35.3],"script":[7.2,7.4,8.5,7.6,8,7.1,7.6,8.2,8.3,8.9,7.3,7.3,7.3,7.5,8.3],"paint":[11.3,11.1,11.3,11.4,12.3,11.9,9.3,11.2,12.9,10.9,10.2,12.6,11.8,11.5,10.9]}},{"b":3,"v":{"total":[3.5,7.1,3.4,2.5,2.3,3.6,2.7,6.4,2.7,6,2.3,3.4,4.3,3.3,8.2,4.1,2.8,2.5,3.4,4.7,6.2,2.7,3,2.2,8],"script":[1,1.1,0.2,0.2,0.2,0.2,0.8,0.3,1,0.5,0.2,0.3,0.1,0.8,0.1,0.2,0.5,0.9,0.2,0.5,0.2,1,1.1,0.5,0.2],"paint":[2,1.3,1.3,2.1,1.1,0.4,1.8,2,1.4,2,2,0.6,1.1,1.5,2.2,2.3,0.8,1.4,3.1,1.5,1.1,1.6,1.3,1.3,1.3]}},{"b":4,"v":{"total":[25,39.7,38.6,40.2,39.9,23.6,25.4,39.6,39.2,40.9,40.9,24.9,39.4,40.1,39.6],"script":[10.4,9.5,9.3,9.9,9.5,9,9.3,9.5,9.4,10.2,10.3,9.5,9.4,10.1,9.7],"paint":[12.5,13.8,12.4,13.9,13.4,12.4,14.2,13.2,13.4,14.7,14.4,13.5,13.7,13.9,13.8]}},{"b":5,"v":{"total":[16.4,11.1,11.5,15.1,11.5,11.8,11.5,11.4,14.7,11.5,13.2,12.8,12.3,12.1,13.2],"script":[0.6,0.2,0.3,0.4,0.5,0.2,0.5,0.4,0.3,0.5,0.4,0.6,0.3,0.2,0.2],"paint":[11.1,10.1,10.2,10.8,9.9,11,10.3,10.6,10.7,10.2,9.8,9.9,10.8,10.2,10.7]}},{"b":6,"v":{"total":[428.3,426.8,429.9,425.8,428.1,424.1,428.4,426.3,432.2,427.3,428.7,423.4,426.2,426,426.7],"script":[184.9,179.6,184.3,183.4,184.6,181,184.4,182.2,189.7,184.8,182.5,181.2,183.3,184,182.5],"paint":[237.1,238.8,237.7,236.2,235.2,236.9,236.7,238.2,236.3,236.3,238,237.7,235.7,234.2,239.4]}},{"b":7,"v":{"total":[60.9,51,55.7,55.8,55.4,52.4,55.9,51.2,50.2,55.2,54.9,54.8,50.1,55.9,55.1],"script":[21,21.9,20.9,21.6,21.2,21.3,20.9,21.2,21,21,21,20.5,21.2,21.3,20.8],"paint":[28.9,28.8,29,28.9,28.6,30.7,29.6,29.7,28.8,28.8,28.3,28.8,28.6,29.1,28.9]}},{"b":8,"v":{"total":[39,17,39.9,40.1,17.5,39.7,41.4,18,18.8,16.8,40.8,38.8,38.2,38.3,39],"script":[15.9,16.3,15.7,16.8,16.4,16.2,17.3,16.1,17.6,14.4,17,15.4,14.8,14.9,15.9],"paint":[0.5,0.6,1,0.9,0.3,1.2,0.9,0.8,1,1.6,1.3,1.2,1.2,1.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[7.3]}},{"b":11,"v":{"DEFAULT":[7.4]}},{"b":12,"v":{"DEFAULT":[1.3]}},{"b":13,"v":{"DEFAULT":[63.4]}},{"b":14,"v":{"DEFAULT":[43.7]}},{"b":15,"v":{"DEFAULT":[13.5]}},{"b":16,"v":{"DEFAULT":[66]}}]},
-{"f":24,"b":[{"b":0,"v":{"total":[31.8,31.7,32.4,31.9,31.6,32.3,31.6,31.8,31.8,31.8,31.7,31.7,32.2,31.6,31.6],"script":[7.1,7,7.1,7.2,7.1,7.2,7,7,7.3,7.1,6.9,7.2,7,7,7],"paint":[24.1,24.2,24.7,24.2,24,24.5,24.1,24.2,24,24.1,24.2,24,24.6,24,24]}},{"b":1,"v":{"total":[35.2,35.4,35.2,35.5,35.1,34.9,34.7,35,35.3,34.8,35.4,34.6,34.8,35.3,35.1],"script":[10.3,10.2,10.3,10.4,10,9.9,10,9.9,10,9.8,10,9.8,9.9,10,10.5],"paint":[24.4,24.6,24.3,24.5,24.6,24.4,24,24.5,24.7,24.4,24.8,24.1,24.2,24.7,24]}},{"b":2,"v":{"total":[14,14.8,13.6,14,13,13.1,13.4,13,12.9,13.5,13.8,13.4,12.7,14.4,13.2],"script":[2.3,2.1,1.8,2.1,1.6,1.7,1.6,1.5,1.9,1.3,1.8,2.4,1.6,2.3,1.9],"paint":[10.7,10.9,10.5,11.2,10,10.3,10.3,10.6,10,11.4,10.8,10,9.5,11.4,10.4]}},{"b":3,"v":{"total":[5.4,2.8,3.2,2.8,3,2.5,2.8,2.4,3.1,3.2,3,3.2,2.4,2.5,3.5,3.2,3.7,3.9,3,3.2,3,2.4,3,2.8,3],"script":[1.1,1.1,1.2,0.5,0.9,0.8,0.7,0.6,1.1,0.9,0.9,1.3,1.1,1,0.9,0.8,1.2,1.2,1.4,1,1.1,0.2,0.9,1.3,1.4],"paint":[1.5,1.3,1.4,0.4,2,1.6,1.4,1.6,1.2,1.6,1.1,1.7,0.7,1.4,2.5,0.4,1.9,0.9,0.9,2.1,1.4,1.8,1,1,0.7]}},{"b":4,"v":{"total":[15.2,15.2,14.9,14.8,15.4,15.7,15.3,15.5,15.4,15,15.7,15,14.3,14.4,15.4],"script":[1.5,2.1,1,1.1,2.2,1.9,1.4,1.5,2,1.7,2.1,1.9,1.5,2.1,2.2],"paint":[12.5,11.9,13.1,12.7,11.8,12.9,13,12.7,11.9,12.4,12.3,11.4,12.2,10.5,12]}},{"b":5,"v":{"total":[11.3,11.3,12.8,11.7,11.6,11.6,11.9,12.7,11.5,11.8,11.3,11.6,11.7,11.6,11.6],"script":[1.3,1.3,1.5,1.3,1.3,1.3,1.3,2.4,1.3,1.3,1.3,1.3,1.3,1.3,1.2],"paint":[9.4,9.4,10.8,9.7,9.9,9.7,10.1,9.4,9.6,9.7,9.5,9.7,9.8,9.3,9.7]}},{"b":6,"v":{"total":[328.8,325.2,327.9,324,325.8,323.4,326.1,325,324.7,324.3,324.7,324.7,324.4,325,323.5],"script":[79.7,78.3,78.2,77.7,78.3,76.7,79.3,77.6,77.8,77.7,77.2,77.6,78.6,78,77.6],"paint":[242.4,240.7,242.3,239.9,241.6,240.6,240.3,241.1,240.2,240.3,241,241.4,239.3,240,239.8]}},{"b":7,"v":{"total":[35.6,36.3,35.7,36.1,36.3,36.8,36.1,36.7,35.8,36.7,37.2,37.4,36.6,36.1,36.6],"script":[7.4,7.5,7.5,7.5,7.7,7.5,7.5,7.9,7.6,7.8,7.9,7.8,7.8,7.8,7.4],"paint":[27.3,27.8,27.3,27.6,27.6,28.3,27.7,27.9,27.4,28,28.3,28.6,27.8,27.3,28.3]}},{"b":8,"v":{"total":[13.6,14,14.2,13.7,15.1,13.7,13.7,13.1,14.4,13.1,14.9,14.7,14.1,15,14.4],"script":[11.6,11.7,12.2,12.1,12.9,11.4,11.7,11.6,11.7,12,12.4,12.6,12,12.9,12.2],"paint":[0.3,0.4,1,0.7,1.8,1.2,0.7,0.4,2.4,0.9,1.4,0.6,0.6,0.6,1.3]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[4]}},{"b":11,"v":{"DEFAULT":[4]}},{"b":12,"v":{"DEFAULT":[2.7]}},{"b":13,"v":{"DEFAULT":[24]}},{"b":14,"v":{"DEFAULT":[135.4]}},{"b":15,"v":{"DEFAULT":[40.1]}},{"b":16,"v":{"DEFAULT":[182.8]}}]},
-{"f":25,"b":[{"b":0,"v":{"total":[26.1,26.1,25.7,26.2,26.3,25.9,25.9,25.6,25.8,26.1,25.7,26,26.2,26.1,26],"script":[1.7,1.7,1.7,1.6,1.7,1.7,1.7,1.6,1.7,1.6,1.7,1.7,1.7,1.7,1.6],"paint":[23.8,24,23.7,24.2,24.2,23.8,23.8,23.6,23.8,23.8,23.7,23.9,24.1,24,23.7]}},{"b":1,"v":{"total":[28.5,28.4,28.3,28.4,28.5,28.5,28.3,28.4,28.8,28.3,28.7,28.3,28.2,28.5,28.8],"script":[3.8,3.7,3.7,3.6,3.8,3.7,3.6,3.6,4.1,3.5,3.7,3.7,3.6,3.6,3.8],"paint":[24.3,24.4,24.1,24.4,24.3,24.4,24.3,24.3,24.2,24.4,24.5,24.2,24.2,24.5,24.3]}},{"b":2,"v":{"total":[11.9,10.9,11.8,10.9,11.3,11,12,11.8,11.7,11.3,11,11.3,11.7,11.2,11],"script":[0.1,0.1,0.5,0.5,0.7,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.9,0.1,0.1],"paint":[9.4,10,10,9.8,9.3,9.4,9.5,10.6,10.1,9.6,9.6,9.8,9.6,9.9,9.9]}},{"b":3,"v":{"total":[2.3,2.8,2.1,2.7,2,2.3,2.1,1.6,2,2,1.6,2,2,1.7,2.2,2.1,2.5,2.1,2.4,1.4,2.2,1.9,2.1,2,2.4],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[1.4,2.6,1.3,2.5,1.4,2.2,0.5,1.5,1.7,0.9,1.4,1.2,1.3,1.6,1.2,1.9,1.4,1.9,1.9,0.7,0.8,1.8,1.9,1.9,2.1]}},{"b":4,"v":{"total":[14.1,13.2,13.6,12.6,12.9,13.7,14,13.9,13.3,13.2,13.7,13.5,13.6,13.5,12.9],"script":[0.8,0.1,0,0,0.1,0,0.1,0.4,0,0.1,0.6,0,0.3,0,0],"paint":[12.1,11.2,12,11.2,11.9,12.6,13.3,12.5,12.1,12.2,12.4,12.8,12.1,12.3,11.8]}},{"b":5,"v":{"total":[10.6,10.7,10.9,10.4,10.7,10.5,10.2,10.4,10,10.6,10.6,10.4,10.8,10.6,10.4],"script":[0.2,0.1,0.1,0.2,0.3,0.1,0.1,0.2,0.1,0.3,0.1,0.1,0.2,0.3,0.1],"paint":[9.8,10,10,9.5,9.8,10,9.9,9.3,9.3,9.7,9.7,9.9,9.8,9.8,9.7]}},{"b":6,"v":{"total":[268.7,266,267.5,266.8,269,268.9,267.8,268.3,267.3,268.7,266.4,273,266.3,267.7,266.7],"script":[17.6,17.5,17,17.2,17.4,17.6,17.5,17.1,17.4,17.4,17.1,17.4,17.4,17.2,17.2],"paint":[244.7,242.3,244.3,243.4,245.3,244.8,243.9,244.7,244,245.3,243,249,242.6,244.2,243]}},{"b":7,"v":{"total":[28.5,29.1,28.5,29.4,29.1,29.1,29.8,29.3,29.1,29.9,29.4,28.7,29.2,29.2,29],"script":[1.8,1.7,1.7,1.7,1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.7,1.7],"paint":[26.1,26.6,26.2,27,26.7,26.7,27.3,26.8,26.7,27.4,27,26.3,26.8,26.7,26.6]}},{"b":8,"v":{"total":[8.8,11.5,9.5,9.5,10.3,9.5,10.1,9,10.9,9.8,9,9.4,9.9,9.4,9.1],"script":[6.9,8.8,7.5,7.6,8.1,7.7,7.8,6.9,8.6,7.7,7.4,7,7.6,7.5,7.2],"paint":[1,0.4,0.3,1.1,1.1,0.5,1,1.5,1.6,1.3,0.7,1.4,1.5,0.3,0.3]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[2]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[13.1]}},{"b":14,"v":{"DEFAULT":[16.4]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[44.3]}}]},
-{"f":26,"b":[{"b":0,"v":{"total":[25.6,25.6,25.6,25.5,25.4,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.4,25.6,25.5],"script":[1.7,1.7,1.7,1.7,1.6,1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.7],"paint":[23.5,23.5,23.5,23.5,23.4,23.5,23.5,23.6,23.5,23.5,23.6,23.6,23.4,23.6,23.5]}},{"b":1,"v":{"total":[28.3,27.9,28.1,28.7,28.2,28.1,28,27.8,28.1,27.7,28.2,27.9,27.6,27.8,27.9],"script":[3.5,3.5,3.6,3.6,3.6,3.5,3.6,3.4,3.6,3.6,3.5,3.5,3.6,3.4,3.5],"paint":[24.4,24,24.1,24.7,24.2,24.2,24,24,24.1,23.7,24.3,24,23.6,24,24]}},{"b":2,"v":{"total":[11.8,10.5,11.3,11,11.7,11.2,11.5,12.1,11.8,11,11.3,11.2,11.3,10.7,11.5],"script":[1,0.1,0.1,0.5,0.4,0.9,0.1,0.1,1,0.1,0.1,0.7,0.8,0.1,1.1],"paint":[9,9.8,10.1,9.4,10,9.6,10,10.5,9.4,9.8,10,9.1,9.3,9.7,10.1]}},{"b":3,"v":{"total":[1.3,1.9,2,2.4,1.8,2,1.9,2.3,2.3,3,1.6,1.8,2,1.7,2.4,3.7,1.9,2,2.4,2.4,1.6,1.8,2.4,3.2,1.9],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0.8,0,0,0,0,0,0.7,0,0,0],"paint":[0.6,1.4,1.2,2.3,1.3,1.4,1.7,2.2,1.3,1.7,0.7,1,1.8,1.5,1.2,1.4,1.7,1.9,2.2,1.3,1.4,1,1.1,1.6,1.1]}},{"b":4,"v":{"total":[13.3,12.9,12.6,13,13.4,13,13.8,13,13.5,13.4,12.5,14,13.2,13.4,13.2],"script":[0,0.1,0,0.1,0.1,0.2,0.1,0,0,0.3,0.1,0.1,0.5,0.1,0],"paint":[12,11.2,11.3,11.7,11.6,11.7,12.6,12.1,12.2,11.9,11.1,13,11.9,12.3,12.4]}},{"b":5,"v":{"total":[10.3,10.3,10.6,10.4,10.7,10.5,10.3,10.4,10,10.4,10.9,10.3,10.9,10.9,10.8],"script":[0.3,0.3,0.2,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.6,0.1,0.4],"paint":[9.3,9.4,9.7,9.8,9.9,10,9.7,9.6,9.3,10,9.9,9.6,9.7,10,9.5]}},{"b":6,"v":{"total":[264.4,263.2,264.2,266.5,265.4,266.8,266,265.6,265.4,265.2,265.8,265.2,270.6,264.6,264.7],"script":[17.4,17.4,17.3,17.4,17.5,17.1,17,17.3,17.4,17.2,17.4,17.5,17.4,17.6,17.4],"paint":[241.1,239.8,240.9,243,241.5,243.5,243.1,242.3,242.2,242,242.5,241.6,246.8,241.1,241.2]}},{"b":7,"v":{"total":[29.1,29.7,28.4,28.8,29.9,28.6,28.9,29.5,28.8,28.9,28.9,28.8,28.6,28.7,28.5],"script":[1.7,1.6,1.7,1.7,1.7,1.7,1.7,1.8,1.8,1.7,1.8,1.7,1.7,1.7,1.7],"paint":[26.7,27.3,26,26.4,27.5,26.2,26.2,27,26.4,26.4,26.4,26.3,26.2,26.2,26.1]}},{"b":8,"v":{"total":[9.4,9,8.8,8.6,8.5,8.8,9.6,8.6,8.9,10,9.3,8.5,8.6,9,8.7],"script":[7.5,7,6.7,6.8,7,7.2,7.1,6.7,7,8,6.9,7.1,6.7,7.1,6.2],"paint":[1,1.8,1.1,1,0.6,0.2,1.4,1,1.7,1.6,1.3,1.1,0.9,1,1.4]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[13]}},{"b":14,"v":{"DEFAULT":[16.4]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[50]}}]},
-{"f":27,"b":[{"b":0,"v":{"total":[25.9,25.7,25.6,25.6,25.7,25.7,25.4,25.6,25.5,25.3,25.5,25.6,25.9,25.5,25.5],"script":[1.7,1.7,1.7,1.7,1.7,1.7,1.6,1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.7],"paint":[23.8,23.7,23.6,23.6,23.7,23.6,23.4,23.5,23.5,23.3,23.5,23.6,23.8,23.4,23.5]}},{"b":1,"v":{"total":[28.3,28.1,28.1,28.3,27.9,28.1,27.9,27.8,28.4,28,28.2,28.2,28.3,28.1,28.5],"script":[3.6,3.5,3.5,3.6,3.4,3.6,3.6,3.5,3.6,3.6,3.6,3.5,3.5,3.5,3.8],"paint":[24.3,24.2,24.1,24.3,24.1,24.1,23.9,23.9,24.3,24.1,24.2,24.3,24.3,24.2,24.2]}},{"b":2,"v":{"total":[10.8,10.8,11.1,11.6,10.7,11.2,11.1,11,10.8,11.4,11.7,10.9,11,10.4,11.5],"script":[0.1,0.1,0.1,0.9,0.1,0.1,0.6,0.6,0.1,0.6,0.1,0.5,0.3,0.3,0.5],"paint":[9.8,9.4,8.8,9.5,9.3,8.9,9.5,9.8,9.3,9.7,9.8,9,9.8,9.1,9.5]}},{"b":3,"v":{"total":[2.4,2.3,2.2,2.6,2.1,1.8,2.8,1.7,1.9,3,1.6,3.1,3.1,1.9,2.6,2.5,2.4,1.5,2.4,1.6,2.3,3.7,2.6,1.9,2.1],"script":[0,0,0,0.8,0.6,0,0.6,0,0,0.9,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0.5],"paint":[1.6,1.5,0.3,1,0.8,1,0.9,0.7,1.7,2,0.7,0.6,1,1.1,2.1,2.4,0.9,1.1,1.3,0.7,2.1,1.3,2.5,0.4,0.7]}},{"b":4,"v":{"total":[13.6,13.9,14.1,14.2,12.9,13.5,13.1,13.1,13.7,12.9,12.8,12.9,13.7,13.1,13.1],"script":[0.3,0,0.1,0.1,0.2,0.1,0,0.1,0.1,0.1,0.1,0.1,0.9,0.1,0.4],"paint":[12.3,12.8,12.1,12.6,11.5,12.1,12.1,12.2,12.7,12.5,11.5,11.3,11.8,12.4,11.8]}},{"b":5,"v":{"total":[10.4,10.7,10.8,10.6,10.8,10.4,10.8,10.3,10.5,10.8,10.6,10.4,10.3,10.5,10.5],"script":[0.1,0.3,0.3,0.3,0.1,0.1,0.3,0.3,0.1,0.4,0.4,0.2,0.4,0.1,0.1],"paint":[9.7,9.5,9.9,9.7,10.1,9.7,10.1,9.4,9.5,9.4,9.7,9.6,9.3,9.8,9.8]}},{"b":6,"v":{"total":[270.2,268.9,263,264,271,269.7,262.5,263.6,272,261.5,262.9,271.5,265.3,272.1,262.2],"script":[17.3,16.9,17.5,17.3,17.3,17,17.1,17.2,17.3,17.2,17.1,17,16.6,17.3,17.3],"paint":[246.7,245.8,239.4,239.8,247.5,246.6,239.4,239.3,248.1,238.6,240,248.3,242.7,248.6,239]}},{"b":7,"v":{"total":[28.9,28.7,29.6,28.8,28.5,28.8,28.3,29.4,29,28.5,29.8,28.9,28.7,28.8,28.7],"script":[1.7,1.8,1.7,1.8,1.7,1.8,1.6,1.7,1.7,1.7,1.7,1.7,1.8,1.8,1.7],"paint":[26.4,26.1,27.3,26.3,26,26.3,26,27,26.5,26.1,27.4,26.5,26.2,26.3,26.3]}},{"b":8,"v":{"total":[9.3,8.6,8.4,8.9,8.5,9.1,8.7,8.9,8.9,9.2,9.6,9.2,8.4,8.8,8.8],"script":[7.2,7,6.5,6.9,7,7,6.6,6.9,7,7.8,7.8,7,6.7,7.3,6.8],"paint":[0.9,0.2,0.5,0.7,0.8,1.2,0.3,1.7,1.6,0.2,0.8,2,1.1,0.8,1.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[13]}},{"b":14,"v":{"DEFAULT":[18.2]}},{"b":15,"v":{"DEFAULT":[6]}},{"b":16,"v":{"DEFAULT":[50.1]}}]},
-{"f":28,"b":[{"b":0,"v":{"total":[35.5,35.4,35.6,36.1,34,34.8,36.7,36.6,34.7,33.8,36.7,35.2,33.8,35.3,35],"script":[11.6,12.1,11.9,11.7,10.5,11.2,11.6,12.1,11.5,10.1,12.1,11.6,10.1,11.9,11.3],"paint":[23.2,22.8,23.2,23.9,23.1,23,24.6,24,22.8,23.2,24.1,23.1,23.3,23,23.1]}},{"b":1,"v":{"total":[37.2,38.4,38.7,37.8,37.2,37.9,37.3,37.9,37.9,37.6,37.8,37.3,37.4,37.9,37.4],"script":[13.1,14,13.8,13.5,13.2,13.3,13.1,13.3,13.3,12.9,13.3,13,13.3,13.5,13.1],"paint":[23.5,23.8,24.3,23.8,23.4,24,23.6,24.1,24.1,24.2,23.9,23.6,23.5,23.8,23.7]}},{"b":2,"v":{"total":[12.5,11.6,11.9,11.7,11.2,11.6,12.2,12.5,11.7,12.3,12,13.2,11.9,11.7,11.9],"script":[0.8,0.6,0.9,0.3,0.9,0.9,0.2,1,0.2,0.5,1,1.2,0.2,0.5,0.7],"paint":[10.7,9.8,9.8,10.2,9.3,10.1,10.6,10.7,9.6,10.6,9.4,10.4,10.8,10.2,10.4]}},{"b":3,"v":{"total":[4.5,1.8,2.3,2.5,1.9,1.7,1.6,1.9,2.2,2.1,1.9,1.9,2.3,1.2,2.1,2.1,2.1,1.5,2.2,2.7,2.3,1.7,2.4,1.9,2.8],"script":[0.1,0.3,0.6,0.1,0,0,0.1,0.1,0,0.7,0.1,0.1,0,0.2,0.7,0.1,0.4,0,0.1,0,0.4,0.1,0.1,0,0],"paint":[2.1,1.4,1.6,2.4,1,1.6,1.5,1.7,1.3,1.3,1,1.1,2.1,1,1.3,1,1.6,1.4,1.3,1.3,1.8,0.7,2.2,1.1,1.2]}},{"b":4,"v":{"total":[14.1,14,12.8,13.1,13.1,14.4,13.7,14.3,13.3,13.9,14.2,12.9,13.7,13.8,13.6],"script":[0.1,0.4,0.1,0.1,0.6,0.8,0.1,0.8,0.4,0.1,0.9,0.1,0.8,1,0.1],"paint":[12.4,13,11.7,11.8,11.6,12,12.1,12.5,12,12,12.1,12.3,11.8,11.8,12.6]}},{"b":5,"v":{"total":[10.5,10.5,10.3,10.4,10.7,10.8,10.8,10.7,10.4,10.8,10.6,11.6,10.9,10.7,11],"script":[0.1,0.1,0.1,0.2,0.1,0.1,0.4,0.1,0.2,0.1,0.2,0.3,0.1,0.3,0.3],"paint":[9.7,9.7,9.6,9.6,10.2,9.9,9.7,9.9,9.4,10,9.8,10.4,10.1,9.5,10]}},{"b":6,"v":{"total":[354.6,351.1,350.7,350.8,351.3,347.5,343.9,345.6,350.5,354.4,351.6,348.8,351.5,350,347.6],"script":[111.5,111.7,110.6,111.7,111.1,107,106.2,106.2,110.9,109,111.4,108.9,110.6,110.4,110.1],"paint":[237.1,232.9,233.9,233.3,233.3,233.9,231.8,233.5,233,238.2,234.6,234.2,233.9,233.6,231.8]}},{"b":7,"v":{"total":[39,38.5,39,39.1,38.3,38.5,38.4,38.1,38.2,38.1,38.8,39,38,38,38.3],"script":[10.6,10.7,11,11.1,10.4,10.6,10.5,10.6,10.6,10.6,10.9,10.6,10.7,10.6,10.4],"paint":[27.4,27,27.1,27.1,27.1,27.2,27,26.6,26.8,26.5,27,27.5,26.5,26.6,27]}},{"b":8,"v":{"total":[11.9,11.6,13,11.2,10.5,12.5,12.4,12.5,12.2,11.3,11.5,11.7,13.3,11,13.5],"script":[10.4,9.2,11.7,9.3,9.2,9.8,10.7,9.8,10.4,10.2,10.6,10.3,11.2,9.2,11.2],"paint":[0.7,1.4,1.2,1.1,0.2,1.1,1,1.6,1.6,0.7,0.9,1.4,0.5,0.9,1.2]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[4.7]}},{"b":11,"v":{"DEFAULT":[4.7]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[38.9]}},{"b":14,"v":{"DEFAULT":[24.7]}},{"b":15,"v":{"DEFAULT":[8.1]}},{"b":16,"v":{"DEFAULT":[62.7]}}]},
-{"f":29,"b":[{"b":0,"v":{"total":[29.7,34.9,35.1,35.3,32.5,35.2,35.1,30.1,31.1,31.5,30.2,36.5,31.5,37,37.4],"script":[5.7,5.5,5.5,5.4,5.6,5.5,5.5,5.6,5.6,5.8,5.6,5.3,5.7,5.4,5.5],"paint":[23.4,23.2,23.8,23.5,23.6,23.8,23.7,23.8,23.8,24,23.9,23,24,23.3,23.4]}},{"b":1,"v":{"total":[33.9,35.1,37.8,33.8,37.1,36.5,35.9,33.2,34.3,34,33.1,34.6,35,36.1,35.2],"script":[7.8,8.3,8,7.6,8.6,8.2,7.9,8.2,7.6,7.9,8.1,8,7.5,7.6,8.1],"paint":[23.7,24.2,24.1,23.7,24.4,24.3,23.8,23.7,24.2,24.4,23.6,23.8,23.9,24.1,24.5]}},{"b":2,"v":{"total":[30.5,29.6,14.2,29.6,13.5,14.2,15.5,30.6,14.7,15,13.8,13.3,13.8,14.8,13.9],"script":[2.1,2.4,3.1,2.1,2,3.2,3.4,3.4,3.4,2.8,2.1,2.3,2,2.4,2.1],"paint":[10.2,10.5,10.8,10,9.9,10.7,10.1,10,9.8,11.2,10.2,9.5,10.7,11.4,10.8]}},{"b":3,"v":{"total":[9.4,12.7,2.9,4.4,4.6,8.6,3.1,5.5,5.5,3.2,3.4,8.4,3.3,4.1,7.9,9.5,3.1,8.2,8.5,3.9,6.5,8,3.3,9.1,7.6],"script":[0.6,0.6,0.6,1.5,1.1,0.9,0.6,0.9,0.9,0.8,0.6,0.6,0.7,1.3,1.5,0.3,1.6,0.7,2.1,0.9,1.2,1,1.6,1.2,0.7],"paint":[1.2,1.6,1.9,1.9,1.3,2.1,2,1.9,1.5,2,1.1,1.4,1.3,1,1.1,1.9,1.3,2,1.5,1.5,1.3,1.6,1.1,2.4,1]}},{"b":4,"v":{"total":[34.1,14.4,14.7,15.7,31.8,15,31.3,15.5,30.7,15.2,31.8,15.2,14.1,31.1,16.3],"script":[1,1,1.5,1.7,1.5,0.9,1,2.1,1.3,0.8,1.2,1.5,0.9,1.9,1.2],"paint":[15.6,11.5,11.7,12.4,13.1,13.1,14.1,12.9,12.4,12.7,13.5,12.5,12.3,13.5,12.7]}},{"b":5,"v":{"total":[11.6,16,15.4,13,11.6,12.7,15,15.1,12,13.9,13.1,12.1,11.8,14.5,15.3],"script":[0.3,0.7,0.6,0.6,0.4,1.4,0.4,0.8,0.6,0.9,0.6,0.6,0.6,0.4,0.5],"paint":[10.3,10.5,9.7,10.6,10,10.3,10.3,10.3,10.7,10.7,10.9,10.7,10.4,10.6,10.4]}},{"b":6,"v":{"total":[738,311.8,755.2,743,314.5,309.3,315.8,317.1,751.9,313.6,312,314.4,311,311.4,315],"script":[64,66.4,64.7,64.5,66.2,65.2,67.1,66.8,64.7,64.6,66.1,64.6,64.2,63.6,68.1],"paint":[245.7,239.1,245.1,242.7,238.4,237.1,239.7,241.1,244.1,239.6,239.3,240.4,240.1,241.2,239.7]}},{"b":7,"v":{"total":[39.6,39.4,39.7,38.9,40.6,41,40.7,39.3,39.7,39.5,40.8,40.5,34.6,41.7,40.8],"script":[7,7,6.8,7.1,7.3,7,7.3,7.1,7.2,6.9,7.2,7.1,6.7,6.9,6.9],"paint":[26.5,26.6,27.3,26,26.4,26.9,26.3,26.5,26.7,26.4,27.6,26.6,27,27.5,26.5]}},{"b":8,"v":{"total":[32.1,30.7,31.5,30.9,10.7,10.9,10.5,11.8,30.3,29.5,32.2,31.2,30.6,30.2,11.4],"script":[8,7.7,7.9,9,9.2,8.3,7.9,9.5,8.6,7.6,9.2,8.2,7.7,8.7,8.2],"paint":[1.7,0.9,1.9,1.3,0.4,0.3,1.9,0.3,0.3,0.9,1.1,1.2,2,1.3,0.7]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.7]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[29.2]}},{"b":14,"v":{"DEFAULT":[22.5]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[53.2]}}]},
-{"f":30,"b":[{"b":0,"v":{"total":[46.4,46.3,46.4,46.7,46.4,46,46.2,46.5,46.3,46.3,45.7,46.5,46.5,45.8,46.8],"script":[22.6,23,22.8,23.1,23.1,22.9,22.4,23,23,23.3,22.7,23.1,23.3,22.5,23.5],"paint":[23.4,22.9,23.2,23.2,22.9,22.7,23.4,23.1,22.9,22.7,22.6,22.9,22.8,22.9,23]}},{"b":1,"v":{"total":[58.3,59.1,59.6,58.2,58.4,58.9,59.3,57.9,58.7,58.8,58.9,58.2,59.2,58.7,58.5],"script":[32.8,33.5,33.9,32.7,33.2,33.3,33.6,32.5,33.1,33.2,33.2,32.8,33.6,32.9,33.1],"paint":[25.1,25.1,25.3,25,24.8,25.1,25.1,24.9,25.2,25.1,25.3,24.9,25.1,25.4,25]}},{"b":2,"v":{"total":[18.8,18.4,18.6,19,19.5,18.8,19.8,19.5,20.3,18.2,19,19.4,19.9,19.9,18.9],"script":[6.3,6.9,7.3,6.4,7.3,6.6,7,7.8,7.6,6.6,7.2,7,7.6,7.1,7.6],"paint":[11.6,10.1,10.6,11.4,11,10.9,11.5,10.4,11.1,10.4,11.1,10.9,11,10.9,10.2]}},{"b":3,"v":{"total":[15.2,15.8,17.2,15.4,15.6,15.7,15.4,15.2,16.4,15.6,15.1,16.5,14.8,15.3,15.5,15.4,16.1,15.7,15.3,15.9,15.5,16.8,15.1,16.7,15.7],"script":[12.7,13,13.2,12.6,12.7,12.4,12.5,12.3,12.6,11.9,11.6,12.7,12.4,12.2,13,12.7,12.8,13,12.2,12.5,11.9,13.3,12.4,12.5,12.7],"paint":[1.4,1.9,2.6,1.9,1.6,2.1,2.1,1.8,1.7,2.8,2,2.5,1.6,1.2,1.9,2,2.5,2,2.2,1.9,2.1,3.2,1.8,2.1,2.3]}},{"b":4,"v":{"total":[23.5,24.3,25.9,23.9,24.1,24.1,23.5,24.4,24.2,25.8,24.3,24.4,24.2,24.4,24.7],"script":[8.1,8.8,9.1,9,8.7,8.6,8.5,8.8,8.8,9.1,8.3,8.4,8.2,8.7,9.1],"paint":[14.5,13.6,15.7,13.7,14,14.5,14,13.6,14.3,14.8,14.4,14.5,14.9,14.7,13.9]}},{"b":5,"v":{"total":[17.2,17.8,17,17,16.7,16.8,17.4,17,16.9,17,16.8,16.8,16.4,16.5,16.4],"script":[5.3,5.1,5.1,5.5,5.2,5.3,5.5,6,5.3,5,5.2,5.3,5.3,5.3,5.3],"paint":[11.1,12,11.5,10.8,10.5,10.9,11,10.5,10.6,11.6,10.6,10.9,9.9,10.1,9.8]}},{"b":6,"v":{"total":[423.4,425.4,422.3,424.9,426,426.2,422.6,427.6,424.7,423.4,423.6,426.5,425,427.4,426.2],"script":[174.9,176.1,175.6,175.2,176.5,177.6,175.5,179.3,176.4,176.3,175.4,177.4,175.1,177.1,179.4],"paint":[242.7,242.4,241.2,244.1,243.6,242.6,241.5,242.6,242.6,241.9,242.5,243.6,243.6,244.6,241.1]}},{"b":7,"v":{"total":[57,57.3,57.3,58,57.7,57.2,56.9,57.3,57.3,57.6,56.4,56.7,56.7,57.2,56.8],"script":[28,28,28.3,27.5,28.4,28.3,28.1,28.4,28.3,28.5,27.9,28.1,27.9,28.1,28.1],"paint":[28.2,28.4,28.2,29.6,28.5,28.1,28,28,28.2,28.3,27.7,27.7,28,28.3,27.8]}},{"b":8,"v":{"total":[21.4,20.8,20.9,20.8,20.1,20.8,20.5,21.5,21,21.5,22.9,20.5,21.9,21.5,21.8],"script":[19.1,18.7,19.6,18.5,18.1,19.3,18.4,19.9,19.1,19.7,20.6,18.6,20.4,19.3,19.9],"paint":[1.8,0.7,1.2,1.4,1.7,0.8,2,1.1,0.6,1.7,0.8,1.8,0.4,2,1.1]}},{"b":9,"v":{"DEFAULT":[8.3]}},{"b":10,"v":{"DEFAULT":[14.2]}},{"b":11,"v":{"DEFAULT":[14.2]}},{"b":12,"v":{"DEFAULT":[9.1]}},{"b":13,"v":{"DEFAULT":[63.8]}},{"b":14,"v":{"DEFAULT":[1109.4]}},{"b":15,"v":{"DEFAULT":[223.3]}},{"b":16,"v":{"DEFAULT":[1002.3]}}]},
-{"f":31,"b":[{"b":0,"v":{"total":[31.7,31.4,32.1,31.6,31.2,31.9,31.3,31.5,31.9,31.1,31.1,31.6,31.5,31.7,31.4],"script":[7.2,7,7,7,7.1,7.1,7,7.1,7.5,7.1,7.1,7.3,7.1,7.3,7.1],"paint":[23.9,23.9,24.6,24,23.6,24.3,23.8,23.9,24,23.5,23.4,23.7,23.9,23.9,23.8]}},{"b":1,"v":{"total":[34.9,34.8,34.7,34.6,34.1,34.4,34.5,34,34.3,33.8,34.8,34.6,35.2,34.7,34],"script":[9.5,9.5,9.9,10.1,9.4,9.5,9.5,9.4,9.6,9.2,9.5,9.6,9.8,9.6,9.7],"paint":[24.8,24.6,24.3,23.9,24.1,24.3,24.5,24,24.1,24,24.8,24.4,24.8,24.6,23.7]}},{"b":2,"v":{"total":[13.7,13.4,14.6,14.5,14.3,13.8,14,15,14.1,13.8,14.1,14.5,14.9,14.6,14.2],"script":[2.1,2.1,2.5,2.7,2.4,2.4,2.3,2.5,2.5,2.6,2.5,2.7,2.5,2.1,2.7],"paint":[10.3,9.8,10.8,10.4,10.9,10.1,10.4,10.8,10.3,10.3,10.5,10.3,10.9,11.6,9.2]}},{"b":3,"v":{"total":[4.1,3.3,3,3.1,2.7,2.8,3.2,3.3,4,3.1,3,3.1,3.1,3.5,3.5,3.4,3.3,3.3,3.1,3.3,4,3.4,3.3,3.4,2.9],"script":[1.4,1.4,1.1,1.4,0.6,0.9,1,1,1.7,1,1.2,1,1.3,1.5,1.3,1.5,1.2,1.6,1.3,0.9,1.8,0.9,1.4,1.3,0.6],"paint":[1.5,1.2,0.3,1.5,2,1.7,1.8,1.8,2.1,1.9,1.7,1.2,1.1,1.4,2.1,1.1,1.2,1.5,1.2,2.3,1.8,1.4,1.5,1.4,1.3]}},{"b":4,"v":{"total":[14.8,15.3,15.2,14.3,14.8,14.4,14.8,14.7,15.6,16.7,15.7,14,15,15.9,14.3],"script":[1.7,1.5,1,0.9,1.1,1,1.4,1.2,0.9,1.4,1.7,0.9,1.1,1.4,0.9],"paint":[12.3,13.1,13.4,12.6,12.6,11.8,12.8,12.5,12.9,13.6,12.4,12,12.5,13.4,11.5]}},{"b":5,"v":{"total":[12.3,10.9,11.5,11.5,11,11.1,11.3,11.6,11.2,11.2,12.3,11.3,11.2,11.4,11.4],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.6,0.6,1.6,0.6,0.6,0.6,0.6],"paint":[11.1,10,10.5,10.5,9.9,9.8,10.1,10,10.2,10,10.1,9.9,10,10.2,10.1]}},{"b":6,"v":{"total":[321.7,322.7,319,322.7,322.9,320.6,319.9,320.2,322.6,321.7,320.7,321.5,322.4,319.6,320.8],"script":[77.5,79,77.6,80.1,78.3,78.4,77.9,77.8,78.9,79.2,78,79.5,79.4,77.8,76.9],"paint":[238.2,237.3,235.4,236.4,238.6,236.2,236.1,236.3,237.5,236.4,236.7,236.5,236.8,236,237.7]}},{"b":7,"v":{"total":[35.3,35.2,34.9,35.1,34.6,35.2,36.2,35,34.9,34.8,35.3,34.8,35.8,35.1,35.1],"script":[7.6,7.5,7.5,7.5,7.2,7.4,7.7,7.9,7.3,7.5,7.6,7.5,7.4,7.6,7.6],"paint":[26.8,26.7,26.4,26.7,26.4,26.7,27.6,26.3,26.7,26.4,26.9,26.4,27.5,26.6,26.6]}},{"b":8,"v":{"total":[10.3,10.4,11.3,10.6,11.9,12,10.7,10.6,11,11.2,12.2,12,11.4,10.7,11.6],"script":[8.8,8.3,8.8,8.5,9.7,10,9.1,8.3,8.8,9.5,10,9.4,9.5,8.8,9.4],"paint":[0.3,1.3,2.2,1.2,1.1,0.8,0.7,1.8,0.7,0.3,1.3,1.2,0.4,0.9,1.5]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[29.7]}},{"b":14,"v":{"DEFAULT":[7.7]}},{"b":15,"v":{"DEFAULT":[3.1]}},{"b":16,"v":{"DEFAULT":[39.8]}}]},
-{"f":32,"b":[{"b":0,"v":{"total":[32.8,32.8,32,33.4,32.3,32.8,32.1,32.9,32.4,31.4,32.2,32,33,32.3,32.1],"script":[6.9,7,6.6,7.5,7,7,6.9,6.9,6.9,6.6,6.8,6.6,7.1,7,6.6],"paint":[25.3,25.2,24.8,25.3,24.7,25.2,24.7,25.5,25,24.2,24.9,24.9,25.3,24.7,24.9]}},{"b":1,"v":{"total":[37.3,35,35.9,35.7,37.2,36.5,36.2,35.6,36.7,35.6,35.6,34.8,35.6,36,36],"script":[11.1,9.6,10,9.8,11.1,10.6,10.5,9.9,10.5,9.9,9.9,9.9,9.9,9.9,10.1],"paint":[25.6,24.8,25.3,25.2,25.5,25.3,25.1,25.1,25.6,25.1,25,24.4,25.1,25.4,25.3]}},{"b":2,"v":{"total":[13.4,12.4,14.4,12.9,12.5,11.4,12.8,12.7,13.9,12.6,12.2,12.7,12.1,13.3,13.4],"script":[0.6,0.2,0.8,0.9,0.6,0.2,1,0.7,0.9,0.5,0.6,0.6,0.6,0.8,1.5],"paint":[10.3,11,12.5,11,10.9,9.5,10.6,10,11.4,10.8,10.8,10.9,10.9,10.9,10.1]}},{"b":3,"v":{"total":[2.8,2.1,2.1,2.2,2.6,1.9,2.3,2,1.9,2.1,2.5,2.7,2.1,1.6,1.7,2.1,2.8,2.1,2.8,2.1,1.8,2.3,2.4,2,2.1],"script":[0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0],"paint":[1.7,1.3,1.9,1.4,2.4,1.8,2.1,1.5,1.1,1.4,1.9,2.2,0.6,0.7,0.7,1.4,1.5,1.5,1.8,1,1,2.1,2.2,1.2,1.9]}},{"b":4,"v":{"total":[15,15.5,15.4,15.8,14.9,15.1,15.4,16.4,15.6,15.5,14.8,15.2,15.1,14.9,16.3],"script":[0.7,1.5,1.1,1.3,1.2,1.1,1.9,1.1,1.1,0.9,0.8,1.1,1.1,1.2,1.6],"paint":[13.1,12.7,12.8,13.3,12.3,12.7,12.3,14,13.3,13.6,13.7,12.6,12.6,12.7,13.7]}},{"b":5,"v":{"total":[11.5,11.2,11,11.5,11.2,11.6,11.2,11.4,11.2,11.2,11.5,11.3,11.5,11.5,11.6],"script":[0.6,0.4,0.3,0.6,0.6,0.6,0.4,0.6,0.6,0.4,0.6,0.5,0.6,0.5,0.4],"paint":[10.1,10.4,9.8,10.3,10,10.6,10.4,10.2,10.1,10.4,10.1,10.2,10,10.3,10.7]}},{"b":6,"v":{"total":[337,334,335.3,333.1,331.6,332.3,331.6,335.3,336.2,331.7,334.8,335.8,334.9,335.9,334.3],"script":[81.3,78.6,79.2,79.1,77,80,78.4,80.3,80.1,79.2,79.1,80.8,79.6,79.7,81.2],"paint":[249,248.7,249.4,247.3,247.8,245.7,245.9,248.2,249.2,246.1,249.1,248.1,248.4,249.5,246.2]}},{"b":7,"v":{"total":[37.7,37.6,37.9,37.6,38,38.4,38.4,37.3,37.9,37,37.2,38,37.5,38.4,38.1],"script":[7.1,7.2,7.2,7.4,6.9,7.5,7.6,7,6.9,7,7.4,7.2,7.1,7.2,6.9],"paint":[29.6,29.4,29.7,29.3,30.2,29.9,29.8,29.4,30.1,29.1,28.8,29.9,29.5,30.2,30.2]}},{"b":8,"v":{"total":[8.8,8,9.5,9.2,10,9.3,9.8,9.6,9.6,10.1,10.9,9.9,10.1,10,9.5],"script":[7.2,5.9,7.8,7.4,7.3,7.4,7.2,7.1,7.6,7.7,8.7,7.8,7.9,8.5,7.8],"paint":[0.8,0.4,1.1,0.9,1.4,0.3,1.8,1.7,1.5,1.1,1,1,1.1,0.2,1.5]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.2]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[23.9]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[43.8]}}]},
-{"f":33,"b":[{"b":0,"v":{"total":[41.2,35.7,35.9,33.3,35.3,36.6,39.9,38.3,35.1,46.6,39.5,38.3,38.8,38.2,36.2],"script":[9.1,10.5,10.2,10,9.8,9.6,9.8,10.1,10.3,9.5,9.8,9.8,10,9.8,9.7],"paint":[22.1,22.9,23.3,22.9,22.9,23,22.9,22.9,23.2,22.5,22.6,23.3,23.1,23.1,23.5]}},{"b":1,"v":{"total":[45.1,39.9,39.1,40,38.8,39.2,48.5,47.6,46.7,42.1,45.9,39.6,40.1,39.6,39.2],"script":[13.6,13.9,13.6,13.5,14.1,13.4,14.4,14,14.4,14.2,13.7,13.4,13.6,13.7,13.8],"paint":[24.3,23.8,23.7,24.6,24.1,24,25.8,26.4,26,26.3,25.6,23.8,23.9,24.2,24.4]}},{"b":2,"v":{"total":[49.1,16.7,17.2,17.1,50.1,50,16.3,17.8,48.4,17.9,50.5,16.8,49.3,48.9,49.3],"script":[3.9,4.2,4.2,4,4.2,4.6,3.5,4.5,4.3,4.4,3.7,3.9,4,4.9,4],"paint":[12.6,11.9,11.8,11.3,12,13.1,12.5,11.5,11.8,12.6,11.8,12.2,13.6,11.9,12.2]}},{"b":3,"v":{"total":[11,8.3,8.5,8,10,14.1,6.6,7.4,9.4,10.5,16.1,8.6,8.9,12.3,12,7.2,10.1,12.8,10.4,7.9,11.3,8.3,10.6,7.8,11.6],"script":[2.9,2.1,2.5,2.9,2.5,2.7,2.7,2.7,2.8,2.2,2.5,2.5,2.9,2.3,2.4,2.6,1.9,3.3,3.2,2.6,2.4,2.4,2.6,3.1,2.8],"paint":[2.8,2.8,1.4,4.1,2.4,3.4,2.8,2.2,2.4,2.5,3.1,2.1,3.5,3.2,2.8,4,3.1,2.8,3.2,2.4,2.6,3,3.4,3.1,3.7]}},{"b":4,"v":{"total":[49.7,50.6,51,53.6,54.4,54.6,50.6,54.1,50.7,51.1,51.5,53.4,50.2,51,50.2],"script":[2.9,2,2.8,2.8,2.4,2.5,2.3,2.1,2.5,2.8,2.7,1.6,2.1,2.4,2.7],"paint":[14.1,14.1,15.1,14.7,14.7,14.7,15.2,17.5,13.5,14.2,14,16,15.5,16,14.1]}},{"b":5,"v":{"total":[14.4,15.9,17.7,14.1,14.3,13.7,14.4,14.6,17.4,13.4,14.1,15.8,16.3,13.9,17.9],"script":[6,6.1,6.6,6.4,6.7,6.3,6.2,6.2,6.1,6.3,6.1,6.1,6.2,6,6.9],"paint":[11.3,10.9,11.5,11.4,11.3,10.8,11.4,11.4,11.5,10.3,11.1,11,11.3,11.3,11.9]}},{"b":6,"v":{"total":[322.7,318,318.7,317.2,323.3,324.3,322,317.8,335.5,313.5,318.5,320.2,321.9,317.4,332.8],"script":[70.5,86.4,71.9,81.7,88.3,92.6,70.4,71.4,89.1,71,73.5,73.3,87.9,73.7,89.9],"paint":[232.7,218.2,232.3,218,220.1,219.5,230.9,230.6,224.5,228.4,230,230.1,218.8,230.9,223]}},{"b":7,"v":{"total":[47.3,47.5,47.3,38.5,47,47.3,47.7,46.2,38.5,46.7,46.7,47.4,47.4,47.4,46.7],"script":[10.8,10.9,10.6,10.8,10.6,10.5,11.1,10.2,10.4,10.2,10.5,11.3,11.1,10.7,10.4],"paint":[27.2,27.1,27.2,27.2,27,27.5,27.1,26.7,27.4,27,27,26.8,26.7,27.3,27]}},{"b":8,"v":{"total":[14.7,11.6,11.3,11.1,11.7,12.4,13,11.7,11.2,10.4,10.8,12,12.1,12.8,10.9],"script":[8.9,8.7,7.9,8.1,7.9,8.4,8.9,8.2,7.3,7.1,7.3,7.9,8.6,7.7,6.9],"paint":[2.2,1.8,2.3,1.1,1.7,1.7,3.2,2.7,1.5,2.1,2.5,2.1,3,1.4,2.9]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[5.7]}},{"b":11,"v":{"DEFAULT":[5.7]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[48.4]}},{"b":14,"v":{"DEFAULT":[16.8]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[46.5]}}]},
-{"f":34,"b":[{"b":0,"v":{"total":[56.4,55.5,57.9,51.6,56.5,54.6,51.2,58.8,58.5,56.5,56,54.9,56.5,55.8,56.4],"script":[26.6,27.7,27.7,27.5,26.6,26.9,27.7,27,27.8,27.4,27.2,27.3,28.5,27,27.1],"paint":[22.5,22.7,22.7,22.7,22.7,22.6,23.2,22.9,22.4,22.6,22.7,23.5,22.7,22.5,22.6]}},{"b":1,"v":{"total":[66.1,70.3,64.8,63,60.4,60.1,64.1,66.2,69.7,59.9,71.7,67.3,65.8,65.8,63],"script":[35.4,35,35.2,35.1,34.8,34.9,34.7,35.3,34.8,34.7,35.3,35,35.3,35.7,37.3],"paint":[25,25.5,25.3,25,25.3,24.8,24.6,24.8,24.6,24.8,24.8,24.7,25.3,25,25.3]}},{"b":2,"v":{"total":[37.9,39.5,41.1,37.9,37.5,37.6,39.7,37.3,39,40.2,38.2,40,38.7,38.8,38.4],"script":[4.4,4.5,4.6,4.6,4.5,5,4.6,5.1,4.2,4.5,4.7,5.1,4.5,5.1,3.8],"paint":[12.1,12.4,14.5,12.7,13.5,12,11.6,11.1,12.6,13.3,11.3,11.6,13.2,12.3,13.5]}},{"b":3,"v":{"total":[23.7,19,20.5,18.7,18.6,17.6,19.1,16.2,18.2,17.4,18,19.4,17.1,20.4,17.3,16.2,19.8,17.8,17.7,17.5,19.8,20,18.1,16.4,16.6],"script":[13.1,13.3,13.8,12.8,11.5,13.3,11.5,11.3,12.8,12.3,12.7,13,12.9,12.4,12.3,11.8,13,13.2,13,12.4,12.7,12,12.1,11.5,11.6],"paint":[3.1,1.8,2.6,2.7,3.4,2.9,2.8,2.7,2.6,3.1,3.6,2.4,2.4,3,2.8,3.3,2.4,2.6,2.8,1.7,2.5,1.9,3.1,2,3.2]}},{"b":4,"v":{"total":[42.6,41.7,45.4,43.8,45.6,22.3,41.6,41.5,42.6,43.9,41.6,43.2,42.9,43.9,42.9],"script":[5.6,5.1,4.9,4.5,5.2,4.9,5.1,4.7,5.5,5,5.5,5.1,4.9,5.1,4.9],"paint":[15.8,15.1,16.1,15.4,16.9,16.1,15.3,15.9,15,15.4,15.6,16.2,15.9,15.8,16.6]}},{"b":5,"v":{"total":[22.2,22.7,21.9,19.6,21.9,20.2,22.1,19.4,20.4,20,20.3,22.7,20.5,24.1,20.1],"script":[7.2,7.1,7.6,7.4,7.6,7.6,7.9,7,7.5,7.4,7.4,7.2,7.7,7.2,7.3],"paint":[11.8,11.4,11.5,11.4,12,11.9,11.5,11.5,11.6,11.3,11.6,12.7,11.5,11.9,12.2]}},{"b":6,"v":{"total":[442.3,444.6,441.7,444.1,443.7,445.9,443.9,441.5,446.2,444.8,443.2,446.5,442.2,445.3,445.3],"script":[189.6,196.3,196.4,198.4,197,197.9,195.3,197.3,196,195.6,194.5,195.7,192.9,197.4,195.7],"paint":[245.4,241.9,242.6,242.8,242.4,244.3,243.7,241.4,244.2,242.1,243.8,244.5,243.5,243.7,244.2]}},{"b":7,"v":{"total":[68.9,66.4,69.5,70.4,63.8,64.5,66,69.5,71.1,66.8,63.7,68.8,69.5,63.9,62.5],"script":[31.2,30.9,32.1,30.3,30.9,31.8,32,31.1,31.2,30.9,31.1,30.7,30.9,31,30.4],"paint":[27.9,28,28,28.1,27.8,27.8,29.1,28.2,28,27.2,27.7,27.7,27.7,27.8,27.2]}},{"b":8,"v":{"total":[21,19.1,42.2,43.2,20.1,21.4,19.7,21.3,20.2,43.3,21.7,43.1,20.5,19.6,40.6],"script":[17.6,15.8,18.6,18.7,16.8,17.6,15.4,18,16.7,21,18.2,20.4,16.7,16.8,18.9],"paint":[2.4,2.3,3.4,2.3,2.5,3.6,2.8,2.6,2.5,1.8,2.7,1.2,2.3,1.4,1.7]}},{"b":9,"v":{"DEFAULT":[5.3]}},{"b":10,"v":{"DEFAULT":[11.3]}},{"b":11,"v":{"DEFAULT":[11.2]}},{"b":12,"v":{"DEFAULT":[6.3]}},{"b":13,"v":{"DEFAULT":[61]}},{"b":14,"v":{"DEFAULT":[111.9]}},{"b":15,"v":{"DEFAULT":[28.9]}},{"b":16,"v":{"DEFAULT":[123.9]}}]},
-{"f":35,"b":[{"b":0,"v":{"total":[31.9,32.4,31.8,32.1,32,32.6,31.8,32.3,32,31.5,32.1,32.3,31.9,32.3,32],"script":[7.9,8.3,7.8,7.9,7.8,8.2,7.7,8.1,7.9,7.7,7.8,7.9,7.9,8,8],"paint":[23.5,23.6,23.4,23.6,23.7,23.8,23.5,23.6,23.6,23.3,23.8,23.9,23.5,23.7,23.4]}},{"b":1,"v":{"total":[40.3,40.3,39.9,41.7,40.6,40.5,40.2,39.7,40.8,40.6,40.6,40.5,41.6,40.5,41.1],"script":[15.9,16,15.6,17.2,16,16.2,15.9,15.6,16.2,16.1,16.2,16,16.4,16.1,16.3],"paint":[23.8,23.7,23.7,23.8,24,23.8,23.7,23.6,23.9,23.9,23.9,23.8,24.6,23.7,24.2]}},{"b":2,"v":{"total":[14.7,13.8,15.4,14.8,14.8,14.2,15.1,15.7,15,14.6,14.5,13.9,14.7,14.9,15],"script":[3.6,3.6,3.3,3.7,3.8,3.2,3.9,4.8,3.4,4.2,3.7,3.6,3.9,3.8,4.1],"paint":[9.4,9,11.1,10,10,10,10.2,10.3,10,9.8,9,8.9,9.7,9.9,9.9]}},{"b":3,"v":{"total":[4.3,4.4,5.2,4.9,5.8,4.7,4.6,4.4,4.7,4.9,5.1,4.9,4.3,4.2,4.3,4.8,4.6,4.8,4.9,4.4,4.8,4.5,4.6,4.4,4.3],"script":[2.8,2.5,3.1,3,4.1,3,3.1,2.6,2.7,3.1,3,3,2.5,2.6,2.8,3.4,2.8,2.5,2.8,2,2.3,2.6,2.9,2.3,3],"paint":[1.4,1,2,1.3,1.5,1.5,1.3,1.6,1.9,0.3,1.7,1.7,0.9,0.7,1.4,1.3,1.4,1.3,1.9,1.8,1.7,0.9,0.7,2,0.7]}},{"b":4,"v":{"total":[17,16.6,16.6,15.7,16.5,15.7,16.2,16.7,16.9,16.6,16.1,15.8,16.3,16.2,15.8],"script":[3.4,3,2.8,3.2,3,2.8,2.6,3,3,2.5,2.7,2.7,2.8,2.6,2.9],"paint":[12.5,12.4,12.5,11.1,12.7,11.1,12.6,12.9,12.7,12.4,12,11.9,11.6,12.5,12.6]}},{"b":5,"v":{"total":[12.8,11.7,12,12.8,12.2,12.2,12.1,12.2,11.9,12.2,12.1,11.7,11.9,12.2,12.2],"script":[1.4,1.3,1.5,1.3,1.4,1.5,1.4,1.3,1.6,1.4,1.3,1.4,1.3,1.3,1.4],"paint":[10.7,9.7,9.7,10.8,10.3,10.1,10.1,10.1,9.7,10.3,10.2,9.4,10,10.1,10.1]}},{"b":6,"v":{"total":[323.1,322.8,321.3,322.2,321.2,322.9,322.6,320.3,320.2,319.5,322.6,321.6,321.9,323.3,321.5],"script":[83.9,83.6,83.5,83.5,84.1,83.7,84.5,83.3,83.4,84,83.2,83.2,83.7,83.6,83.7],"paint":[232.5,233.5,232.3,233.2,231.4,233.6,232.7,231.5,231.2,230.1,233.2,232.8,232.4,234.1,232.2]}},{"b":7,"v":{"total":[37.8,37.5,37.1,36.3,36.9,37.8,37.7,37.5,36.5,38.4,36.6,36.9,37.6,37.2,38.2],"script":[9.1,9.3,8.9,9.1,9.2,9.4,9.3,9.3,8.8,9.4,9.1,9.3,9.6,9.1,9.7],"paint":[27.8,27.3,27.3,26.3,26.8,27.5,27.5,27.1,26.8,28.1,26.6,26.7,27.1,27.2,27.6]}},{"b":8,"v":{"total":[15.1,15,15.5,15.5,15.5,14.7,15.7,15.7,15.8,15.4,16.3,15.5,15.5,15.8,15.5],"script":[13.5,13.2,13.9,13.3,13.7,13.4,13.4,13.9,13.9,13.1,14,13.4,13.2,13.8,13.6],"paint":[0.6,0.2,0.2,1,0.7,1.1,2.1,1,1,1.1,1.2,1.6,0.2,1.6,1.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[6.2]}},{"b":11,"v":{"DEFAULT":[10.2]}},{"b":12,"v":{"DEFAULT":[16.7]}},{"b":13,"v":{"DEFAULT":[49.5]}},{"b":14,"v":{"DEFAULT":[90.3]}},{"b":15,"v":{"DEFAULT":[30.5]}},{"b":16,"v":{"DEFAULT":[124.5]}}]},
-{"f":36,"b":[{"b":0,"v":{"total":[34.9,34.4,34.6,34.6,34.9,34.6,34.6,34.3,34.5,34.9,34.3,34.7,34.6,34.6,34.2],"script":[10,9.8,10.2,10.1,10.1,10,10.1,9.6,10.1,10.2,9.9,10,9.7,10.2,9.7],"paint":[24.4,24,23.8,24,24.2,24.1,24,24.2,23.9,24.1,23.9,24.1,24.3,23.9,23.9]}},{"b":1,"v":{"total":[34.7,36.6,34.7,36,34.7,34,35.3,35.6,34.5,35.6,35.5,34.3,35.3,35.1,35.5],"script":[10.8,11.4,10.8,11.1,10.8,10.5,10.9,11.1,10.5,11,11.1,10.5,10.9,11.2,11],"paint":[23.3,24.6,23.3,24.3,23.3,22.9,23.8,24,23.3,24,23.8,23.2,23.8,23.3,23.9]}},{"b":2,"v":{"total":[12.9,12.4,12.7,13.1,12.1,12.6,12.5,12.2,12.7,12.8,12.2,12.2,12.9,14,13.6],"script":[1.8,1,1.4,1.2,1.1,1.7,0.9,0.9,1.9,1,1.1,1.5,1.3,2,1.6],"paint":[10,10.3,10.1,10.8,9.3,9.8,10.7,10.7,10.1,10.5,9.8,9.4,10,9.9,9.6]}},{"b":3,"v":{"total":[5.7,4,3.9,4,4,4.4,4,4.4,4.9,4.1,4,4.7,4.2,4.6,4,4,3.6,4.5,4.4,4.3,4,3.8,3.8,4.2,4.7],"script":[2.1,1.9,1.5,2.3,1.7,2.2,2.4,2.1,3,1.6,1.3,2.7,2,2.6,2,2.4,1.4,2.5,2.3,2.1,1.7,1.9,2.1,2.3,2.7],"paint":[0.8,1.1,1.8,1.1,2.2,2,1.1,2.1,1.8,1.4,2.2,1.5,1.3,1.3,1.9,1.1,1.1,1.9,2,2.1,1.5,0.7,0.7,1.7,1.3]}},{"b":4,"v":{"total":[15,14.8,14.9,14.7,13.7,13.7,14.8,14.3,14.3,13.9,13.7,14.2,14.9,14.5,15],"script":[0.9,1.2,0.7,0.9,0.6,0.6,1.6,0.6,1.4,1.3,0.6,0.6,0.9,1,1.5],"paint":[13.1,12.5,13.2,13.1,12.1,11.9,11.8,13,11.6,11.7,12.5,12.6,12.5,12.6,12.5]}},{"b":5,"v":{"total":[11,11,10.8,11.2,10.9,10.9,11.6,10.9,11.5,11,11.4,10.8,10.6,11.6,11.1],"script":[0.4,0.6,0.6,0.6,0.6,0.2,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.6,0.6],"paint":[10.1,9.8,9.6,10.1,9.8,9.7,10.1,9.7,10.2,10,10.2,9.6,9.3,10.3,9.8]}},{"b":6,"v":{"total":[345.2,344.7,340.9,345.1,343.3,345.4,349.1,346,344,347,342.8,344,343.7,343.8,343.7],"script":[100.1,98.9,97.3,99.8,99.3,100.3,100.3,100.4,100.2,101.3,99.5,99.9,99.3,97.8,99.8],"paint":[239.2,239.8,237.5,239,238,238.9,242.9,239.5,238,239.8,237.5,238,237.9,239.6,238.3]}},{"b":7,"v":{"total":[38.3,38,37.1,38.1,37.5,37.5,38.4,37.9,37.2,37.7,37.8,39.3,38,37.8,38.8],"script":[9.8,9.8,9.5,9.8,10,10,9.8,10.3,9.7,9.8,9.8,10.3,9.7,10.2,10.3],"paint":[27.6,27.3,26.8,27.4,26.6,26.6,27.7,26.7,26.5,27,27.1,28.1,27.4,26.7,27.5]}},{"b":8,"v":{"total":[12.6,11.8,14,12.3,12.2,11.8,13,11.1,11.2,12.2,14.5,11.8,12,11.6,11.8],"script":[10.8,9.9,12.5,9.8,10.3,10.1,11.3,9.5,9.2,10.8,11.9,10.2,10.4,9.7,9.9],"paint":[1,1.5,0.6,1.4,1,0.6,0.6,0.6,0.9,0.2,1.3,0.2,0.4,1.7,1.6]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.2]}},{"b":11,"v":{"DEFAULT":[4.3]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[34.1]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[45.2]}}]},
-{"f":37,"b":[{"b":0,"v":{"total":[35.4,35.3,34.5,34.6,34.9,34.9,34.9,36.2,35.7,35.2,35.2,35.7,36,34.9,35.6],"script":[9.7,10,9.5,9.6,9.6,9.7,9.8,10.6,10.1,9.5,9.8,10.2,10.2,9.7,10.1],"paint":[25.1,24.8,24.4,24.5,24.7,24.7,24.5,25,25,25.2,24.8,24.9,25.2,24.7,24.9]}},{"b":1,"v":{"total":[41.1,41.1,40.3,40.7,40.9,41.2,40.9,41,40.7,41.8,40.4,41,40.5,41.8,41],"script":[15.3,15.6,14.7,15.1,15.2,15.4,15.5,15.2,15.3,15.1,14.7,15.6,15,16.1,15.5],"paint":[25.2,25,25,25,25.1,25.3,24.8,25.2,24.8,26.1,25.1,24.9,25,25.2,24.9]}},{"b":2,"v":{"total":[19.7,20,19.4,19.9,19.8,19.8,20.1,19.1,20.6,20.3,19.8,20.2,20.5,19.9,18.8],"script":[7.6,7.6,7.7,7.2,8.1,7.5,8.8,7.2,8.1,8.3,7.3,7.7,7.8,7.5,6.5],"paint":[11.1,10.3,10.3,9.8,9.5,9.9,9.7,10.4,11.3,10.2,10.3,9.8,10.1,9.8,11.5]}},{"b":3,"v":{"total":[6.9,7.2,5.8,6.6,7.2,6.9,8.4,8.9,7.9,7.9,8.5,9.1,6.7,6.5,7.9,6.4,7.4,8,7.1,7.5,7.7,6.6,6.8,6.4,6.8],"script":[4.3,4.8,4.1,4.3,4.7,4.5,5.2,5.7,5,5.5,5.5,3.9,4.8,4.6,5,4.6,5.1,5,4.8,5.1,4.9,4.2,4.6,4.3,4.4],"paint":[2,1.1,0.7,1.5,1.6,1.9,2.1,2.3,0.9,0.9,1.7,1.7,1.2,1.7,1.1,1.7,0.4,1.9,1.1,0.4,1.9,1.9,1.2,1.9,1.3]}},{"b":4,"v":{"total":[18.2,18.5,18.6,18.1,18.3,20.1,18.1,19.2,18.1,18,20.4,19.6,19.5,19.4,20.1],"script":[4.5,4.1,4.2,4.8,4.2,5,4.5,5,4.3,4.7,5.7,5.2,5.2,4.9,5.6],"paint":[12.7,13.7,13.4,12,13.2,14.1,12.3,13.1,13.1,11.7,12.9,11.9,12,13,12.2]}},{"b":5,"v":{"total":[15.5,15.3,15.6,15,15.2,17.1,15.6,15.5,15,15.3,15.5,15,15.1,15.5,15.3],"script":[4.8,4.8,4.9,4.3,4.6,5.8,4.8,4.5,4.7,4.5,4.8,4.2,4.6,5,4.6],"paint":[10,9.5,9.7,10.2,10.1,10,10.1,9.7,9.7,10.1,10,10.2,9.8,9.7,10.2]}},{"b":6,"v":{"total":[355.1,355.3,357.6,355.6,354,353.9,355.6,353.6,354.9,357.6,355.8,353.1,354.7,355.8,352.4],"script":[104.5,104.1,105,103.8,103.9,104,104.9,103.8,105.3,105.5,105,105.1,104.5,104.6,103.5],"paint":[244.1,244.8,245.7,245.6,243.7,243,244.5,243,243.3,244.5,245,241.9,243.8,244.5,242.7]}},{"b":7,"v":{"total":[40.8,41.6,40.8,41.7,42,41.9,41.2,41.6,41.1,40.9,41.3,41,41.2,41.8,41.3],"script":[12.4,12.8,12.3,13.2,13.2,13.1,12.4,12.7,12.8,12.5,12.9,12.6,12.8,12.9,12.6],"paint":[27.5,27.9,27.5,27.6,27.9,27.8,27.9,28,27.4,27.5,27.4,27.5,27.5,27.9,27.9]}},{"b":8,"v":{"total":[15.8,14.6,14.8,14.1,15,14.3,14.9,15.1,14.1,14.5,15.2,15.5,14.6,14.5,14.4],"script":[13.3,12.5,12.4,12.2,13.3,11.9,13,12.2,12.1,12.4,13.3,13.5,13.2,12.4,11.9],"paint":[1.4,1,1.1,0.6,0.7,2,0.5,1.9,0.3,1.1,0.3,1.1,0.3,0.8,1.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[4]}},{"b":11,"v":{"DEFAULT":[4.2]}},{"b":12,"v":{"DEFAULT":[2.3]}},{"b":13,"v":{"DEFAULT":[31]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[79.9]}}]},
-{"f":38,"b":[{"b":0,"v":{"total":[32.7,31.9,32.8,32.9,32.3,31,32.5,32.4,31.8,33.1,32.8,32.9,32.7,31.2,32.2],"script":[8.7,8.9,9,8.9,8.7,8.2,8.7,8.8,8.5,9,9,8.8,9,8.6,8.9],"paint":[23.4,22.4,23.3,23.4,23,22.3,23.3,23.2,22.8,23.5,23.3,23.6,23.2,22.1,22.8]}},{"b":1,"v":{"total":[33.9,33.7,36.1,34.2,33.7,34,34.7,34.7,33.8,33.8,33.3,33.8,34.2,34,33.9],"script":[10.5,10.1,10.6,10.6,10.6,10.5,10.5,10.8,10.5,10.4,10.2,10.3,10.6,10.1,10.4],"paint":[22.9,23,25,23.1,22.6,23,23.7,23.3,22.7,22.8,22.6,23,23,23.4,23]}},{"b":2,"v":{"total":[17.8,19.2,18,19.5,19.1,18,17.5,19.4,19,19.2,18.8,18.2,18.5,19,19.2],"script":[6.1,5.9,5.9,5.3,6.1,6.1,5.6,7.2,5.8,6.5,5.9,5.9,5.8,5.8,6.2],"paint":[10.6,10.4,10.4,11.9,10.2,9.3,10.6,9.9,11,10.4,10.3,10.9,10.5,12.4,10.4]}},{"b":3,"v":{"total":[5.2,5.2,5.2,5.6,7.2,4.9,4.8,6,4.7,5.9,5.1,4.9,5.4,5.1,4.8,4.8,5.8,5.7,5.4,5,4.9,5,6.1,5.2,4.7],"script":[2.3,2.6,3.1,3.2,3.3,3,2.8,3.8,3,3.3,3,3,3,3.5,3,3.2,3.1,3.5,3.3,3.3,3.1,3.5,3.1,2.9,2.8],"paint":[2.4,2.3,1.8,1.5,1.4,1.7,1.2,2,1.5,2,1.2,1.1,1.5,1.6,1.7,1.2,2.5,1.5,1.5,1.6,1,1,1.7,2,1]}},{"b":4,"v":{"total":[119.5,116.9,119.7,117.1,118.1,116.8,115.7,126.5,125.3,124.6,126.9,119.6,120.4,122,115.6],"script":[20.9,19.1,21.5,18.8,19.5,18.5,18.7,20.3,20.9,20.3,19.8,20.8,21.3,20.8,19.2],"paint":[96.4,96.2,95.5,95.7,95,95.5,93.7,103.5,101.8,101.9,104.5,96.9,97.4,98.3,93.2]}},{"b":5,"v":{"total":[12.7,12.5,12.5,12.6,12.7,12.1,12.3,12.6,12.3,12.2,12.3,12.4,12.3,12.7,13.2],"script":[2,2.1,1.9,2.2,2.1,1.8,1.9,1.8,1.9,1.9,2,2.1,1.9,2,2.3],"paint":[10.1,9.4,10.1,9.7,10,9.7,9.9,10.1,9.7,9.7,9.5,9.6,9.7,9.8,10.3]}},{"b":6,"v":{"total":[472.7,473.7,470.7,479.1,473.5,473.6,456.1,470,476.8,470.9,483.3,453.6,480.2,449.2,478.1],"script":[229.6,230.9,227.8,235.2,229,230.3,214.7,227.7,230.6,228.3,235,208.6,235.3,207.8,229.5],"paint":[237,236.7,236.6,237.8,238.4,237.2,235.4,236.3,240.2,236.4,242,238.7,238.7,235.3,242.2]}},{"b":7,"v":{"total":[37.4,38,38.8,37.3,37.6,38.2,36.8,36.9,39.4,36.8,37.5,37,37.6,37.9,38],"script":[9.8,9.9,10.3,10.2,10,10,9.9,9.8,9.9,9.8,10,9.9,10.2,10.5,10.2],"paint":[26.6,27.2,27.6,26.1,26.7,27.3,26,26.2,28.6,26.1,26.5,26.1,26.4,26.5,26.8]}},{"b":8,"v":{"total":[10.5,11.5,13.1,13.1,13.5,10.5,10.9,13.1,11.8,11.1,12.8,11.5,11.6,10.9,12.3],"script":[9.1,9.6,10.7,10.2,10.3,9.1,9.5,11,9.6,9.1,11.1,9.5,9.1,8.5,10.2],"paint":[1.2,1,1.4,0.7,0.4,0.6,0.2,0.9,1.2,0.6,0.7,0.6,0.9,1.6,0.7]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[4.8]}},{"b":11,"v":{"DEFAULT":[5.3]}},{"b":12,"v":{"DEFAULT":[2.2]}},{"b":13,"v":{"DEFAULT":[32.3]}},{"b":14,"v":{"DEFAULT":[257.9]}},{"b":15,"v":{"DEFAULT":[58.9]}},{"b":16,"v":{"DEFAULT":[269.5]}}]},
-{"f":39,"b":[{"b":0,"v":{"total":[36.3,33.8,33.8,33.8,33.5,35.2,35.1,33.2,34.9,34.5,35.3,33.5,35.2,33.3,35.2],"script":[9.1,8.6,8.8,8.9,8.6,10.6,10.1,8.4,10.2,10.1,10.5,8.8,10.3,8.7,10.4],"paint":[26.5,24.7,24.4,24.3,24.3,24,24.4,24.2,24.2,23.9,24.2,24.1,24.3,24.1,24.2]}},{"b":1,"v":{"total":[46.7,46.8,45.9,46.2,44.9,45.1,46.1,45.2,45.4,45.6,45.7,46,45.3,45.5,45.2],"script":[19.7,20.3,19.8,20.6,19.8,19.8,20.3,20,20.6,19.9,19.9,20.8,19.7,20,20],"paint":[26.5,25.9,25.6,25.1,24.6,24.7,25.3,24.7,24.2,25,25.3,24.7,25,24.9,24.6]}},{"b":2,"v":{"total":[17.7,17.4,18.7,18.5,17.6,19.4,18.2,18.1,18.4,17.4,18.4,17.7,19.5,19.3,17.7],"script":[5.8,6,6.5,6.6,6.1,7,6.3,6.3,6.8,5.9,6.7,5.8,7,6.7,6.2],"paint":[9.9,8.9,11.1,10,10.4,10.7,10.2,9.5,9.5,9.2,10.3,9.8,10.4,10.4,10.1]}},{"b":3,"v":{"total":[6.1,6.4,5.9,6.2,6.6,6.9,7.7,6.9,6.4,6,6.9,7.2,5.8,6,7,6.9,6.2,6.9,6.4,6.9,7.8,6.9,6.3,6.8,6.4],"script":[4.2,4.4,4,4,4.6,4.9,5.1,4.8,4.3,4.1,4.4,4.8,4.1,3.7,4.9,4.5,4.3,4.6,4,4.5,4.8,3.8,3.9,4.7,4.1],"paint":[1,1.4,1,2,1.2,1.4,1.9,1.3,2,1,1.7,0.4,0.7,2.1,2,1.3,1.1,2.1,2.2,1.7,1.6,2.9,0.9,1.3,2.2]}},{"b":4,"v":{"total":[19.9,18.1,17.8,18.6,18.1,18.4,18.8,18.7,18.2,18,18.7,18.8,19.2,19.6,18.7],"script":[4.4,4.4,4,4.6,4,4.2,4.8,3.8,4.5,3.9,4.5,4.4,4.8,4.4,3.7],"paint":[14.6,12.4,12,12.8,13.2,13.6,12,13.3,12.3,12.3,13,13.1,13.3,13.8,12.9]}},{"b":5,"v":{"total":[12.7,12.5,12.8,12.4,13.5,12.5,13.3,13.7,12.7,12.6,12.4,12.6,12.9,12.8,12.8],"script":[2.2,2.1,1.9,2,2.1,2.1,2.1,2.8,2.1,2.1,2.2,2.1,2,2.4,2.2],"paint":[9.8,9.8,9.7,9.7,10.5,9.8,10.3,10.3,9.9,9.7,9.7,9.6,10.2,9.8,9.8]}},{"b":6,"v":{"total":[338.4,340.1,339.1,340,340.6,340.5,339.1,340.7,341.2,341.6,339.8,340.3,346.8,340.6,343.8],"script":[97.4,96,95.6,95.6,95.9,94.4,94.5,95,95.2,96.2,96.8,96,100.5,95.5,100.9],"paint":[235.1,236.9,237.8,238.1,238.8,239.4,239,240,240.2,238.3,236.9,238.2,239.5,237.9,236.7]}},{"b":7,"v":{"total":[37.4,37.4,40.6,36.7,38.2,36.8,37.4,37.8,39.4,37.8,37.2,37.5,37,38,38.7],"script":[9.7,9.2,11.6,9.1,9.4,9.1,9.4,9.4,11,9.3,9,9.7,9.3,9.2,10.8],"paint":[26.8,27.3,28,26.7,27.9,26.9,27,27.5,27.5,27.5,27.3,26.9,26.9,27.8,26.9]}},{"b":8,"v":{"total":[26.7,27.1,26.1,25.4,28.1,27.6,25.9,26.6,28.5,27.8,27.3,28.3,28.1,24.4,26.7],"script":[24.3,24.2,23.7,23.1,25.8,25.4,24.2,24.1,25.8,25.7,24.7,25.6,25.7,22.6,24.6],"paint":[1.3,1.7,1.7,0.3,0.3,0.4,0.7,1.5,2.4,0.3,2.3,1.4,1.2,1,1.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.4]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[35.4]}},{"b":14,"v":{"DEFAULT":[22.3]}},{"b":15,"v":{"DEFAULT":[8.6]}},{"b":16,"v":{"DEFAULT":[53.7]}}]},
-{"f":40,"b":[{"b":0,"v":{"total":[38.6,38.5,38.5,38.3,38.9,38.7,38.5,38.7,39.4,38.7,38.3,38.6,37.9,39,38.9],"script":[14.8,14.7,14.7,14.7,15,15.1,14.7,14.8,14.9,15,14.8,14.7,14.7,15,14.9],"paint":[23.4,23.4,23.4,23.2,23.5,23.3,23.4,23.4,24,23.3,23.1,23.4,22.8,23.6,23.6]}},{"b":1,"v":{"total":[43.8,41.8,42.7,42.8,42.9,43.1,42.9,42.5,42.6,44,42,43.7,43.9,43.5,42.5],"script":[19.2,18.2,18.7,18.4,19,19,18.9,18.7,18.7,19.2,17.9,19.1,19.4,19,17.9],"paint":[24.1,23.1,23.6,23.9,23.6,23.7,23.6,23.4,23.5,24.3,23.7,24.1,24.1,24.1,24.1]}},{"b":2,"v":{"total":[12.2,12.4,12.2,12.3,12.8,12.6,12.6,12,12.3,12.7,12.7,13,12.7,13,12.2],"script":[1,1,1.1,0.9,1.4,1.3,1.3,1,1.3,1.5,1.3,1.6,1.3,1.7,1],"paint":[10,11.1,9.4,9.2,10,10.3,10.2,9.4,9.8,9.8,11,9.5,10.5,10.3,9.8]}},{"b":3,"v":{"total":[3.6,3.7,3.4,3.8,4.1,3.9,4.1,4.2,4,4.2,3.5,3.9,3.5,4.3,3.7,3.6,3.4,3.1,4,4.4,3.6,4,4.2,3.6,3.9],"script":[1.2,1.8,1.4,1.5,1.7,2.1,1.2,2.1,1.2,2.3,1,1.7,1,2.8,2,2,1,1,1.7,1.5,1.7,1.7,1.4,1.9,1.8],"paint":[1.9,0.3,1.1,1.2,1.5,1,1.7,1.3,1.8,1.5,1.3,1.1,1.4,1.4,1.6,0.9,2.2,1.9,1.3,1.3,1,1.2,1.6,1.5,1]}},{"b":4,"v":{"total":[14.8,13.5,13.7,13.1,14.3,13.4,14.1,13.9,13.8,13.7,14.9,13.9,13.4,13.8,14.1],"script":[0.8,0.1,0.1,0.1,0.8,0.1,0.5,0.4,0.1,0.2,0.1,0.9,0.1,0.1,0.1],"paint":[13,11.8,12.9,12,11.7,12.3,12.6,12.4,13.1,12.4,13,12.1,11.8,12.7,13]}},{"b":5,"v":{"total":[11,10.6,11.3,10.5,10.4,10.4,10.8,10.6,10.2,10.4,10.6,10.5,10.8,10.9,10.4],"script":[0.3,0.3,0.1,0.2,0.1,0.1,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1],"paint":[9.9,9.6,10.4,9.8,9.7,9.7,9.8,9.9,9.5,9.7,9.8,9.7,9.9,10.2,9.4]}},{"b":6,"v":{"total":[406.6,407.3,406.3,409.6,407,404.7,407.7,408.2,404.8,403.3,403.9,404.2,405,405.1,407.1],"script":[155.1,154.4,154.7,154.3,154.9,152.8,152.4,156.8,154.7,152.8,153,153.1,153.3,153.8,154],"paint":[245.9,247.1,246.1,249.5,246.4,246.4,249.7,246.1,244.6,244.9,245.4,245.3,245.3,245.7,248]}},{"b":7,"v":{"total":[46.9,47.7,47.8,47.3,47.1,47.5,48.2,47.6,47.9,47.7,48.1,47.6,47.6,47.9,47.5],"script":[19.7,19.8,19.9,20,20,19.9,20.6,19.8,20.2,19.8,20.2,19.8,20.1,20,20],"paint":[26.5,27,27,26.6,26.5,26.8,26.6,27.1,26.9,27.1,27.1,27.1,26.7,27.1,26.8]}},{"b":8,"v":{"total":[10.6,10.5,12,10.7,10.7,10.9,11.3,12.1,10.9,11.4,12.6,11,10.8,10.5,10.4],"script":[9.6,9.6,10.6,9.2,9.1,9,9.9,10.5,9.8,9.6,10.9,9.5,9.4,9.1,9.4],"paint":[0.9,0.3,1.3,1.2,1.4,1.9,0.9,0.7,0.3,0.9,0.8,1.2,1.4,0.2,0.2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.1]}},{"b":11,"v":{"DEFAULT":[4.1]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[31.9]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[43.9]}}]},
-{"f":41,"b":[{"b":0,"v":{"total":[30.8,30.8,34.7,32.9,33.4,34.1,32.1,32.4,31.8,33.1,34.6,32.1,32.9,34.6,31.9],"script":[5.5,5.2,5.1,5.5,5.6,5.1,5.1,5.4,5.3,5.5,5,5.6,5.2,5.1,5.5],"paint":[23.7,24.1,24.4,23.7,24.4,23.7,24.3,24.2,23.7,25.1,24.4,24.3,24.4,24,24.8]}},{"b":1,"v":{"total":[36.9,34.8,33.8,34.5,35.7,34.5,34.4,36,35.5,35.7,33.9,36,36.9,36.6,36],"script":[7.6,8,7.9,7.9,7.6,7.2,8.3,7.3,7.3,7.2,7.6,8,7.4,7.8,7.5],"paint":[24.4,24.1,24.3,24.7,24.2,24.3,24.4,24.6,24.3,24.3,24.4,25.1,25,24.1,24.6]}},{"b":2,"v":{"total":[29.5,29.9,13.8,14,29.4,14.2,30.2,29.4,16,13.1,31.6,13.8,30.9,13.3,30.3],"script":[2.4,3.1,2,2.6,2.9,2.7,3,2.8,3.3,2.5,3.9,2.4,2.3,2.9,2.5],"paint":[10,10.7,10.1,10.4,9.9,10.6,10.5,9.8,12.3,10.5,10.9,10.7,12.5,10.3,11.3]}},{"b":3,"v":{"total":[3.6,3.3,3.2,3,3.2,2.8,4.2,2.1,2.4,2.6,3.3,2.4,3.1,5.7,2.9,2.8,2.6,3.2,8.4,3.3,2.7,3.4,2.2,2.4,2.5],"script":[1.6,1.6,1.2,1.2,1.3,0.6,1,0.6,0.7,0.6,1.3,0.5,0.2,0.3,0.2,1.2,0.8,1.3,1,0.5,1,0.8,0.8,0.6,1],"paint":[1.6,1.6,1.9,1.7,1.4,1,1.7,1,1.1,1.5,1.1,1.7,2,1.5,2.3,0.9,1,1.8,1.6,1.4,1.2,1.6,1.3,1.1,1.4]}},{"b":4,"v":{"total":[30.4,31.7,15.6,30.3,30.4,30.1,31.3,15.4,30.9,15,15.5,14.9,30.6,15.3,14.5],"script":[1.4,1.3,0.9,1.9,1.4,1,1.8,2.2,1.3,1.4,2.3,1.4,1.5,1.1,0.9],"paint":[12.9,13.6,14,11.5,12.6,13,13.3,12.1,13.4,13.3,13,13.4,12.9,12.3,13]}},{"b":5,"v":{"total":[12.8,12.3,14.6,10.4,11.3,10.2,14.4,10.1,10,10,10.8,13.9,11,11,11.7],"script":[0.7,1.6,0.8,0.7,1.4,0.7,0.7,0.9,0.8,0.7,1.4,1.5,1.7,1.5,1.9],"paint":[8.9,9.8,9.2,9.4,9.4,8.5,9.2,9.1,8.7,9.1,9.1,9.1,8.8,9.3,9.1]}},{"b":6,"v":{"total":[313.9,313.3,315.5,316.9,316.8,321.2,316.1,317.6,320.8,315.1,316.5,316.7,320,318.5,316.8],"script":[64.6,69.6,65.1,65.8,70.3,65.8,66.1,64.5,64.5,69.3,65.5,66.6,68.8,66.6,65],"paint":[246.1,239.5,247,247.9,241.7,245.4,246.9,247.2,246,240.6,246.8,244.9,241.4,247.7,246.9]}},{"b":7,"v":{"total":[39.7,37.1,38.4,38.6,34.1,38.9,37.9,33.4,34.3,38.6,38.2,37.9,38.7,39,39.3],"script":[6.1,5.7,5.7,6.2,6.1,5.9,6.1,5.6,5.9,6,6.1,6.1,5.7,5.4,6.1],"paint":[28.6,26.6,27.8,27.5,27.5,28.3,27,27.3,27.9,27.5,26.9,26.9,28.1,28.4,28.2]}},{"b":8,"v":{"total":[25.1,25.4,9.9,9.4,9,25.3,27.3,9.1,25.7,9.1,25.8,25.9,8.6,25.6,8.6],"script":[7.3,8,7,7.5,7.8,8.1,10.1,7.7,8.2,7.5,8.2,8.3,7.3,8,6.3],"paint":[0.9,1.1,0.3,0.7,0.5,1.2,1.1,0.4,1.3,0.7,0.2,0.9,0.3,1.1,0.2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3.1]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[23.9]}},{"b":14,"v":{"DEFAULT":[6.3]}},{"b":15,"v":{"DEFAULT":[2.6]}},{"b":16,"v":{"DEFAULT":[38.4]}}]},
-{"f":42,"b":[{"b":0,"v":{"total":[35,36.7,31.8,36.7,38.8,33.8,38.4,34.6,35.1,31.1,34.1,35,35.5,34.7,34.1],"script":[6,6,6.3,6.3,6.1,6.3,6.6,6.8,6.1,6.7,6.2,6.2,6.2,6.3,6.2],"paint":[23.7,24.1,23.4,24,24.2,22.9,23.5,24.2,23.9,24.1,23,24.1,23,22.9,22.6]}},{"b":1,"v":{"total":[34.6,37.6,33.7,37.4,37.1,37.4,37.4,37.5,37.5,36.8,38,37.8,37.1,32.6,39.1],"script":[8.2,8.4,8.7,8.2,8.5,8.4,7.7,8,8,8.3,8,8,8.2,8.6,8.7],"paint":[23.5,22.7,22.9,23,22.7,22.9,22.6,23.2,23,23.2,23,23.2,22.9,23.6,23.3]}},{"b":2,"v":{"total":[27.5,27.5,12.2,13.8,28.9,27.4,28,12.7,28.6,11.7,12,11.5,27.4,28,11.2],"script":[1.3,0.9,1,1.9,1.5,1.4,1.3,1.5,1.4,1.2,1.1,1.4,0.7,1.4,1.3],"paint":[9.3,10.4,10,11.8,9.5,9.9,10.6,11.1,10.4,10.1,10.7,10,10.7,9.6,9.9]}},{"b":3,"v":{"total":[8.3,5.2,3.3,4.8,3.7,3.2,5.5,7.6,3.7,4.3,6.8,6.2,3.5,3.5,4,7.8,3.6,5.5,7.8,4.6,3.5,3.1,3.9,3.7,3.3],"script":[0.3,0.3,0.5,0.7,0.8,1,1.7,0.2,1,1,0.9,0.9,0.3,1.2,0.3,1.2,1,1.1,0.6,0.2,1.2,0.2,0.7,1.2,0.6],"paint":[0.4,1.4,1.9,1.3,1.7,1.1,1,1.9,1.6,1.5,1.1,1.1,1.4,1.1,1,1.3,1.2,1,1.8,1.3,1.7,1.5,1.1,2.3,0.5]}},{"b":4,"v":{"total":[31.8,15.3,17.6,14.7,15.6,31.2,15.6,16.2,15.2,14.8,15.4,31.4,32.2,15,32.1],"script":[1.4,2.1,2,1.1,2.5,1.7,1.8,1.6,1.5,0.9,1.4,2,1.4,1.8,1.5],"paint":[13.4,13.1,14.2,12.1,12.8,13.8,12.6,14,12.1,13.8,13.8,13.3,14.7,12.9,13.7]}},{"b":5,"v":{"total":[10.2,13.1,10.8,11.7,12.5,12.7,12.1,13.8,11.8,13,12.7,13.4,13.9,14.5,13.3],"script":[0.8,1.1,0.5,0.6,1,0.6,0.4,0.5,1.1,0.7,0.5,0.3,1.1,0.2,0.4],"paint":[9.2,9.4,9.2,8.9,9.6,9.3,9.6,8.9,9.2,9.6,9.2,9.1,9.6,9.5,9.5]}},{"b":6,"v":{"total":[328,327.9,325.9,326.1,326.9,330.2,322.7,325.8,327.9,325.7,326.1,323.1,322,325.1,326.9],"script":[83.6,77.9,80,80.9,79.3,80.3,80.4,82,79.5,80.9,78.6,80.1,80.1,79.2,78.8],"paint":[236.6,240,240.1,237.8,239.7,241.5,238.7,240.6,239.5,237.3,239.4,237.3,237.6,236.5,239.8]}},{"b":7,"v":{"total":[70.5,70.6,71.2,72.7,73.1,69.9,74,71.5,71.3,69.5,73.3,70.5,72.4,70.4,70.5],"script":[14.9,14.9,15.3,15.6,15.4,15.2,15.5,14.9,15.9,14.5,15.7,15.1,14.9,14.9,15.3],"paint":[50,50.1,50.7,51.4,50.7,49.5,51.7,50.2,50,49.6,49.8,49.8,49.8,50.1,49.6]}},{"b":8,"v":{"total":[9.5,25.9,10.5,9.3,9.9,9,27.2,26.7,25.1,9.9,26.5,27.6,10.2,10.2,26],"script":[7.6,8.9,8.5,7.5,7.9,7.7,8.8,8.4,8.1,8.7,8.3,9.4,7.7,8.6,8.4],"paint":[1,0.8,1.8,1.3,0.9,0.9,0.8,2.1,1.5,1.1,2.8,1.2,0.9,1.5,1.5]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.7]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[27]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[81]}}]},
-{"f":43,"b":[{"b":0,"v":{"total":[31.4,31.5,31.4,30.8,31.2,31.1,31.2,31.2,31.8,31.4,31.2,31.1,31,31.8,30.9],"script":[7.8,7.9,8.1,7.2,7.7,7.7,7.8,7.8,8,8.1,7.8,7.8,7.9,8.2,7.3],"paint":[23,23.1,22.8,23,22.9,22.9,22.9,22.8,23.2,22.9,22.9,22.8,22.6,23,23]}},{"b":1,"v":{"total":[61.5,61.7,62.3,63.3,63.6,63.1,61.6,61.8,63.5,61.7,63.5,63.3,62.3,61.6,61.7],"script":[38.3,38.2,38.7,38.3,38.5,39.7,38.2,38.4,40.1,38.6,40.4,38.5,39,38.1,37.9],"paint":[22.8,23,23.2,24.5,24.6,23,23,23.1,23,22.7,22.6,24.4,22.8,23.1,23.4]}},{"b":2,"v":{"total":[22.5,21.2,21.6,21.6,22.7,22,21.6,21.5,21.9,22.9,21,20.8,21.6,21.5,22.9],"script":[10,9.1,9.1,9.5,10.4,9.7,9.2,9.2,9.2,10,9.1,8.6,8.8,9.5,8.7],"paint":[10.5,9.4,11.4,10.9,10.4,10.4,11.6,10.1,10.9,11.7,10.9,10.5,10.3,10.9,12.3]}},{"b":3,"v":{"total":[11.9,11.9,11.8,11.6,10.8,11.8,12,11.6,11.6,11.6,11,13,11.3,11.9,12,12.3,12.5,11.9,12.6,11.2,12.9,12,11.1,12.2,11.5],"script":[8.5,8.9,9.2,8,8.3,8.9,8.5,8.8,8.8,8.5,8.6,9.8,8.9,8.8,9.4,9.1,9.2,9,10,8.8,9.9,8.8,8.5,9.5,8.6],"paint":[1.7,1,1.1,2.4,1.3,1.7,3,1.1,1.1,1,1.4,1.1,1.2,2.1,1.8,2.8,1.7,1.7,1,0.8,2.7,1.4,1.1,1.1,1]}},{"b":4,"v":{"total":[119,116.6,118.9,116.4,119.4,118.9,119.1,117.2,118,119.5,118,117.8,117.4,120.1,119.9],"script":[21.1,19.6,20.4,19.8,21.3,20.5,21.1,20.3,21.1,19.8,20.4,19.7,20.2,22.3,19.9],"paint":[94.9,94.4,97.5,94.7,96.6,96.5,95.4,95.2,95.2,96.5,94.2,95.8,94,96.3,97]}},{"b":5,"v":{"total":[63.4,62.2,62.1,66.3,63,61.9,64.5,62.5,62.9,63.8,62.3,63.6,63.2,62.9,65],"script":[12.8,12.6,12.9,13.4,12.8,12.4,14,12.8,12.8,13.4,12.7,13,13.1,13.2,13.3],"paint":[48.8,47.9,47.5,51.5,48.7,47.4,48.7,48,48.2,48.5,48.2,49.2,48.1,48.1,49.9]}},{"b":6,"v":{"total":[324.9,323.5,323.8,324.2,324.3,325.4,327.3,323.7,323.2,324.7,323.2,323.8,322.2,321.6,328.9],"script":[79.3,78.8,80.3,80,79.7,80.5,80.5,79.1,80.6,80.6,79.8,80.3,79.3,78.5,83.1],"paint":[239.6,238.7,237.4,238.2,238.5,239,241.1,238.4,237,238.4,237.8,237.4,236.8,235.8,239.1]}},{"b":7,"v":{"total":[37.1,37.1,37.3,36.4,36.5,37.2,36.2,36.4,36.6,38.3,37.4,37.6,36.6,37.2,37.4],"script":[9.7,9.3,9.6,9.2,9.4,9.4,9.1,9.3,9,9.7,9.6,9.8,9.3,9.7,9.6],"paint":[26.5,26.9,26.8,26.4,26.2,26.8,26.2,26.3,26.7,27.8,27,26.9,26.4,26.5,26.9]}},{"b":8,"v":{"total":[10.4,10.3,12,10.2,10.6,10.2,10.9,10.2,10.9,10.1,10.8,10.2,10.7,10.8,10.9],"script":[8.2,7.7,9.9,8.4,9.1,8.8,8.2,8.6,8.7,8.7,8.8,7.9,8.5,8.8,8.9],"paint":[1.4,1.5,1.8,0.9,0.6,0.6,1.8,0.3,1.3,0.3,0.7,1.2,0.2,0.9,1.8]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.1]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[22.4]}},{"b":14,"v":{"DEFAULT":[12.8]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[46.9]}}]},
-{"f":44,"b":[{"b":0,"v":{"total":[27,27.1,27.5,27.1,27.2,26.7,27,27.2,27,27.3,27.1,26.8,26.9,27.2,27],"script":[3.3,3.3,3.6,3.3,3.2,3.2,3.2,3.3,3.4,3.4,3.3,3.2,3.3,3.3,3.3],"paint":[23.3,23.4,23.5,23.4,23.6,23.2,23.4,23.5,23.3,23.5,23.4,23.2,23.3,23.6,23.3]}},{"b":1,"v":{"total":[30.2,29.6,29.8,29.8,29.8,29.9,29.5,30.9,30.1,30.2,29.4,29.8,30.1,30.1,29.9],"script":[6,5.4,5.8,5.7,5.7,5.8,5.7,5.9,5.7,5.8,5.3,5.8,5.8,5.8,5.7],"paint":[23.7,23.7,23.5,23.5,23.5,23.6,23.3,24.5,23.8,23.8,23.6,23.5,23.7,23.6,23.6]}},{"b":2,"v":{"total":[12.7,13.3,12.1,14,13.9,12.4,14.1,11.9,13.2,12.4,13.1,12.5,13.9,13.2,12.4],"script":[2,0.9,1,3.1,2.4,1.1,2.6,0.9,2.2,1.2,1.7,0.9,2.5,1.1,1.2],"paint":[9.4,10.3,9.6,8.8,10.3,9.6,10.3,9.7,9.9,9.9,9.5,10,10.1,10.9,10.2]}},{"b":3,"v":{"total":[3.5,2.7,2.3,3.1,2.9,2.5,2.6,3.5,2.6,3,3,2.6,3,3.1,2.4,3,2.6,2.5,2.9,2.4,3.3,4.4,2.8,2.2,2.5],"script":[1.4,0.9,0.1,0.2,0.3,0.9,0.5,0.5,0.8,0.5,0.6,0.9,0.9,1.1,0.8,0.8,0.6,0.2,0.9,1,0.9,0.8,0.1,0.6,0.2],"paint":[1.3,1,2,1.7,1.7,1.1,0.3,1.2,0.7,0.9,1.6,1.5,1.4,1.3,0.7,2.1,1.9,1.3,1.3,1.3,1.9,1.5,1.6,1,2.2]}},{"b":4,"v":{"total":[15.2,14.5,14.1,13.8,14,13.9,13.8,14,14.1,13.8,14.3,14.8,13.8,14.2,14],"script":[0.9,0.5,1,0.6,0.9,1.3,1.1,1.4,1,1,1,0.6,0.9,1,0.6],"paint":[12.9,12.6,12,11.7,12.2,11.7,11.8,11.3,11.7,11.5,12.3,13.2,11.9,12.2,12.2]}},{"b":5,"v":{"total":[10.6,10.9,10.7,10.7,11,10.8,10.7,10.9,11.6,10.9,10.8,10.4,10.6,10.9,10.7],"script":[0.2,0.3,0.2,0.3,0.5,0.5,0.1,0.3,0.3,0.4,0.2,0.2,0.2,0.4,0.5],"paint":[9.8,9.8,9.8,9.7,9.7,9.6,10.1,9.8,10.8,9.9,10.1,9.6,9.8,9.9,9.7]}},{"b":6,"v":{"total":[285.8,286.2,287.4,288.3,288.2,287.7,284.9,284.9,282.4,285.6,284.5,284.3,285.6,283.9,285.1],"script":[39.5,38.9,38.8,39.5,39.1,38.2,38.6,38.1,37.4,38,38.2,36.7,38.5,38,38.4],"paint":[240.2,241.5,242.6,242.8,243.1,243.5,240.7,240.8,239.3,242,240.7,241.4,241.2,240.3,241.2]}},{"b":7,"v":{"total":[30.8,31,31.3,31.2,32,30.8,30.7,31.6,31.6,30.5,31.1,30.9,31.1,32.5,30.6],"script":[3.5,4.4,4.4,3.6,4.5,3.6,3.8,4.4,4.5,3.8,4.4,3.8,4,3.9,3.8],"paint":[26.5,25.9,26.1,26.7,26.5,26.4,26.3,26.4,26.3,26,25.9,26.3,26.4,27.8,26.1]}},{"b":8,"v":{"total":[9.7,9.6,9.4,9.7,9.9,10.2,9.6,8.9,9.4,9.3,10.2,9.4,8.9,9.5,9.5],"script":[8.1,7.8,7.1,7.1,8,7.8,7.9,7.9,7.9,7.4,7.9,7.5,7.4,7.3,7.7],"paint":[1.1,0.9,1.7,1.7,1.4,0.2,1,0.2,0.7,1,1.3,0.4,0.8,2,0.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.9]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[21.1]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[70]}}]},
-{"f":45,"b":[{"b":0,"v":{"total":[26,26,26,26,25.9,25.9,26.1,25.9,26.3,26,27.2,26.5,25.8,26.1,26],"script":[1.9,1.9,1.8,1.9,1.9,1.8,1.9,1.8,1.9,1.9,2.2,1.9,1.9,1.9,1.9],"paint":[23.8,23.7,23.8,23.8,23.7,23.7,23.9,23.7,24,23.7,24.7,24.2,23.5,23.8,23.8]}},{"b":1,"v":{"total":[28.6,28,29,28.4,28.9,28.9,28.6,28.9,28.5,29,28.7,30.2,28.5,28.6,29.5],"script":[4,3.9,4.1,4,4,4,4,4.1,4,4.2,3.9,4.4,3.9,3.9,4],"paint":[24.2,23.8,24.4,24,24.6,24.4,24.2,24.4,24.1,24.4,24.3,25.3,24.1,24.2,24.8]}},{"b":2,"v":{"total":[13.3,13,13.5,12.5,13.1,12.7,13.4,12.2,12.3,12.9,12.9,12.8,12.7,12.8,13.3],"script":[1.2,1.5,1.5,1.1,0.8,1,1.3,0.8,1,1.4,1,1,1.2,1.5,1.5],"paint":[10.6,10.1,10.9,10.4,10.8,10.4,10.3,10.4,9.1,10.3,10.8,10.5,10.1,10.4,10.4]}},{"b":3,"v":{"total":[3,3.3,3.7,3,3,2.8,3.2,2.5,2.5,2.8,2.4,2.6,2,2.8,3.7,3.1,3.1,3.6,3.4,5.3,2.2,3.6,3.2,2.7,2.2],"script":[1,0.6,1.6,0.6,0.2,0.7,1.2,0.6,1,1.1,1,1.2,0.9,0.2,2,1.1,1.1,2,1.4,2.1,0.6,1.2,0.6,0.9,0.2],"paint":[1.9,1.4,1.6,1.9,1.3,1.7,1.7,1.1,1.4,1.5,1.3,0.7,1,2.2,1.1,1.4,1.9,1,1.8,2,0.7,1.4,2.5,1.6,2]}},{"b":4,"v":{"total":[16.8,15.2,14.1,14.6,14.3,15.4,14.7,14.8,14.8,14.7,16,14.5,15.1,16,14.9],"script":[2.8,1.6,0.7,0.9,0.7,2.6,1.3,1.4,0.9,1.2,2.7,1.6,1.2,2.6,1.5],"paint":[13.3,12.4,12.2,12.7,12.7,11.3,12.8,12.4,12.8,12.7,11.7,11.9,13.2,12.2,12.4]}},{"b":5,"v":{"total":[10.8,10.7,10.9,10.9,11,11,10.6,11,11,11.1,10.9,10.9,10.5,10.5,11.6],"script":[0.4,0.3,0.3,0.5,0.6,0.5,0.3,0.3,0.6,0.3,0.5,0.5,0.2,0.2,0.3],"paint":[9.8,9.9,10,9.6,9.8,10,9.9,10.1,9.3,10.2,9.8,9.9,9.4,9.6,10.8]}},{"b":6,"v":{"total":[277.2,274,273.1,275.3,275,274.1,275.9,274.7,275.7,275,275.5,273.1,275.8,274.3,274.4],"script":[26.4,26.5,25.6,26.5,25.9,26.7,25.9,25.7,26,26.2,25.4,25.9,25.8,26.1,26],"paint":[244.2,241.8,241.7,242.4,242.5,241.2,244.3,242.7,243.5,243.2,244.1,241.5,244,242.2,242.6]}},{"b":7,"v":{"total":[30.8,29.7,29.8,30.5,30.5,30,30.5,30,30.6,31.5,29.4,30.6,29.6,30.3,29.4],"script":[2.2,2.1,2.5,2.1,2.1,2.2,2.1,2.1,2.3,2.2,2.1,2.2,2.1,2.3,2.1],"paint":[27.9,26.9,26.7,27.6,27.6,27.2,27.6,27.1,27.6,28.5,26.6,27.7,26.8,27.4,26.6]}},{"b":8,"v":{"total":[9.6,10.4,10.5,9.4,9.5,10.3,9.9,11,9.5,9.4,10.3,9.7,10,10,11],"script":[7.4,8.3,8.4,7.8,7.7,8.3,8.2,8.3,7.7,7,7.8,6.9,8.8,7.9,8.9],"paint":[1.1,0.8,1.9,1.1,1.2,0.2,1.1,1.4,1,1.2,1.7,2,0.4,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.3]}},{"b":11,"v":{"DEFAULT":[2.3]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[16.5]}},{"b":14,"v":{"DEFAULT":[9.6]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[47.7]}}]},
-{"f":46,"b":[{"b":0,"v":{"total":[34.8,35.1,34.9,34.9,34.7,34.5,34.6,34.7,34.7,34.4,35.1,35.3,34.5,34.6,34.9],"script":[10,10.2,10,10.1,9.9,9.9,10,9.9,10,10,10.6,10.2,9.8,10.2,9.9],"paint":[24.3,24.4,24.4,24.3,24.3,24.1,24.1,24.2,24.2,23.9,23.9,24.5,24.2,23.9,24.5]}},{"b":1,"v":{"total":[39.9,40.4,41.3,39.9,39.6,39.7,39.2,39.4,40.4,40.8,39.6,39.1,40.3,39.9,39.7],"script":[14.6,14.4,14.7,14.3,14.3,14.3,14.2,14.3,14.5,15.5,14.2,14.3,14.5,14.5,14.6],"paint":[24.8,25.5,26,25,24.7,24.8,24.4,24.6,25.3,24.8,24.9,24.3,25.3,24.9,24.6]}},{"b":2,"v":{"total":[11.7,11.9,11.6,11.4,12,13.7,11.9,11.9,13.4,11.9,12.3,10.7,11.9,11,11.2],"script":[0.9,1,1,0.3,0.2,1.8,0.8,0.5,1,0.2,0.9,0.8,0.6,0.7,0.6],"paint":[9.9,9.5,9.5,9.6,10.8,10.8,9.6,9.6,11,10.5,10.2,8.4,9.8,9.1,9.7]}},{"b":3,"v":{"total":[4.6,2.5,2.7,2.2,1.9,1.9,1.7,2.6,2.8,2.6,2.7,2.3,1.9,1.9,2,2.3,2.4,2,1.9,1.8,2.3,2.4,3,3.2,1.9],"script":[0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.9,0.9,0.4,0.5,0.4,0.1,0.1,0.5,0.1,0.2,0.1,0.1,0.1,0.9,0.9,0.1,0.8],"paint":[1.5,1.6,1.2,2,0.3,1.1,1.5,2.4,1.6,0.9,1.2,1.1,1.3,1.5,1.2,1.1,2.2,1,1.7,1.6,1.3,1,2,1.5,1]}},{"b":4,"v":{"total":[16.2,15.6,16,16,16.4,16.3,15,15.6,16.9,15,16.4,16,15.6,16.1,16.5],"script":[2.2,2.5,2.3,2.1,2.1,2.3,1.9,2.5,2.5,2.2,2.1,2.2,2.1,2.9,2.5],"paint":[12.9,11.9,12.2,12.4,13.3,13.8,12.1,11.3,13.1,11.9,13.1,12.7,12.2,11.4,12.7]}},{"b":5,"v":{"total":[12.2,12.2,11.9,12,12,11.8,11.6,11.9,12.4,11.8,12.2,11.9,11.7,11.8,12.1],"script":[1.3,1.3,1.5,1.4,1.6,1.3,1.3,1.5,1.6,1.3,1.3,1.4,1.3,1.3,1.3],"paint":[10.2,10.2,9.7,9.8,9.8,9.7,9.4,9.6,10.2,9.6,10.1,10,9.8,9.7,10.2]}},{"b":6,"v":{"total":[342.5,343,343.7,342.3,347.4,342.6,342.2,344.9,342.5,343.3,342.8,341,345,340.8,342.9],"script":[98.3,98.4,99.1,99.6,102.6,98.4,97.8,98.1,99.1,98.2,98.2,97.8,100.1,97.9,97.9],"paint":[238.1,238.7,238.7,237,238.8,238.5,238.3,239,237.7,239.3,237.8,236.3,238.8,237,237.5]}},{"b":7,"v":{"total":[43.2,42.1,42.9,43.4,43.5,43.6,43.4,43.4,42.1,43.6,43.1,43.8,43.8,44.2,42.6],"script":[14.3,14,13.9,14.2,14.8,14.3,14.6,14.8,13.5,14.2,14.7,14.3,14.4,15,13.9],"paint":[28.1,27.2,28.1,28.3,27.8,28.1,27.9,27.7,27.8,28.5,27.5,28.6,28.6,28.3,27.9]}},{"b":8,"v":{"total":[18.3,18.1,17.9,17.8,18.7,20.1,18.2,18.6,17.4,17.3,21.4,17.9,18.9,18.6,18.5],"script":[16.4,16,16.3,15.7,16.4,18.2,16.4,16.1,15.3,15.7,18.5,16.1,17,16.8,16.4],"paint":[1.1,1.7,0.4,1,0.8,1.6,0.9,1.2,1.2,1.1,1.1,0.7,0.3,0.9,1.2]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[4.5]}},{"b":11,"v":{"DEFAULT":[4.5]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[37.9]}},{"b":14,"v":{"DEFAULT":[19]}},{"b":15,"v":{"DEFAULT":[8.1]}},{"b":16,"v":{"DEFAULT":[46.6]}}]},
-{"f":47,"b":[{"b":0,"v":{"total":[51.9,53,52.3,52.1,52.6,53,52.4,52.8,53.6,51.9,52.4,52.8,52.6,52.4,52.4],"script":[27.4,28.1,27.3,27,27.5,28,27.6,27.8,28.9,27.2,27.6,27.9,27.9,27.2,27.7],"paint":[24,24.4,24.5,24.7,24.4,24.4,24.3,24.6,24.3,24.2,24.3,24.4,24.2,24.7,24.1]}},{"b":1,"v":{"total":[71.6,69.3,71.1,70.9,71,71.2,70.6,70.4,70.8,71,71.2,71,72.7,71.5,71],"script":[45.9,43.6,45.2,45.1,45.1,45.2,44.8,44.6,44.9,44.8,45.2,45.1,45.3,45.7,44.9],"paint":[25.2,25.2,25.4,25.3,25.4,25.6,25.4,25.3,25.5,25.7,25.5,25.4,26.8,25.4,25.6]}},{"b":2,"v":{"total":[14.2,14,14.3,14.2,13.3,14.3,14,14.2,14.2,14.8,13.7,15.8,13.9,14,14],"script":[1.4,2.1,1.3,1.3,1.9,1.8,1.7,2.1,1.5,2.3,1.7,2.1,1.8,1.7,2],"paint":[12.1,10.3,11.4,11.5,10.4,11.1,10.7,10.4,11.8,11,10.4,12.1,10.8,11.3,10]}},{"b":3,"v":{"total":[11.7,11.5,10.5,12.6,12.6,11.2,11.7,12.5,12.3,12.2,12.3,10.4,10.3,11.4,10.6,11.7,10.7,11.9,11.1,11.6,12.8,10.6,11.6,10.8,11],"script":[8.4,8.6,7.8,9.1,9,8.3,8.7,8.4,9.3,8.5,9.4,7.5,7.9,8.6,7.6,8.6,8.2,8.8,7.9,8.4,9.8,8.3,8.4,7.3,7.8],"paint":[2.2,1.6,1.8,2.4,2,1.7,1.7,2.6,2.1,2.5,2,2.2,1.3,1.2,2.2,1.9,1.5,1.3,1.4,2.2,1.7,0.8,1.6,2.2,2.3]}},{"b":4,"v":{"total":[124.1,122.4,120.7,123.2,121.5,122.1,123.4,121.3,124,120,123.8,121.9,126.1,122.5,122.5],"script":[22.2,20.5,21.3,22.7,21.9,21.8,21.1,20.6,22,20.3,22.9,20.7,23.3,22.7,21.1],"paint":[98.3,100.9,97.4,99.2,98,97.7,100.8,99.1,100,98.5,98.9,98.9,100.8,98.6,99.2]}},{"b":5,"v":{"total":[13.9,13.6,14,13.3,13.1,13.3,13.6,13.4,13.2,13.3,13.4,13.3,12.8,13.6,12.8],"script":[1.6,1.7,2.6,1.4,1.7,1.7,1.6,1.6,1.6,1.7,1.7,1.6,1.7,1.8,1.7],"paint":[11.4,11.2,10.8,11.1,10.8,10.6,10.9,11.1,11.2,10.7,10.7,10.7,10.4,11,10.4]}},{"b":6,"v":{"total":[510.2,509.2,505.8,508.7,509.2,508.7,508.2,508.1,505.2,518,508,506.8,507.4,511,512.3],"script":[253.4,250.4,249.7,250.8,251.6,248.2,250.5,249.4,250.1,251.3,251.1,248.9,250.1,250.9,249],"paint":[250,252.3,249.5,251.3,251.1,254.1,250.8,252.2,248.2,259.8,250.4,251.2,250.5,253.2,256.1]}},{"b":7,"v":{"total":[62.8,61.3,60.4,61.5,62.5,60.6,61.9,60.9,61.9,62.3,61.2,61.7,61.4,62.8,62.8],"script":[33,31.9,30.9,32.3,31.9,31.5,32.4,31.9,31.7,32.6,32.1,32,32,32.3,33.8],"paint":[28.9,28.5,28.6,28.4,29.7,28.2,28.5,28.1,29.2,28.7,28.2,28.7,28.4,29.6,28.1]}},{"b":8,"v":{"total":[38.5,38,42.4,46.4,39.8,42.3,42.5,43.3,40.7,45,41,39.1,37.9,40.1,42.4],"script":[36.7,36.1,40.6,44.1,38.1,40.3,41.1,41.4,39.3,42.9,38.3,37.4,36.2,38.7,40.6],"paint":[1.6,1.8,1.7,2.2,0.3,1.8,0.3,1.8,1.3,2,1.2,1.1,1.1,0.3,1]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[12.6]}},{"b":11,"v":{"DEFAULT":[12.6]}},{"b":12,"v":{"DEFAULT":[1.3]}},{"b":13,"v":{"DEFAULT":[75.3]}},{"b":14,"v":{"DEFAULT":[70.4]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[89.2]}}]},
-{"f":48,"b":[{"b":0,"v":{"total":[26.8,26.8,26.7,26.7,26.7,26.6,26.8,27,26.9,27,27.1,26.7,26.8,27.1,27],"script":[3.8,3.7,3.7,3.6,3.8,3.6,3.6,3.7,3.8,3.7,3.7,3.6,3.7,3.8,3.6],"paint":[22.6,22.7,22.6,22.7,22.6,22.6,22.8,22.9,22.7,22.9,23,22.7,22.8,22.9,23]}},{"b":1,"v":{"total":[30.1,30,30.5,31.1,30.1,32.2,29.9,29.8,30.2,31.6,30.4,30.2,29.8,30.1,29.8],"script":[6.3,6.2,6.4,6.4,6.6,6.8,6.2,6.1,6.2,6.5,6.6,6.4,6.4,6.2,6.1],"paint":[23.2,23.2,23.6,24.1,23,24.8,23.1,23.1,23.5,24.6,23.2,23.2,22.9,23.4,23.2]}},{"b":2,"v":{"total":[12.9,12.7,13.1,12.8,13.1,13,13,12.5,14.1,12.7,12.9,14,13.3,13.4,12.5],"script":[1.9,1.2,1.7,1.8,1.8,1.7,1.5,1.6,1.8,1.5,1.7,2.6,1.8,1.5,1.6],"paint":[9.9,9.3,9.9,8.9,9.2,9.8,9.5,9.5,11.6,9.9,10,10.2,10,10.7,9.4]}},{"b":3,"v":{"total":[2.8,2.4,2.5,2.5,2.5,2.2,2.4,2.1,1.6,2.4,1.6,1.9,2.1,7.3,2.7,2.6,1.9,2.7,2.2,2.2,2.5,2.7,2,1.9,1.6],"script":[0.9,0.5,0.1,0.1,0.1,0.9,0.9,0.2,0.1,0.8,0.1,0.6,0.7,0.5,0.8,0.5,0.1,0.8,0.1,0.1,0.1,0.1,0.5,0.3,0.1],"paint":[1.7,1.7,2.2,1.7,1.4,0.7,1.3,1.1,1.3,1.5,0.7,0.8,1.2,1.1,1.1,1.4,1.6,1.2,1.3,1,1.4,2.2,0.7,1.4,1.4]}},{"b":4,"v":{"total":[14.8,14.2,14.4,13.8,13.8,14.3,15.1,15.7,14.8,14.6,14,15.2,15.9,13.7,15.2],"script":[1,0.9,1.5,0.9,1,0.9,1,1.7,1.1,0.6,0.9,1.1,1.2,0.9,1.2],"paint":[12.5,12.6,11.1,11.7,11.8,12.3,12.4,13,12.2,12.5,11.9,13,13.4,11.4,13]}},{"b":5,"v":{"total":[10.7,10.8,10.8,10.6,10.8,10.7,10.9,11.1,10.9,10.9,11,11.5,10.5,11,11],"script":[0.2,0.4,0.5,0.2,0.3,0.2,0.2,0.3,0.5,0.4,0.3,0.2,0.2,0.4,0.4],"paint":[9.8,9.8,9.7,9.8,10,9.6,10.1,10.3,9.8,10,10.2,10.6,9.4,10,10]}},{"b":6,"v":{"total":[289.6,289,289.7,291.5,289.6,289.6,289.9,288.4,289.7,293.8,291.2,291,291.6,292.2,291.9],"script":[50.3,49.8,48.9,49.5,49.7,49,49.3,49,50,49.5,49.7,49.7,50,45.7,49.5],"paint":[233.6,233.5,235.3,236.3,234.5,235.1,235,233.6,233.9,238.2,235.9,235.7,235.7,240.7,236.7]}},{"b":7,"v":{"total":[29.4,30.2,30.2,30.7,29.9,29.8,30,30.2,30,31.6,30.5,30.9,30.9,30.8,30.5],"script":[3.5,3.6,3.8,3.7,3.9,3.7,3.6,3.7,3.8,3.7,3.8,3.7,3.6,3.7,3.7],"paint":[25.2,25.9,25.7,26.3,25.3,25.4,25.7,25.7,25.5,27.2,26,26.4,26.6,26.3,26.1]}},{"b":8,"v":{"total":[10.5,10.1,10,10.9,10.2,10.8,10.6,9.7,10.2,11,10.5,10.3,10.3,10.3,9.8],"script":[9,8.3,8.1,9.1,8.5,8.5,8.7,7.9,8.5,8.9,8.8,8.1,8.4,8.2,8],"paint":[0.9,1,0.9,0.7,0.2,1.9,1.7,1,0.7,0.6,1.1,0.7,0.6,1.1,1.1]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[5.2]}},{"b":11,"v":{"DEFAULT":[5.2]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[30.1]}},{"b":14,"v":{"DEFAULT":[75]}},{"b":15,"v":{"DEFAULT":[24.6]}},{"b":16,"v":{"DEFAULT":[95.1]}}]},
-{"f":49,"b":[{"b":0,"v":{"total":[58.7,58.9,58.8,59.5,58.9,58.3,58.2,58.3,59.1,59.1,56.5,58.8,58.9,58.7,58.1],"script":[33.9,34.2,34,34.9,34.2,33.8,33.6,33.5,34,34.5,31.8,34,34.3,34.1,33.6],"paint":[24.3,24.2,24.3,24.2,24.2,24.1,24.1,24.2,24.7,24.1,24.2,24.3,24.2,24.1,24]}},{"b":1,"v":{"total":[86.7,86.6,85.7,89.2,86.3,88.9,87.1,88.6,88.1,87.5,84.9,87.3,89.4,87.4,86.5],"script":[61.1,61.1,60.4,62.9,60.9,63.4,61.3,62.7,62.7,61.7,59.2,61.4,67.2,62.1,61],"paint":[25.1,25.1,24.8,25.8,24.8,25.1,25.2,25.4,24.9,25.2,25.2,25.4,21.8,24.8,25.1]}},{"b":2,"v":{"total":[18.6,19.1,17.6,18.8,18.4,18.3,18.7,17,16.9,17.9,18.5,17.5,18.8,18.5,18.4],"script":[5.2,5.8,5.8,6.1,5.6,6,5.7,5.5,4.9,5.6,6.3,5.3,5.8,6.3,5.2],"paint":[12,12.1,10.8,10.6,11.9,11.4,11.9,10.1,10.7,10,10.9,11.6,11.8,11,11.6]}},{"b":3,"v":{"total":[7.3,6.8,6.1,5.9,6.1,6.3,7.3,6.1,6.7,6.1,6.1,6,6.3,6.7,6.6,7.2,6.8,6.3,7,7.3,6.9,6.2,6.7,6.3,5.9],"script":[5.1,4.3,4,4.3,3.9,4.1,4.6,4.6,4.5,4.3,4.5,4.4,4.4,4.8,4.6,4.9,4.1,4,4.3,5.5,4.3,4.5,4.3,3.9,4.3],"paint":[1.2,1.5,1,1,2,1.1,1.9,1.3,2,1.2,0.7,0.7,1.8,1.1,1.8,1.7,2.1,1.3,2.1,1.7,2,0.7,1.3,1.3,1]}},{"b":4,"v":{"total":[127.5,131.4,122.8,127.7,126.7,124.6,127,124.3,123.3,128.3,123,126.8,125.4,125.3,127.7],"script":[23.6,23,21.3,24.3,23.3,21.8,23.8,22.2,22.5,22.6,23.6,24,21.3,22.2,24.2],"paint":[101.7,105.7,100.2,101.5,102,101.1,101.2,100,99.2,104.1,97.8,100.5,102.8,101.2,102.2]}},{"b":5,"v":{"total":[13.4,13.5,13.4,13.3,13.4,13.4,13.4,13.5,13.7,13.5,13.8,13.6,13.4,13.4,13.3],"script":[2.1,2,2.2,2.2,2.3,2.2,2.1,2,2.2,2.3,2.3,2.2,2.3,2,2.1],"paint":[10.4,10.6,10.6,10.1,10.1,10.1,10.8,10.8,10.5,10.2,10.5,10.6,9.9,10.5,10.5]}},{"b":6,"v":{"total":[472.9,471.7,474.2,473.3,473.4,474.3,469.9,473.8,473,472.5,475.7,476.5,476.1,475,472.5],"script":[219.3,218.7,219.4,217.8,218.3,218.3,215,220.4,219.9,218.5,219.5,221.7,220.6,217,218.6],"paint":[247.6,247,248.7,249.2,248.6,249.6,248.7,247.4,246.9,247.7,249.7,248.2,248.5,251.5,247.9]}},{"b":7,"v":{"total":[66.5,65.2,65.9,65.7,65.5,66.2,66.6,66,66.7,65.5,66.1,65.5,66.5,65.3,67.1],"script":[37.9,36.9,37.3,37.2,37.1,37.7,37.8,37.4,38.2,36.7,37.7,37.1,37.9,36.9,37.7],"paint":[27.8,27.5,27.8,27.6,27.6,27.8,28,27.8,27.7,28,27.6,27.5,27.7,27.5,28.6]}},{"b":8,"v":{"total":[33.4,32.3,34.5,31,34.5,33.4,32.4,32.6,32.3,33.2,34.7,32.5,35.2,34.5,32.7],"script":[31.5,30.4,32.6,29.2,32.6,31.6,31,30.3,30.2,31.8,33.2,31,32.9,32.2,30.7],"paint":[1.8,1.7,1.1,0.8,1.3,1.1,1.3,2.2,1.3,1.3,0.6,0.6,1.8,2.2,1.8]}},{"b":9,"v":{"DEFAULT":[3.3]}},{"b":10,"v":{"DEFAULT":[15.3]}},{"b":11,"v":{"DEFAULT":[15.4]}},{"b":12,"v":{"DEFAULT":[4.1]}},{"b":13,"v":{"DEFAULT":[114.9]}},{"b":14,"v":{"DEFAULT":[720.4]}},{"b":15,"v":{"DEFAULT":[80.1]}},{"b":16,"v":{"DEFAULT":[647]}}]},
-{"f":50,"b":[{"b":0,"v":{"total":[34.9,34.2,34.2,34.6,33.9,34.1,34.3,34.1,34.2,34,33.7,34.5,34.6,34.2,34.1],"script":[11.3,10.7,10.6,11,10.7,10.6,10.8,10.7,10.5,10.4,10.4,11.1,11.1,10.7,10.7],"paint":[23.2,23,23,23.1,22.7,23,23,22.8,23.1,23,22.8,22.8,22.9,23,22.8]}},{"b":1,"v":{"total":[37.7,37.9,38.5,37.5,37.7,38,37.5,38.2,39.1,39.6,38,37.8,37.4,37.9,37.9],"script":[13.2,13.4,13.6,13.3,13,13.6,13.2,13.6,14.1,13.7,13.3,13.5,13.1,13.7,13.5],"paint":[23.9,23.9,24.2,23.6,24.2,23.9,23.7,24,24.5,25.2,24,23.7,23.7,23.6,23.8]}},{"b":2,"v":{"total":[18.4,17.3,17.6,20.8,16.9,16.9,18.3,17.5,20,19.4,19.3,18.2,16.8,20.1,19.5],"script":[6.6,4.7,5.6,7.5,5,5,5.5,5.6,6.7,7.6,6.6,6.2,4.8,6.6,6.4],"paint":[10.4,10.7,9.3,9.9,11,9.8,10.5,10.5,10.7,9.5,10.7,9.8,10.1,12.3,10.5]}},{"b":3,"v":{"total":[6.1,4.1,4.8,4.6,5.3,5.2,4.2,4.7,4,5.4,5.7,4.5,4.6,4.7,5.8,5.6,5.2,4.5,5.4,4.4,6.8,5,5.6,5.4,4.9],"script":[2.6,1.9,2.1,2.4,1.9,2.4,2.3,1.7,2,2.1,3.4,1.5,1.3,2.5,3.7,2.8,2.9,1.8,2.9,1.5,1.7,2.9,3.5,3.1,2.2],"paint":[1.1,1.1,1,0.4,2.5,2.6,1,2.9,1.1,2.1,2.1,2.8,2.4,1.3,1.9,2.2,0.6,2.5,1.3,2.3,2.5,1.9,0.4,1.4,2.6]}},{"b":4,"v":{"total":[121.1,120.3,121.2,118.1,120.6,120.5,119.3,122.3,121.5,121.2,118.2,116.6,122.2,120.9,118.2],"script":[22.7,22.9,23.1,20.7,22.4,23.5,22,21.2,22.4,23.4,20.7,22.2,22.9,22.1,21.8],"paint":[96.8,95.9,95.9,95.1,96.5,93.5,94.8,98.2,96.2,95.4,94.1,92.8,96.7,97.2,93.1]}},{"b":5,"v":{"total":[13.8,13.8,14.6,14.2,14,13.9,14,14.2,14,14,13.9,13.5,14.5,14.4,13.3],"script":[2.7,3,3.8,3,3,2.9,3,3.1,2.7,2.9,2.9,2.8,3.7,2.8,2.8],"paint":[10.4,10.1,10.2,10.4,10.6,10.1,10.2,10.5,10.4,10.4,10.5,10,10.2,10.9,9.8]}},{"b":6,"v":{"total":[430.4,436.8,438,432.7,427.6,438.4,432.4,434.1,441.9,441.4,440.4,432,433.7,435.2,441],"script":[187,190.5,190.5,189,184.7,190.6,187.5,187.2,196.2,192.5,190.7,185.9,187.3,189.5,194.6],"paint":[237.2,240.4,241.2,237.4,237.2,241.1,238.9,240.3,239.6,242.1,243.9,239.2,240,239.6,240]}},{"b":7,"v":{"total":[37.9,38,38.5,38.2,38.3,38,38,38.6,38.2,38.2,37.8,37.9,38.6,38.1,37.5],"script":[10.1,10.2,10.5,9.7,10.2,9.9,10.1,10.5,10.3,10.5,10.2,10.3,10.2,10.3,10],"paint":[26.9,26.9,27.1,27.7,27.2,27.2,27,27.1,27.1,26.8,26.7,26.7,27.5,27,26.6]}},{"b":8,"v":{"total":[13,13.3,14,14.1,14,13.7,12.2,12.4,14.3,13.2,14.7,13.3,12.4,14.4,12],"script":[11.2,11.2,11.9,11.5,11.9,10.7,10.1,10.4,12.2,11.7,11.8,11.4,10.1,11.7,9.4],"paint":[0.4,0.7,1,2,1.1,1,0.6,0.5,1.5,0.6,1.9,1.6,0.9,2.1,1.9]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[5.8]}},{"b":11,"v":{"DEFAULT":[6.4]}},{"b":12,"v":{"DEFAULT":[4.6]}},{"b":13,"v":{"DEFAULT":[43.6]}},{"b":14,"v":{"DEFAULT":[157.1]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[179.1]}}]},
-{"f":51,"b":[{"b":0,"v":{"total":[31.6,31.1,31.2,31.4,31.9,32,31.3,31.8,31,31.3,31.2,31.3,31.5,31.4,31.2],"script":[6.7,6.7,6.8,6.7,7.3,6.7,6.7,6.8,6.5,6.8,6.7,6.7,6.7,6.7,6.6],"paint":[24.2,23.9,23.8,24.1,23.9,24.6,24.1,24.4,23.8,24,23.9,24,24.2,24.1,23.9]}},{"b":1,"v":{"total":[36.8,36.5,35.8,36.3,36.4,35.4,35.8,35.6,35.6,36.1,36.6,36.7,35,36,35.6],"script":[12,11.8,11.1,11.6,11.4,11.1,11.4,11.2,11.4,11.5,11.1,11.2,10.7,11.3,11.1],"paint":[24.3,24.1,24.1,24.1,24.4,23.8,23.8,23.8,23.7,24.1,24.9,24.9,23.8,24.2,23.9]}},{"b":2,"v":{"total":[14.5,14,14.5,15.4,15,14.8,15,13.9,15.5,14.2,14.7,14.4,14.1,16,15.2],"script":[3,3,3.7,3.9,3.8,3.6,3.6,2.7,4,2.8,3.3,3,3.1,4.3,3.8],"paint":[9.7,9.6,9.4,10.3,10.2,9.7,10.2,10.1,10.6,10.2,10.4,10.1,9.4,9.9,10]}},{"b":3,"v":{"total":[5.3,4.8,5.4,4.8,5.1,4.6,5.4,5,5.1,4.6,4.3,5,4.7,4.7,4.8,4.6,5.2,5.1,4.5,6.4,4.9,4.8,4.6,5.6,4.3],"script":[3,2.8,3.2,2.8,2.7,2.3,2.7,2.9,3,2.8,3.1,2.6,3.4,2,2.8,2.8,2.9,3.1,3.2,4,2.6,2.6,3,4,2.8],"paint":[1.6,0.3,2.1,1.7,1.4,1.3,2.6,2,2,1.7,0.6,1.6,1.2,2.3,1.9,1,1.2,1.8,0.7,1.2,1.3,0.4,0.9,1,1.4]}},{"b":4,"v":{"total":[16.7,16.5,15.8,15.9,15.5,17.3,17.5,16.7,16,16,15.6,16.4,16.9,17.2,16.2],"script":[2.7,2.7,2.4,2.7,2.9,3.3,3.2,3.1,2.9,2.8,2.8,3.6,2.7,3.6,2.4],"paint":[12.9,12.7,12.3,12.6,11.5,12.2,13.6,12.3,12.2,11.6,11.9,12.5,13.3,12.6,13]}},{"b":5,"v":{"total":[12.5,12.7,12.3,12.1,12.7,12.7,12.5,12.5,12.6,12.6,12.5,12.7,12.8,12.5,12.1],"script":[2.2,1.9,1.9,1.9,1.9,2.3,1.9,1.9,2.2,2.2,2.1,1.9,2.3,2.1,2.1],"paint":[9.8,10.1,9.8,9.4,9.9,9.9,10.1,10.1,9.7,9.9,9.8,9.9,9.9,9.8,9.3]}},{"b":6,"v":{"total":[316,316.2,318.6,318.6,317.2,318.6,318.2,319,316,317.9,318,317.8,317.8,313.9,317.4],"script":[69.7,69.8,69.8,69.2,69.1,69.1,70,68,68.4,70,69.4,69.4,71.2,68.9,69.4],"paint":[240.7,241,243.1,243.6,242.7,243.7,241.5,244.4,242,242.4,242.8,242.7,241.1,239.3,242.2]}},{"b":7,"v":{"total":[34.5,34.2,34.5,34,34.8,35.5,34.4,34.7,34.2,34.8,35,34.8,34.6,35.2,34.3],"script":[6.8,6.9,6.9,6.7,6.9,6.8,6.8,6.7,6.8,6.9,6.8,6.9,7,7,6.8],"paint":[26.8,26.4,26.8,26.4,27,27.7,26.7,27,26.4,27,27.2,27,26.8,27.2,26.5]}},{"b":8,"v":{"total":[17,16.1,18.5,18.6,16.8,19.1,16.7,17.3,17.1,17.4,19,16.2,16,17,16.5],"script":[15.1,14.3,16.6,16.1,14.7,16.7,15.3,14.8,14.7,14,16.9,13.8,13.9,14.8,14.7],"paint":[1.6,0.9,0.9,1.5,1.9,1,1.2,1.9,1.1,2.7,0.3,2.2,0.6,1.5,1]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[5.5]}},{"b":11,"v":{"DEFAULT":[5.5]}},{"b":12,"v":{"DEFAULT":[4.6]}},{"b":13,"v":{"DEFAULT":[37.2]}},{"b":14,"v":{"DEFAULT":[189.6]}},{"b":15,"v":{"DEFAULT":[48.8]}},{"b":16,"v":{"DEFAULT":[232.2]}}]},
-{"f":52,"b":[{"b":0,"v":{"total":[28.8,28.3,28.3,28.4,28.2,28.7,28.4,28.8,28.6,28.5,28.6,28.6,29,28.8,29],"script":[4.7,4.5,4.6,4.6,4.6,4.7,4.6,4.7,4.6,4.5,4.7,4.6,4.7,4.6,4.7],"paint":[23.6,23.3,23.4,23.3,23.2,23.6,23.4,23.7,23.6,23.6,23.5,23.6,23.9,23.8,23.9]}},{"b":1,"v":{"total":[30.3,30.6,30.6,30.6,30.8,31,30.6,31.1,30.7,30.9,31.3,30.7,30.6,30.3,30.3],"script":[6.1,6.2,6.2,6.3,6.2,6,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.1,6.1],"paint":[23.6,23.8,23.9,23.8,24,24.3,23.9,24.3,23.9,23.9,24.5,23.8,23.9,23.6,23.6]}},{"b":2,"v":{"total":[13.1,13.2,14,13.5,13,13.7,14.4,13.3,13.8,13.5,13.2,13.7,13.7,14.1,12.6],"script":[1.8,1.7,2.3,1.8,1.5,1.8,2.5,1.7,1.5,1.8,1.3,1.9,2.3,1.7,1.8],"paint":[10,10.8,10.6,10.6,10,10,10.8,10.6,10.7,10.6,10.4,10.9,9.8,10.9,9.5]}},{"b":3,"v":{"total":[5.6,4.7,4.3,6.1,6,6,5.5,5.7,6.2,5.3,5.9,5.6,5,5.3,5.3,4.8,6.2,5,5.3,5.7,6.4,5,5.5,4.9,4.5],"script":[3.4,2.5,2.2,3,3.4,2.9,3,3.2,3.6,3.4,3.6,2.8,3.3,3.2,2.5,3,3.6,2.8,2.9,3.3,3.8,2.9,3.4,2.8,2.2],"paint":[1.2,1.4,1.6,2.5,1.6,2.9,2.3,2.3,1,1,2.1,2.6,0.8,1.6,2.7,1.7,0.6,1.1,1.4,1.6,1.8,1.9,1.5,1.3,1.2]}},{"b":4,"v":{"total":[16.9,15.9,17.2,17.8,15.9,17.8,16,16.7,17.7,17.7,17.5,15.7,17.3,16.4,18.1],"script":[2.3,2.1,2.6,2.7,2.3,2.7,1.5,2.9,2.2,3.4,1.7,1.6,2,2.5,3.4],"paint":[13.7,12.4,13.5,13,12.5,13.7,13.3,12.5,14.5,13.3,13.8,13.3,14.9,11.8,13.5]}},{"b":5,"v":{"total":[11.7,12.8,12.8,13.4,12.5,13.4,13.1,12.9,12.5,12.3,13.2,12.2,12.3,13.3,13.4],"script":[0.9,1.9,1.8,2.4,1.5,2,2.1,1.8,1.2,1.2,1.9,1.2,1.4,1.9,2.1],"paint":[10.2,9.6,10,10.4,10.3,10.8,10.5,10.1,10.6,10.4,10.7,10.4,10.4,10.2,10.5]}},{"b":6,"v":{"total":[303.6,302.5,304.8,306.8,305.5,303.7,304,303.9,306,305.5,303.5,305.6,303.5,303.9,302.4],"script":[51,49.8,50.2,50.5,50,51.1,50.1,50.7,51,51,49.9,51.2,50,50.3,50.4],"paint":[245.9,245.6,247.6,248.9,248.7,246,247.2,246.2,247.6,247.4,246.5,246.7,246.2,246.9,245.9]}},{"b":7,"v":{"total":[32.9,33.4,35,32.9,32.8,33.1,35.3,34.4,34.2,34.2,33.6,34.4,33.6,33.2,33.7],"script":[5,4.9,5.1,5,5,4.9,5,5,5,5.1,5,5.1,5.1,4.8,5],"paint":[27.2,27.6,28.8,27.2,27,27.4,29.5,28.5,28.2,28.2,27.8,28.4,27.6,27.5,27.9]}},{"b":8,"v":{"total":[11.8,12,11.8,11.5,12.3,12.3,14,13.3,12,11.7,14.2,11.4,11,12.3,11.3],"script":[9.8,9.7,9.6,10,10.4,10.4,11.6,11.1,9.8,9.3,11.8,9.5,9.7,9.9,9.4],"paint":[1.2,1.1,1.3,0.6,1.7,0.8,1.5,2,1.7,1.4,1.3,0.3,0.3,0.3,1.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.9]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.1]}},{"b":14,"v":{"DEFAULT":[22.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[66]}}]},
-{"f":53,"b":[{"b":0,"v":{"total":[27.2,26.8,27,27.5,27.4,27.3,27.2,27.1,27.1,27.5,26.8,27.4,27,27.2,27.1],"script":[3.4,3.3,3.3,3.3,3.3,3.4,3.2,3.2,3.4,3.4,3.2,3.4,3.3,3.4,3.4],"paint":[23.5,23.2,23.4,23.8,23.7,23.6,23.6,23.5,23.3,23.7,23.2,23.7,23.3,23.4,23.4]}},{"b":1,"v":{"total":[29.9,30.2,30.2,30.2,30.3,30.1,30,30,30.2,30.1,29.9,30.1,30.6,30.2,29.9],"script":[5.7,5.7,5.8,5.8,5.7,5.7,5.6,5.7,5.7,5.9,5.6,5.5,5.7,5.7,5.6],"paint":[23.7,23.9,23.9,23.8,24.1,23.8,23.9,23.8,24,23.7,23.8,24.1,24.4,23.9,23.8]}},{"b":2,"v":{"total":[12.8,13.2,12.9,13.3,12.8,13.8,13,12.7,13.3,13.7,12.2,13.3,13.1,13.4,13.6],"script":[1.7,1.8,1.3,1,1.4,1.7,1.5,1,1.5,2,1.6,1.8,1.4,1,2],"paint":[10.3,10.5,11.2,10.9,9.8,11,10.6,11.4,10.5,10.6,9.6,10.5,10.5,10.8,9.7]}},{"b":3,"v":{"total":[3.2,3.6,3.7,3.2,3.9,4.3,2.9,3.1,3.1,3.8,4.6,3.7,3.4,3.8,3.7,3.6,3.2,3.7,4,3.8,2.9,4,3.7,3.2,3.4],"script":[1,1.3,1.7,1.1,1.7,2.1,1,1.2,1.2,1.7,2,1.7,1.1,1.7,1.7,1.5,1.3,1.1,1.5,1.7,1.2,2,2,1.4,1.8],"paint":[1.2,1.4,1.2,1.6,1.2,2,1.2,1.6,1.8,0.5,1.6,1.2,1.7,1.1,1.2,1.4,1.7,2.3,1.8,1.3,0.7,1.1,1.5,1,1.4]}},{"b":4,"v":{"total":[16.6,16.1,15.5,15.3,16.9,16.5,17.9,15.2,15.4,15.7,16.1,16.3,15.5,16.6,16.2],"script":[2.2,2.2,1.5,1.6,1.6,2.5,2.7,1.1,1.4,1.5,2.5,1.7,1.5,2.3,2.4],"paint":[13.1,12.6,13.7,12.4,13.5,12.2,13.1,12.9,12.6,13.5,12.6,13.2,12.8,13.2,12.3]}},{"b":5,"v":{"total":[12,12.2,12,12.7,12.7,12.3,12.3,12.2,13.1,11.2,11.7,13.6,13,12.9,11.9],"script":[1.5,1.5,0.9,1.8,1.8,1.7,1.6,1.6,1.8,0.6,0.7,2,1.9,1.9,0.9],"paint":[10,9.8,10.4,10,10.3,10,10.2,10.2,10.6,10,10.4,11,9.8,10.3,10.4]}},{"b":6,"v":{"total":[291.7,295.7,293.5,295.5,294.7,292.5,294.7,294.5,294.7,294.7,293.1,293.4,294.6,294.3,292.7],"script":[42.6,43.5,43.5,43.5,43,42.6,43.2,42.9,43,44,42.4,42.9,42.9,43.1,42.8],"paint":[243.3,245.9,244.1,245.1,245.2,243.5,244.7,244.7,245.6,244.5,244.3,244.1,245.4,244.4,243.5]}},{"b":7,"v":{"total":[32.6,32.8,33.7,32.3,32.1,32.1,33.8,32.5,32.5,32.2,33.1,32.3,33.5,32.7,33.7],"script":[4.2,4.3,4.3,4.2,4.3,4.1,4.3,4.2,4.4,4.2,4.4,4.3,4.5,4.4,4.5],"paint":[27.6,27.7,28.6,27.4,27.1,27.3,28.7,27.6,27.3,27.2,27.9,27.2,28.2,27.5,28.4]}},{"b":8,"v":{"total":[10.6,10.7,11.6,11.5,11.4,11.2,11.6,11.3,11.9,12,13,11.1,11,11.9,11.2],"script":[9.1,9.3,9.6,9.6,9.5,9.6,9.8,9.2,10,9.7,10.9,9.6,8.9,10.5,9.7],"paint":[1,0.6,0.9,0.7,1,1.3,0.9,1.4,1.7,2.1,1,0.3,0.8,0.2,0.2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[20]}},{"b":14,"v":{"DEFAULT":[12.1]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[43.3]}}]},
-{"f":54,"b":[{"b":0,"v":{"total":[29.6,29.8,29.5,29.9,29.3,29.7,29,29.8,30,29.3,30.2,29.2,30.3,30.1,29.7],"script":[5.2,5.3,5.3,5.7,5.3,5.5,5.2,5.3,5.8,5.3,5.9,5.2,5.8,5.7,5.5],"paint":[23.8,23.9,23.8,23.7,23.5,23.7,23.2,23.9,23.6,23.4,23.7,23.4,24,23.9,23.7]}},{"b":1,"v":{"total":[33.6,33,33.4,33.1,33.8,32.7,33.4,33.2,33.3,32.8,32.8,33.1,33.2,33.8,33],"script":[8.5,7.9,8.4,8.3,8.1,8.1,8.7,8.2,8.2,8.1,7.9,8.4,8.4,8.5,8.3],"paint":[24.5,24.5,24.4,24.3,25.1,24,24.1,24.4,24.5,24.2,24.3,24.2,24.2,24.7,24.1]}},{"b":2,"v":{"total":[14.2,13.6,14.5,14.3,14,14.2,14.3,13.9,13.1,14.3,14.5,13.6,14.5,13.5,13.1],"script":[2.7,2.1,2.3,2.5,2.4,2.2,1.9,2.4,2.2,2.9,3.3,1.8,2.8,2.1,2.4],"paint":[10.4,10.8,11.6,10.3,9.3,10.6,10.2,10.3,9.7,10,9.9,10.7,10.7,10.3,9.2]}},{"b":3,"v":{"total":[8.8,8.8,7.9,8.4,9.2,8.3,8.7,8,8.7,8.4,9,8.4,9,8.6,8.3,8.1,9.9,8.9,8.3,8.7,8.1,9.1,8.2,8.6,9.4],"script":[5.9,6.2,5.4,5.4,6.1,5.2,5.7,5.8,5.6,5.8,6,5.2,5.7,5.9,5.8,5.9,7.2,5.9,5.7,6.1,5.6,6.1,5.7,6,6.2],"paint":[1.8,0.9,1.6,1,2.1,2,1.9,1.1,1.9,0.6,1.4,2.9,2.2,1.9,1.4,0.8,1.2,1.5,0.8,1.3,0.4,0.9,0.9,0.7,2.1]}},{"b":4,"v":{"total":[109.7,109.5,108.1,108.6,109.6,107.1,110.1,107,109.9,108.2,109.5,107.5,107.9,107.8,107.1],"script":[10.7,11.7,12.1,11.5,11.3,11.4,12.2,10.9,12.2,11.5,10.9,10.8,10.6,11,10.6],"paint":[96.7,95.4,94.1,94.1,94.4,94.4,95.3,93.8,94.5,92.9,96.8,92.5,94.8,94.3,94]}},{"b":5,"v":{"total":[10.9,11,11,11.3,11.1,12.1,12.2,12.2,12.6,12.2,11.4,11.2,11,11.5,11.6],"script":[0.5,0.6,0.6,0.5,0.6,0.5,0.6,0.6,1.1,0.4,0.6,0.6,0.4,0.6,0.4],"paint":[9.5,9.8,9.8,10.2,9.7,11.1,11.1,10.5,10.9,11.1,10.2,10,10,10.3,10.2]}},{"b":6,"v":{"total":[310.6,311.4,309.6,306.7,308.9,309.3,310.3,307.9,307.2,310.3,309.4,310.6,310.3,309.7,306.1],"script":[63,62,61.6,60.1,60.7,61.4,60.9,59.7,60,63.4,60.3,61.7,59.6,62.1,59.6],"paint":[241.1,242.6,241.8,240.2,242,240.8,242.5,242.1,240.9,240.8,242.5,242.4,244.4,241,240.3]}},{"b":7,"v":{"total":[34.1,34.9,35.8,34.7,34.5,34.4,34.9,33.9,34.7,35,34.6,34.2,35.6,34.2,34.4],"script":[5.8,5.6,6.1,6,6,5.9,6,5.8,6.2,5.5,6.2,5.9,6.1,5.7,5.7],"paint":[27.5,28.4,28.9,27.8,27.6,27.7,27.9,27.1,27.6,28.5,27.5,27.4,28.6,27.7,27.9]}},{"b":8,"v":{"total":[11.8,11.7,12.5,12.2,11.7,11.6,12.6,12,11.9,12.1,13.6,13.5,11.4,11.5,12.8],"script":[9.9,10.3,10.3,9.8,9.6,9.7,9.8,10,9.9,9.5,11.3,11.6,9.3,9.2,10.3],"paint":[1.7,0.2,1.1,1.2,0.4,1,1.5,1.2,1.1,1.6,0.6,0.7,1,1.3,1.5]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[4.1]}},{"b":11,"v":{"DEFAULT":[4]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[33.9]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[46.8]}}]},
-{"f":55,"b":[{"b":0,"v":{"total":[29,29.7,28.6,29.6,29.2,29.7,29.3,29.7,29.2,28.9,29.9,29.6,28.8,28.9,29.4],"script":[4.5,5.3,4.2,5.1,4.8,5.1,4.7,5.2,4.6,4.6,5.1,5.1,4.7,4.6,4.7],"paint":[24.2,23.9,24,24,24,24.1,24.2,24,24.2,23.9,24.3,23.9,23.8,23.9,24.2]}},{"b":1,"v":{"total":[32.8,32.4,32.5,32.4,31.9,32,33,32.6,32.5,33.1,33.5,33.7,33.2,32.5,32.9],"script":[8.2,8,7.8,7.8,7.5,7.5,8.1,7.9,7.9,7.5,7.9,7.7,8,7.7,7.9],"paint":[24,23.8,24.1,24,23.9,24,24.4,24.2,24,25,25,25.4,24.7,24.2,24.5]}},{"b":2,"v":{"total":[17.9,15.5,16.9,15.7,16,15.4,17.4,18.5,15.9,16.7,15.3,16.2,16.5,16.2,16.3],"script":[5,4.6,5,4.4,4.3,4.6,5.1,6.4,4.6,4.7,4.3,4.6,4.9,5,4.6],"paint":[10.5,9.7,9.3,9.9,10.8,9.5,9.2,10.7,9.9,11,10,10.3,10.5,10,9.6]}},{"b":3,"v":{"total":[6,6.9,6.6,6.3,9.2,6.2,6.2,6.6,5.6,6.1,6.7,6.9,7.4,5.6,6.5,6.2,8.2,7.1,6.7,6.9,6.6,6.6,5.8,6.7,6.4],"script":[4.2,4.5,4.2,4.6,5.8,4.3,3.9,4.5,4,4.2,4,4.7,5.4,4.1,4.6,4.7,5.6,4.8,4.2,4.8,4.8,4.9,4.2,4.5,4.4],"paint":[1.2,2.2,1.6,0.7,2.2,1.7,1,1.5,0.7,1,1.8,2.1,1.1,1.3,0.9,1.3,0.3,1.4,1.3,1.2,1,1,0.7,1.1,1.4]}},{"b":4,"v":{"total":[18.4,18,17.1,18.2,19.2,17.1,17.5,17.3,20.5,17,16.6,21,17.4,20.4,20.4],"script":[4.4,4.4,4.2,4.8,3.9,4.3,4.3,4.3,5.8,3.8,3.8,6.2,4.2,6.8,5.3],"paint":[13.3,12.1,11.3,12,14.3,10.9,11.9,12.1,12.5,12.9,11.6,12.7,11,12.2,12.6]}},{"b":5,"v":{"total":[14.2,15.5,14.3,14,14.5,14.1,15.2,14,14,15.5,15.2,14,14.1,14.1,14.6],"script":[3.7,4.6,3.5,3.6,4,3.6,4.2,3.6,3.5,4.7,4.4,3.3,3.3,3.2,3.6],"paint":[9.9,10.1,10.2,9.8,9.8,9.9,10.1,9.8,10.2,9.8,10.2,10.1,10.2,10,10.3]}},{"b":6,"v":{"total":[283,284,285.1,283.5,286.3,283.9,285.4,281.9,284.4,285,283.3,287.9,283.5,291.8,282.7],"script":[39.7,41.7,39.2,37.8,39.2,38.9,40.3,39.1,39.5,42.1,39.6,42.2,39.2,42.2,38.2],"paint":[237.6,236.7,240,239.7,241.3,239.2,239.4,237,239.4,237.1,238,239.2,238.2,243.3,238.7]}},{"b":7,"v":{"total":[34.6,34.1,33.8,34,33.8,34.1,33.9,34.3,34.3,34,33.8,33.6,33.8,33.6,33.7],"script":[6.6,6,6.3,6.1,6.2,5.8,6.2,6.1,6.4,6.3,5.9,5.7,6.2,5.7,6.1],"paint":[27.1,27.2,26.7,26.9,26.7,27.5,26.8,27.4,27.1,26.7,27,27,26.6,26.9,26.7]}},{"b":8,"v":{"total":[11.6,10.6,11.1,10.7,10.1,11.1,10.4,10.3,11.2,10.3,11.5,11,11.1,11,11],"script":[9.7,8.2,8.6,9,8.5,8.8,8.3,8,8.9,8.8,9.4,9.2,8.2,8.9,8.7],"paint":[0.9,1.5,1.7,1,1.4,1.4,1,2.1,0.9,0.7,1.3,0.5,2,1.2,0.6]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[3.4]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[1.4]}},{"b":13,"v":{"DEFAULT":[23.7]}},{"b":14,"v":{"DEFAULT":[58.4]}},{"b":15,"v":{"DEFAULT":[17.6]}},{"b":16,"v":{"DEFAULT":[76.4]}}]},
-{"f":56,"b":[{"b":0,"v":{"total":[27.1,26.6,27.3,26.9,27,27.1,27,26.9,26.9,27.1,27.1,26.7,27.2,27,26.8],"script":[2.8,2.5,2.8,2.5,2.7,2.5,2.8,2.5,2.8,2.8,2.8,2.5,3,2.8,2.5],"paint":[23.9,23.7,24.2,24.1,24,24.3,23.8,24.1,23.7,23.9,23.9,23.8,23.8,23.8,23.9]}},{"b":1,"v":{"total":[29.8,28.8,29,29.2,28.8,29.1,28.4,28.9,28.5,30.1,29.2,30.1,30,28.9,29.1],"script":[4.6,4.4,4.5,4.4,4.3,4.4,4.3,4.4,4.4,4.7,4.6,4.7,4.8,4.5,4.6],"paint":[24.7,24.1,24,24.4,24.1,24.3,23.7,24.1,23.7,24.9,24.2,24.9,24.8,24,24.1]}},{"b":2,"v":{"total":[12,12.6,12.4,12.1,11.7,11.7,11.3,11.6,12.2,12,11.9,12.3,12.1,12.3,11.5],"script":[1.2,1.2,0.6,1,1.2,1,1,0.7,1.2,1.1,0.9,0.9,1,0.6,0.6],"paint":[9.5,10,10.3,10.1,9.2,9.1,9.4,9.3,10,9.8,9.5,9.3,9.9,10.5,10.3]}},{"b":3,"v":{"total":[7.3,2.9,2.5,2.2,3.1,2.2,2.6,2.9,2.6,2.6,2.1,2,2.6,2.5,3.8,3.1,2.5,2.2,3.1,2.7,2.2,2.3,2.4,2.6,2.2],"script":[1.2,0.9,0.3,0.6,1.1,0.9,0.6,0.9,0.6,0.1,0.8,0.1,0.7,1,1.1,0.8,0.7,0.1,1.1,1.1,0.8,0.5,0.1,0.6,0.1],"paint":[1.3,1.3,2,0.9,1.2,0.7,1.3,1.4,1.5,1.3,0.7,1.1,1,1.1,1.5,1.5,1.4,1,1.3,0.8,1.3,1,2.1,1.9,0.8]}},{"b":4,"v":{"total":[14.9,15.2,14,14.4,14.5,14.4,14.1,15.2,15.2,14.9,14.7,15.1,14.5,14.4,14.4],"script":[1.6,1.7,0.7,1.1,1.1,1,1,1.2,1.3,0.7,1,1.7,1.3,1.5,1],"paint":[11.8,12.1,11.9,11.6,12.4,11.9,12.1,13,12.3,13.3,12.6,12.1,11.8,11.5,12.4]}},{"b":5,"v":{"total":[11.5,11.2,11.2,11,11.4,10.9,11.7,11.2,11.3,11.5,11.3,11.4,11.4,11.1,11.5],"script":[0.6,0.7,0.7,0.7,0.9,0.7,1,0.8,0.9,0.7,0.7,0.7,0.7,0.8,0.7],"paint":[9.9,9.7,10,9.7,9.8,9.9,10.3,10,9.8,10.2,10,10,10.1,9.8,10]}},{"b":6,"v":{"total":[281,280.1,276.9,278.4,278.6,279.9,280.6,279.2,279.8,279.1,280.2,279.8,280.1,280.1,280.9],"script":[30.6,29.4,28.5,29.7,29.1,30.2,30.1,29.4,29.2,29.7,30.2,30.1,30,29.5,29.7],"paint":[244.3,244.8,242.3,242.9,243.8,244.1,244.7,243.7,244.7,243.6,244,244,244.1,244.8,244.8]}},{"b":7,"v":{"total":[31.1,31.6,32.4,31.6,31.5,31.2,31.4,31.4,32.3,31.2,32.6,31.4,31.1,31.1,31.6],"script":[3.2,3.7,3.7,3,3.4,3.1,3.4,3.1,3.2,3,3.7,3.4,3,3,3.3],"paint":[27.2,27.1,28,27.8,27.4,27.4,27.3,27.6,28.4,27.5,28.1,27.2,27.3,27.3,27.5]}},{"b":8,"v":{"total":[8.9,9.5,8.7,8.9,10,8.9,9,9,8.7,8.9,9.7,9.4,9.1,9,9.1],"script":[6.8,7.9,6.3,7,7.9,6.8,7.4,6.6,6.9,7.2,7.4,7.9,7.1,7.3,7.2],"paint":[0.9,0.2,1.2,1.1,1.7,1.1,0.2,1.2,1,0.2,0.8,0.2,0.9,1,0.9]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[19.1]}},{"b":14,"v":{"DEFAULT":[7.2]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[36.3]}}]},
-{"f":57,"b":[{"b":0,"v":{"total":[30.3,30.3,30.1,30.7,30.4,30.7,30.3,30.4,29.7,30.5,30.4,29.9,29.8,30.5,30.4],"script":[6.1,6,5.9,6.3,6.1,5.9,5.9,6.1,5.5,6,6.1,5.6,5.6,5.6,5.8],"paint":[23.7,23.7,23.6,23.9,23.8,24.3,24,23.8,23.6,23.9,23.8,23.7,23.6,24.3,24]}},{"b":1,"v":{"total":[32,32.2,33.2,32.2,32.4,32,32.1,33.1,31.6,32.7,31.7,31.6,32.4,32.5,32.1],"script":[7.7,7.9,8,7.7,8.2,7.8,7.8,8.2,7.6,8.2,7.7,7.5,7.8,8.1,7.7],"paint":[23.6,23.7,24.5,24,23.7,23.6,23.7,24.3,23.4,24,23.4,23.5,24.1,23.9,23.8]}},{"b":2,"v":{"total":[15.2,15.2,15.1,16,15.9,15.2,16.1,15.8,15,15.3,15.4,15.3,16.2,15.5,14.8],"script":[4.2,4.3,4,4.5,4.6,4,4.2,4.3,3.8,4.1,4.2,4.4,4.5,4,4],"paint":[9.8,9.1,10.1,10.1,10,9.6,10.7,10.7,10.1,10.6,10.1,9.9,10,10.4,9.4]}},{"b":3,"v":{"total":[2.4,3.2,1.9,2.2,2.8,2.3,2.4,2.4,2.2,2.4,3.4,2.7,1.9,2.9,2.1,2.2,2.5,3,2.2,2.9,2.6,2.4,4,2.6,3.4],"script":[0.2,1.1,0.6,1,0.1,0.9,0.5,0.8,0.9,0.5,1.1,0.5,0.1,0.9,0.1,0.1,0.1,0.9,0.1,0.9,0.9,0.5,0.9,0.7,0.9],"paint":[1.3,1.2,0.7,1.1,1.4,1.3,1.1,1.5,0.7,0.3,1.3,1.4,1,1.4,1,1,1.8,1.1,1.9,1.3,1,1.8,1.9,1.4,1.2]}},{"b":4,"v":{"total":[13.6,13.7,13.7,13.6,14.3,14.3,14.6,13.4,13.2,13.8,14,13.6,13.1,16.3,14.1],"script":[0.5,0.1,0.8,0.6,0.7,0.7,0.1,0.5,0.1,0.1,0.7,0.1,0.1,0.9,0.9],"paint":[12.2,12.7,12.1,12,11.7,12.1,11.9,11.8,12.3,12.4,12.3,12.5,11.8,13.6,12]}},{"b":5,"v":{"total":[10.9,10.5,10.4,11.6,10.5,10.7,10.4,10.7,10.6,11,10.4,10.5,10.7,10.6,10.5],"script":[0.4,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1,0.3,0.3,0.2],"paint":[9.5,9.7,9.6,10.9,9.8,9.6,9.7,10,9.7,10,9.7,10,9.8,9.7,9.9]}},{"b":6,"v":{"total":[297.7,298.4,297.7,302,299.5,299.3,300.9,302.2,298.3,297.9,299.5,300.9,301,298.6,300.6],"script":[50.4,49.7,49.1,49.6,50.2,50,51.4,49.8,49.8,49.4,48.9,50.3,51.2,49.3,49.5],"paint":[241.6,242.4,242.3,246.6,243.2,243.5,243.1,246.1,242,242.9,244.7,244.6,243.6,243.4,245]}},{"b":7,"v":{"total":[33,32.3,33.3,32.6,33.3,32.5,32.6,32.2,33.3,34.8,32.7,32.5,34,33.5,33.2],"script":[5.4,4.8,5.4,5.3,5.4,5.4,5.1,4.7,5.4,5.7,5.3,5.3,5.6,5,4.8],"paint":[26.7,26.9,27,26.5,26.9,26.2,26.4,26.8,27,28.2,26.5,26.3,27.5,27.5,27.6]}},{"b":8,"v":{"total":[13.7,13.6,14.3,13.9,13.4,12.7,14.5,13.2,13.4,15.1,15.2,13,13.6,13.4,13],"script":[11.3,11.3,11.6,11.7,11.1,10.9,12,11.4,11.6,13,13,10.9,11.5,11.6,10.9],"paint":[1.3,0.9,1.7,1.5,0.9,1,1,0.7,0.3,0.3,0.9,1.2,1.2,1.6,1.2]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.9]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[17.6]}},{"b":14,"v":{"DEFAULT":[65.2]}},{"b":15,"v":{"DEFAULT":[17.8]}},{"b":16,"v":{"DEFAULT":[81.7]}}]},
-{"f":58,"b":[{"b":0,"v":{"total":[42.4,42.3,42.3,42.7,41.8,42.1,42.5,42.1,42.5,41.8,42.2,42.8,42.6,42.9,42.1],"script":[18.2,18.3,18.3,18.3,17.8,18.1,18.1,17.8,18.1,17.8,18.1,18.4,18.4,18.4,17.8],"paint":[23.7,23.4,23.5,23.8,23.5,23.5,23.9,23.8,23.7,23.4,23.6,23.8,23.6,23.9,23.7]}},{"b":1,"v":{"total":[45.5,45.1,46.7,44.9,45.3,44.7,45.2,45.1,45.4,44.8,45.5,45.2,46.3,45.6,45],"script":[20.6,20.4,20.6,20.3,20.7,20.2,20.8,20.2,20.3,20.2,21.2,20.5,20.8,20.5,20.4],"paint":[24.3,24.1,25.5,24,24,24,23.8,24.4,24.4,24,23.8,24.2,24.9,24.5,24]}},{"b":2,"v":{"total":[13,12.7,12.4,12.8,12.2,12.4,11.6,12.7,12.6,13.1,12.5,12.4,12.8,12.1,12.1],"script":[1.2,0.9,0.8,1,1.1,0.6,1,1.3,1.2,1.4,1.7,1.2,1.4,0.6,0.9],"paint":[10.8,10.7,10.3,10.4,10.8,10.6,10,10.3,10.3,9.7,9.3,10.2,10.1,10.4,10.3]}},{"b":3,"v":{"total":[1.5,1.5,2.5,2.1,1.8,4.9,2.4,2.5,2.1,1.5,1.8,2.5,1.6,2.6,2.1,1.8,2.5,2.4,2.1,2.1,2.5,2.5,1.8,3.5,3.3],"script":[0,0,0.1,0,0,0,0.1,0.5,0,0,0,0,0.1,0.9,0,0.3,0.1,0.2,0.1,0,0.1,0.1,0.7,0,0.1],"paint":[1.2,1.3,1.4,0.3,0.9,1.8,1.5,1.9,1.6,1.3,0.9,1.3,0.6,0.6,1.9,1.3,1.5,1.4,1.2,1.9,2.3,0.6,0.9,1.3,1.3]}},{"b":4,"v":{"total":[13.4,13.8,13,13.2,12.9,13.2,12.8,13,15.5,12.6,14,13.3,13,13,13],"script":[0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.6,0.3,0.5,0.5],"paint":[11.8,12.4,11.3,11.5,12.5,12.1,12.4,12.7,13.5,11.6,13.3,11.6,11,11.6,11.4]}},{"b":5,"v":{"total":[10.4,10.7,10.5,10.5,10.9,10.5,10.7,10.5,10.8,10.6,10.6,10.4,10.4,11,10.8],"script":[0.1,0.5,0.1,0.3,0.4,0.3,0.3,0.3,0.4,0.3,0.4,0.3,0.1,0.3,0.5],"paint":[9.3,9.6,10,9.6,9.9,9.6,9.5,9.6,9.7,9.8,9.6,9.6,9.5,10.1,9.7]}},{"b":6,"v":{"total":[420.1,420,425.1,423.9,425.6,416.3,421.5,421.4,421.1,417.9,421.8,416,424.3,424.4,418.3],"script":[178.3,178.5,179,180.4,182,175.1,181.4,180.7,178.3,177.9,179.8,175.6,180.2,182,179.4],"paint":[235.9,236,239.7,237.6,237.6,235.6,234.7,235,237.1,234.6,235.7,234.1,238.1,236.6,233.4]}},{"b":7,"v":{"total":[46.3,46.4,46.1,46.6,45.8,46.5,46.1,46.2,45.8,45.2,46.2,46.1,46,46.4,46.2],"script":[18.4,18.5,18.5,18.6,18.4,18.8,18.5,18.5,18.3,18,18.9,18.3,18.3,18.7,18.9],"paint":[27,27,26.7,27.1,26.5,26.7,26.7,26.8,26.6,26.3,26.5,26.8,26.8,26.8,26.3]}},{"b":8,"v":{"total":[14.5,14.2,14.3,14.5,15.4,15.4,15.2,15,13.8,15.3,17.3,15.2,15.5,14.6,16.1],"script":[12.7,12.1,12.2,11.9,13.3,13,12.7,12.4,11.5,12.9,14.8,12.6,13.3,12.6,13.8],"paint":[0.5,0.9,0.9,1.7,0.6,1.2,1.5,1.7,0.9,0.6,1.1,0.7,1.1,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.2]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[20.7]}},{"b":14,"v":{"DEFAULT":[83.9]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[96.3]}}]},
-{"f":59,"b":[{"b":0,"v":{"total":[30.3,30.2,29.3,29,29.3,29.6,29.6,30.2,29.8,28.6,29.8,29.5,29.4,29.6,29.4],"script":[5.2,5.4,5,5,5,5.1,5.1,5.5,5.2,4.8,5,5,5.1,5.1,5],"paint":[24.5,24.2,23.9,23.6,23.9,24,23.9,24.1,24.1,23.4,24.2,24.1,23.8,23.9,23.8]}},{"b":1,"v":{"total":[31.4,31.6,31.7,31.8,31.8,31.6,31.8,31.7,31.3,31.5,31.6,31.7,31.9,31.7,32],"script":[7.1,7.1,7.2,7.2,7.2,7,7.2,7.1,6.9,7.1,7.2,7.3,7.1,7.2,7.1],"paint":[23.7,23.9,24,24,24.1,24,24,24,23.8,23.8,23.8,23.9,24.3,24,24.3]}},{"b":2,"v":{"total":[20.1,21.2,21.2,19.9,21.5,19.1,19.3,20.5,20.2,19.8,21,20.2,20.6,19.5,19.3],"script":[7.8,8.8,7.9,7.7,8,7,7.3,8,8.1,7.1,8.4,7.9,8,7.7,7.5],"paint":[9.4,10.9,11.1,10.2,10.8,9.5,10.5,9.5,10.3,10.3,10.4,10.2,10.6,9.8,9.6]}},{"b":3,"v":{"total":[9.8,10.9,11,10.7,10.9,10.7,10.8,10.6,10.8,10.4,10.6,10.7,10.4,10,9.9,10.5,10.2,9.8,10.6,10.1,10.3,10,10.4,10.3,9.5],"script":[6.8,8.2,8.2,7.8,8.2,7.5,7.8,7.6,7.6,7.9,8,7.6,8,6.7,7.3,7.8,7.3,7.5,8,7.2,7.8,7.5,7.3,7.9,6.6],"paint":[2,1.2,1.3,1.5,1.8,2.5,2,0.4,2.2,1.5,1.9,1.5,1.5,1.7,1.4,1.1,2,1,1.3,1,1.3,0.7,1.2,1.4,1.6]}},{"b":4,"v":{"total":[21.7,20.8,23.3,22.1,21.8,21.1,22.4,22.6,23.9,22.4,23.1,23.4,22.3,22.6,22.1],"script":[7.4,7.3,8.1,7.6,7.2,7.3,7.4,8.3,8.6,7.3,8.6,8,8,7.8,7.7],"paint":[11.8,12.4,13.4,13,12.9,12,13.8,12.9,13.3,12.1,13.4,13.5,11,11.8,12.5]}},{"b":5,"v":{"total":[14.6,14.6,14.5,14,14.9,14.1,14,14.2,14.8,14.4,14.4,14.2,14.4,14.3,14.3],"script":[4.2,4,3.7,3.4,4.1,3.3,3.7,3.7,3.7,3.9,3.5,3.9,3.8,3.6,3.7],"paint":[9.9,9.6,9.9,10,10.2,9.5,9.7,9.7,10.5,9.6,10.2,9.8,9.8,10.1,9.6]}},{"b":6,"v":{"total":[300.4,299.9,302.3,299.2,301.6,301.1,301.4,299.3,301.3,300.6,301.2,298.6,298.2,301.1,299.3],"script":[51.6,51.2,51.9,51.5,50.9,51.7,51,50.4,51.9,51.1,52.2,51.4,51.2,51.2,51.7],"paint":[243.4,242.6,244.6,242,244.4,243.5,244.4,242.9,243.9,243.7,242.9,241.4,241.1,244,241.4]}},{"b":7,"v":{"total":[34.8,35.2,35.1,34.8,35.4,34.8,34.9,34.5,35,35.7,35.2,35.2,35.7,35,35.2],"script":[7.3,7.1,7.1,7,7.4,7.1,7.1,7.1,7.1,7.6,7.2,7.2,7.1,7.1,7.1],"paint":[26.7,27.2,27.1,27,27.1,26.8,26.9,26.6,27,27.3,27.1,27.1,27.7,27,27.2]}},{"b":8,"v":{"total":[9.8,9.9,9.7,9.2,10.1,9.8,10,10,9.5,10.4,10.3,11,9.5,10.2,9.8],"script":[7.6,7.7,8.2,7.9,8.3,7.7,8.3,7.4,8.2,8.4,8.4,8.6,7.6,8.2,7.8],"paint":[1.1,0.7,0.6,0.2,0.6,0.8,1.1,0.7,0.7,1,0.7,1.4,0.2,0.9,0.9]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.4]}},{"b":11,"v":{"DEFAULT":[2.4]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[17.6]}},{"b":14,"v":{"DEFAULT":[10.8]}},{"b":15,"v":{"DEFAULT":[3.9]}},{"b":16,"v":{"DEFAULT":[40]}}]},
-{"f":60,"b":[{"b":0,"v":{"total":[31.2,30.4,30.4,30.6,31,30.6,30.4,30.9,30.4,30.9,30.9,31.2,31.3,31,30.9],"script":[6.7,6.5,6.5,6.7,6.5,6.6,6.5,6.6,6.5,6.6,6.6,6.8,6.9,6.6,6.6],"paint":[23.9,23.5,23.4,23.3,23.9,23.4,23.2,23.8,23.4,23.6,23.7,23.8,23.8,23.8,23.7]}},{"b":1,"v":{"total":[32.5,32.3,33,32.8,32.8,32.3,32.4,32.3,32.8,32.3,33.4,32.7,32.5,32.8,31.9],"script":[8.7,8.4,8.6,8.5,9,8.5,8.5,8.2,8.2,8.4,9,8.2,8.3,8.4,8.1],"paint":[23.3,23.3,23.8,23.7,23.2,23.3,23.4,23.5,24,23.4,23.8,23.9,23.6,23.9,23.2]}},{"b":2,"v":{"total":[12.2,11.5,12.4,11.2,11.6,10.9,11.4,11.4,12.1,11.6,11,11.7,12.8,11.2,12.1],"script":[0.6,0.5,0.7,0.6,0.2,0.6,0.8,0.8,0.5,0.8,0.6,0.9,1.1,0.6,1.1],"paint":[10.2,10.3,10.5,9.5,9.9,9.4,9.3,9.7,10.3,9.8,9.2,9.6,9.6,9.9,10.1]}},{"b":3,"v":{"total":[3.6,3,1.9,2.4,2.4,2.5,2.4,1.9,1.9,1.7,1.3,2.4,1.8,2.3,1.8,1.6,2.2,1.9,2.4,2.5,2.2,2.3,2.4,1.9,1.9],"script":[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],"paint":[1.9,1.7,1.6,2.2,1.3,2.3,1.8,1,1,1,0.7,1.8,1,2.1,1.2,1.5,1.7,1.7,1.8,2.4,1.3,2.1,1.3,1.1,1]}},{"b":4,"v":{"total":[12.6,13.3,13.7,13.5,13.1,14.2,13.9,13.8,13.9,13.4,13.1,13.3,15.2,13.2,14.1],"script":[0.1,0.1,0.1,0.5,0.1,0.1,0.9,0.4,0.4,0.1,0.1,0.1,0.9,0.1,0.1],"paint":[11.1,11.7,12.4,11.6,11.8,12.8,12,12.5,12.3,12.2,12.4,11.7,12.7,11.6,13.1]}},{"b":5,"v":{"total":[10.6,10.4,10.6,10.7,10.3,10.4,10.2,10.4,10.3,10.3,10.4,10.5,10.4,10.4,10.4],"script":[0.3,0.3,0.2,0.1,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.1,0.2,0.1,0.3],"paint":[9.7,9.5,9.4,10.1,9.6,9.7,9.3,9.5,9.6,9.6,9.7,9.8,9.6,9.8,9.4]}},{"b":6,"v":{"total":[312.5,310.7,313.4,312.5,311.4,310.6,314.1,312.3,310.5,312.7,312.6,310.4,312.2,311.1,313.1],"script":[71,69.3,70.4,69.9,71.6,70,70.8,69.9,70,69.5,70.2,69.8,69.6,70.6,69.5],"paint":[235.9,235.9,237,236.9,234.4,235,237.3,236.7,234.9,237.3,236.8,234.9,236.6,234.4,237.7]}},{"b":7,"v":{"total":[35.4,34.9,35.5,35.1,35.7,35.5,35.9,35,34.9,36.2,34.7,35,35,34.8,34.9],"script":[7.5,7.4,7.3,7.2,7.3,7.7,7,7.2,7.2,7.4,7.3,7.4,7.3,7.4,7.6],"paint":[27,26.6,27.3,27.1,27.6,26.9,28,27,26.8,27.9,26.5,26.7,26.8,26.5,26.5]}},{"b":8,"v":{"total":[8.5,8.9,8.4,8.3,8.6,8.3,8.2,8.4,9.3,9.1,8.9,8.8,8.5,8.6,8.8],"script":[6.8,6.5,6.7,6.9,7,6.8,6.6,6.8,6.7,7.2,7,6.5,7.5,6.8,6.5],"paint":[1.5,1.5,0.2,0.2,0.4,0.6,1,0.2,1.3,0.9,0.2,1.3,0.9,0.7,2.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.4]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[25.9]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[43.1]}}]},
-{"f":61,"b":[{"b":0,"v":{"total":[25.4,25.7,25.2,25.7,25.4,25.2,25.3,25.2,24.9,25.3,25.3,25.5,25.2,25.4,25.1],"script":[1.5,1.6,1.5,1.5,1.5,1.4,1.6,1.5,1.6,1.6,1.4,1.5,1.5,1.5,1.5],"paint":[23.5,23.7,23.3,23.8,23.5,23.4,23.4,23.3,23,23.4,23.6,23.6,23.3,23.5,23.2]}},{"b":1,"v":{"total":[27.7,28.1,27.9,28.6,27.8,27.6,27.7,27.4,28.1,27.5,27.4,27.4,27.7,28,27.6],"script":[3.4,3.4,3.4,3.4,3.5,3.3,3.4,3.3,3.4,3.3,3.3,3.4,3.3,3.3,3.2],"paint":[23.9,24.3,24.1,24.7,23.9,23.9,24,23.8,24.3,23.9,23.7,23.7,24,24.3,23.9]}},{"b":2,"v":{"total":[11.5,11.7,11.3,11.1,11.6,11.9,11.3,11.4,11.6,14.2,11,11.3,11.5,11.9,11.1],"script":[0.9,0.3,0.6,0.1,0.7,0.5,0.6,0.1,0.1,0.9,0.8,0.1,0.6,0.6,0.1],"paint":[9.6,10.2,10,9.4,9.8,9.7,9.1,10.6,10.1,12,9.3,9.7,10,9.9,9.8]}},{"b":3,"v":{"total":[2.2,2.1,1.9,2.4,3.1,1.7,2.7,2.4,1.6,2,2.8,2.5,2.4,1.7,1.9,1.7,2.3,2.4,1.8,1.5,2.3,2.9,2.1,2.4,2.4],"script":[0.1,0.7,0.1,0.6,0.1,0.1,0.1,0.6,0.1,0.1,0.8,0.1,0.1,0.2,0.1,0.1,0.7,0.1,0.8,0.1,0.1,0.9,0.1,0.1,0.8],"paint":[1.2,1.3,0.7,1.7,1.2,0.7,2.2,0.5,1.4,0.9,1.8,2.3,1.5,1,0.7,0.7,1.5,2.2,0.3,1.3,2.1,1.8,1.9,2.2,1.5]}},{"b":4,"v":{"total":[14.2,14.6,13.6,13.7,13.5,14.5,13.9,14.3,14.2,15.5,13.6,13.9,14.2,15.1,13.9],"script":[0.3,0.7,1,0.6,0.9,0.7,0.2,0.9,1.2,1.5,0.2,0.2,1.4,0.8,0.6],"paint":[12.2,12.4,11.5,11.5,11.5,12.5,12.2,12.1,11.4,12.8,12.5,12,11.8,12.3,11.9]}},{"b":5,"v":{"total":[10.4,10.6,11,10.3,10.6,10.7,10.5,10.8,10.2,10.7,10.3,10.5,10.6,10.4,10],"script":[0.1,0.2,0.1,0.1,0.2,0.2,0.2,0.1,0.1,0.4,0.3,0.1,0.1,0.1,0.1],"paint":[9.9,9.9,10.3,9.5,9.8,9.5,9.6,10.1,9.6,9.7,9.5,9.7,10,9.7,9.3]}},{"b":6,"v":{"total":[267.5,266,264.6,264,266.1,267.5,266.6,265.5,266.6,267.4,265.7,267.8,265.7,265.1,264.8],"script":[16.4,18.3,16.4,16.8,16.8,17.6,17,16.7,17.5,16.9,16.8,18,16.6,17.2,16.6],"paint":[244.2,241.9,242.3,241.2,243.5,242.9,243.4,242.8,243.4,244.7,243,244,243.3,241.7,242.3]}},{"b":7,"v":{"total":[28.2,28.3,28.5,28.3,28.8,28.3,28.5,28.9,27.9,29.2,28.5,28.2,28.1,28.2,27.8],"script":[1.6,1.7,1.6,1.5,1.7,1.5,1.7,1.6,1.5,1.8,1.6,1.6,1.6,1.5,1.5],"paint":[26,25.9,26.1,26,26.4,26.1,26.1,26.5,25.7,26.6,26.1,25.9,25.8,26,25.7]}},{"b":8,"v":{"total":[9,9.2,9.6,8.8,9,9.6,9.4,9.5,9.3,9.2,9,8.7,9.5,9.2,9],"script":[6.6,7.3,7.3,7.2,7.2,7.8,7.3,8,7.4,7.4,7.3,6.9,7.3,6.6,7.2],"paint":[1.5,1.1,2.1,1,0.7,1.6,1.9,0.4,0.2,1.7,0.2,0.3,1.4,1.6,0.2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2]}},{"b":11,"v":{"DEFAULT":[2.1]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[14.2]}},{"b":14,"v":{"DEFAULT":[12.3]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[46.3]}}]},
-{"f":62,"b":[{"b":0,"v":{"total":[26.1,25.8,26.2,25.9,25.9,26.1,25.9,26,25,26,26,25.9,25.9,25.9,26.2],"script":[2.1,2.3,2.3,2.2,2.1,2.3,2.2,2.3,2.2,2.3,2.3,2.2,2.1,2.2,2.2],"paint":[23.6,23.2,23.5,23.3,23.4,23.4,23.3,23.3,22.5,23.3,23.4,23.3,23.5,23.3,23.6]}},{"b":1,"v":{"total":[28.4,27.9,28.3,29.3,28.3,28.3,28.3,28.9,28.4,28.5,28,28.1,28.3,28.1,28.6],"script":[4.1,4,4.1,4.1,4,4,3.9,4.5,4,4.1,4,4,4.4,4.1,4.2],"paint":[23.8,23.5,23.8,24.8,23.9,23.9,24,23.9,23.9,23.9,23.5,23.7,23.5,23.6,24]}},{"b":2,"v":{"total":[11.8,13.2,12.1,11.1,11.9,11,11.8,12.2,11.4,11.8,12.2,11.5,11.6,11.8,11.6],"script":[0.9,0.9,0.8,0.1,0.6,0.1,1.3,0.1,0.1,0.5,1.1,0.5,0.1,0.9,0.6],"paint":[10.3,10.7,9.8,9.9,9.6,8.9,9.3,11,9.4,10.2,9.8,10.6,10.4,9.9,9.8]}},{"b":3,"v":{"total":[2.2,1.8,2.3,2.5,2.1,2.3,2.3,2.4,1.6,3,2.4,2.3,2.3,2.9,1.6,2.8,2.1,2.1,2.4,2.2,2.7,2.9,1.9,2.1,2.4],"script":[0.1,0.4,0.6,0.1,0.1,0.1,0.1,1,0.1,0.8,0.1,0.1,0.5,0.1,0.1,0.5,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[1.2,1.3,1.1,2.3,1.9,2.1,1.8,1.3,1.4,1.3,1.4,1,1.8,1.6,1,1.4,1,0.3,1.2,1.3,1.9,1.9,1,1.9,2.2]}},{"b":4,"v":{"total":[13.5,13.4,13.3,13.5,13.1,13.9,13.3,13.8,13.8,13.5,13.4,13.2,12.9,13.7,13.8],"script":[0.6,0.1,0.3,0.7,0.1,0.7,0.5,0.1,0.3,0.4,0.1,0.1,0.1,0.6,0.1],"paint":[11.8,12,11.4,11.8,11.1,12.2,10.9,12.7,12.4,11.6,12.1,11.7,11.3,12.5,12.8]}},{"b":5,"v":{"total":[10.5,10.5,10.6,11.3,10.4,10.4,10.3,10.4,10.8,10.5,10.4,10.7,10.6,10.4,10.4],"script":[0.2,0.2,0.2,0.1,0.1,0.1,0.4,0.2,0.3,0.1,0.2,0.4,0.3,0.1,0.1],"paint":[9.3,9.5,9.6,10.8,9.8,9.7,9,9.6,9.4,9.7,9.6,9.7,9.8,9.8,9.5]}},{"b":6,"v":{"total":[273.3,274.3,273.2,274.1,274.5,276.7,275.7,276.5,274.4,274.5,274.3,274.1,275.3,274.3,279],"script":[27.9,27.2,27.5,28.3,27.2,27.8,27.9,27.8,27,29,28.6,27.5,27.3,27.7,28.5],"paint":[239.8,241.2,240.2,239.9,241.5,242.6,241.7,242.7,241.3,240.1,240.1,240.6,242.2,241,243.9]}},{"b":7,"v":{"total":[29.3,28.8,28.7,28.6,28.6,29.4,28.7,29.1,29.3,29.7,28.8,29.6,29.3,28.8,28.6],"script":[2.2,2.3,2.2,2.2,2.1,2.2,2.2,2.2,2.2,2.2,2.1,2.4,2.3,2.1,2.2],"paint":[26.3,25.8,25.8,25.8,25.8,26.4,25.8,26.2,26.4,26.8,26,26.5,26.3,26,25.6]}},{"b":8,"v":{"total":[9.1,10.1,9,9.5,9.5,9.4,9.1,10.4,10.1,9.8,10.6,10,9.3,10.8,9.7],"script":[7.6,8,6.9,7.3,7.6,7,7.9,8.2,8.2,7.5,9.1,7.9,7.5,8.5,8],"paint":[0.4,0.3,0.2,0.2,0.8,1.3,0.2,1.5,0.9,1,0.7,0.6,0.8,1.5,0.4]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.4]}},{"b":11,"v":{"DEFAULT":[2.4]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[17.2]}},{"b":14,"v":{"DEFAULT":[15.2]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[44.9]}}]},
-{"f":63,"b":[{"b":0,"v":{"total":[48.3,45,49.4,47.7,47.6,48.1,55.5,42.2,49.6,49.1,48.6,47.1,48.3,46,41.9],"script":[17.3,17.4,18.1,17.7,17.5,17.8,18.1,18.2,18.2,17.7,17.7,17.9,18,17.7,18],"paint":[23.3,23.3,23.7,23.4,23.5,23.5,20.3,23.6,23.7,23.9,23.3,23.4,23.1,23.1,23.5]}},{"b":1,"v":{"total":[63.5,60.3,61.7,60.7,62.8,61.2,58.9,62.7,63.5,61.9,59.9,61.1,62.9,62.9,60.1],"script":[31.2,31.7,33.1,31.7,32.1,31.4,31.6,31.6,32,32.1,31.4,32.2,31.9,32.2,32.4],"paint":[24.4,24.3,24.3,24.2,24.6,23.9,24.2,24,24.5,24.1,23.6,24,24.3,24.4,24.4]}},{"b":2,"v":{"total":[64.2,64.3,65.4,49.4,48.5,64.9,64.7,48,63.9,65,62.9,65.5,64.9,49.3,62.2],"script":[34.2,33.2,34.7,35.3,34.9,34.4,33.3,35,33.5,35.6,33.4,34.4,33.7,34.2,33.9],"paint":[13,13.8,12.4,12.3,12.7,13.7,14.2,12.7,15,13.7,12.9,12.4,13.2,14.5,13]}},{"b":3,"v":{"total":[41,40.3,43.2,39.4,45.7,41.4,39.2,40.8,39.3,40.6,40.7,40.1,39.8,44.1,42.4,42.7,40.1,45.5,39.1,40,41.3,44.4,39.7,46.1,44],"script":[35.5,34.6,37.5,33.3,38.6,35.6,34.2,36.9,33.8,35.6,34.4,35,34.2,35.6,35.7,36.9,33.9,35.1,33.9,35.1,34.4,35.7,34.6,40,35.3],"paint":[2.4,3.5,1.6,3.8,3.7,3.8,2.5,2.7,3.2,3.1,1.9,3.6,3.7,2.7,4.3,3,3.9,2.9,3.2,2.2,3.6,3.4,2.6,3,2.6]}},{"b":4,"v":{"total":[49.3,62.8,63.4,62.8,63.7,47.5,65.6,47.2,64.6,64.8,65.1,61.4,48.5,45.6,65.1],"script":[31.9,30.3,31,30.1,28.5,30.3,32.3,29.9,30.5,31.6,30.7,28.6,29.6,28.9,31.2],"paint":[15.7,16,15.6,16.4,17,15.8,15.7,16.1,16.7,15.8,15.7,14.4,15.2,15.3,15.4]}},{"b":5,"v":{"total":[40.7,40.4,36.3,37.6,39.5,42.9,42,36.2,33.8,37.8,37,36.4,34.2,35,36.7],"script":[16.4,15.1,16.1,16.5,17.4,17.5,16.9,16.2,15.9,15.8,16.7,15.5,17.5,15.6,15.3],"paint":[12.4,12.1,12.4,12.4,11.9,12.6,12.7,12.4,12.3,12.9,12.2,12.6,12.6,11.8,12.7]}},{"b":6,"v":{"total":[431.3,428.5,428.1,430.2,432.5,432,432.3,430.4,428.7,431.3,428.5,430.3,433.8,431,430.5],"script":[181.3,179.9,181.2,182.5,183.7,182.1,182.8,182.4,184.6,181.4,176.3,180.5,184.5,181.8,180.9],"paint":[239.9,238.3,238.4,238.2,239.2,239.9,238.2,243.5,240.7,240.4,242.9,240.3,239.8,238.2,240.3]}},{"b":7,"v":{"total":[68.9,61.4,61.4,66.9,64.7,66.8,66.4,63,61.7,66.5,65.1,68.1,69,61.9,63.2],"script":[27.6,27.3,27.5,27.2,29,28.3,27.2,28.6,27.9,28.3,27.7,27.5,28.5,27.9,27.5],"paint":[28.3,28.3,28.3,28.3,29.9,28,28.2,28.5,28.1,28.3,27.8,28.7,28.3,28.4,28.4]}},{"b":8,"v":{"total":[45.3,40.4,44.2,40.4,41.7,44.3,46.5,21.2,40.3,41.3,40.5,41.9,41.1,40.8,42],"script":[18.3,17.2,18.1,17.9,17.6,18.1,17.7,18.5,16.6,17.4,17.3,17,16,17,17.7],"paint":[3.1,2.1,2.2,2,2.4,2.4,1.9,1.3,2.2,2.1,2,2.4,2.5,2.3,2.4]}},{"b":9,"v":{"DEFAULT":[2.6]}},{"b":10,"v":{"DEFAULT":[8.2]}},{"b":11,"v":{"DEFAULT":[8.6]}},{"b":12,"v":{"DEFAULT":[8.2]}},{"b":13,"v":{"DEFAULT":[48.7]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.6]}},{"b":16,"v":{"DEFAULT":[489.3]}}]},
-{"f":64,"b":[{"b":0,"v":{"total":[31.4,30.9,31,30.8,30.7,31,30.8,30.9,31,31.1,31.3,31.2,31.1,31.7,30.3],"script":[6.5,6.3,6.5,6,6.3,6.3,6.4,6.2,6.5,6.2,6.4,6.5,6.2,6,5.6],"paint":[24.2,24,23.9,24.2,23.8,24.1,23.9,24.2,23.9,24.4,24.3,24.2,24.3,24.9,24.2]}},{"b":1,"v":{"total":[35.2,35.2,36.7,34.6,34.9,34.6,34.5,34.6,34.7,34.4,34.2,34.6,35.3,36.6,34.5],"script":[11.2,11.2,11.1,11.1,11.3,10.9,11,11.1,11.1,10.9,10.8,11.2,11.2,11.1,10.9],"paint":[23.5,23.3,25,22.9,23,23.1,22.8,22.9,23,22.9,22.9,22.8,23.5,24.9,23]}},{"b":2,"v":{"total":[22.7,23.2,23.4,24,24.2,23.5,23.3,24.1,22.4,24.6,22.9,22.4,23,23.9,24.5],"script":[6.2,6.7,6.5,6.7,7.8,6.7,6.1,6.7,6,7.4,6.7,6.4,7.3,6.9,6.8],"paint":[14.4,14.1,14.7,15.7,14.2,13.9,15.7,15.6,14.8,14.7,14.6,14,12.8,14.4,15.6]}},{"b":3,"v":{"total":[12.2,12.1,12.5,12.4,12.8,12.2,12.7,12.5,12.4,12.8,12.8,12.5,13.2,12.8,11.9,12.3,12.5,12.9,12.3,12.4,12.7,12.5,12.6,13.2,12.4],"script":[6.2,6.3,6.3,6.4,7.1,5.2,7.1,6.7,6.5,6.1,6.7,5.8,6.7,6.7,6.2,6.5,7,5.8,5.5,6.5,6.5,6.9,6.1,6.6,6.1],"paint":[5.2,4,4.6,4.1,3.5,4.7,3.8,3.5,3.7,4.7,4.6,4.9,4.9,4.1,4,4.3,3.9,5,5.3,4.3,3.8,4.1,4.8,5.2,4.3]}},{"b":4,"v":{"total":[21.9,21.8,22.5,21,22.2,22,22.5,21.6,21.9,22.8,22,21,21.5,22.9,21.7],"script":[5.8,6,6.8,6.6,5.9,6,6.4,6.3,5.5,6.9,5.9,5.2,6,5.9,6],"paint":[13.8,13.6,12.9,12.8,14.2,13.3,13.3,13.3,14.5,14.1,14.9,14.1,13.6,14.7,13]}},{"b":5,"v":{"total":[15.2,15.6,15.3,14.8,15.1,15.1,14.8,15.1,14.7,15.8,15.3,14.9,15,15.4,14.7],"script":[3.5,3.4,3.6,3.7,3.5,3.5,3.4,3.6,3.6,3.6,3.2,3.4,3.9,3.6,3.5],"paint":[11,11.6,10.9,10.1,10.9,10.9,10.6,10.7,10.1,11.3,11.5,10.5,10.6,11.3,10.5]}},{"b":6,"v":{"total":[305,303.3,308.5,313.6,305.4,306.4,308.5,306.9,308,306.9,309.1,308.9,306.3,309.9,304],"script":[53.8,53.6,54.4,54.6,54.8,53.5,53,53,55,54.4,54.9,54.5,55.1,55.2,53.7],"paint":[244.3,242.7,247.6,252.4,243.7,246.2,248.7,247.1,246.2,246.3,247.4,247.3,245,248,243.2]}},{"b":7,"v":{"total":[38.4,38.1,38.3,38.6,38.7,38.3,37.5,38.6,38.5,38.3,37.8,38.3,38.5,38.2,38.6],"script":[8.9,9.3,9.2,9.4,9.6,9.3,9,9.7,9.2,9.3,9.2,9.3,9.5,9.3,9.4],"paint":[28.6,27.9,28.2,28.2,28.2,28.1,27.6,28,28.3,28.1,27.7,28.1,28.1,28,28.3]}},{"b":8,"v":{"total":[13.7,13.3,14.9,12.8,13.2,13.4,13.6,13.7,13.4,13.5,14.2,13.4,14,13.2,13.7],"script":[11.1,11.3,12.8,11.5,11.3,11.9,11.3,11.8,12,11.1,11.9,11.7,11.8,11.1,11.6],"paint":[1.5,1.1,1,0.7,1,0.2,0.7,0.8,1.2,1.9,1.9,1.1,1.5,0.2,0.7]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.4]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[27.2]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[56]}}]},
-{"f":65,"b":[{"b":0,"v":{"total":[34.5,35.2,34.7,38.1,32.7,34.4,38.1,35.6,32.6,31.7,33.8,33.9,38.1,35.4,37.8],"script":[6.5,7,7,7.3,6.9,7,6.8,7.4,6.5,6.6,6.9,6.4,7,6.5,6.6],"paint":[23.3,23.9,23.4,24.2,24.3,23.7,23.7,23.8,24,23.8,23.7,23.9,23.4,23.6,23.9]}},{"b":1,"v":{"total":[37.1,37.6,36.9,38.9,38.5,37.1,37.2,37.2,39.3,38.3,35.9,36.5,36.8,38.4,38.9],"script":[9.9,9.2,9.1,9.4,9.2,8.7,9.1,8.9,9.7,9,8.9,9.3,9.2,8.7,8.9],"paint":[23.6,24,23.8,23.9,24,24.5,24.1,24.7,24,24.3,24.5,24.4,24.3,23.5,25]}},{"b":2,"v":{"total":[36.1,37.4,37.3,38.4,38.4,36.6,36.5,37.4,21.9,20.7,39.2,37.5,37.3,35.4,37.8],"script":[8.3,8.7,9.4,8.8,10,8.5,8.4,9.1,8.9,9.4,11,8.5,9.9,8.1,9.6],"paint":[11.3,11.6,11.7,13.6,11.5,12,12.1,12,12.7,10.3,11.6,12.3,11.1,11.4,9.7]}},{"b":3,"v":{"total":[14.9,10.6,10.7,12,10,15,9.9,14.9,10.3,13.8,9.4,12.2,13.7,9.8,13.5,10.9,13.4,14.2,12.6,10.7,11,12.5,10.2,10.7,15.5],"script":[6.6,6.6,7.1,7,7.7,7.4,7.6,7.5,8,7.6,7.3,6.8,7.8,7,6.4,6.7,7.4,7.3,7,7.7,7.1,6.9,7.3,7.9,6.9],"paint":[1.5,0.9,2.8,1.6,1.4,1.5,1.7,2,1.4,2.1,1.5,2.2,0.4,1.9,2.9,0.9,1.7,1.8,1.8,1.9,1,1.5,1.4,1.8,2]}},{"b":4,"v":{"total":[23.1,36.9,24.1,38.1,38,38.2,38.3,38,36.5,38.5,37.6,38.1,38.9,39.2,37.2],"script":[7.4,6.8,7.1,7.6,7.9,7.7,6.4,7.2,6.4,8.1,7.3,6.5,8.9,8.1,7.2],"paint":[12.6,12.6,15.4,13.8,14.3,13.7,14.6,14,13.2,14.2,14,14.9,13,14.2,13]}},{"b":5,"v":{"total":[13.8,17.3,13.4,13.7,16.6,12.7,15.2,16.1,13.7,13,17.6,15.3,15.4,16.2,16.1],"script":[3.7,3.6,3.3,3.9,3.1,3.5,3.4,3.4,3.7,3.5,3.7,3.4,3.5,3.4,3.3],"paint":[9.4,9.4,9.5,9.7,9.5,9.1,9.2,9,9.9,8.8,8.7,9.4,9.1,9.4,9.1]}},{"b":6,"v":{"total":[321.1,317.7,321.2,319.3,320,318.7,319.8,320.9,312.6,316.1,317.2,314.9,321.2,324.6,320],"script":[77.8,74.8,77.1,74.7,74.1,74.1,74.5,74.9,73.7,75.2,77.6,74.3,75.3,75.2,74.6],"paint":[234.7,239,240.7,237.7,236.1,236.2,236.8,239.5,236,238,236.9,235.4,237.1,239.9,239.5]}},{"b":7,"v":{"total":[46.1,43.7,43.5,44.2,38.6,43.4,44.7,44.4,38.3,42.9,43.3,38.6,38.1,38.7,43.4],"script":[10.2,10.1,10,10.1,10.2,10,10.1,9.8,9.9,9.8,10.1,10,10,9.9,10],"paint":[27.1,28.1,28,27.8,28.1,28,27.6,28,27.8,28.4,27.7,28.1,27.8,28.5,28]}},{"b":8,"v":{"total":[11.7,11,28,12.5,27.1,27.6,12.2,28.8,28.7,27.6,9.9,11,27.2,10.4,11.4],"script":[9.6,8.9,10.8,9.6,9.4,9.4,9.3,10.6,10.4,9.7,8,8.7,9.4,9,8.9],"paint":[0.9,1.6,1.1,0.3,1.5,1.6,0.3,1.6,1.8,1.1,1.9,1.4,1.6,0.3,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.1]}},{"b":11,"v":{"DEFAULT":[5.5]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[32.2]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[11.7]}},{"b":16,"v":{"DEFAULT":[65.6]}}]},
-{"f":66,"b":[{"b":0,"v":{"total":[28.5,28.5,28.4,28.5,28.4,28.9,28.2,28.2,28,28.1,28.3,28.7,28.3,28.3,28.1],"script":[4.8,4.9,4.8,4.8,4.9,5.2,4.7,4.7,4.7,4.7,4.7,4.7,4.8,4.7,4.8],"paint":[23.2,23.2,23.3,23.3,23.2,23.2,23.1,23,22.9,23,23.2,23.6,23.2,23.2,22.8]}},{"b":1,"v":{"total":[32.4,32.4,32.4,31.8,31.8,32,32.2,31.9,32.4,32.5,32,31.8,31.6,31.8,31.8],"script":[8.4,8,7.8,7.9,7.4,7.6,7.9,7.6,7.6,7.9,7.7,7.8,7.4,7.6,7.9],"paint":[23.5,23.7,24,23.3,23.9,23.9,23.7,23.7,24.2,24.1,23.8,23.5,23.6,23.7,23.4]}},{"b":2,"v":{"total":[11.9,13,11.4,12.2,12,12.2,13,12.3,14.1,12.4,12.2,12.7,12.7,11.9,12.7],"script":[1.4,1.4,1,1.6,1,1,1.2,1.1,1.5,1.1,1.1,1.4,1.3,1.2,1.5],"paint":[9.6,11.4,9.1,9.9,10,9.6,10.2,9.6,11.5,10.6,9.8,9.9,10.7,9.7,10.1]}},{"b":3,"v":{"total":[2.2,2.4,2.5,2.4,2.6,2,2.6,2,2.5,2.6,2.4,1.6,2.7,2.4,2.4,2.4,2.6,2.6,2.5,2.3,2.7,2.7,2.5,2.5,2],"script":[0.1,0.9,0.1,0.1,0.5,0.1,0.6,0.1,0.5,0.1,0.1,0.1,1.1,0.7,0.1,0.1,0.6,0.9,0.6,0.6,0.8,0.6,0.1,0.1,0.1],"paint":[2,1.3,1.2,2.2,1.4,1.1,0.6,0.9,1.2,2.1,1.3,1.4,1.5,1.5,1.8,0.4,1.5,0.8,0.4,1,1.4,1.5,1.4,2.3,1.1]}},{"b":4,"v":{"total":[15.7,15.5,16,15.7,15.3,15.4,15.1,14.6,15.9,14.9,15.6,15.2,15.3,15.2,14.9],"script":[1.9,1.1,2.1,1.8,2.3,1.5,1.7,1.5,1.8,1.5,1.5,1.5,2.2,1.8,1.3],"paint":[12.9,13.1,12.9,12.6,12.4,12.9,12.6,11.6,13.3,11.6,12.8,12.8,12.2,12.4,12.4]}},{"b":5,"v":{"total":[11,11.3,11.1,11.3,12,11,11.2,11.2,10.9,11,11,11,11.1,11.2,11],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6],"paint":[9.9,10.1,9.7,10.1,10.5,9.8,10,9.7,9.4,9.5,9.6,9.7,9.9,9.9,9.8]}},{"b":6,"v":{"total":[297.2,298.3,298.6,298.4,297.3,298.3,294.4,295.8,296.5,300.9,298.4,297.8,293.5,296.9,297.6],"script":[51.9,56.1,54.6,57.3,55.6,55.7,53.9,55.4,54.2,57,54.9,56.1,53.2,56,55.7],"paint":[239.5,236.7,238.2,235.5,236.3,236.9,235,234.7,236.5,238.2,237.6,236.1,234.5,235.4,236.3]}},{"b":7,"v":{"total":[33.4,32.8,33.6,33,33.6,33.7,32.8,32.9,34,33.2,33,33.1,33.2,33.3,33.5],"script":[5.3,5,5.5,4.8,5.3,5.4,5.3,5.3,5.5,5.4,4.8,5.4,5.3,5.1,5.6],"paint":[27.2,26.8,26.9,27.2,27.4,27.4,26.6,26.6,27.7,27,27.6,26.8,27.1,27.2,26.9]}},{"b":8,"v":{"total":[10.5,9.1,9.7,10.5,10.6,10.4,10,11,10.3,9.3,11.2,10.1,9.9,10.4,10.1],"script":[8.4,7.2,8.2,8,8.4,9,7.9,8.3,8.2,7.7,9,8.2,7.8,7.9,8.2],"paint":[1.6,1.3,0.2,0.4,1.1,0.2,0.9,1,1.8,0.5,2,1.1,1.5,1.2,1.6]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[4]}},{"b":11,"v":{"DEFAULT":[4]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[29.9]}},{"b":14,"v":{"DEFAULT":[56.4]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[71.9]}}]},
-{"f":67,"b":[{"b":0,"v":{"total":[30.8,30.4,30.4,30.8,30.5,30.3,31,30.9,30.4,30.6,30.6,30.7,30.2,30.3,30.5],"script":[6.1,6,6,6.1,6,6.1,6.1,6.1,6,6.1,6.2,6.1,5.9,6,6],"paint":[24.3,24,24,24.2,24.1,23.9,24.5,24.3,23.9,24.2,24,24.2,23.9,23.9,24]}},{"b":1,"v":{"total":[33.1,33,34.8,34.2,33.8,33.3,33.2,33.5,33.4,33,33.2,33.4,33.4,33.3,33.4],"script":[8.3,8.4,9.4,8.5,8.6,8.6,8.6,8.4,8.5,8.3,8.5,8.5,8.5,8.8,8.8],"paint":[24.3,24.1,24.9,25.2,24.7,24.3,24.2,24.7,24.4,24.2,24.3,24.5,24.4,24,24.2]}},{"b":2,"v":{"total":[13.5,14.1,14,13.4,14.4,14.3,14.9,14.2,13.6,14.4,13.9,13.9,15,14.6,14.3],"script":[2.3,3.2,2.5,2.5,3.2,2.9,3.2,3,2.7,3.2,2.9,2.8,3.1,2.8,2],"paint":[10.3,10.5,9.7,9.9,9.7,10,11,10,9.6,9.9,10.1,10.2,10.9,10.7,11.7]}},{"b":3,"v":{"total":[7.5,6.6,6.2,6,6.1,5.5,6.8,7.7,7.2,7.1,6.9,6,6.1,6.6,5.7,6.4,6.6,6.3,6.1,7.6,6.5,6.6,6.3,5.8,6.5],"script":[5.6,4.5,4.5,4,4.3,4,4.4,5.4,4.5,5.1,5.2,4.1,3.5,4.5,4.2,4.2,4.2,4,4.1,5.6,5.1,4,4.4,4.3,4.1],"paint":[1.3,1.2,1.6,1.5,1.7,1.4,2.3,1.5,2.3,1.4,1.5,0.9,1.7,1.2,1.4,0.8,1.4,2,1.9,1.2,1.3,2,1.8,0.7,1.4]}},{"b":4,"v":{"total":[19,18.8,18.9,18.5,18.6,18.6,18.7,19.6,18.7,19,19,17.9,18.3,18.1,18.2],"script":[5.1,5.1,5.1,5.1,5.3,4.9,4.6,6,4.9,5.2,5.3,4.7,5.1,4.5,4.8],"paint":[13.1,12.7,11.8,12,11.9,12.6,13,12.1,12.8,12,12.5,12.5,11.7,12.6,12.3]}},{"b":5,"v":{"total":[12.9,13,13.1,13.2,12.8,12.9,12.9,12.8,13.1,13.1,14,12.9,13.3,13.3,13.1],"script":[2.5,2.6,2.4,2.4,2.4,2.4,2.5,2.4,2.7,2.4,2.8,2.5,2.5,2.7,2.5],"paint":[9.8,9.5,10,10.1,9.7,9.7,9.9,9.5,9.7,10.1,10.7,9.8,10,10.2,10]}},{"b":6,"v":{"total":[388.4,392.8,386.7,388.1,388.1,388.6,388.3,387.6,387.7,388.7,389.5,388.8,387.8,394.6,388.2],"script":[147.2,149.1,147.2,147.4,147.8,146.1,146.6,146.9,146.8,147.7,147.1,148.2,147.9,146,146.9],"paint":[235.2,236.2,233.3,234.6,233.8,236.2,235.2,234.6,234.8,234.9,235.2,234.5,233.6,242.5,234.6]}},{"b":7,"v":{"total":[49,49.1,49.1,49.2,48.9,49.1,49.3,49.7,49.7,48.8,49,48.9,49,48.5,48.8],"script":[19.9,20.2,20.6,20.3,20.3,19.7,20.5,20.4,20.6,20.1,20.1,20.1,20.3,20.1,19.9],"paint":[28.3,28.1,27.6,28.1,27.7,28.5,28,28.5,28.3,27.9,28.1,28.1,27.9,27.6,28]}},{"b":8,"v":{"total":[16.2,17.9,17.8,16.8,18.6,16.2,17.8,18.5,17.3,16.4,18.4,18,18.9,16.4,16.5],"script":[15,16.3,16.5,15.2,16.4,15.5,16.6,17.5,15.8,15.1,16.5,16.5,17.3,14.5,15.4],"paint":[0.8,0.3,0.7,1.5,2.1,0.6,0.3,0.3,0.6,1.2,1.4,0.9,1.4,1.8,0.3]}},{"b":9,"v":{"DEFAULT":[2.8]}},{"b":10,"v":{"DEFAULT":[9.8]}},{"b":11,"v":{"DEFAULT":[9.8]}},{"b":12,"v":{"DEFAULT":[10.3]}},{"b":13,"v":{"DEFAULT":[72.5]}},{"b":14,"v":{"DEFAULT":[232.2]}},{"b":15,"v":{"DEFAULT":[66.3]}},{"b":16,"v":{"DEFAULT":[297.6]}}]},
-{"f":68,"b":[{"b":0,"v":{"total":[42.3,33,34.8,35.5,37.4,37.7,36.2,35.9,34.2,33.8,35.5,34.3,30.7,36.8,33.6],"script":[26.3,26.9,27,27,26.3,27.5,27.1,26.9,27.6,27.3,26.9,26.9,27,27.3,27],"paint":[22.2,22.4,22.7,22.4,22.1,22.5,22.6,22.3,22.8,22.6,22.4,22.4,22.9,22.7,22.4]}},{"b":1,"v":{"total":[46.8,42.5,43.5,40,39.1,40.7,38.6,36.5,37,42,35.9,38,41.8,43.2,39.3],"script":[32.9,32.8,32.5,32,32.1,32.2,32.1,31.1,31.9,32.4,32.1,32.6,31.8,31.6,32],"paint":[24.3,24,23.6,23.3,23.4,23.5,23.3,22.9,23.5,23.8,23.3,23.6,23,23,23.4]}},{"b":2,"v":{"total":[60.4,44,60.1,60.1,60.8,60.5,44.4,43.5,44.3,60.3,61.9,60.8,60.5,60,59.5],"script":[37.1,36.6,38.1,37.7,38.1,36.4,37.6,35.4,36.5,38.1,39.3,36.9,38.6,37.8,37.2],"paint":[12.7,12,11.8,11.9,11.3,13.2,11.6,13.8,13.8,12.3,12.4,12.8,11.7,13.2,13.1]}},{"b":3,"v":{"total":[36.3,39.2,35.5,36.7,36.1,36.5,35.1,35.5,35.2,35.1,36,35.1,38.4,35.7,36.5,35.9,35.8,34.4,34.6,37.3,36.5,35,36.2,34.8,35.4],"script":[30.6,31.6,30.6,31.2,31,30.7,29.4,29.7,29.4,29.6,30.8,30.3,32.5,30.7,30,29.9,30,28.8,29.9,29.4,31,29.6,30.6,30,29.6],"paint":[2,3,2,3.1,1.8,3.4,2.2,3.3,1.8,1.8,3,3.4,2.7,2.4,2.7,2.2,4.9,2.8,2.7,2.5,2.7,2.2,2.1,3.2,2.8]}},{"b":4,"v":{"total":[164.1,142.1,158.6,163,148.5,144,143.8,161.6,143.4,145.2,160.7,162.4,161.3,160.1,158.7],"script":[128.9,124.9,126.5,129.5,133,127.8,127.1,129.2,126.8,128.2,127.5,128.5,129.4,125.8,126.9],"paint":[99.2,96.2,95.6,101.6,100,99.3,100.3,99.8,100,98.7,99,96.6,96.3,97.2,96.9]}},{"b":5,"v":{"total":[72.3,73.3,76.5,73.8,75.3,73.6,77.6,76.1,74.8,78.8,73.5,72.9,72.8,72.3,71.4],"script":[22.1,22.1,22.1,21.3,21.1,21.6,21.7,22.1,21.8,21.7,22.5,21.9,21.6,21.5,21.2],"paint":[48.3,48.7,48.3,47.6,48.2,48.6,49.8,48.5,48.5,49.2,48.9,47.9,48.7,48.6,48.2]}},{"b":6,"v":{"total":[322.2,314.6,318.5,315.5,317.8,313.6,317.4,317.9,317.4,317,322.8,314.9,315,314.6,318.5],"script":[271.8,270.7,275,271.2,272,272,273,272.9,272.3,270.7,278.9,271.3,272.2,271.8,274.7],"paint":[242.3,243.9,244.5,242.8,243,242.4,242.6,243.6,243.5,241.9,245,241.7,240.9,241.9,244]}},{"b":7,"v":{"total":[45.6,40.4,47.1,40.9,41.3,45.9,47.4,41.2,45.6,40.4,41.3,46,46.8,40.6,47.1],"script":[34.9,35.2,34.5,35.4,35.8,35.7,35.3,36,35.3,35.3,36.1,35.5,36.1,35.5,35.2],"paint":[26.7,26.9,26.3,26.8,27.1,27,26.8,26.9,26.6,26.5,27.1,26.8,27.3,26.5,26.5]}},{"b":8,"v":{"total":[41,19.1,22.1,41.3,18,42.5,42.1,40.1,19.4,42,21,40.9,18.4,40.8,19.7],"script":[16.8,15.9,16.7,17,15,17.2,16.2,15.6,15.3,17,17.6,15.8,15.7,16.1,15.5],"paint":[1.5,1.8,2.5,1.2,1.9,2.2,2.4,2.6,2.3,2.3,1.5,2.4,2,2.7,2.4]}},{"b":9,"v":{"DEFAULT":[3.5]}},{"b":10,"v":{"DEFAULT":[4.9]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[3.7]}},{"b":13,"v":{"DEFAULT":[16.4]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.7]}},{"b":16,"v":{"DEFAULT":[115.7]}}]},
-{"f":69,"b":[{"b":0,"v":{"total":[34.3,29.5,29.1,34.6,34.5,30.4,32.5,28.9,30,34.5,28.7,30,29.7,29.6,29],"script":[4.4,5.7,5.1,4.9,4.7,4.5,4.9,4.5,4.7,4.9,4.5,5.6,5.1,5.8,5],"paint":[23.6,23.6,23.8,23.4,24.2,24.2,23,24.2,23.9,23.5,24.1,24.2,23.8,23.6,23.8]}},{"b":1,"v":{"total":[31.8,31.6,31.5,32.7,35.3,31.9,32.1,31.3,33.9,31.2,31.6,30.7,32.1,35.2,32.6],"script":[7.7,7.5,7.3,7.1,6.8,7.8,7.8,7.6,7.3,7.1,7.5,7,7.5,6.7,6.9],"paint":[23.8,23.7,23.8,24.4,23.9,23.8,24,23.5,24.9,23.8,23.7,23.5,24.2,23.3,23.8]}},{"b":2,"v":{"total":[21.4,19.3,17.7,18.5,18.4,19.1,19.5,19.4,17.8,32.4,18.1,18.3,18.5,17.9,18.9],"script":[7.6,7.7,7.1,6.8,7.3,5.9,7.6,7.8,6.9,6.5,6.8,6.9,6.5,6.8,6.5],"paint":[12.8,10,10.3,10.2,10,10,11.1,9.4,10.8,9.8,10.8,9.9,10.7,9.9,10.8]}},{"b":3,"v":{"total":[7.6,7.6,7.8,9.4,8.3,7.3,7.5,7.7,7.3,7,6.5,7.2,6.9,8.5,7.1,7.7,6.7,7.1,7.6,7.3,8.9,6.6,7.9,6.8,7.9],"script":[5.1,5.5,5.9,4.8,4.6,5.6,5.2,4.9,5.1,5.1,5,4.9,4.8,4.6,5,4.9,5.1,3.8,5.4,4.5,5.5,5,5.2,3.8,5.9],"paint":[1.3,1.5,1,2,1.4,1.6,1.5,1.1,1.7,0.9,1.4,1.6,2,1.2,1.8,0.7,0.7,1.2,2,2.4,1.7,1.4,2.2,2,1.8]}},{"b":4,"v":{"total":[20.3,17.8,20.1,20.5,18.7,18.2,18,19.5,17.6,34.6,19.8,17.7,19.1,17.4,21.4],"script":[5.2,5.4,5.6,5.2,4.9,4.7,4.7,4.8,4.7,5.1,6.2,5.2,4.8,5.5,5.1],"paint":[12.8,11.2,13.2,14,13.2,13.4,11.8,13.7,11.9,13.4,13.5,12.4,12.7,11.7,13.6]}},{"b":5,"v":{"total":[19.4,14.5,14.5,14,14.5,14.1,14.6,15.1,14.4,14.5,14.3,14.4,14.5,13.9,13.9],"script":[4.8,5.1,4.6,4.6,4.9,4.5,5.2,5.3,4.8,4.9,4.8,4.9,4.8,4.6,4.5],"paint":[9.3,9,9.4,9.3,9.4,9.4,8.9,9.5,9.4,9.5,9.2,9.3,9.1,8.9,9.3]}},{"b":6,"v":{"total":[298.7,298.9,298.3,302.4,296.7,297.5,301.6,298,300.7,298.8,300,301.2,297.3,297.4,297.9],"script":[49.6,49.2,49.5,51.9,48.6,49.6,51.4,50,50.2,52,51.8,52.4,50,50.2,51],"paint":[245.3,246.1,245.8,246.8,244.3,244.8,247.3,244.6,246.5,243.6,245.2,245.7,244.4,244.1,243.9]}},{"b":7,"v":{"total":[38.2,34.6,38.9,34.6,35.3,34.8,34.8,34.6,35.7,38.6,34.7,38.9,34.5,34.9,35.5],"script":[6.2,7.4,6.7,7.5,7.8,6.6,7.7,7.5,7.7,6.2,7.2,6.6,7.5,7.5,7.5],"paint":[26.3,26.8,27.1,26.8,27.2,27.3,26.9,26.7,27.7,26.5,27.2,26.7,26.6,27.1,27.6]}},{"b":8,"v":{"total":[26.4,11.4,11.4,11.2,9.8,25.9,10.8,26.1,10.8,10.9,10,26.6,26.9,10.8,27.9],"script":[8.6,9.6,9.8,9.3,7.4,8.5,9,8.5,8.6,8.9,7.7,8.6,8.8,9,10],"paint":[0.7,1.1,0.6,0.6,1.4,0.3,1.6,0.3,1.9,1.7,0.2,0.7,1.4,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.4]}},{"b":11,"v":{"DEFAULT":[3.5]}},{"b":12,"v":{"DEFAULT":[1.3]}},{"b":13,"v":{"DEFAULT":[23.9]}},{"b":14,"v":{"DEFAULT":[79.9]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[99.2]}}]},
-{"f":70,"b":[{"b":0,"v":{"total":[29.2,29.6,28.7,28.7,28.4,28.5,28.6,28.5,28.9,28.5,28.6,28.5,29,28.6,28.7],"script":[5,5.1,4.7,4.8,4.5,4.4,4.6,4.5,4.7,4.5,4.5,4.4,4.6,4.5,4.8],"paint":[23.8,24,23.6,23.6,23.5,23.6,23.6,23.7,23.8,23.6,23.7,23.7,24,23.7,23.6]}},{"b":1,"v":{"total":[31.9,31.7,31.3,31,31.1,31.4,31.5,31.2,32.1,31.5,31.6,31.3,31.2,31.8,31.4],"script":[6.9,7,6.8,6.9,6.9,7,7,6.8,6.9,7,6.9,6.9,6.8,7,6.8],"paint":[24.4,24.1,23.9,23.6,23.7,23.8,24,23.9,24.6,23.9,24.2,23.9,23.8,24.2,24.1]}},{"b":2,"v":{"total":[14,13.4,13.5,13.3,13.5,13.1,13.9,13.7,14.6,13.8,13.3,13.3,14.3,14.1,14.3],"script":[1.9,1.1,1.2,0.6,1.1,0.7,1.4,0.9,1.8,1.2,1.4,1.3,1.4,1.2,1.2],"paint":[10.3,10.7,11,11.9,11.1,11.3,11.4,10.1,11.8,11.3,11.1,10.8,11.8,11.7,11.7]}},{"b":3,"v":{"total":[4,1.7,2.6,2.2,3.1,2.3,2.5,2.7,2,2.2,1.9,2.4,2.6,2.8,2.4,2.4,3,2.8,2.8,2.6,2.3,1.8,2.7,2.7,1.6],"script":[0.1,0.1,0.1,1,1,1,0.1,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.8,0.5,0.9,0.1,1,0.5,0.1,0.5,0.8,0.8,0.1],"paint":[2.3,0.7,2,0.7,1.5,1.1,1.8,2.5,0.7,1,0.9,1.4,1.7,1.6,1.5,1.1,1.4,2.5,1,1.3,0.3,1.2,1.1,1.2,1.4]}},{"b":4,"v":{"total":[14.2,14.4,14.7,14.4,14.6,13.9,14,14.3,14.3,13.6,15.3,15.2,14.6,14.1,14.8],"script":[0.2,0.6,0.6,1.3,1,1.1,1.1,1.1,1.1,0.9,1.2,1.1,0.9,1.3,0.6],"paint":[12.5,12.3,13.2,11.7,12.3,11.8,11.6,12.5,11.5,11.3,13,13.1,12.4,11.6,13.3]}},{"b":5,"v":{"total":[11,10.8,11.3,10.7,10.9,11.8,10.9,10.3,10.5,11,10.7,10.8,10.7,11,10.6],"script":[0.4,0.4,0.9,0.3,0.4,0.3,0.4,0.4,0.2,0.1,0.1,0.4,0.3,0.1,0.2],"paint":[9.9,9.7,9.9,9.9,9.8,10.7,9.9,9.3,9.7,10,9.9,9.9,10,9.7,9.7]}},{"b":6,"v":{"total":[306.7,303.6,304.1,306.7,304.4,305.9,303.9,302.9,303.7,302.2,302,303.3,304.7,302.2,305.4],"script":[55,53.4,54.3,54.4,53.7,53.5,53.9,54.3,54.1,53.2,53.7,54.2,53.9,53.8,53.8],"paint":[245.1,244.2,243.8,246.3,245.1,246.3,244.4,242.8,243.3,242.7,242.6,242.8,243.9,242.4,245.6]}},{"b":7,"v":{"total":[32.8,34.1,33.3,33.7,33.6,34.9,33.6,34.2,32.9,33.9,35.1,33.8,34,33.9,33.7],"script":[5,5.2,5,4.9,5.3,5.2,5.1,5.2,4.9,5.3,5.2,5.2,5.1,5.1,5.3],"paint":[27,27.9,27.6,28,27.5,28.9,27.6,28.1,27.3,27.8,28.9,27.7,28,27.9,27.6]}},{"b":8,"v":{"total":[10.5,11,9.8,10,11,9.5,9.4,10.5,10.7,10.6,11.7,10.6,10.9,10.7,10.2],"script":[9,9,8.3,7.7,8.7,7.1,7.5,8.3,8.9,8.3,9.6,8.3,9.2,8.6,9.1],"paint":[0.6,1.7,1.1,1.3,0.3,1.4,0.6,1.1,0.8,1.3,1.1,1.3,1.3,0.9,0.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.2]}},{"b":11,"v":{"DEFAULT":[2.3]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[14]}},{"b":14,"v":{"DEFAULT":[13.3]}},{"b":15,"v":{"DEFAULT":[5.2]}},{"b":16,"v":{"DEFAULT":[46.9]}}]},
-{"f":71,"b":[{"b":0,"v":{"total":[30.1,29.2,28.9,28.9,29.7,29.2,29.4,28.8,29.5,28.4,29.2,29.5,29.8,29.6,28.8],"script":[5.2,4.7,4.6,4.6,5.2,5.1,5,4.7,4.8,4.6,4.8,4.8,5.2,5.2,4.6],"paint":[24.3,24.1,23.9,23.9,24,23.5,24.1,23.8,24.3,23.4,24.1,24.3,24.1,23.9,23.8]}},{"b":1,"v":{"total":[31.3,32,31.6,32.7,31.7,31.4,31.2,31.7,31.4,31.1,31.6,31.7,31.4,31.6,31.5],"script":[7.5,7.6,7.6,7.6,7.8,7.7,7.4,7.5,7.5,7.3,7.5,7.6,7.5,7.6,7.5],"paint":[23.3,23.8,23.5,24.5,23.3,23.1,23.3,23.6,23.4,23.2,23.5,23.5,23.3,23.4,23.5]}},{"b":2,"v":{"total":[13.1,12.5,12.1,11.2,12.4,12.2,12.7,12.9,12.7,11.7,12.2,12.1,12.6,12.7,12.3],"script":[0.9,0.9,0.7,0.5,1.3,1.3,1.1,1.5,0.7,0.2,0.9,0.6,1.3,1.5,1],"paint":[11.1,10.4,10.5,9.1,10,9.9,11.4,10.4,10.9,10.9,10,10.4,10.2,9.9,10.4]}},{"b":3,"v":{"total":[3.1,2.8,2.2,1.5,5,2.1,2.7,2.4,2.5,3.1,2.3,2.2,1.9,2.1,3.2,2.2,2.4,2.2,2.4,1.8,1.8,3,2.1,2.6,2],"script":[0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.6,0.6,1,0.1,0.1,0.1,0.1,0.9,0.1,0.7,0.1,0.7,0.5,0.5,0.9,0.1,0.1,0.1],"paint":[2,2.6,1.7,1.3,1.4,1.9,2.4,1.7,1.4,1.9,1.1,1.5,1.6,1,2.2,1.9,1.5,1.5,1.6,0.7,0.7,1.7,2,2.4,0.7]}},{"b":4,"v":{"total":[16.9,16.4,17,17.4,17.4,19.5,16.3,17.5,16.7,17,17.2,17.6,16.5,17.6,16.4],"script":[3.3,2.8,2.8,2.5,3.4,3.3,2.7,3.5,3.3,3.5,3.7,3.7,3,3.2,3],"paint":[12.4,12.1,13.1,13.4,12.9,14.8,12.8,12.7,12.5,12.5,12.2,12.4,12,13.3,11.8]}},{"b":5,"v":{"total":[11.9,11.6,12,11.9,11.6,12.2,11.9,11.7,12.1,12,12,11.8,11.8,11.9,11.9],"script":[1.3,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[10.1,9.7,10.1,10.1,9.8,10.2,10,9.8,10,9.9,10.1,9.9,9.9,10.2,9.8]}},{"b":6,"v":{"total":[308.5,305.7,303.9,308.1,307.1,302.4,307.2,307.9,303.6,305.5,304.3,305.3,304.5,303.6,306.1],"script":[56.3,57.8,56.8,56.2,57,56.6,56.8,57.1,56.3,56.7,56.9,56.4,56.3,55.9,56.6],"paint":[245,241.8,240.8,244.3,243.9,239.6,243.5,244.5,240.9,242.5,240.9,242.5,242.1,241.7,243.6]}},{"b":7,"v":{"total":[33.4,33.5,34,33.3,33.9,34.2,33.6,33.2,34,33.8,33.6,33.7,33.6,33.9,33.9],"script":[5.6,6,5.5,5.7,5.4,6.1,5.9,5.5,6.1,5.4,5.7,6,5.5,6.1,6.2],"paint":[26.9,26.6,27.5,26.7,27.6,27.1,26.8,26.9,27.1,27.5,27,26.8,27.2,26.9,26.8]}},{"b":8,"v":{"total":[10.4,10.1,10.1,10.1,9.1,10.2,9.7,10.1,9.9,10.2,9.9,10.3,9.8,9.6,9.7],"script":[8.4,7.7,8.1,7.9,7.9,8.2,7.9,8,8,8.2,8.6,8.4,8,7.7,8],"paint":[0.8,1.4,1.3,0.4,0.2,1.5,0.9,1.1,1,0.3,0.3,1.1,1.6,0.9,0.7]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.5]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[27.2]}},{"b":14,"v":{"DEFAULT":[17.3]}},{"b":15,"v":{"DEFAULT":[6.5]}},{"b":16,"v":{"DEFAULT":[57]}}]},
-{"f":72,"b":[{"b":0,"v":{"total":[29.6,29.7,29.1,28.9,29.9,29.6,28.6,29.1,29.4,29.4,29.4,29.8,29.4,29.3,29],"script":[5.8,5.7,5.7,5.7,5.7,5.8,5.5,5.8,5.8,5.6,5.7,5.7,5.6,5.6,5.6],"paint":[23.2,23.5,22.9,22.7,23.6,23.2,22.6,22.8,23,23.2,23.1,23.5,23.3,23.1,22.8]}},{"b":1,"v":{"total":[34.2,33.9,35.6,33.8,34,33.5,33.7,33.9,34,35.2,34.3,33.9,34.4,34.6,35.7],"script":[9.9,10.2,10.9,9.8,9.9,9.9,10,10.1,9.9,10.6,10.9,10.3,10.4,10.4,10.6],"paint":[23.6,23.2,24.1,23.4,23.5,23,23.1,23.2,23.5,24,22.9,23.1,23.5,23.7,24.5]}},{"b":2,"v":{"total":[13.3,13.4,14.4,14.1,13.4,14.3,14.3,13.1,13.1,13.4,13.9,13,14.1,13.2,13.3],"script":[2.2,2.1,2.2,2.7,2.4,3,3.2,2.1,2.8,2.2,2.4,1.6,2.9,2.4,2.2],"paint":[9.7,10.5,10.4,10.2,10,10,10.8,10,10,9.8,10.1,8.9,10.1,9.8,9.6]}},{"b":3,"v":{"total":[3.7,4,4.4,3.8,4,3.6,3.3,3.8,3.7,3.8,3.1,3.1,3.4,3.3,4.3,3.8,3.9,3.4,3.6,3.6,3.5,3.4,4.3,3.9,3.7],"script":[1.5,1.5,2,1.6,1.1,1.8,1.7,1.8,1.5,1.8,1.3,1.2,1.9,1.6,2,1.3,1.3,1.9,1.3,1.3,1.4,0.9,2.3,1.2,1.7],"paint":[1.8,1.5,1.5,1.4,2.3,1.6,1,1.1,0.9,1.3,1.7,0.7,1,1.5,2.2,1.6,2.4,1.3,2.1,2.2,1.7,2.4,1.1,2,1.3]}},{"b":4,"v":{"total":[110.6,109.7,112,109.8,110.7,112.1,109,111.1,111.8,111.9,108.1,110.7,109.9,109.2,109.3],"script":[13.8,12.2,13.8,12.6,13.5,13.1,12.7,12.4,13.2,13,11.6,12.6,12.7,12.8,12.4],"paint":[94,95.9,96.5,95.5,94.7,97.1,93.3,95.4,95.8,96.5,93.4,95.5,95.1,94,95]}},{"b":5,"v":{"total":[12.1,12.5,11.1,11.5,11.4,11.6,11.6,11.5,11.5,11.7,11.2,11.6,12.3,11.3,11.4],"script":[0.9,1.8,0.7,0.9,0.7,1.1,0.9,0.9,0.7,0.9,0.8,1.1,1.9,1,0.7],"paint":[10.3,10,9.8,10.2,10.1,9.9,10.1,10.1,10,9.6,10.1,10.1,9.9,9.7,10.1]}},{"b":6,"v":{"total":[329.1,332.2,330.5,328.3,331.2,333.7,328.3,332.7,332.9,333.9,329.9,327.3,330.9,329,329.1],"script":[74.6,75.9,73.7,74.1,75.6,74.9,73.9,73.6,74,74.9,75.1,75,74.8,74.5,74.1],"paint":[248.1,249.6,250.2,248.5,249.1,252.4,248.3,252.7,252.5,252.2,248.9,246,249.9,248.5,248.2]}},{"b":7,"v":{"total":[37.4,36.9,36,36.2,36.4,37.1,36.5,36.3,36,37.1,35.7,36.4,36.2,36.1,36.2],"script":[8.3,8.6,7.6,7.6,7.6,7.8,8.2,7.6,7.7,8.6,7.3,7.7,7.9,7.7,7.8],"paint":[28.1,27.3,27.5,27.6,27.8,28.4,27.3,27.8,27.4,27.6,27.5,27.8,27.4,27.6,27.5]}},{"b":8,"v":{"total":[12.2,11.7,11.6,11.7,12.5,11.6,12.4,12.2,11.9,11.8,12.7,11.9,12.3,11.6,12.5],"script":[10.3,9.4,9.5,9.8,9.8,9.3,10,10.1,9.9,9.7,10,10.5,10,9.9,9.5],"paint":[0.3,2.1,1.1,1,2.4,1.2,2.2,1,1,1.1,0.8,0.3,1.3,0.3,1.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[29.3]}},{"b":14,"v":{"DEFAULT":[17.2]}},{"b":15,"v":{"DEFAULT":[6]}},{"b":16,"v":{"DEFAULT":[47.2]}}]},
-{"f":73,"b":[{"b":0,"v":{"total":[31.4,31.7,31.5,30.7,31.2,31.1,30.5,31.4,31.3,30.7,31.1,31.5,31.6,31.1,30.9],"script":[6.7,7.4,6.9,6.9,7,7.1,6.5,7.1,7,6.6,6.6,7,7,6.9,7],"paint":[24.1,23.8,24,23.3,23.7,23.5,23.5,23.8,23.8,23.6,23.9,23.9,24,23.6,23.4]}},{"b":1,"v":{"total":[35.9,34.8,35.2,34.7,35.4,35.1,35.1,35.5,35,35.3,34.7,35.1,34.7,35.6,34.8],"script":[10.7,10.6,10.6,10.5,10.7,10.5,10.8,10.8,10.3,10.6,10.2,10.6,10.2,10.5,10.6],"paint":[24.6,23.7,24.1,23.6,24.1,23.9,23.7,24.1,24.1,24.1,23.9,24,23.9,24.4,23.7]}},{"b":2,"v":{"total":[22.4,23.1,23.6,23.4,22.8,23.6,22.8,23.7,23.1,22.8,23.5,23.1,23.2,23.8,23.3],"script":[9.9,9.5,11,11.1,10.7,10.9,10.2,10.9,9.8,9.6,11.3,9.6,10.4,10.4,9.4],"paint":[10.4,9.8,10.5,10.8,10.7,11.2,9.7,10.3,10.9,11.7,10.7,10.3,10.5,10.5,11.6]}},{"b":3,"v":{"total":[11.8,13,13.5,13.1,12.7,13.7,13.8,13.5,12.1,13.2,13.8,14.4,13.5,13.5,13,13.4,12.2,13.1,12.6,12.8,13.6,12.7,14.2,12.8,13.2],"script":[8.4,9.9,10.2,10,8.9,10.2,10.9,10.3,9.7,9.8,9.9,10.8,9.6,10.2,9.7,9.6,8.8,9.8,9.8,10.2,10.5,9.5,11,9.9,9.7],"paint":[1.2,2.1,1.7,1.3,3.1,2,1.4,2.1,2.1,1.9,2.8,2.5,1.5,1.2,1.5,2.7,2.2,2.1,0.4,1.2,1.1,1.2,1.3,1.1,2.7]}},{"b":4,"v":{"total":[25.9,26.2,26.2,25.4,26.6,25.4,27.3,26.2,26.5,26,27.2,24.5,26.7,26.3,26.2],"script":[11,11.4,10.4,9.8,10.7,9.2,10.9,10.5,11.5,11.1,11.9,9.3,11,11.2,11.2],"paint":[12.8,13.2,14.1,13.5,13.7,13.5,14.1,13.4,12.3,13,12.9,12.6,12.8,12.1,12.5]}},{"b":5,"v":{"total":[16.9,16.5,16.7,16.6,16.7,15.7,17.1,17,16.6,16.3,17.1,16.3,16.9,16.2,16.3],"script":[5.2,4.6,5.4,5.1,5.2,4.6,5.2,5.1,5.1,4.9,5.6,4.8,5,4.9,4.9],"paint":[10.4,11.1,10.4,10.6,10.5,10.6,10.5,11,10.4,10.6,10.4,10.8,10.7,10.3,10.7]}},{"b":6,"v":{"total":[325.9,324.6,323.6,323.7,325,324.2,322.5,324.4,324.8,326.8,325.9,324.3,323.8,323.8,325.5],"script":[72.1,75.5,76.2,76.5,75.9,77.1,75.8,76.7,77.3,76.6,77,76.3,76.8,76.7,76.2],"paint":[247.1,242.9,241.3,240.9,242.5,241.3,240.4,241,241.7,243.9,243,241.8,240.7,241.2,243]}},{"b":7,"v":{"total":[36.8,36.3,37.5,37.1,37.7,36.9,36.5,36.7,38.1,37.4,36.4,37,36.9,36.6,38.1],"script":[9,8.9,9.2,9,9.2,9,9,8.7,9.4,9.3,9.2,9.1,9,8.9,9.2],"paint":[26.6,26.5,27.4,27.2,27.6,27,26.7,27,27.8,27.2,26.3,27,27,26.9,27.9]}},{"b":8,"v":{"total":[11,11,10.5,11.8,10.4,13.4,12.3,9.9,10.6,11.1,12.1,11,9.9,10.8,11.1],"script":[8.3,8.9,8.5,9.4,8.9,11.6,10.1,8.5,8.9,9,9.5,9.2,8.1,9,9.3],"paint":[1.2,1,1.1,0.5,0.6,0.7,1.4,0.3,1.6,0.8,1.8,1,0.2,0.9,1.6]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.4]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[27]}},{"b":14,"v":{"DEFAULT":[14.5]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[46.9]}}]},
-{"f":74,"b":[{"b":0,"v":{"total":[39.3,38.9,39.5,39,40.1,39.5,38.2,39,38.9,38.6,40.1,38.9,39.6,38.6,40.3],"script":[15.1,15.1,14.8,15.2,14.9,14.9,15,15.1,15,14.8,14.9,15.3,15,14.7,15.2],"paint":[23.6,23.2,24.1,23.3,24.6,24.1,22.6,23.5,23.5,23.2,24.7,23.1,24.1,23.3,24.6]}},{"b":1,"v":{"total":[43.2,43.4,43.6,43.6,43.1,42.9,43.9,43.5,42.8,42.7,43.9,43.5,43.1,44.1,42.7],"script":[18,18.4,18.3,18.3,18.1,18.1,18.5,18.2,18.1,18.3,18.7,18.5,18.1,18.9,17.9],"paint":[24.5,24.4,24.6,24.7,24.5,24.1,24.8,24.5,24.1,23.9,24.6,24.5,24.5,24.6,24.3]}},{"b":2,"v":{"total":[18.7,16.1,16.2,18.3,17.3,17.1,17.9,16.1,17.3,17.4,17.5,17.7,17.9,17.3,17.3],"script":[6.1,5.2,5,6.4,5.1,5.8,5.2,5.4,5.5,5.6,5.9,6,5.9,5.3,5.8],"paint":[10.5,9.6,10.1,9.1,10.1,10.1,10.6,9.1,10.8,10,10.4,9.9,10,11.2,9.7]}},{"b":3,"v":{"total":[4.3,3.1,6.1,3.4,2.8,3.3,3.2,3,3.1,3.1,3.1,6.7,3.8,2.8,3.1,3,2.5,4.7,3.3,3.4,2.9,3.2,6.9,3.5,3.1],"script":[1.5,1.5,0.6,1.5,1,1.2,1.4,1.5,0.9,1.5,1.1,1.7,1.5,1,1.6,1.1,1.1,1.1,1.3,1.5,1,1.3,1.2,1.6,0.6],"paint":[1,1.4,1,1.5,1,1.7,1.7,1,2,1.5,1.5,1.1,2.1,1.7,1.4,1,1.2,1.3,1.4,1.1,1,1.2,1.1,1.7,2.3]}},{"b":4,"v":{"total":[114.9,113.1,114.5,115,110.9,111.2,115.1,113,111.4,114.1,114.3,110.8,110,113.2,118],"script":[16,14.8,16.7,15.7,15.3,14.2,16.7,16.7,14.5,15.3,15,14.2,14.9,14.5,15.2],"paint":[96.7,97.1,96.4,96.4,93,93.9,95.3,93.8,94.8,95.8,97.3,93.9,92.9,95.9,100.5]}},{"b":5,"v":{"total":[12.2,12.7,12.5,12.8,12.7,12.4,12.7,12.5,12.6,12.4,12.2,12.7,12.5,12.8,12.4],"script":[1.8,1.8,1.9,1.8,1.9,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[9.9,10.3,10.2,10.2,10.2,10,10.1,9.9,9.8,9.6,9.8,9.9,9.7,10.5,9.6]}},{"b":6,"v":{"total":[381.3,385.9,390.9,391.7,391.1,380.3,388.7,381.6,378.8,389,388.6,381.5,382.7,381.3,392.3],"script":[132.6,129.9,134.2,134.2,133.1,129.6,130.4,133.2,128.7,131.3,133.4,132.2,132.6,133,132.1],"paint":[240.4,248.1,249,250.1,250,242.1,250,240.6,242.4,249.7,247.7,240.9,242,240.2,251.9]}},{"b":7,"v":{"total":[44.4,44.7,44.4,44.3,44.7,44.3,44.4,44,43.8,44.3,44.2,44,46.1,44.6,44.1],"script":[15.4,15.3,15.6,15.2,15.3,15.7,15.7,15.4,15.2,15.5,15.8,15.3,15.5,15.7,15.4],"paint":[28.1,28.6,27.8,28.2,28.4,27.8,27.8,27.7,27.8,28,27.6,27.9,29.8,28,27.9]}},{"b":8,"v":{"total":[15.5,14.4,13.9,15.2,15.5,14.7,17.2,16,14.8,14.6,14.2,15.5,15.3,15.7,15.7],"script":[14.2,12.5,12.4,13.5,13,13.6,15.2,13.5,12.3,11.9,13.2,13.6,13.9,13.5,13.6],"paint":[0.3,0.3,1.3,0.9,1.1,1.1,0.7,2.3,1.3,0.8,0.3,1.8,0.5,1.2,1.3]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[6]}},{"b":11,"v":{"DEFAULT":[6]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[51.3]}},{"b":14,"v":{"DEFAULT":[30.6]}},{"b":15,"v":{"DEFAULT":[10.5]}},{"b":16,"v":{"DEFAULT":[67.3]}}]},
-{"f":75,"b":[{"b":0,"v":{"total":[33.5,33.4,33.8,32.9,33.4,33.8,33.7,33.6,33.4,33.1,32.5,33.7,33,32.9,32.6],"script":[9.2,9.3,9.1,8.8,8.9,9.2,9.5,9.1,9.2,8.8,8.5,9.1,8.9,8.7,8.8],"paint":[23.8,23.6,24.2,23.6,24,24.1,23.7,23.9,23.7,23.8,23.4,24.1,23.5,23.7,23.3]}},{"b":1,"v":{"total":[36.4,35.5,36.3,36.8,34.8,35.8,36.8,35.6,35.9,35.4,35.4,35.7,35.1,36.2,35.4],"script":[11.6,10.8,11.2,11.4,10.4,11.1,11.4,11,11.5,10.8,10.7,11.1,10.5,11.2,10.9],"paint":[23.9,24.1,24.5,24.8,23.7,24.1,24.8,24,23.8,24.1,24,24,24.1,24.4,23.9]}},{"b":2,"v":{"total":[12.2,11.4,12.4,12,12.1,11.9,11.8,12.2,12.4,12.1,12.5,11.4,11.9,12,12],"script":[1.1,0.2,0.6,0.2,0.6,0.9,1.2,0.6,0.5,0.2,0.9,0.7,0.6,0.9,0.2],"paint":[10.2,10.4,10.4,10.2,10.6,9.4,9.7,9.7,10.9,10.9,10.1,8.6,10.1,9.4,10.7]}},{"b":3,"v":{"total":[16.3,16.6,17.1,18.8,15.3,16.8,15.8,16.5,14.9,16.4,17.1,17,17.8,15.1,16.6,17.3,16.2,17.2,16.7,17.9,16.6,16.5,17.1,16.1,16],"script":[13,13.1,13.8,14.9,12,12.9,11.9,12.5,11.9,12.5,13.2,13.2,14.3,11.7,12.5,13.3,12.5,13.6,12.8,14,13.2,12.8,13,12.3,12.8],"paint":[2,1.6,1.2,2.2,2.3,2,2.5,2.2,2,2.1,1.9,2.5,1.6,1.7,3.3,1.4,2.1,2.2,2.6,1.1,1.6,1.8,2.1,2.9,0.8]}},{"b":4,"v":{"total":[29.6,29.6,30.7,30.3,31.1,29.1,30.3,31.7,31.1,30.4,30.2,29.8,30.2,31.1,29.1],"script":[13.4,13.1,13.9,14.2,15.9,12.4,14.2,14,14.2,13.8,14.6,13.5,13,14,12.9],"paint":[13.5,14.1,14.6,14.5,13.6,15,14.5,14.8,15,14.3,13.6,13.7,15.4,15.4,14.4]}},{"b":5,"v":{"total":[18.6,18.4,19.4,18.7,18.2,18.6,19.4,18.6,18.9,19.1,19,19,18.9,19.4,19.1],"script":[6.4,6.3,7.3,6.5,6.2,6.7,7.2,6.4,6.7,6.7,7.3,6.7,6.9,7.2,6.9],"paint":[11.6,10.9,11.2,10.9,10.9,10.7,11,11,11.6,11.3,10.8,11.1,10.6,11,11]}},{"b":6,"v":{"total":[329.9,328.8,330.9,329.6,328.9,333.4,328.6,327.8,329.6,330.7,332.3,330.6,329.8,329.5,331.1],"script":[80.5,81.7,82.9,81,81.7,83,82,80.9,82.4,84.1,82.6,81.9,79.6,80.3,82],"paint":[242.9,241.2,242.2,242.4,241,243,240.4,240.8,241,240.4,243,242.6,243.8,242.6,243]}},{"b":7,"v":{"total":[41,39.9,40.1,39.8,41.6,41.5,40.8,40.1,41.3,40.6,39.7,40,41.5,41.1,41.5],"script":[12,11.6,11.6,11.7,12.4,12.3,11.8,11.6,12.3,11.2,11.4,11.6,11.8,12,12.3],"paint":[28.1,27.4,27.6,27.2,28.2,28.2,28.1,27.6,28.1,28.4,27.4,27.5,28.7,28.1,27.7]}},{"b":8,"v":{"total":[13.8,11.4,11.4,11.3,11.8,12.2,10.6,11.6,11.4,11.8,13.4,11.1,10.9,11.4,11.8],"script":[11.7,9.4,9.5,9.3,9.6,10.1,9.1,10.2,8.8,9.4,10.6,8.9,9.2,9.1,9.8],"paint":[1.4,1,0.6,0.9,0.7,1.1,0.7,0.2,2.1,1.8,1.5,1.2,0.9,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.7]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[29.4]}},{"b":14,"v":{"DEFAULT":[20.2]}},{"b":15,"v":{"DEFAULT":[7.4]}},{"b":16,"v":{"DEFAULT":[49.3]}}]},
-{"f":76,"b":[{"b":0,"v":{"total":[30.8,29.5,29.6,29.8,29.2,29.2,29,29,29.3,29.9,29.7,29.2,29.7,29.3,29.4],"script":[5.8,5.2,5.3,5.3,5.1,5.1,5,5.1,5.2,5.2,5.3,5.1,5.4,5.2,5.1],"paint":[24.6,23.9,23.9,24.1,23.7,23.7,23.6,23.5,23.8,24.3,24,23.7,23.9,23.7,23.9]}},{"b":1,"v":{"total":[33.4,33.6,33.2,32.9,32.3,33.4,32.2,33.3,32.6,32.6,32.2,32.5,32.5,33,33.2],"script":[8.3,8.2,8,8.1,7.8,8.1,7.8,8.1,7.8,7.9,7.7,8.1,7.9,8.1,8.1],"paint":[24.8,25,24.8,24.4,24.1,24.9,24,24.7,24.4,24.3,24.1,24,24.2,24.5,24.6]}},{"b":2,"v":{"total":[14.3,15.7,14.3,14.1,15.4,14,13.4,15.4,14.8,13.9,14.2,14.5,13.9,13.9,14.3],"script":[2.5,3.4,2.8,2,2.3,2.7,2.6,2.7,2.7,2.5,2.7,3.1,2,2.7,2.3],"paint":[10.3,10.9,10.5,10.9,10.9,10.4,9.6,11.2,11,10.2,9.8,9.9,10.2,10.3,10.9]}},{"b":3,"v":{"total":[2.7,3.2,2.9,2.4,2.9,3.4,3,3.4,4.1,2.6,2.5,2.5,2.5,2.7,3.1,3,3,3.1,3.2,3.2,2.6,2.6,2.9,3.2,3.3],"script":[0.6,1.1,0.5,0.2,0.8,1.3,0.8,0.9,0.8,0.5,0.2,0.6,0.6,0.6,0.5,1.1,0.8,0.8,0.7,1,0.8,0.6,1,1,0.9],"paint":[1.5,1.3,1.3,1.8,1.2,2,2.1,0.7,1,2,2.2,1.1,1.2,1.3,1.6,1.3,2,0.6,1.5,1.6,1.1,1.2,1.7,2.1,1.6]}},{"b":4,"v":{"total":[14.9,15,15.5,15.6,14.7,14.8,14.1,14.6,15.2,14,14.6,16.2,14.8,14,13.9],"script":[1.2,1,1.2,1.2,0.2,1,1,0.7,0.8,1,1.1,0.9,1.2,0.9,1.1],"paint":[12.2,12.9,12.6,13.4,13.3,12.7,11.8,12.1,13.6,12.1,12.3,14.2,12.3,12.5,11.8]}},{"b":5,"v":{"total":[12.8,12.7,13.3,13.3,13.3,13.2,12.8,12.8,13.2,14.4,12.8,13.1,13,13.4,13.9],"script":[2.1,2.4,2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.7,2,2.3,2.3,2.4,2.5],"paint":[10,9.9,10,10.2,10,10.2,9.7,9.5,10,10.8,10.1,10.1,10.1,10.2,10.7]}},{"b":6,"v":{"total":[366.6,363.3,364.4,367.1,369.5,367.8,367.9,365.1,362.9,369.4,363.5,366.3,367.1,368.8,366],"script":[114.1,111.8,111.2,114,113.9,113.8,113,112,111.9,113.4,111.3,111.9,112.9,112.8,112],"paint":[246,244.6,246.6,245.9,248.8,247.4,248.2,246.2,244.1,249.2,245.7,247.9,247.4,248.3,247.1]}},{"b":7,"v":{"total":[43.5,43.1,44.3,43.2,43.3,43.3,43.6,42.8,43.3,43.4,42.9,43.6,43.5,43,42.6],"script":[14.2,14,14.4,14.2,14.4,14.2,14.4,13.9,14.4,14.4,14,14.4,14.2,14.2,13.8],"paint":[28.5,28.2,29,28.2,28.1,28.3,28.4,28.1,28.1,28.2,28,28.4,28.4,28,28]}},{"b":8,"v":{"total":[16.1,17.6,15.8,15.6,16.6,15.9,14.9,14.7,17.1,16.7,15.6,15.4,14.7,16.5,15],"script":[14.5,16,14.1,14.2,14.5,14.4,13.4,13.6,15,14.8,14.7,14.2,12.8,14.8,12.9],"paint":[0.6,1.1,1.6,1.3,2,1.3,1.5,0.3,1.5,1.8,0.5,0.6,1.8,0.7,1.9]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[5.3]}},{"b":11,"v":{"DEFAULT":[5.2]}},{"b":12,"v":{"DEFAULT":[4.9]}},{"b":13,"v":{"DEFAULT":[39.7]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[21.8]}},{"b":16,"v":{"DEFAULT":[102.8]}}]},
-{"f":77,"b":[{"b":0,"v":{"total":[97.4,91.9,94.3,91,92.6,94.3,92.1,90.1,89.9,90.5,91.5,89.6,90.3,94.1,89.7],"script":[62,63.3,64.9,62.5,63.3,63.4,63.4,62.7,64.2,63.3,62.3,61.8,62.4,62.4,63.8],"paint":[24.3,24.3,24.8,24.4,24.3,24.4,24.1,24.2,24.3,24.3,24.3,24.3,24.4,24.2,24.2]}},{"b":1,"v":{"total":[96.7,95.8,96,89.9,90.4,97.3,100.6,101.5,100.4,96.3,90,95,93.3,101.6,93.8],"script":[66.9,64.9,64.8,64.9,63.9,64.3,65.5,66,64.7,64.8,64.9,63.4,67.4,65.4,63.2],"paint":[24.7,24.5,25.4,24.6,25.1,25.4,24.5,24.7,24.6,24.9,24.7,24.9,25.5,24.5,24.9]}},{"b":2,"v":{"total":[57.5,59.9,58.1,61.4,58,60.2,56.4,55.8,57.7,60.5,58.2,60.5,55.8,56.9,58.1],"script":[2.9,2.8,3.4,3.7,3.1,3.8,2.7,3.5,3.6,3.1,2.5,4,1.4,3.3,3.6],"paint":[12.8,13.5,11.4,12.1,12.1,12.5,11.9,11.6,11,12.1,12.3,13.1,12.3,10.8,13.2]}},{"b":3,"v":{"total":[10.8,10,7.5,13,13.9,15.3,13.9,13.1,11.6,7.2,10.1,13.6,8.2,8,9.9,13.9,15,14.3,11.9,16,8.9,10.6,12.6,14.2,13.8],"script":[1.6,2.1,1.1,1.6,1.5,1,1.2,1.6,1.8,1.3,1.1,1,2.1,2,1.6,1,1.1,1.2,1.3,0.4,1.7,1.9,2.5,1.3,1.3],"paint":[3.7,3.2,1.4,3.2,2.8,1.7,1.6,2.5,1.9,1.9,2.4,2.6,1.7,1.6,2.5,2.8,1.6,2.7,2.5,2.7,2.4,2,2.3,1.9,2.1]}},{"b":4,"v":{"total":[66.4,65.9,23.9,24,68.2,66.5,25.4,67.2,24.6,67,26.4,65.5,67.9,68,64.5],"script":[7.4,8.1,7.6,8.1,8.5,8.6,8.6,8.2,8.5,9.1,8.2,8.5,7.7,8.5,7.8],"paint":[15.2,14.8,14.1,14.6,15.1,14,15.1,14.2,14.1,14.7,15.5,14.3,14.5,16.5,14.7]}},{"b":5,"v":{"total":[24.3,19.5,20.4,19,17.6,17,19.1,18.7,17.6,18,17.7,18.2,17,18.1,17.9],"script":[5,5.1,5.2,5,4.8,5.1,4.8,4.9,4.9,4.9,4.9,5.4,5.1,5,5.1],"paint":[11,10.4,11.1,11.3,11,10.9,10.7,11.2,10.7,11.2,11.3,11,10.8,11.2,11]}},{"b":6,"v":{"total":[865.1,875.7,878.4,876.1,869.3,878.9,872.4,873.1,881.6,865.7,874.2,868.8,868.9,872.9,2037.9],"script":[629.1,635.3,630.1,636.9,624.1,635.8,627.5,633.9,638.3,626.7,637.6,627.3,626.5,629.2,634.5],"paint":[230.6,234.5,235.2,232.9,232.4,237.4,237.6,231.4,235.8,232.7,231,233.8,236.4,235.7,235.2]}},{"b":7,"v":{"total":[92.6,93.1,93,92.7,93,93.9,93.2,94.1,96,91.8,94.1,93.5,92.2,93.4,92.9],"script":[52.9,53.8,54,53,53.5,54.5,53.8,53,55.3,51.9,54.5,53.4,52.7,54.1,53.5],"paint":[28.3,27.9,27.7,28.5,28.2,28.4,27.7,28.3,28,27.9,27.7,28.5,28.5,27.7,28]}},{"b":8,"v":{"total":[21.6,21.2,66,21.6,67.2,21.8,63.7,62.2,22.4,63.9,21.3,22.5,66,22.5,23.2],"script":[18.3,17.8,17.3,17.9,17.4,18.1,18.1,17.5,18.6,16.7,17.3,18.2,19.2,17.9,20.2],"paint":[1.9,2.6,2.1,2.5,3.8,2.1,1.5,1.9,2.9,3.6,3.7,2.7,1.9,1.9,1.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[10.1]}},{"b":11,"v":{"DEFAULT":[10]}},{"b":12,"v":{"DEFAULT":[9.3]}},{"b":13,"v":{"DEFAULT":[86.4]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[30.6]}},{"b":16,"v":{"DEFAULT":[47.6]}}]},
-{"f":78,"b":[{"b":0,"v":{"total":[39.6,39.3,39.2,39.3,39.4,38.9,39.2,38.9,39.7,39.9,39.7,40.1,39.3,40.1,39.8],"script":[16.5,16.4,16.4,16.5,16.5,16.2,16.4,16.1,16.8,16.6,16.6,16.7,16.6,17.3,16.5],"paint":[22.8,22.4,22.4,22.4,22.4,22.3,22.4,22.5,22.6,22.9,22.8,23,22.3,22.5,22.8]}},{"b":1,"v":{"total":[46.8,48,47.3,47.6,46.8,46.7,48,48.6,47.2,46.9,49.1,47.3,47.1,47.3,48.2],"script":[22,22.8,22.3,22.5,22,21.7,23.2,22.3,22.1,22.1,22.7,22.3,21.8,22.5,23.4],"paint":[24.4,24.8,24.5,24.7,24.4,24.4,24.4,25.9,24.6,24.4,25.9,24.5,24.8,24.3,24.4]}},{"b":2,"v":{"total":[14,12.9,13,13.6,13.3,12.5,13.1,13.2,13.1,12.9,14.3,14,13.9,13.7,13.5],"script":[2.4,2.1,1.8,2.2,2.1,2.1,2.2,1.8,2.2,1.6,2.6,2.1,2.5,2.1,1.5],"paint":[10.6,9.7,10.2,10.5,9.9,9.5,10,10.2,10.3,9.8,10.6,10.8,10.1,9.6,11]}},{"b":3,"v":{"total":[7,7.5,7.8,6.7,8.1,6.5,9.1,8.1,8.7,7.5,6.6,8.5,5.9,7.6,9,7.5,9.2,8,10.1,7.8,7.2,7,7.1,6.3,10.4],"script":[5,5,4.8,4.9,5.7,4.2,6.8,5.2,6.4,5,4.3,6,4.3,4.8,6.3,4.7,6,5.7,6.5,5.7,4.8,4.4,5,3.8,7.4],"paint":[1,2.3,1.3,1.3,1.7,1.4,0.5,1.6,1.1,1.6,2.1,1.5,1,1.7,1.8,1.5,2.4,2.1,2.6,1.3,2.1,2.4,1.2,1.7,1.6]}},{"b":4,"v":{"total":[116,116.3,117.9,112.7,114.9,115.2,116.5,120.7,116.5,112.4,115.3,117.4,113.4,119.9,115],"script":[18.9,18.8,18.6,17,19.5,19,19.5,18.3,19.6,17.4,19.2,19.2,18.2,19.3,17.4],"paint":[94,95.7,97.4,94.2,93.7,95.1,95.5,99.7,93.9,92.6,94.8,96.4,93.2,98.7,96]}},{"b":5,"v":{"total":[14.7,15.5,15.2,15.2,15.2,15.2,14.9,15.4,15.6,15.1,15.5,14.7,15.4,14.9,15.1],"script":[3.8,4.1,4.1,4.2,4.2,4.2,3.7,3.9,4.2,4,4.1,3.9,4,4.3,4],"paint":[10.3,10.4,10.4,10.3,10,10,10.3,10.9,10.5,10.3,10.4,10.3,10.4,10.3,10.2]}},{"b":6,"v":{"total":[403.7,403.1,403.5,404.2,404.6,403.6,404.9,406,401.8,408.3,405.5,404.7,405.1,404.2,403.4],"script":[157.7,155.2,156.5,157.3,155.9,155.6,156.4,158.2,156,156.8,156.8,156.9,157,157.8,155.5],"paint":[240.3,241.9,241.3,241.4,242.5,242.4,241.8,242,240.2,245.1,242.8,242.1,242.2,240.8,242]}},{"b":7,"v":{"total":[45.4,45.2,45.7,45.7,45.7,45.8,45.4,45.2,45.3,46.9,45.7,46.3,45.4,44.9,45.4],"script":[17,17,17.1,17.3,17.2,17.1,17,16.9,17.2,17.6,16.9,17.5,17.1,16.7,17],"paint":[27.7,27.5,27.8,27.6,27.7,27.9,27.6,27.6,27.3,28.5,28,28.1,27.5,27.5,27.6]}},{"b":8,"v":{"total":[26.4,24.6,23.8,22.9,24.6,22.4,24.8,25.7,23.9,25.8,25.4,23.6,24.5,24.5,23.7],"script":[23.9,23,22.3,20.7,22.8,20.6,23.2,24.2,22,23.5,23.6,22,23,23,22.1],"paint":[0.3,1.4,0.9,1.1,0.9,1.7,0.7,1.4,1.8,2.2,1.7,1.5,0.6,1.3,0.7]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.7]}},{"b":11,"v":{"DEFAULT":[8.8]}},{"b":12,"v":{"DEFAULT":[2.2]}},{"b":13,"v":{"DEFAULT":[72.3]}},{"b":14,"v":{"DEFAULT":[227.4]}},{"b":15,"v":{"DEFAULT":[59.6]}},{"b":16,"v":{"DEFAULT":[238.3]}}]},
-{"f":79,"b":[{"b":0,"v":{"total":[57.2,57.1,57.1,52.3,58.6,58.1,56.7,57.4,57.8,54.3,59.2,56.2,58.8,58.9,57.1],"script":[23.3,24.4,22.9,23.5,23.7,22.6,23.1,23.1,23.2,22.4,22.8,24.3,23.3,23.2,23.4],"paint":[22.4,22.7,22.7,22.9,22.9,22.8,22.9,22.9,22.9,22.8,22.8,22.7,23.5,22.7,22.7]}},{"b":1,"v":{"total":[71.4,69.9,69.4,69.6,67.5,70.1,66.1,67.1,69,64.9,66.7,69.4,67.7,69.3,73.1],"script":[29,29.2,29.6,29,28.6,31,29.2,29.2,29.3,27.8,28.7,28.4,28.6,29,29.6],"paint":[26.8,25.1,25.6,24.9,25,25.1,25.1,25.1,25.2,26.5,25.1,24.7,24.9,25,25.1]}},{"b":2,"v":{"total":[46,45.3,28.8,45.6,45.7,43.2,44.2,44.6,46.1,44.6,45.4,46.8,44.2,44.5,44.7],"script":[12.4,12.5,13.5,11.8,12.1,12.8,13.7,12.5,12.8,12.6,14.5,12.4,11.9,11.9,11.6],"paint":[10.7,13.5,13.4,13.6,12.8,12.5,13.3,12.9,11.8,14.2,11.4,13.8,11.4,13.9,12.4]}},{"b":3,"v":{"total":[23.3,18.9,17.2,21.6,18.1,18.2,17.7,15.9,14.7,12.1,17.7,16,15.3,21,18.9,11.9,18.9,18.2,21.4,11.1,15.4,21.3,19.5,13.1,15.3],"script":[7,5.9,5.4,6.8,6.3,5.8,6.2,5.6,6.2,6.9,6.9,4.8,6.4,5.9,5.6,6.8,6.1,5,6.7,5.8,6.9,6.4,6.8,6,6.7],"paint":[2.9,2.9,2.8,3.7,2.9,3.4,3.9,2.7,3.5,2.4,2.7,5,3.5,2.2,2,2.5,2.8,3.3,2.4,2.4,3.5,2.9,1.7,3.7,3.5]}},{"b":4,"v":{"total":[142.6,141.1,140.5,144.8,140.2,144.8,148,141,144.1,142.8,141.6,143.3,144.7,140,152.4],"script":[27.3,27.1,27.4,28.1,26.7,25.4,26.2,26.5,25.6,29.3,25.5,26.5,28.4,25.8,26.7],"paint":[96.7,95.5,94.9,98.8,95.3,96.4,96.8,96.8,97.1,94.5,95.5,96.6,95.2,95.3,101.2]}},{"b":5,"v":{"total":[32.6,27.8,25.9,28.8,33,32,32.5,27.6,27,31.1,30.3,28.9,30.8,29.8,29.6],"script":[6.6,7.3,6.9,6.5,6.8,8.3,6.4,7,7.1,7.4,6.7,7.7,6.7,7.6,7.7],"paint":[10.9,11.6,11.9,11.5,11.3,11.8,12,11.9,11.6,11.2,12,11.3,11.4,12.2,11.6]}},{"b":6,"v":{"total":[533.1,529.2,528,531.7,531.5,533.7,539.4,538.5,530.1,530.2,533.8,530.5,530.5,530.9,527.8],"script":[272.8,272.1,271.8,272.6,270,273.2,274,277.7,272.6,271.2,271,271,271.9,271.5,274.1],"paint":[249.7,251.6,248.3,248.9,249.9,250.6,254.5,251,249.9,249,253.9,250.5,247.6,250.5,246.3]}},{"b":7,"v":{"total":[67.6,71,63,71.7,61.8,62.3,63.4,70.4,62.1,62.6,71.6,61.8,71.6,63.6,63],"script":[23.3,23.4,23.7,23.9,23.4,23.5,23.9,23.9,23.4,23.3,23.6,22.9,23.3,23.4,24.1],"paint":[29.5,27.5,27.7,27.9,27.9,27.7,27.9,28.2,27.9,28.6,28.2,27.9,28.3,28.4,28.6]}},{"b":8,"v":{"total":[60.5,59.5,59.7,58.6,59.3,58.9,58.8,62.2,59.4,57.8,61.4,57.7,58.3,59.9,58.4],"script":[33.3,34.1,34.1,34.1,33.7,31.8,32.6,33.9,33.4,32.8,35.2,31.8,33.5,31.8,33.3],"paint":[3.2,2.5,2.6,2.3,3.8,2.9,1.9,2.2,1.8,2.6,2.5,2.7,1.9,0.8,3]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[7.7]}},{"b":11,"v":{"DEFAULT":[8.4]}},{"b":12,"v":{"DEFAULT":[3.3]}},{"b":13,"v":{"DEFAULT":[52.8]}},{"b":14,"v":{"DEFAULT":[351.1]}},{"b":15,"v":{"DEFAULT":[80.8]}},{"b":16,"v":{"DEFAULT":[380.4]}}]},
-{"f":80,"b":[{"b":0,"v":{"total":[32.4,31.9,31.5,31.5,31.4,32.5,30.3,30.4,31.7,31.7,31.9,31.6,29.9,29.9,31.8],"script":[7.5,7.6,7.4,7.3,7.5,7.7,7.4,7.2,7.4,7.4,7.4,7.7,7,7.2,7.8],"paint":[24.3,23.8,23.5,23.6,23.3,24.3,22.4,22.7,23.8,23.7,23.9,23.4,22.4,22.2,23.5]}},{"b":1,"v":{"total":[35.9,35.9,36,35.8,36.2,35.4,35.9,36,36,37.4,35.9,35.8,36.8,37.5,36.3],"script":[11.4,11.3,11.4,11.1,11.2,10.9,11.3,11.3,11.7,11.8,10.9,11.1,11.5,12.1,11.2],"paint":[23.9,24.1,24.1,24.1,24.4,24,24,24.1,23.8,25,24.5,24.2,24.7,24.8,24.5]}},{"b":2,"v":{"total":[15.8,16,15.9,15.7,17.2,15.9,16.5,16.2,15.9,15.7,15.8,15.4,15.4,16.2,15.1],"script":[4.7,4.1,4.1,3.7,4,3.8,3.3,3.9,4,3.4,3.9,3.7,4,3.9,3.4],"paint":[10.2,10.6,10,11,10.8,10.6,12,11.2,10.5,11.4,10.8,10.8,10.8,10.5,11.1]}},{"b":3,"v":{"total":[6.1,5,5.6,5.9,6.4,5.7,4.6,8.3,5.8,4.8,5.6,5.4,5.9,5.4,5.5,6.1,5.7,4.8,6,4.9,4.6,5.1,4.5,5.8,4.2],"script":[3.7,1.8,3.5,3.4,3.4,2.6,2.2,2.8,3.4,2.6,3.4,2.9,2.4,2.5,3.9,3.1,3,2.7,3.9,2.9,2.5,3,1.6,3.3,2.2],"paint":[1,2.6,1.5,1.6,2.4,1.9,1.6,1.4,2.2,1.5,1.2,2,1.6,2.7,0.7,2.8,1.7,1.9,1.1,1.1,1.9,2,1.5,1.9,1]}},{"b":4,"v":{"total":[117.1,115.8,114.7,114.3,114.5,114.6,115.5,116,116.2,116.4,116.1,117,116,115.4,115.6],"script":[18.7,18.1,18.7,18,18.5,17,19.2,18.9,18.4,18.5,18.7,20,18.7,19.4,18.8],"paint":[96.3,95.1,93.9,93.7,93.9,95.9,94.8,94.9,94.9,95.5,95.6,94.6,95.5,93.3,93.7]}},{"b":5,"v":{"total":[12.6,12.9,13,12.7,12.7,12.8,12.7,13.3,13.4,12.5,13,13.1,13.2,13.2,11.9],"script":[1.8,2.1,1.4,1.7,1.7,1.8,1.8,2,2.4,1.7,2.3,2.4,2.3,2.5,1.5],"paint":[10.1,9.9,10.6,10.3,10,10.3,10.2,10.7,10.5,9.9,10,10.1,10.4,9.8,9.8]}},{"b":6,"v":{"total":[480.9,479.4,472.1,474.7,477.9,466.8,480.5,473.3,478.3,482.1,418.3,478.4,416.3,472,479.4],"script":[236.4,232.4,230.6,229.9,233.8,224.1,235.5,230.3,236.1,238.3,174.7,233.9,172.4,227.3,232.4],"paint":[238.7,240.4,235.4,238.8,238.3,236.8,238.8,237.1,236.2,237.9,237.6,238.1,237.9,238.7,240.4]}},{"b":7,"v":{"total":[35.8,35.4,37,36.2,36.4,36,36.3,36.1,35.8,37.4,36,36.1,36.6,37.4,36.1],"script":[8,8,8.3,8.2,7.9,8,8.2,8.2,8,8,8.1,8.2,8.2,8.2,8.2],"paint":[26.9,26.6,27.8,27.1,27.6,27.1,27.2,27,26.9,28.5,27.1,27.1,27.6,28.3,27]}},{"b":8,"v":{"total":[16.2,16.5,17.9,16.3,17.1,17.4,16.1,17.4,19.2,17,18,15.7,17.1,17.3,17],"script":[14.3,14.1,15.6,14.3,14.5,14.6,14.2,15.4,16.7,15,15.9,14.3,15.4,14.7,14.3],"paint":[0.3,1.2,0.3,1.1,0.3,1.4,0.3,0.8,1.3,1.2,1.5,0.3,1,1.1,2.4]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[4.7]}},{"b":11,"v":{"DEFAULT":[5.2]}},{"b":12,"v":{"DEFAULT":[2]}},{"b":13,"v":{"DEFAULT":[32.5]}},{"b":14,"v":{"DEFAULT":[184.6]}},{"b":15,"v":{"DEFAULT":[50.2]}},{"b":16,"v":{"DEFAULT":[212.7]}}]},
-{"f":81,"b":[{"b":0,"v":{"total":[31.1,31.2,31.2,31.1,31,32,31.5,31.4,31.2,30.9,31.4,31.5,29.3,31.9,31.7],"script":[6.9,7.1,7.2,7,7.1,7.8,7.1,7.2,6.9,7.1,6.9,7.2,6.6,7.4,7.1],"paint":[23.6,23.6,23.5,23.5,23.4,23.6,23.9,23.7,23.7,23.3,23.9,23.7,22.2,23.9,24]}},{"b":1,"v":{"total":[34.7,34.7,35.3,35,35.5,35.5,35.7,34.9,35.1,35.3,36,35.3,35.3,35,35.5],"script":[10.9,10.9,11.2,10.9,11.1,11.3,11.5,11.1,11.2,11.3,11.7,11.4,10.9,10.9,11.6],"paint":[23.3,23.2,23.6,23.5,23.9,23.7,23.7,23.2,23.3,23.4,23.7,23.4,23.8,23.5,23.3]}},{"b":2,"v":{"total":[15.8,15.4,15.8,14.7,14.9,15.2,16.4,15.6,15.6,14.8,15.3,15.9,15.5,16.3,14.5],"script":[3.9,4,4.2,3.4,3.3,3.1,4.4,4.1,4.2,3.7,3.2,3.7,3.7,4.2,3],"paint":[10.2,10.1,10.1,9.8,10.2,11,10.6,10.9,10.4,9.4,10.9,11.3,10.3,11.2,10.3]}},{"b":3,"v":{"total":[4.9,4.7,5.2,4.6,5.5,4.8,6,5.5,4.5,4.6,5.8,4.9,4.3,4.9,6.1,5.1,4.8,4.9,4.3,5,5.8,4.9,4.7,5.5,5.3],"script":[2.2,2.6,2.7,2.7,2.8,2.5,3,3,2.4,2,3,2.9,2.4,2.2,3,2.7,2.6,2.5,2.2,2.9,3.5,2.7,2.2,3.3,2.9],"paint":[1.7,1.9,1.6,1.7,2.1,1.1,2.1,1.8,1.5,2.1,1.4,1,1.1,2.1,1.4,1.5,1.1,2.2,2,1.9,1.5,1.1,2.3,1.2,1.1]}},{"b":4,"v":{"total":[118,115.4,118.4,112.6,115.3,114.8,116.4,117.6,114.4,116.1,113.3,117.1,116.1,116.4,116.8],"script":[19.9,18.1,19.3,17.1,17.4,19.5,18.6,19.6,17.8,16.2,16.8,18.8,18,17.4,17.6],"paint":[96,94.6,97.7,92.9,95.7,93.1,95.3,96,94.6,97.2,93.9,95.9,95.4,97.4,97]}},{"b":5,"v":{"total":[12.3,12.4,12.8,12.5,12.3,13,12.8,12.2,12.5,11.8,12.2,12.7,12.2,12.2,13.1],"script":[1.4,1.5,1.7,1.4,1.6,2,2.6,1.4,1.6,1,1.4,1.7,1.7,1.4,1.7],"paint":[9.6,10.2,10.4,10.4,10,10.1,9.9,10.2,10,9.8,10.1,10.3,10,10.3,10.5]}},{"b":6,"v":{"total":[482.6,474.3,503.9,473.8,479.2,499.5,498.2,513.5,474.2,418.6,471.9,514.8,499,499,503.8],"script":[236.8,232.2,261.5,230.2,235.8,258.4,258.4,265.8,230.9,175.5,229.2,272.5,258.4,259.7,259],"paint":[239.9,236.3,236.2,237.5,237.6,235.5,233.4,241.1,237.1,237.2,236.4,236.3,234.9,233.6,238.5]}},{"b":7,"v":{"total":[36,36.1,36.5,36.2,35.5,35.4,35.9,35.2,36,35.7,35.7,35.4,35.8,36.1,35.4],"script":[8.2,7.7,7.8,7.8,7.7,7.7,7.7,7.7,8.1,7.8,8.1,7.6,8.1,8.2,7.6],"paint":[26.9,27.5,27.7,27.6,27,26.8,27.3,26.7,27,27,26.7,26.9,26.8,27,26.8]}},{"b":8,"v":{"total":[16.7,16.5,18.6,17.1,17.3,18,17.8,17.1,17.2,16.7,19.1,18.4,17.9,17.4,17.6],"script":[14.7,14.3,16.4,14.9,15.1,16,15.5,15.3,15.3,14.7,17.3,16,15.8,15.3,15.5],"paint":[0.6,1.2,1.1,0.7,1.2,0.7,0.8,0.9,0.3,1.7,1.1,1,0.5,1.1,0.6]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[4.7]}},{"b":11,"v":{"DEFAULT":[5.1]}},{"b":12,"v":{"DEFAULT":[2]}},{"b":13,"v":{"DEFAULT":[33.4]}},{"b":14,"v":{"DEFAULT":[183]}},{"b":15,"v":{"DEFAULT":[50]}},{"b":16,"v":{"DEFAULT":[206.3]}}]},
-{"f":82,"b":[{"b":0,"v":{"total":[31.2,31.5,31.4,30.9,31.2,31.3,29.3,31.3,31.1,30.5,31.4,31.7,31.6,29.5,31.2],"script":[6.9,7.1,7,6.9,7.1,7.1,6.5,7,7,6.9,7,7.3,7,6.9,6.9],"paint":[23.8,23.9,23.9,23.4,23.6,23.7,22.2,23.8,23.6,23,23.6,23.8,24,22.1,23.7]}},{"b":1,"v":{"total":[35.2,35.3,35.3,36.1,35.3,34.8,35.1,35.7,35.1,35.1,35.2,34.5,35.7,35.2,35.2],"script":[11.2,11.1,11.3,11.9,11.6,10.9,10.9,11.1,11,11.2,11.1,10.6,11,10.9,11.2],"paint":[23.4,23.6,23.5,23.6,23.2,23.3,23.7,24.1,23.6,23.3,23.6,23.3,24.1,23.7,23.4]}},{"b":2,"v":{"total":[17.4,16.3,16.4,15.1,15,15.8,15.9,16.1,17.1,17.8,14.8,15.5,16.1,15.8,16.8],"script":[5.1,4.9,4.5,3.9,4.2,4.2,4.4,4.5,4.7,5.5,4.2,3.9,4.3,3.9,4.3],"paint":[10.8,10.1,10.3,10.2,10.1,10.2,10.4,10,10.7,10.8,9.7,9.8,10.8,10.8,11.3]}},{"b":3,"v":{"total":[6,6.4,4.5,6,5.2,4.9,5.4,4.4,5.8,6.3,5.3,6.1,4.4,6.4,4.9,4.9,5,6.3,5.1,4.4,4.8,5.1,5.8,5.7,5.1],"script":[3.8,4,1.7,3.9,3.1,3.1,2.8,1.6,3.3,3.9,3.3,3.9,2.3,4.1,2.2,2.5,2.2,3.9,2.6,2,2.1,2.6,3.6,3.4,2.4],"paint":[1.3,1.5,2.3,1.8,1.5,1,1.7,1.1,1.6,2.2,1.5,1.2,2,2,1.1,0.9,2.7,1.5,1.6,1.6,2.1,1.7,2,2.1,1.7]}},{"b":4,"v":{"total":[115.5,116.4,114.1,114.7,114.5,116.4,118.4,117.8,116.2,115.2,116.8,115.6,116.4,115,114.8],"script":[18.5,18.7,16.8,19.2,17.1,17.6,20.1,18.7,17.7,18.7,19.1,18.3,18.7,18,18.3],"paint":[95.2,95.9,96,92.8,94.1,96.6,96.2,95.8,96.2,94.3,94.8,94.8,95.4,93.5,94.7]}},{"b":5,"v":{"total":[13.2,13.2,12.5,12.4,12.8,12.7,12.9,13.2,12.9,12.4,13.4,12.3,11.8,13,13.1],"script":[2.2,2.8,1.6,1.7,2,1.8,2,2,2.3,1.5,2.6,1.4,1.3,2.2,2.3],"paint":[10.5,10.1,10.2,9.9,9.8,10,10.4,10.5,10.1,10.3,10.1,10.1,9.9,10.2,10.3]}},{"b":6,"v":{"total":[475.9,473.6,472.6,475.5,482.8,512.3,473,475.8,480.7,504.1,513.2,479.2,507.2,519.2,509.6],"script":[231.2,227.4,227.9,230.7,234.2,264.8,228.6,232.2,236.3,256.5,264.5,234.8,260.4,267.8,265.4],"paint":[238.8,240,238.8,238.2,242.4,241.7,238.5,237.7,238.4,242,242.5,238,241.1,245.4,238.4]}},{"b":7,"v":{"total":[37.1,36,35.1,34.9,35.9,35.3,35.5,36,35.5,35.7,35.5,35.4,35.5,36.1,36.6],"script":[7.7,7.6,7.6,7.6,7.6,7.8,7.8,7.5,7.9,7.9,7.8,7.9,8,7.8,7.6],"paint":[28.5,27.5,26.6,26.5,27.4,26.6,26.8,27.6,26.6,26.8,26.8,26.7,26.6,27.3,28.1]}},{"b":8,"v":{"total":[18.5,16.9,17.8,17.6,17.5,17.5,17.5,17.1,17.3,16.7,18.8,17,18.3,18.6,17.7],"script":[16.8,14.5,15.5,15.4,15.6,15.1,15.4,15.4,14.9,15.1,16.9,15.2,16.1,16.1,15.6],"paint":[1.1,1.3,1.1,1.5,0.3,1.2,0.3,1,1.2,0.7,0.3,1.2,1.5,1,1.7]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[4.5]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[2]}},{"b":13,"v":{"DEFAULT":[31.7]}},{"b":14,"v":{"DEFAULT":[182.2]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[207.8]}}]},
-{"f":83,"b":[{"b":0,"v":{"total":[40.9,37,37.8,38.7,37.9,36.8,40.8,35.4,35.2,36,38.1,37.5,36.3,40.9,37.1],"script":[7.6,7.6,7.8,7.5,7.6,7.9,7.4,7.6,7.7,7,7.7,7.7,7.7,7.3,7.8],"paint":[23.1,23.6,23.8,23.6,23.7,23.9,22.6,24,23.8,23,23.9,23.5,24.1,23.3,23.6]}},{"b":1,"v":{"total":[46,37.7,39.6,40.6,39.6,38.1,39.3,39.5,40.6,38.4,39.8,36.9,39.2,39,38],"script":[11.4,11.8,11.5,11.4,11.7,10.5,11.7,11.8,11.6,10.6,11.5,11.4,11.2,11.5,11.6],"paint":[23.4,23.7,23.4,23.3,24.1,23.4,23.4,23.6,24.6,23.3,23.4,23.5,23.7,23.4,23.3]}},{"b":2,"v":{"total":[37.3,20,37.2,37.8,37.2,37,36.2,34.7,19.1,37.4,36.8,37,20.3,37.1,38.1],"script":[5.3,7.2,6.4,6.7,5.7,6.6,5.6,4.9,6,6.8,6.6,4.7,5.8,5.4,6.3],"paint":[11.8,10.8,12.4,12.6,13.5,12.2,12.4,12.1,12.2,13.1,12.9,13.2,13.1,12.9,12.2]}},{"b":3,"v":{"total":[9.3,8.5,8.8,15.7,14.7,11.5,14,9.9,11.1,11.1,7.3,9.2,10.3,13.4,16,13.9,13,14.4,7.4,9.1,13.7,9.5,12.4,12.8,12.1],"script":[4.3,2.7,4.5,4.5,4,2.9,4,3.3,3.9,3.5,3.9,3.5,3,4.2,3.7,5,4.7,4,3.8,3.9,4.7,2.9,2.7,3.5,3.4],"paint":[2.2,3,2.7,3.4,2.8,3.1,2.8,4.3,2,3.2,1.9,2.2,2.5,3.5,2.7,2.9,3,4,3.7,2.2,3.5,2.4,2.3,3.6,2.2]}},{"b":4,"v":{"total":[136.6,116.2,136.2,117.8,118.1,133.4,121.4,135.7,118.5,117.7,133.1,133.4,133.4,132.2,133.8],"script":[21.5,19.7,20.4,20,20.8,20.9,21.4,21.7,20.6,19.6,19.7,19,20,20.6,19.9],"paint":[95.1,95.2,97.4,96,94.4,94.3,95.4,94.8,95.1,95.7,94.9,94.3,92.5,94.1,92.6]}},{"b":5,"v":{"total":[14.5,15.8,16.6,14.8,14.2,16.8,14.4,13.6,14.4,16.1,13.9,14.2,16.6,14,15.4],"script":[2,2,1.5,1.7,1.7,1.5,2.1,2.2,2.1,1.9,1.7,1.6,1.6,1.6,1.6],"paint":[11.1,11,10.7,10.3,11.2,10.5,10.8,10.4,11,11,11,11.1,10.8,10.4,10.6]}},{"b":6,"v":{"total":[400.7,407.7,409.4,409.9,402.9,407.2,401.6,509,418.8,408.7,409.3,412.1,415,406.9,414.2],"script":[153.1,159.3,157.7,160.6,146.3,156.5,146.7,255.2,159.6,155.4,159.4,156.3,160,157,159.5],"paint":[237.3,238.1,240.9,238.8,241.2,239.3,240.3,241.7,241.9,241.1,240.1,241.6,241.5,238.8,240.5]}},{"b":7,"v":{"total":[35.8,40.5,40.6,41.3,41.7,41.8,40.4,40.2,42,40.1,42.7,41.1,40.4,42.5,40.7],"script":[8.2,8.1,8.1,8,8.4,8.5,8,8.2,8.1,7.8,8.5,7.8,8,8.4,8],"paint":[27.1,26.8,26.9,27.6,26.6,26.6,27,26.7,27.6,26.6,27.5,26.8,27,26.9,27.1]}},{"b":8,"v":{"total":[35.6,35.8,16.7,35.7,36.6,17.4,19.6,35.1,16.2,17.4,35.3,17.8,35.6,17.4,16.8],"script":[12.2,12,13,12.4,13.5,12.8,14,12.5,11.2,13.5,12.8,13.2,12,12.9,12.9],"paint":[3.3,2.9,1.9,2.6,2.6,2,1.6,2.9,1.9,1.7,2.2,2.6,3.6,3.3,1.5]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[4.6]}},{"b":11,"v":{"DEFAULT":[5.1]}},{"b":12,"v":{"DEFAULT":[2]}},{"b":13,"v":{"DEFAULT":[31.8]}},{"b":14,"v":{"DEFAULT":[182.4]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[212.6]}}]},
-{"f":84,"b":[{"b":0,"v":{"total":[33.8,32.8,32.8,34.3,32.4,32.5,32.7,34,32.5,32.3,34.4,34.1,32.1,33.1,32.6],"script":[9.9,9.5,9.4,10,9.5,9.3,9.6,9.8,9.4,9.3,10.1,9.9,9.2,9.3,9.4],"paint":[23.3,22.8,22.8,23.7,22.4,22.6,22.5,23.6,22.6,22.4,23.7,23.6,22.3,23.2,22.6]}},{"b":1,"v":{"total":[37.6,37.3,37.3,36.9,37.6,38.5,38.4,36.8,39.1,38.3,37.7,38,38.1,38.7,38.2],"script":[13.5,13.2,13,13.1,13.6,13.6,13.8,13,14.1,13.6,13.5,13.6,13.5,13.4,13.4],"paint":[23.5,23.6,23.7,23.2,23.3,24.2,24,23.1,24.3,24,23.6,23.7,23.9,24.6,24.2]}},{"b":2,"v":{"total":[17.7,18.2,18.5,18.3,17.4,18,18.9,19.1,18.2,18.1,18,19.8,18.2,18.1,19],"script":[5.6,5.8,6.8,6,5,5.3,6.5,6.4,6.1,5.9,5.7,6.7,5.8,5.9,6.1],"paint":[9.9,10.7,10.3,10,9.7,11.2,10.4,10.7,9.8,9.9,10.4,11.1,10.9,10.2,11.3]}},{"b":3,"v":{"total":[5.3,5.8,5.2,5.8,4.8,6.6,5,5.6,5.9,5.9,5.7,5.2,5.1,5.4,5.1,5.9,5.3,5.5,5.2,5.5,5.5,5.5,4.9,5.2,5],"script":[3.3,2.4,2.5,3.9,3.2,4.4,3,3.1,2.5,3.3,3.8,2.5,2.6,3.1,2.9,3.5,2.7,3.3,2.6,3.1,3,3.2,3.1,2.5,2.8],"paint":[1.1,2,2.5,1,0.7,0.9,0.4,2.3,1.6,2.5,1,2.5,0.9,2.2,2,1.5,2.2,2.1,0.8,1.5,1.6,1.2,1.7,2.5,2]}},{"b":4,"v":{"total":[121,125.4,120.5,117.7,119.6,118.9,119.5,120.1,120.6,121.6,118.8,120.6,119,120.4,118],"script":[23.1,21.9,21.4,20.7,22.8,22.5,21.5,22.1,22,21.3,21.4,20.5,22.9,21.9,21.4],"paint":[95.5,101.5,96.5,94.5,93.9,94.3,96.3,95.2,96.2,98.8,95.2,97.1,93.9,97.3,93.4]}},{"b":5,"v":{"total":[14.1,14.3,13,13.6,13.6,13.8,13.7,14,13.8,14.2,13.5,13.3,13.7,13.3,13.9],"script":[2.9,2.6,2,2.1,2.5,2.8,2.9,2.7,2.7,3,1.9,2.3,2.4,2,3.1],"paint":[10.4,11,10.1,10.7,10.4,10.5,9.8,10.6,10.4,10.5,10.9,10.3,10,10.6,10.1]}},{"b":6,"v":{"total":[458,436.1,459.7,444.4,452.7,452.6,448.5,448.1,447.8,448.4,445.4,448.7,447.2,445.1,449],"script":[204.1,193.1,207.6,194.3,200.9,202,199.5,199.3,196.4,196.5,202.8,196.8,198.1,203.5,201.5],"paint":[247.2,235.9,245.1,242.9,245.4,244.2,242.5,242.3,245,245.4,235.9,245,242.4,235.4,240.7]}},{"b":7,"v":{"total":[39.6,39.1,38.5,39,38.8,39.1,39.5,38.5,38.9,37.8,38.1,38.8,39.1,38.4,38.6],"script":[11,11,10.5,10.8,11,10.9,11,10.7,10.9,10.4,10.5,11.1,10.9,10.8,10.7],"paint":[27.6,27.2,27,27.3,26.9,27.2,27.6,26.8,27.1,26.5,26.7,26.8,27.3,26.6,27]}},{"b":8,"v":{"total":[18.8,17.6,18,17.4,17.8,19,18.1,17.6,18.3,18.1,18.7,17.6,18.3,18.2,18.4],"script":[16.8,15.9,16.5,15.4,15.7,16.7,15.7,15.1,16,15.4,16.6,16,15.8,15.9,15.8],"paint":[1,1,0.3,1.3,1.3,1.6,1.4,1.4,1.1,0.7,1.3,1.1,1.5,0.8,1.8]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[5.9]}},{"b":11,"v":{"DEFAULT":[6.3]}},{"b":12,"v":{"DEFAULT":[1.7]}},{"b":13,"v":{"DEFAULT":[45]}},{"b":14,"v":{"DEFAULT":[150.2]}},{"b":15,"v":{"DEFAULT":[42.3]}},{"b":16,"v":{"DEFAULT":[165]}}]},
-{"f":85,"b":[{"b":0,"v":{"total":[33.3,32.3,32.2,32.1,32.6,32.6,32,32.3,32,31.9,32.5,32.3,32.9,32.7,32.2],"script":[9.7,9.2,9.2,9.2,9.5,9.3,9.2,9.3,9.3,9.3,9.5,9.4,9.1,9.1,9.3],"paint":[23.1,22.7,22.6,22.5,22.7,22.9,22.3,22.6,22.4,22.1,22.7,22.6,23.3,23.2,22.5]}},{"b":1,"v":{"total":[37.8,37.5,37.8,37.5,37.6,37.4,37.9,37.3,37.8,37.4,37.4,37.7,37.2,37.9,38.4],"script":[13.2,13.4,13.2,12.9,13.2,13.1,13.1,13.2,13.2,13.1,13,13.3,12.6,13.2,13.9],"paint":[24.2,23.7,24.2,24.1,24,23.9,24.4,23.7,24.1,23.9,23.9,24,24.2,24.2,24.1]}},{"b":2,"v":{"total":[18.9,17,16.9,16.2,16.6,17.6,15.8,17,16.8,17.3,17.5,17,16.9,16.6,15.4],"script":[5.8,4.9,5.3,4.7,5.4,5.3,4.3,5.5,4.9,4.9,4.8,5.2,4.8,4.6,4],"paint":[11.2,11,10.2,10.5,9.9,10.9,10.1,10.6,9.9,11.4,11.7,10.3,11.2,10.9,9.4]}},{"b":3,"v":{"total":[5.9,5.3,5.3,5.3,4.7,4.8,5.8,5,4.8,5.9,4.9,4.4,4.5,4.3,5.8,4.9,5.2,4.8,4.5,5.1,5.9,5.2,5.3,5,4.9],"script":[2.4,2.9,2.2,2.7,2,2.7,3.3,2.9,1.8,2,2.3,2.3,2.2,2.4,2.4,2.1,2.7,2.9,2.6,2.8,3,3.7,2.4,2.6,2.6],"paint":[2.1,1.3,2.5,2.4,2.1,1.1,1.6,1.9,1.7,0.9,2.5,1,2.2,0.9,2.3,2.2,1.2,1,1.3,1.5,2.7,0.9,2.7,1.4,1.3]}},{"b":4,"v":{"total":[114.8,114.4,117.4,119.5,116.9,115.9,114.5,118.1,118.3,120.7,112.9,115.8,115.1,113.1,116.9],"script":[18.1,19.2,18.8,19.3,19.8,18.9,17.9,19.4,19.4,18.6,17.9,18.9,17.9,18.2,18.6],"paint":[94.2,93.6,96.3,98.7,95.6,94.7,94.8,95.5,96.3,100.1,93.9,95.6,95.4,93.6,95.2]}},{"b":5,"v":{"total":[12.4,12.5,12.8,12.9,12.5,12.5,12.8,13,12.8,12.7,12.9,12.6,12.5,12.8,12.9],"script":[1.5,1.7,2.3,2.1,1.5,1.7,1.7,1.8,1.6,1.5,2,1.2,1.6,1.5,1.9],"paint":[10.3,10.2,9.9,9.9,10.3,10.2,10.6,10.4,10.5,10.5,10.2,10.8,10.1,10.5,10.4]}},{"b":6,"v":{"total":[441.4,439.5,443.3,446.4,444.3,446.4,445,446.7,450.3,449.1,447.8,446.3,448.6,441.9,449.6],"script":[195.1,195.2,195.8,200.5,197.5,198.7,199.7,201.3,203.5,202.9,200.2,198.8,200.3,195.1,198.2],"paint":[240.9,238.7,241.4,240.5,241.1,241.6,239.8,240,241.3,240.9,241.3,241.8,242.2,241.1,245.8]}},{"b":7,"v":{"total":[38.5,38.5,39.1,38.5,38.6,38.1,38.4,38.3,38,37.9,38.2,38.6,38.2,38,38.2],"script":[10.2,10.6,10.3,10.4,10.5,10.3,10.6,10.4,10.2,10.2,10.2,10.3,10.4,10.4,10.3],"paint":[27.5,27.2,28.1,27.3,27.3,27.1,27.1,27.2,27.1,27,27.3,27.6,27.1,26.9,27.1]}},{"b":8,"v":{"total":[10.1,11.6,10.9,10.1,11.5,12,12,11.7,11.3,11.2,11.6,12.5,11.9,12,12],"script":[8.9,10.2,9.4,9.1,9.8,10.6,10.4,10.1,9.8,10,10.7,11,10.1,10.4,11.1],"paint":[0.2,1.3,1.4,0.9,1.6,0.8,1.2,1.5,1.4,0.6,0.3,0.6,1.7,1.3,0.2]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[7.2]}},{"b":11,"v":{"DEFAULT":[7.8]}},{"b":12,"v":{"DEFAULT":[2.8]}},{"b":13,"v":{"DEFAULT":[55.3]}},{"b":14,"v":{"DEFAULT":[213.1]}},{"b":15,"v":{"DEFAULT":[49.2]}},{"b":16,"v":{"DEFAULT":[219.5]}}]},
-{"f":86,"b":[{"b":0,"v":{"total":[33.8,31.6,33.7,31.8,33.4,31.6,32.9,31.8,31.9,33.4,33.7,33.7,32.2,32.2,33.7],"script":[9.1,8.6,9.4,8.7,9.1,9,9.4,8.8,9.1,9.4,9.3,9.3,8.7,8.8,9.6],"paint":[24.2,22.5,23.8,22.6,23.8,22.1,22.9,22.5,22.3,23.4,23.8,23.8,23,22.9,23.6]}},{"b":1,"v":{"total":[38.4,37.4,36.4,36.8,36.5,37.1,36.9,37,36.4,36.9,36.5,38.6,37.1,37,37.3],"script":[13,12.8,12.4,12.7,12.6,12.5,12.6,12.8,12.3,13,12.3,12.6,12.7,12.3,12.8],"paint":[24.8,24,23.5,23.6,23.3,24,23.7,23.6,23.5,23.4,23.9,25.4,23.8,24.1,23.9]}},{"b":2,"v":{"total":[17.3,18.1,17.3,18.3,18.1,18.6,17.7,18.8,17.6,17.9,18.2,17.1,18.7,17.6,17.1],"script":[5.8,5.5,4.8,6.2,5.3,6.1,5.4,6.2,5.2,5.8,5.7,5.1,6.5,5.2,5.1],"paint":[10.1,11.1,11,9.6,10.7,10,9.6,11.5,11.1,10.6,10.4,10.9,10.2,10.4,9.5]}},{"b":3,"v":{"total":[7.6,6.5,5.9,6.7,5.9,6.8,6.4,6.6,6.4,7.2,6.5,7.2,6.5,7.2,6.7,6.9,6.3,6.6,6.7,6.2,6.5,6,6.7,7,6.6],"script":[4.6,4,3.5,4.5,3.4,4.1,3.7,4.6,4,4.4,4.4,4.6,3.4,4.3,4,4.2,3.3,3.8,4.3,3.9,4.5,3.5,4.1,4,4.4],"paint":[1.6,1.8,1.6,1.6,1.6,1.2,1.4,1.1,1,2,1.5,1.7,2.9,2.1,2.4,1.5,1,2,2.3,1.5,0.7,1.8,1.6,2.8,1.5]}},{"b":4,"v":{"total":[121.1,121.6,119.2,118.4,118.6,119.6,123.7,118,119.9,122.7,120.1,124.3,117.9,121.3,122.9],"script":[23.1,22.9,22.1,20.9,22.6,21.5,22.4,22,22.1,26.2,24.6,26.4,21.3,25.4,22.7],"paint":[95.1,96.5,93.4,94.4,93.5,95.3,98.3,93.7,95.2,93.7,92.6,95.8,93.4,92.9,96.9]}},{"b":5,"v":{"total":[13.1,12.9,13.8,13.8,13.2,13.4,13.9,13.4,13.5,13.2,13.2,12.8,12.3,13.5,13.3],"script":[1.9,2.1,2.7,2.1,2.2,2.6,3.1,2.1,2.4,1.8,2.8,1.9,1.6,2.8,1.9],"paint":[10.3,10.3,10.2,11,10.4,10.3,10.2,10.6,10.3,10.3,9.9,10.2,9.8,10,10.7]}},{"b":6,"v":{"total":[437.5,443.6,445.6,442.8,440.9,441.4,443.3,439.7,442.3,438,447.5,437.4,443.5,438.5,440.1],"script":[197.3,197.9,201.7,197,198,192.5,198.8,194.4,197.9,193.5,200.4,193.8,199.3,195.7,196.3],"paint":[234.7,238.8,237.9,239.7,236.8,242.7,238.6,239.1,238.2,238.5,241.1,237.8,238.1,236.8,237.6]}},{"b":7,"v":{"total":[40.4,39.9,39.7,40.6,41.6,41.1,41,40.4,40.5,40.7,39.9,40.4,40.1,40.6,39.9],"script":[12.4,12.3,12.5,12.6,12.9,12.6,12.9,12.2,12.3,12.4,12.5,12.5,12.5,12.4,12.4],"paint":[27.1,26.6,26.3,27.1,27.8,27.6,27.2,27.3,27.3,27.4,26.5,27,26.7,27.3,26.5]}},{"b":8,"v":{"total":[18.5,17.9,18.1,19.5,19,17.4,17.3,17.6,17.7,17.9,18.5,17.5,17,17.8,17.5],"script":[16.6,16.1,16.2,15.5,16.5,15.8,15.4,15.2,15.5,15.8,15.6,16.1,15.2,16.2,15.5],"paint":[1.6,0.6,0.8,1.7,0.3,0.3,1,2.1,1.1,0.9,2.2,0.3,0.9,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.6]}},{"b":10,"v":{"DEFAULT":[6.3]}},{"b":11,"v":{"DEFAULT":[6.8]}},{"b":12,"v":{"DEFAULT":[2.4]}},{"b":13,"v":{"DEFAULT":[44.7]}},{"b":14,"v":{"DEFAULT":[242.8]}},{"b":15,"v":{"DEFAULT":[64]}},{"b":16,"v":{"DEFAULT":[274.8]}}]},
-{"f":87,"b":[{"b":0,"v":{"total":[35.5,34.8,35,34.7,35.1,34.8,35.1,34.6,34.8,34.8,34.7,34.6,34.7,34.6,34.7],"script":[12,11.6,11.6,11.6,11.7,11.6,11.8,11.4,11.6,12,11.6,11.5,11.6,11.6,11.3],"paint":[23,22.8,23.1,22.7,22.9,22.8,22.7,22.8,22.8,22.4,22.8,22.7,22.7,22.7,23]}},{"b":1,"v":{"total":[42.3,42.4,42.1,42.9,42,42.2,42.1,42.1,42,42,42.4,42.6,42.5,42,42],"script":[16.7,17.1,16.9,16.8,16.7,16.8,16.8,16.8,17,16.8,17.1,17.2,17,16.8,16.8],"paint":[24.9,24.7,24.7,25.5,24.8,25,24.8,24.8,24.6,24.8,24.8,24.9,25,24.8,24.7]}},{"b":2,"v":{"total":[22,20.9,20.3,19.7,18.9,19.7,19.6,19.9,20.3,21,19.2,21.2,21.7,19,19.8],"script":[8.2,8.1,8.2,7.6,7.6,8,7.6,7.6,8.2,8.9,7,7.8,8.8,7.2,7.4],"paint":[11.3,11.9,10.6,10.9,10,10.1,10.6,9.9,10.9,10.6,10.5,11.7,11.2,9.6,9.9]}},{"b":3,"v":{"total":[5.7,6.5,7.1,6,6.9,6.4,6.1,7,6.7,6.7,6.6,6.6,6.5,5.6,6.5,6.5,4.9,6.6,6.4,6.7,6.7,7.1,6.3,6.8,6.4],"script":[3.8,3.8,4.1,3.8,4.2,3.8,4,4.3,3.7,3.8,3.7,4.2,4.4,2.8,3.8,4,3,4.4,3.2,4.1,4.3,4.7,3.7,4.6,3.9],"paint":[0.9,1.2,2.3,1,1.7,2.4,1.9,1.4,2.7,2.7,1.6,1.6,1.3,2.6,2.4,1.6,1.7,1.3,2.5,2.4,1.7,1.5,1.3,1.5,1.5]}},{"b":4,"v":{"total":[120.9,117.3,124.9,116.7,118.6,122.8,125.4,119.2,122.8,119.6,117.9,117.8,122.6,120.8,121.8],"script":[21.7,21.6,25.8,21.6,22.9,21.4,23.5,20.6,23.5,21.9,20.3,22.1,22,23.2,23.3],"paint":[96.5,93.6,96.9,93.7,94.3,99.6,99.6,96.4,97.6,95.3,96.1,94.4,99.2,95.8,96.4]}},{"b":5,"v":{"total":[25.5,26.1,26.8,25.8,25.5,26.2,25.8,26.9,27.4,27.2,26.6,25.7,26.5,26.2,26.1],"script":[13.7,13.7,14.7,13.7,13.9,14,13.9,14.4,14.8,14.9,14.4,13.9,14.4,14.4,14.2],"paint":[10.6,11.4,11.1,10.6,11.1,11.4,11.4,11.5,11.8,11.3,11.5,10.8,11,10.8,11.2]}},{"b":6,"v":{"total":[472.5,466.1,475.2,469,466.5,469.1,462.8,467.9,470.7,467.3,471.9,466.1,467.7,466.3,470.4],"script":[226.4,221.7,227.8,224.8,222.4,225.5,220,222,224.8,221.9,226.7,220.7,218.8,220,223.8],"paint":[240,238.5,241.5,238,238.1,237.4,237.2,239.5,239.8,239.8,239.4,239.6,242.8,240.3,240.6]}},{"b":7,"v":{"total":[41.6,41.2,41.5,41.5,41.3,41,41.7,41.3,41.3,42,42,41.4,41.1,41.2,41.1],"script":[13.3,13,13.2,13.2,13,12.9,13,13.1,12.8,13,13.4,13,12.8,12.9,12.8],"paint":[27.3,27.5,27.5,27.5,27.5,27.4,28,27.5,27.8,28.3,27.9,27.5,27.6,27.5,27.5]}},{"b":8,"v":{"total":[20.9,20.6,20.2,19.6,20,21.5,18.4,19.5,20.6,20.6,20.6,21.6,22.3,21.3,19.3],"script":[19.3,19.1,19.2,17.8,18.2,19.3,17.2,18.3,19.4,18.3,18.8,20.1,20.1,19.7,18],"paint":[1.4,1.4,0.3,0.7,1.7,2.1,0.8,1.1,0.8,2,1.7,0.6,1.9,1.4,1.2]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[8.7]}},{"b":11,"v":{"DEFAULT":[9.4]}},{"b":12,"v":{"DEFAULT":[2.2]}},{"b":13,"v":{"DEFAULT":[70.7]}},{"b":14,"v":{"DEFAULT":[193.9]}},{"b":15,"v":{"DEFAULT":[52.9]}},{"b":16,"v":{"DEFAULT":[218.7]}}]},
-{"f":88,"b":[{"b":0,"v":{"total":[33.4,32.7,32,32,32.7,31.9,32.1,31.4,32.1,31.8,32,31.8,31.7,31.8,32],"script":[9.4,9.2,8.8,8.8,9.2,8.9,8.8,8.7,8.9,8.8,8.9,8.9,8.7,8.9,8.8],"paint":[23.5,23,22.6,22.7,22.9,22.5,22.7,22.3,22.6,22.5,22.5,22.4,22.4,22.3,22.7]}},{"b":1,"v":{"total":[37.4,36.8,38.1,37.8,37.2,37.7,37.4,37.6,37.4,37,37.1,37.4,37.2,37.6,37.4],"script":[13.2,12.7,13,13.6,12.6,13.2,13.2,12.6,12.6,12.6,12.9,12.6,12.4,12.6,12.8],"paint":[23.6,23.5,24.5,23.7,24,23.9,23.7,24.4,24.2,23.7,23.6,24.3,24.3,24.4,24]}},{"b":2,"v":{"total":[21.3,18.9,20.1,19.7,21.1,19.8,19.5,21.2,19,20.7,19.3,19.5,19.8,20.1,20.5],"script":[7.6,7.1,7.4,7.6,6.9,7.3,7.4,7.9,7.6,8.2,7.2,7.2,7.6,7.7,7.6],"paint":[11.8,10.3,10.7,10.2,11.5,10.6,11.2,11.3,9.9,10.1,9.5,10.5,11.5,11,10.8]}},{"b":3,"v":{"total":[5.9,6.9,6.2,6.5,6.1,6.6,5.3,7.3,6.6,5.7,6,7.5,5.7,6,5.9,6,6.6,7.4,6.3,7.9,5.8,6.1,6.6,7.2,6.1],"script":[3.9,4.6,3.6,3.7,3.7,4.1,3.1,4.4,3.8,2.8,3.3,4.7,3.3,3.1,3.9,3.8,3.9,5,3.5,4.2,3.7,3.7,4,4.5,3.7],"paint":[1,1.2,2.1,1.6,1.4,1.5,2,1.5,1.9,2.7,1.7,2.7,1.8,2.7,1.8,1.1,2,2.2,0.4,0.4,1,1.7,1.3,2.1,1.5]}},{"b":4,"v":{"total":[118.7,117.8,117.8,119.3,117,119,120,119.4,121.1,118,117,118.2,116.7,118.7,115.1],"script":[19.4,21.4,22.1,20.6,21.2,20.6,22.2,23.2,21,19.5,20.9,21.1,18.9,20.6,20],"paint":[96.6,93.4,94.1,95.1,93,95.2,94.5,94.5,97.5,96.1,93.9,94.8,95.1,95.9,92.7]}},{"b":5,"v":{"total":[13.9,13.8,14.6,14.1,14.9,13.8,14.2,14.3,14.5,13.5,14.2,14,14.2,13.5,15.4],"script":[2.6,2.7,3.9,3.6,4,2.9,2.8,3.2,3.5,2.3,3,3.2,4,2.6,3.5],"paint":[10.1,10.1,10.1,9.9,10.3,10.3,10.4,10.5,10,10.3,10.4,9.5,9.8,10.3,11.3]}},{"b":6,"v":{"total":[439.6,427.1,431.4,432.1,429.5,432.7,423.5,433.3,436.6,434.3,429.3,434.4,430.2,431,428.8],"script":[192.6,188,186.8,191.1,183.9,192.3,187.8,192,194.5,188,184.1,192.5,185.4,184,183.8],"paint":[241.1,233.1,238.4,235.1,239.3,234.4,230.2,235.5,235.7,239.8,238.7,235.6,238.7,241,239.1]}},{"b":7,"v":{"total":[37.6,37.5,37.3,37.3,37.3,37.5,37.5,39.7,37.3,37.8,37.8,37.3,36.8,36.9,37.5],"script":[9.7,9.5,9.8,9.5,9.5,9.4,9.6,10,9.5,9.5,9.4,9.4,9.5,9.5,9.6],"paint":[27,27.1,26.7,26.9,26.9,27.1,26.9,28.7,26.9,27.4,27.5,26.9,26.4,26.6,27]}},{"b":8,"v":{"total":[17.2,17.9,18.2,17.8,16.5,18.8,18.1,16.7,18.6,19.8,18.6,17.9,17.5,18.2,17.4],"script":[15.7,15.4,15.8,16,14.8,17,15.4,14.9,16.6,18,16.9,16.1,15.2,16.4,15.6],"paint":[0.7,1,1.2,0.3,0.3,0.3,1.9,0.7,1.2,0.3,0.4,0.9,1.1,0.9,1.2]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[6]}},{"b":11,"v":{"DEFAULT":[6.5]}},{"b":12,"v":{"DEFAULT":[2]}},{"b":13,"v":{"DEFAULT":[45.5]}},{"b":14,"v":{"DEFAULT":[185.9]}},{"b":15,"v":{"DEFAULT":[50.6]}},{"b":16,"v":{"DEFAULT":[208.1]}}]},
-{"f":89,"b":[{"b":0,"v":{"total":[34.1,34.2,34.4,34.5,35.1,34.9,35,33.3,33.3,34.6,34.2,34.7,35.1,34.3,34.2],"script":[10.3,10.3,10.2,10.5,10.8,10.4,10.8,9.9,10,10.6,10.3,10.9,11,10.4,10.4],"paint":[23.3,23.3,23.6,23.5,23.7,23.9,23.7,22.8,22.7,23.5,23.3,23.3,23.6,23.3,23.2]}},{"b":1,"v":{"total":[37.9,38,39.2,38.1,38.2,38.2,38.7,37.8,38.2,38.3,38.2,38.4,37.7,37.7,38.6],"script":[13.8,14,14.8,14,14,14,14.5,13.8,13.9,13.9,13.9,14.1,14.3,13.6,14.1],"paint":[23.5,23.4,23.9,23.6,23.7,23.7,23.6,23.4,23.8,23.8,23.8,23.8,22.9,23.5,23.8]}},{"b":2,"v":{"total":[21,20.5,20.8,20.9,20,19.5,20.2,20.4,20.9,22.8,21.6,20.5,21.1,21,20.9],"script":[7.6,7.6,8.1,8.7,7.6,7.6,7.3,7.2,8.1,9.1,9.4,8,7.9,8.5,7.8],"paint":[10.6,10.9,10.5,10.8,9.7,9.4,10.4,11.8,10.8,11.8,10.6,10.8,10.6,10.7,10.6]}},{"b":3,"v":{"total":[7.1,8.9,7.7,8.8,7.4,7.8,7.9,9.3,8.8,9,8.5,8.2,9.2,9.7,8.7,8.7,7.7,8.1,7.5,9.9,7.4,8.3,8.6,5.9,7.6],"script":[4.2,5.8,5.1,5.2,4.5,5.2,5.8,5.9,5.6,5.6,5.8,5.5,5.8,6.5,5.9,5.8,4.8,4.6,4.3,6.6,4.9,5.2,5.4,3.4,4.9],"paint":[2.3,2.7,1.4,1.3,2.4,1.3,1.2,2.4,2,2.1,1.7,2.5,1.2,1.9,1.1,1.4,2.7,1.8,2.9,2,1.9,1,2.2,2,2.5]}},{"b":4,"v":{"total":[119.2,119.7,121.4,122,120.2,120.3,121.2,122.5,122.3,120.3,121.1,122.3,118.8,118,122.8],"script":[22.7,22.7,23.1,22.4,23.2,22.5,23.2,24.6,24,23,23.5,23.1,22.3,23.6,22.3],"paint":[93.8,94.7,95.9,97.7,94.2,95.1,96.4,95.8,96,95.5,93.8,96.3,94.2,91.7,97.5]}},{"b":5,"v":{"total":[15.5,14.5,14.9,15.3,15,14.6,15.3,15.1,15.3,15.9,14.6,15.3,15.7,15,15.1],"script":[4.5,3.6,4,4.6,4.1,3.7,4,3.8,4.1,5,3.7,4.6,4.6,4.1,4.3],"paint":[10.1,10.2,10.2,10.1,10.1,9.6,10.2,10.3,10.4,10.2,10.2,10.2,10.4,10.5,10.1]}},{"b":6,"v":{"total":[446.4,434.7,439.5,443.9,439.7,446.3,441.1,440.7,450.2,440.7,439.8,441.7,435.3,443.8,443.9],"script":[204.4,188.7,198.4,198.6,192.3,201.6,200.5,198,204.9,198.6,199.6,199.3,191.6,198.8,202.8],"paint":[235.7,240,235.1,239.2,241.4,237.8,234.5,236.7,239.4,235.7,234.2,236.2,237.4,239,235.3]}},{"b":7,"v":{"total":[39.4,39.5,39.8,39.3,39.8,39.7,38.9,39.6,39.1,39.5,39.3,39.7,39.1,39.4,39.3],"script":[11.4,11.4,11.5,11.3,11.8,11.4,11.4,11.4,11.8,11.6,11.5,11.4,11.7,11.3,11.3],"paint":[27.1,27.1,27.4,27.1,27.1,27.4,26.6,27.3,26.4,27,26.9,27.3,26.8,27.1,27.1]}},{"b":8,"v":{"total":[20.1,20.6,19.6,20.6,20,20.3,21,19.3,19.4,22.5,21.4,19.3,20.2,19.8,19.3],"script":[17.8,18.5,17.6,18.2,18.2,18.2,19.1,17,17.3,19.8,19.3,17.1,18.4,17.7,17],"paint":[1.4,0.7,0.9,1.5,1.2,0.8,0.3,0.3,1.9,1.4,1.1,1.3,0.8,1.4,0.3]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[6.5]}},{"b":11,"v":{"DEFAULT":[7]}},{"b":12,"v":{"DEFAULT":[2.5]}},{"b":13,"v":{"DEFAULT":[47.5]}},{"b":14,"v":{"DEFAULT":[246.1]}},{"b":15,"v":{"DEFAULT":[64.7]}},{"b":16,"v":{"DEFAULT":[282.6]}}]},
-{"f":90,"b":[{"b":0,"v":{"total":[35.5,34.6,34.7,34.6,34.6,35.2,35,35.1,35.2,34.4,34.8,34.5,35,34.7,34.6],"script":[12.2,11.3,11.4,11.5,11.5,11.7,11.8,11.5,11.7,11.3,11.4,11.5,11.7,11.5,11.5],"paint":[22.8,22.8,22.9,22.7,22.7,23.1,22.8,23.1,23.1,22.7,23,22.6,23,22.8,22.7]}},{"b":1,"v":{"total":[42.4,42.3,42,42.3,42.1,42.1,41.9,43,42,42.2,42,42.3,42.3,42.5,42.5],"script":[16.9,17.1,16.9,17.1,17,16.7,16.6,17.5,16.9,16.8,16.9,17.1,16.9,17,17],"paint":[24.9,24.8,24.7,24.8,24.7,24.9,24.8,25.1,24.7,24.9,24.7,24.8,24.9,25.1,25]}},{"b":2,"v":{"total":[20.6,21,21.2,20.1,20.5,19.5,19.5,21.9,21.7,20.9,20.4,20.2,20.5,20.1,22],"script":[7.9,8.1,8.4,7.8,8.1,8,8.1,8.2,8.6,8.4,8.2,7.6,7.8,8.6,8.8],"paint":[10.4,10.5,11.4,10.9,9.1,10.1,10.4,12,11.7,11.1,10.6,11.3,10.7,9.9,12.4]}},{"b":3,"v":{"total":[7.3,7.4,6.7,6.6,5.6,6.1,7,6.3,6.4,6.1,5.9,6.7,7,6.6,6.8,5.8,5.5,7.1,5.9,6.5,6,5.7,6.5,6.1,6.2],"script":[3.9,5,4,4.4,3.4,4.2,4.4,4.5,3.2,3.5,3.5,4.1,4.3,3.7,4,2.9,3.5,4.8,3.2,4.1,3.9,3.3,3.7,3.5,3.9],"paint":[3.2,1.3,1.9,1.3,2,1.2,1.1,1.2,3.1,1.5,1.2,1.6,1.8,2.8,1.9,2.7,1.1,1.7,2.5,2,1.1,1.9,2.6,1.8,1.2]}},{"b":4,"v":{"total":[123.8,121,120.4,121.3,119.5,122.5,125.6,119.9,122.9,122.5,122,120,126.7,125,120.3],"script":[23.7,22.1,22.5,24.3,22.8,24.6,24.4,23.6,23.8,23,23.7,19.5,23.7,24.2,22.4],"paint":[98.6,97.5,95.3,94.5,96,96.4,99.1,95.1,97.5,97.4,95.4,99.3,100.7,98.5,95.9]}},{"b":5,"v":{"total":[26.3,26.5,26.6,26.7,26.2,25.6,26.3,26.1,26,26.1,26.5,26.3,26.5,26.1,25.4],"script":[14.1,14.4,14.4,14.3,13.8,14,14.1,13.9,14.1,14,14.3,14,13.9,13.9,13.7],"paint":[11,10.9,10.9,11.3,11.4,10.3,11.3,11,10.7,11.2,11,11.2,11.6,11.1,10.9]}},{"b":6,"v":{"total":[467.5,463.2,466.8,467.1,461.6,460.3,467.6,475.6,480.3,473.3,474.5,475.4,473.4,476.3,478.8],"script":[219.5,219.4,222.5,221.4,219.2,216.9,218.4,231.2,233,226.9,227.4,230.1,225.4,231.7,231.2],"paint":[242.2,237.9,237.9,240.1,236.5,237.7,243.2,238.4,241.3,240.2,241.2,239.5,242,239,241.7]}},{"b":7,"v":{"total":[41.5,41.6,41.6,41,41.1,41.1,41.2,41.4,41.4,41.4,41.6,41.2,41.3,41.4,41.6],"script":[13.2,13.1,13,12.8,13.2,13,13.1,12.9,13.2,13.3,13.2,12.8,13.1,13,12.9],"paint":[27.5,27.5,27.8,27.5,27.2,27.3,27.3,27.8,27.3,27.4,27.6,27.6,27.4,27.6,27.9]}},{"b":8,"v":{"total":[21.7,19.1,21,20.7,18.7,22.7,21.2,20.4,21.9,20.6,20.1,19.9,19.8,19.6,19.5],"script":[19.4,17.4,19.7,18.9,17.2,21.2,18.8,18.9,20,18.5,18.8,18.4,17.7,17.8,18],"paint":[1.2,0.8,1.2,1.7,1.4,1.4,2.3,0.7,1.7,0.4,0.3,1.3,2,1,1.4]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[8.7]}},{"b":11,"v":{"DEFAULT":[9.4]}},{"b":12,"v":{"DEFAULT":[2.2]}},{"b":13,"v":{"DEFAULT":[70.3]}},{"b":14,"v":{"DEFAULT":[200.2]}},{"b":15,"v":{"DEFAULT":[54.7]}},{"b":16,"v":{"DEFAULT":[233.1]}}]},
-{"f":91,"b":[{"b":0,"v":{"total":[31.4,30.2,30.1,30,30.2,30.3,30.6,29.8,29.9,29.9,30.1,29.6,30.3,31.8,30.2],"script":[7.4,7.2,7.4,7.4,7.5,7.6,7.9,7.3,7.2,7.2,7.2,7.2,7.2,7.5,7.4],"paint":[23.4,22.4,22.2,22.1,22.2,22.2,22.2,21.9,22.2,22.1,22.3,21.9,22.6,23.8,22.3]}},{"b":1,"v":{"total":[35.5,36.4,35.3,35.9,36.1,36.3,35.1,35.3,36.5,36.1,35.2,35,35.5,37.1,35.8],"script":[10.8,11.1,11.1,11.1,11.3,11.2,10.6,10.7,11.3,11,10.9,10.7,10.9,11.1,11.2],"paint":[24.2,24.7,23.7,23.9,24.2,24.5,24,24,24.7,24.5,23.7,23.7,24,25.4,24]}},{"b":2,"v":{"total":[16,15.8,15.6,17,16.5,16.1,15.9,15.7,17.1,16.2,16.2,16.2,16.7,16.8,17.4],"script":[4.5,4.3,4.5,4.1,3.8,4.1,3.7,4.4,4.4,4.8,4.5,4.6,4.7,4.5,5],"paint":[8.7,10.3,9.6,11.1,11.3,10.8,11.2,10.4,10.7,10.4,9.8,11.3,10.8,10.8,10.6]}},{"b":3,"v":{"total":[5.5,4.9,4.3,4.2,6.1,7.5,4.7,5.2,4.7,4.7,4.3,4.8,4.6,5.7,4.2,4.6,5.3,4.4,4.7,5.5,4.3,5,5,5.7,6],"script":[2.1,2.5,1.9,2,2.6,2,2.4,2.7,2.4,2.3,2.4,2.3,2.7,1.7,1.9,1.9,2.5,2.5,2.2,2.4,2.2,2.7,2.5,2.2,2.3],"paint":[2.4,1.3,1.5,1.7,1,1.2,1.2,1.7,1.1,1.6,1,1.2,1,2.8,1.7,1.6,1.1,1.8,1.5,1.4,1.9,1.1,1.5,1.4,3.3]}},{"b":4,"v":{"total":[119.3,115.3,114.3,116.6,117.1,119.4,114.9,119.9,115.7,117.6,116,115.9,117.3,115,116],"script":[18.2,19.6,16.9,19.3,18.6,20.5,17.9,18.5,18.8,17.9,18.6,19.1,17.1,19.7,18.7],"paint":[98.5,93.1,95.3,95.5,96,96.5,93.9,99.9,95,97.7,95.3,93.7,96.9,92.7,94.6]}},{"b":5,"v":{"total":[12.8,12.5,13,12.3,13.1,13,13,13.3,12.6,13,13.2,13.3,12.9,12.7,12.7],"script":[1.9,2,1.8,1.4,1.4,2,1.7,2.4,2,1.8,1.8,1.8,1.8,1.6,1.4],"paint":[10.3,9.8,10.5,9.9,10.9,10.6,10.8,10,10,10.7,10.8,10.5,10.1,10.5,10.4]}},{"b":6,"v":{"total":[478.4,482.4,477.6,476.5,478.4,481.9,478.4,480.5,484.5,478,477.5,475.1,480.9,479.2,474.9],"script":[235.6,236.2,231.9,231.9,234,235.8,233.3,234.8,235.8,232,232.5,230.7,235.8,234.9,230.8],"paint":[236.6,240.2,239.6,238.5,238.3,240.1,239.1,239.8,242.9,239.7,238.9,238.2,239.1,238.3,238.3]}},{"b":7,"v":{"total":[37.2,36.4,37.5,36.7,36.5,36.8,37,37.2,38.2,37.2,37.1,37.6,36.7,36.2,36.5],"script":[8.5,8.1,8.6,8.1,8.1,8.2,8.2,8.2,8.4,7.8,8.2,8.1,8.2,7.9,7.9],"paint":[27.8,27.4,28,27.8,27.5,27.7,27.9,28.1,28.9,28.4,27.9,28.5,27.7,27.4,27.7]}},{"b":8,"v":{"total":[16.9,17,17.1,17,17,19.7,16.6,17,15.8,16.3,18,16.3,16.3,16.1,17.4],"script":[15,15,14.9,14.9,15.1,17.3,15,14.7,14.4,13.9,15.9,14.7,14.2,13.9,15.5],"paint":[0.3,1.8,1.3,1.8,0.3,1.3,0.3,0.7,1.2,0.4,1.7,0.3,0.6,0.3,1]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[4.5]}},{"b":11,"v":{"DEFAULT":[4.9]}},{"b":12,"v":{"DEFAULT":[2]}},{"b":13,"v":{"DEFAULT":[30.5]}},{"b":14,"v":{"DEFAULT":[196.8]}},{"b":15,"v":{"DEFAULT":[53.3]}},{"b":16,"v":{"DEFAULT":[226.1]}}]},
-{"f":92,"b":[{"b":0,"v":{"total":[32,31.5,31.9,30,29.6,31.3,29.9,31.6,31.9,29.6,31.3,29.7,32,29.6,30.1],"script":[7.8,7.7,7.9,6.8,6.7,7.2,6.7,7.6,7.4,6.7,7.3,6.7,7.6,6.6,7],"paint":[23.7,23.3,23.4,22.7,22.5,23.5,22.7,23.5,23.9,22.3,23.5,22.4,23.9,22.4,22.7]}},{"b":1,"v":{"total":[35.8,35.3,36,35.9,35.7,35.7,35.8,36.1,35.6,35.4,36.1,35.1,35.6,35.6,35.1],"script":[11.4,11.7,11.6,11.3,11.4,11.7,11.6,11.6,11.5,11.6,11.8,11,11.2,11.6,11.5],"paint":[23.8,23.1,23.9,24.1,23.7,23.4,23.7,24,23.6,23.3,23.8,23.5,23.9,23.5,23.1]}},{"b":2,"v":{"total":[16.8,15.7,17.7,17.2,16,17,17.8,17.1,17.4,17,17.5,15.7,16.8,16,17.3],"script":[5.2,4.9,5.2,4.7,4.7,4.9,5.8,5.1,4.6,5.1,5.4,4.5,4.3,4.2,5.1],"paint":[10.2,9.4,10.9,11.4,9.9,11.2,9.8,9.9,11.9,9.5,10,9.7,11.6,10.4,10.6]}},{"b":3,"v":{"total":[4.3,4.3,4.2,4.8,4.3,5.9,6,5.9,4.6,4.5,4.1,4.7,6.1,4.7,5.3,4.3,7.9,5.1,3.6,4.6,5.7,4.9,5.5,4.1,6],"script":[1.3,2.4,2,2.9,1.3,3.2,3.6,3.5,2.2,2.3,1.1,2.8,2.4,3,2.8,1.8,3.1,2.8,1.3,2.1,3.2,3,2.8,2.2,3.6],"paint":[2.8,1,1.7,1,2.9,1.5,1.5,0.4,1.4,1.8,2.8,1.7,1.6,0.9,1.5,1.6,1.5,2.1,1.7,1.6,1.7,1.6,2.4,0.9,1.6]}},{"b":4,"v":{"total":[116.8,114.8,115.3,117,114.8,115.1,117.6,115.4,114.6,117.8,116.3,114.6,116.4,115.8,115.6],"script":[18.9,17.8,19.4,20.9,17.2,18.9,19,18.6,18.2,19.4,18,17.5,18.5,19.1,17.9],"paint":[95.9,94.8,93.2,93.3,96.1,92.9,95.7,95.2,93.6,96.4,95.4,94.4,96.6,95.1,96.2]}},{"b":5,"v":{"total":[12.9,13,13.3,13,12.4,12.9,13.2,13.3,13.1,12.7,12.8,13.2,13.2,12.5,13.5],"script":[1.3,2.5,2.6,1.9,1.5,2.5,2.4,2.4,2.5,1.8,1.6,2.3,2.4,1.7,2.7],"paint":[11,9.8,9.8,10.6,9.9,10.1,9.8,10.4,10,10.1,10.4,9.8,9.5,10.2,9.9]}},{"b":6,"v":{"total":[421,420.8,424.8,419.8,422,425.6,418.9,417.2,421.4,416.8,425.4,422.4,426.7,419.6,422.6],"script":[175.7,177.4,181,175.1,175.8,177.5,175.8,175.9,174.8,176.4,177.5,177.8,182.1,177.6,178.9],"paint":[238.9,237.1,237.7,238.4,239.1,241.4,237.2,235.3,240.2,234.8,241.8,238.6,238.7,235.9,238]}},{"b":7,"v":{"total":[36.7,35.7,36.5,36,36.6,36.8,36.6,38.3,35.6,35.9,36.5,36.1,35.8,36.6,35],"script":[8.6,8.3,8.7,8.2,8.9,9.1,8.1,9.3,7.8,8.1,8.2,8.4,8,8.2,7.8],"paint":[27.2,26.5,26.9,26.9,26.9,26.8,27.5,28.1,26.9,26.9,27.4,26.8,26.9,27.5,26.3]}},{"b":8,"v":{"total":[16.9,17.2,16.1,16,18.3,17.4,17.4,17.7,17.4,16.4,19.2,18,16.8,17.6,15.8],"script":[14.7,14.9,14.6,13.6,16.2,15,15.2,15.4,14.9,14.5,17.7,15.9,14.5,15.2,14.4],"paint":[1,1.1,0.7,1.2,1.5,1.4,1.3,1.2,2.1,0.4,0.5,1,2.1,1.1,0.3]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[5.1]}},{"b":11,"v":{"DEFAULT":[5.6]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[37.2]}},{"b":14,"v":{"DEFAULT":[181.6]}},{"b":15,"v":{"DEFAULT":[49.5]}},{"b":16,"v":{"DEFAULT":[205.1]}}]},
-{"f":93,"b":[{"b":0,"v":{"total":[32.6,33.1,32.5,33.7,33.8,33.4,32.4,33.4,33.1,32.8,33.1,32.2,33.3,33.1,32.1],"script":[8.4,8.8,8.4,9.1,9.3,8.9,8.3,9,9.1,8.4,8.8,8.3,9,8.8,8.2],"paint":[23.6,23.7,23.6,24,23.8,23.9,23.5,23.9,23.4,23.9,23.7,23.3,23.7,23.7,23.3]}},{"b":1,"v":{"total":[36.2,36.6,36.4,36.1,36.7,36.4,36.4,37.5,36.3,36.2,36.2,37.5,36,37.2,36.5],"script":[11.9,11.9,12,11.9,11.8,12,11.9,12.4,11.8,11.8,12,12.5,11.8,12.2,11.9],"paint":[23.8,24.1,23.8,23.6,24.3,23.8,23.9,24.5,24,23.8,23.7,24.5,23.7,24.5,24]}},{"b":2,"v":{"total":[21,19.8,19.8,20.3,21.4,20.1,21.7,21.3,19.8,19.7,19.6,19.9,20.1,20.7,20.8],"script":[7.8,7.7,7.9,7.3,8.7,8.4,8.2,8.2,7.1,7,7.6,7.3,7.6,8.1,8.6],"paint":[10.9,10.4,9.8,10.7,10.2,9.8,11,11.7,11.5,10.2,10.6,11.2,10.6,9.7,10]}},{"b":3,"v":{"total":[9.4,8.6,10,10,8.8,7.7,8.2,8.3,8.5,10,9.2,9.4,9.2,8.8,9,8.6,8.9,9.1,10.1,9.2,8.7,10.1,8.1,10.2,8.8],"script":[5.4,5.4,5.4,5.7,5.3,5,5.4,4.7,5.6,6.6,5.9,5.9,5.6,5.8,5.5,5.5,6,5.8,5.7,6.1,5.4,6,5.2,7.3,4.8],"paint":[1.8,2.3,2,1.4,1.9,1.2,1.1,2.5,0.4,2,2.5,1.8,2.1,1.9,3.2,1.3,1.1,1.8,1,2.1,2.1,2.3,1.2,0.8,1.5]}},{"b":4,"v":{"total":[121.9,121.9,123,122.1,119.3,121.1,121.1,120.8,121.3,118.4,125.1,117.5,122.1,122,120.7],"script":[22.3,24.2,24.7,24,22.5,23.2,22.5,22.1,24.6,21.6,24.2,22.3,22.3,24.5,23.2],"paint":[96.8,95.5,94.7,95.1,93.1,94.9,96.4,96.4,94.5,95.3,98.2,93.3,96.9,95.4,94.5]}},{"b":5,"v":{"total":[14.6,14.8,13.9,14,14.3,13.9,14.5,15,15.3,14,15,14,14.2,14.6,14.5],"script":[3.4,4.3,3.2,3.2,3.3,3.1,3.2,4.1,4.1,3.1,4.1,3.3,3.3,3.8,3.9],"paint":[10.6,10.1,10.1,10,10.3,10,10.6,9.9,10.4,10.3,10.3,10.2,10,10.1,9.4]}},{"b":6,"v":{"total":[435.4,439.7,438.3,441.1,443.7,443.4,441.1,435.5,436.2,437.6,440,435,437.3,440.9,435.3],"script":[188.8,194.1,191.9,192.1,194.3,196.5,191.6,189.1,189.2,189.8,192.6,190.4,189,194.3,191.8],"paint":[240.5,239.7,239.1,242.8,243.1,240.8,243.2,240.7,241.2,241.8,241.4,238.5,241.7,240.2,237.7]}},{"b":7,"v":{"total":[39,39,39.3,39.8,39,38.6,38.8,38.7,38.8,39.1,38.5,38.8,39.3,38.6,39],"script":[11.4,11.4,10.8,10.8,11.4,11.2,10.9,11.4,11.4,11.8,10.9,11,10.9,11.1,11.4],"paint":[26.7,26.7,27.6,28.1,26.7,26.5,26.9,26.5,26.5,26.4,26.7,27,27.5,26.6,26.7]}},{"b":8,"v":{"total":[19,17.6,17.6,17.6,18.8,17.6,18.6,17.9,17.8,15.9,18.7,17,17.9,16.8,18.8],"script":[16.8,15.2,15.9,16,16.7,15.9,16.4,16,15.7,14.1,16.3,14.7,15.5,15.2,16.9],"paint":[1.9,1.5,1.1,0.5,0.8,0.3,0.7,1,0.8,0.9,1.4,0.6,1,1.1,1.2]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[5]}},{"b":11,"v":{"DEFAULT":[5.5]}},{"b":12,"v":{"DEFAULT":[2.6]}},{"b":13,"v":{"DEFAULT":[35.4]}},{"b":14,"v":{"DEFAULT":[185.7]}},{"b":15,"v":{"DEFAULT":[50.8]}},{"b":16,"v":{"DEFAULT":[215.1]}}]},
-{"f":94,"b":[{"b":0,"v":{"total":[31.3,30.8,30.1,30.8,30.6,30.5,30.2,30.7,30.3,30.3,30,30.2,30.5,30.9,31],"script":[7.9,7.9,7.6,7.7,7.5,7.6,7.6,7.7,7.5,7.5,7.4,7.4,7.4,8,7.7],"paint":[22.9,22.3,22,22.6,22.5,22.4,22,22.5,22.3,22.3,22.1,22.2,22.5,22.4,22.8]}},{"b":1,"v":{"total":[36.2,36.4,36.5,36.1,36.3,36.1,35.8,35.9,36.2,36.6,36,36.6,35.9,38.2,36.3],"script":[11.7,11.8,12,11.6,11.8,11.7,11.6,11.7,11.9,12,11.7,12,11.8,12.7,12],"paint":[23.9,24,24,24,23.9,23.8,23.6,23.6,23.7,24,23.7,24.1,23.6,24.9,23.8]}},{"b":2,"v":{"total":[18.1,18.2,18.3,17.5,17,17.6,18.4,18.4,18.9,17.7,18.9,17.8,18.7,18.7,18.2],"script":[5.6,5.5,5.5,5.6,5,5.2,6,5.7,6.3,5.5,6.1,5.7,6.2,5.9,5.9],"paint":[10.6,11.1,11.4,10.2,10.6,10.7,10.3,9.6,10.6,10,10.3,9.4,11.2,10,10.4]}},{"b":3,"v":{"total":[6.3,5.7,6.1,5.4,5.5,6.2,6.4,6,5.2,5.2,5,6.2,5.6,5.8,5.6,5.3,6.6,6,5.6,5.4,4.9,6,6.3,5.4,5.5],"script":[3.8,3.3,3.5,3,3.1,3.2,4,2.7,2.9,2.5,2.4,3.9,2.9,2.8,2.5,3.1,3.9,3.2,3.2,3.1,2.5,3.5,3.7,3,3.6],"paint":[1.1,1.9,1.8,1.5,1.4,2,0.9,1.4,2.1,1.8,1.9,2.1,1.1,2.5,1.5,1.3,1.2,1.5,1.4,2.2,1.9,1.7,2.5,1.3,1.3]}},{"b":4,"v":{"total":[115,115.2,118.3,116.1,114,115.5,117.5,117.8,114.3,117.7,117.1,114.4,115.2,115.4,117.2],"script":[18.3,18.8,19.8,19.3,19,18.4,18.5,20.3,19.2,17.6,19.6,18.4,18.6,17.8,19.2],"paint":[94,94.1,96.3,95.6,93.5,94.3,96.8,95,92.6,96.7,94.6,95.1,94.3,95.5,96.5]}},{"b":5,"v":{"total":[13.1,13,13.1,12.7,13.1,13.1,13.2,13.6,13.4,13.5,13.6,13.6,12.3,12.8,12.7],"script":[1.7,2.5,2.1,1.8,1.9,2.1,2.3,2.5,2.5,2.4,2.6,2.7,1.9,1.8,2],"paint":[10.5,9.4,10.2,10.6,10.4,10.5,10.2,10.5,10.2,10.4,9.7,10.4,10.1,10,10.1]}},{"b":6,"v":{"total":[422.3,430,431.1,428,425.5,432.8,427.3,426,433.1,427,424.9,425.1,429.3,426.3,427.8],"script":[179.2,183.7,188.4,182.1,179,187.3,181.6,182.2,186.8,181.5,179.8,181.1,187.9,182.2,182.1],"paint":[237,240,237,239.6,240.2,239,239.9,237.8,240.3,239.5,239.1,237.5,235.8,238.2,239.1]}},{"b":7,"v":{"total":[37.4,37.5,37.5,36.7,37,36.2,37.1,36.8,36.7,37.7,37.5,36.7,37,36.8,37.6],"script":[9.3,9.7,9.1,8.7,9,8.6,9.1,8.7,8.8,9.3,9.1,8.9,9.1,8.9,9.4],"paint":[27.2,26.9,27.4,27,27,26.7,27.2,27.2,27,27.5,27.5,26.9,26.9,27,27.3]}},{"b":8,"v":{"total":[20.5,19.3,21.5,19.8,20.1,20.1,20.1,20.3,20,20.5,20.8,19.5,19.8,20.6,23.3],"script":[18.4,16.9,19,17.4,18.2,17.3,18,17.6,17.9,18.1,18.1,18.1,18.3,18.3,19.8],"paint":[0.9,1.6,1.3,1.2,0.3,1.6,1.8,1.6,1.5,1.6,2.1,0.3,0.3,1.1,2.8]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[6.2]}},{"b":11,"v":{"DEFAULT":[6.8]}},{"b":12,"v":{"DEFAULT":[2.1]}},{"b":13,"v":{"DEFAULT":[48.1]}},{"b":14,"v":{"DEFAULT":[182.9]}},{"b":15,"v":{"DEFAULT":[49.8]}},{"b":16,"v":{"DEFAULT":[211.7]}}]},
-{"f":95,"b":[{"b":0,"v":{"total":[47.3,46,40.8,45.9,44.8,45.4,46.9,47.3,43.7,44.4,43.1,42.8,47.1,44.4,44.4],"script":[18.3,18.6,16.9,17.7,17.9,18.2,18,17.7,18.2,17.9,17.3,16.9,18.1,17.3,17],"paint":[22.4,22.3,22.4,22.9,22.5,22.5,22.7,22.8,22.5,22.4,22.9,22.5,22.5,22.6,22.6]}},{"b":1,"v":{"total":[50.3,49.5,49.4,48.8,49.6,53,48.8,48.9,46,48.1,48.8,47.3,49.7,50,47.7],"script":[21.2,20.9,21.5,21.6,21.2,21,20.8,21.6,20.9,21.1,21.1,21.6,21.4,21.5,21],"paint":[23.1,23.9,24,23.8,24,24.4,23.3,23.7,24.1,23.9,24,24.1,23.6,23.8,24.1]}},{"b":2,"v":{"total":[37,21.9,21.3,38.6,23,38.5,38.6,38.5,23.3,37.2,38.6,22.5,37.6,39.5,38.2],"script":[10.1,9.5,9.7,10.8,11.3,10.9,10.8,10.2,11.1,8.7,10.7,10.5,10.8,10.4,10.6],"paint":[10.9,12.2,10.6,12.3,11,11.6,10.8,11.4,11.1,11.4,11.8,11.9,10.3,13.7,11.6]}},{"b":3,"v":{"total":[12.9,13.5,11.4,8.7,14.7,10.5,6.4,9.2,9.4,13.5,12.6,8.2,14.4,7.2,9.3,10.9,13.7,5.6,10.6,15.1,14.4,6,12.5,8.3,11.1],"script":[1.6,2.2,2.1,2.4,2.3,3,3,4.9,3.1,2.5,2.4,2.9,2,2.1,3.1,2.6,2.4,2.9,2.7,2.7,2.5,3.3,2.8,3,3.2],"paint":[2.3,2,2.2,1.4,0.9,1.1,1.8,2.1,1.3,1.4,2.2,1.5,1.4,2.4,1.7,1,1.4,0.7,1.3,1.9,2.3,0.6,2.1,1.9,1.7]}},{"b":4,"v":{"total":[134.1,116.6,132.9,135.7,137.6,117.4,132.8,117.2,137.3,138.9,135.5,137.3,134.8,119.6,133],"script":[22.9,21.5,22.1,23.3,23.5,23.8,21.3,23.1,24.3,25.9,23.6,25.6,21.3,22.7,22.6],"paint":[95.1,94.3,92.3,95.7,97.9,93.5,94.8,93.6,95.9,96.8,95.7,95,96.6,95.3,93.2]}},{"b":5,"v":{"total":[23.3,24.6,16.6,19.3,22.9,23.2,18.5,16.5,22.1,17.5,22.7,17.9,22,21.7,22.5],"script":[4.5,4.8,4.3,3.9,4.2,4.1,3.7,4.7,3.7,4.5,4.5,3.9,3.7,4.6,5.1],"paint":[10.7,11.1,10.6,11,10.2,10.3,10.8,10.1,11.3,10.6,10.8,11.2,10.9,10.6,11]}},{"b":6,"v":{"total":[496.8,486.9,488.6,485.6,488.4,492.1,488.5,485.6,479.8,489.5,484.1,490.6,487.2,481.7,482.8],"script":[242.5,241.5,241.6,240.8,244.3,249.2,244.1,239.8,237.5,243.1,240.2,244.3,240.1,237.9,240],"paint":[244.7,242.1,242.9,242.1,241.2,240.3,241.3,242.4,239.6,242.1,240.7,240.9,242.6,239.7,239.6]}},{"b":7,"v":{"total":[52.8,52.2,52.9,52.7,47.3,47.8,53.7,52.5,52.4,53.1,52.6,52.9,52.7,52.4,47.6],"script":[19.6,19.7,20.1,19.7,19.9,19.8,19.7,19.8,19.4,20.4,19.8,20.1,20.2,19.6,19.8],"paint":[27,27.3,27.5,27.7,27.1,27.6,28.8,27.4,27.6,27.2,27.5,27.6,27.3,27.6,27.5]}},{"b":8,"v":{"total":[37.3,19.7,20.8,21,37.8,38.7,37.9,38.9,21.9,37.8,20.7,35.9,19.6,20.6,23.3],"script":[20.1,17.5,18.9,18.2,20.8,21.7,20.6,21.1,19.5,20.8,18.9,19,18.3,18.8,21.7],"paint":[0.7,1.3,0.9,2.7,0.9,0.3,1.3,1.4,1,1.1,0.8,1.8,1.2,1.8,1.5]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[6.4]}},{"b":11,"v":{"DEFAULT":[7.1]}},{"b":12,"v":{"DEFAULT":[3]}},{"b":13,"v":{"DEFAULT":[42.1]}},{"b":14,"v":{"DEFAULT":[274.8]}},{"b":15,"v":{"DEFAULT":[64.4]}},{"b":16,"v":{"DEFAULT":[300.4]}}]},
-{"f":96,"b":[{"b":0,"v":{"total":[31.2,31.1,30.9,31.3,31.2,31.4,31.3,31.5,31.3,31.6,31.6,31.1,31.4,30.9,31],"script":[7.3,7.1,7.2,7.3,7.1,7.1,7,7.5,7.2,7.5,7.2,7.1,7.2,6.9,7.1],"paint":[23.4,23.5,23.2,23.5,23.6,23.7,23.7,23.5,23.5,23.6,23.8,23.5,23.4,23.4,23.3]}},{"b":1,"v":{"total":[34.5,36,34.2,35.4,34.9,35.7,34.2,34.8,34.4,34.7,34.7,34.4,34.2,34.8,35.2],"script":[10.1,10.3,9.9,9.5,10.7,10.3,10,9.6,10.1,10.2,10.1,10.2,10,10.2,10.2],"paint":[23.8,25.1,23.7,25.3,23.7,24.8,23.7,24.4,23.8,23.9,24,23.6,23.6,24,24.4]}},{"b":2,"v":{"total":[12.3,12.9,12.7,12.5,12.4,12.7,12,12.7,12.3,12.2,12.7,12.8,13.3,14.4,13],"script":[1.5,1.6,1.3,1.7,1.1,1.3,1.5,1.1,1,1.3,1.4,1.1,1,1.5,1.3],"paint":[9.5,10.2,9.9,10,10,10.2,9.3,10.3,10.3,9.4,10.1,9.9,11.3,11.8,10.3]}},{"b":3,"v":{"total":[6,2.9,2.7,2.9,3.1,2.9,3.7,2.8,3,3.3,3.3,2.6,2.7,2.8,3.3,3,2.9,2.8,2.3,2.8,3.4,3.1,3.2,3.1,3.3],"script":[1.1,1.2,0.9,1.1,1.3,1,1,1,1.2,1.2,1.2,0.3,0.9,0.2,0.9,0.9,1,0.6,0.2,1,0.9,0.9,0.9,1,1.1],"paint":[1.3,1,1.7,1.4,0.9,1.8,1.4,1,1.7,1.8,1.3,1.8,0.9,2.4,1.3,0.5,1.2,1.2,1.9,0.7,1.6,1.1,1.9,1.9,1.2]}},{"b":4,"v":{"total":[15.6,14.5,14.3,14.2,14.6,14.6,14.4,14,15.7,14.1,14.3,14.5,14.5,14.4,14.3],"script":[1.5,0.9,1,1.4,1.5,1.2,1.1,1.7,1.5,1.5,0.9,0.9,0.9,0.8,0.9],"paint":[13.1,12.7,12,11.3,11.7,11.5,11.9,11,12.7,11.4,11.5,12.6,12.6,11.9,12.4]}},{"b":5,"v":{"total":[10.5,10.6,11.3,11,11,10.7,10.8,11.3,11.1,11,11.1,11,11.1,10.5,10.9],"script":[0.6,0.3,0.6,0.6,0.6,0.4,0.5,0.6,0.8,0.6,0.6,0.6,0.5,0.6,0.6],"paint":[9.3,9.7,9.7,9.7,10,9.7,9.4,10.1,9.7,9.8,9.7,9.7,9.7,9,9.7]}},{"b":6,"v":{"total":[322.8,317.5,320.9,317,318.8,319.8,317.8,319.3,317.8,319,320.7,318.6,320.2,317,316.4],"script":[72.9,71.8,73.4,71.5,72,72.4,71.4,72.7,71.6,72,71.6,72.5,72,71.8,71.2],"paint":[242.5,239.8,241.6,240,240.8,241.1,240.5,240.6,240.3,241.2,242.9,239.8,242.1,239.4,239.4]}},{"b":7,"v":{"total":[36.1,35.5,35.3,35.6,35.9,36.3,35.5,35.8,35.5,36,35.9,36.5,35.6,35.9,35.3],"script":[7.7,7.6,7.9,8,7.9,8,8.1,7.9,8,7.9,8.3,7.7,8,8,7.6],"paint":[27.4,27,26.6,26.7,27.1,27.4,26.6,27,26.6,27.1,26.7,27.9,26.7,26.9,26.8]}},{"b":8,"v":{"total":[10.1,10.3,10.1,10.8,12.1,10.9,10.5,10,10.6,11.9,12,10.4,10.2,10.5,9.4],"script":[8.3,7.9,9,8.5,8.9,8.8,8.6,8,8.7,9.9,9.2,8.6,8.8,8.5,7.4],"paint":[0.3,1.7,0.9,0.7,1.8,1,0.7,1,0.9,1,1.9,0.7,0.2,1.7,0.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[2.5]}},{"b":13,"v":{"DEFAULT":[19.2]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[44.8]}}]},
-{"f":97,"b":[{"b":0,"v":{"total":[30.6,30,29.6,30.6,30.7,29.7,30.5,30.6,30.3,29,30.3,30.6,29.9,30.1,29.2],"script":[6.2,5.9,5.8,6.6,6.5,5.7,5.8,6.1,6.1,5.5,6.2,6.1,6.1,6,5.5],"paint":[23.9,23.6,23.3,23.5,23.7,23.5,24.1,23.9,23.6,23,23.6,24,23.3,23.6,23.3]}},{"b":1,"v":{"total":[40.7,42.1,40.9,41.3,40.5,40.5,40.7,40.8,40.7,40.7,40.1,40.4,41.6,40.3,41.9],"script":[17.1,18.1,17.1,17.6,16.9,17,16.9,17.2,17.1,17.2,16.9,16.7,17.1,16.9,18.6],"paint":[23.1,23.4,23.2,23.2,23.1,22.9,23.2,23,23,22.9,22.7,23.1,24,22.8,22.8]}},{"b":2,"v":{"total":[15,14,14.9,14.3,14.6,15.2,14.6,14.8,14.6,14.9,14.4,14.9,15.5,15,17.2],"script":[3.7,3.1,3.2,3.4,3.4,3.4,3.2,2.8,3.3,3.4,3.5,3.5,4.2,3,4],"paint":[9.3,10,10.8,9.8,9.3,10.8,10.3,9.9,10,10.5,8.9,10.2,10.2,9.8,11.1]}},{"b":3,"v":{"total":[5.6,4.3,4.2,5.1,5,5.8,5.1,5.2,4.8,4.7,4.2,5.2,4.6,3.8,6,4.6,4.9,5.7,4.6,4.9,4.9,5,4.9,5.1,4.8],"script":[1.9,2.5,2.1,2.5,2.5,3.5,2.3,3.1,2,2.8,2,2.7,2.7,2.3,3.8,2.2,2.4,3.4,3,2.2,2.5,2.6,2.5,2.3,2.5],"paint":[2.2,1.1,1.2,1.4,2,1.2,1.5,1.1,2.2,1,1.6,2.1,1,1.3,2,2.2,2.3,1.8,1.4,2.2,1.6,1.5,1.3,1.7,0.9]}},{"b":4,"v":{"total":[16.9,17.4,17.1,17.7,18,16.9,17.3,15.6,16.5,17.6,17.3,16.7,16.1,17.6,16.2],"script":[2.6,3.7,3.3,3.6,3.7,3.3,4,2.5,2.9,3.9,3.5,3.1,2.3,2.5,3.6],"paint":[12.6,12.8,13.5,12.9,13.1,12.6,12.4,12.2,12.7,12.4,12.4,12.5,13.2,14.2,11.3]}},{"b":5,"v":{"total":[12,12.1,12.6,11.9,13.1,12.1,11.9,12.7,12,12.1,12.4,12.1,12.5,11.6,12.1],"script":[1.2,1.6,1.8,1.4,2.3,1.3,1.4,1.8,1.5,1.2,1.9,1.7,1.9,1.2,1.3],"paint":[10.2,10.1,9.9,9.9,10.2,10.3,9.9,10.2,9.9,10.2,9.9,9.6,10.2,9.8,10.1]}},{"b":6,"v":{"total":[315.1,313.4,316.2,314.8,313.7,314,313.6,315.5,313.4,314.1,314,312.7,316,312.3,313.1],"script":[69.3,70.8,69.7,70.4,66.2,71.5,71,69.5,69.7,66,66,69.9,69.5,69.6,66.2],"paint":[239.8,236.6,240,238.5,241.3,236.8,236.8,240.1,237.7,242,242,237,240.7,236.9,240.8]}},{"b":7,"v":{"total":[46.4,46.5,46,47.3,47.7,47.6,47.7,48.2,46,46.7,47.8,47.3,46.9,48.4,47.4],"script":[18.7,19.4,18.9,19.8,20.3,19.6,20.2,20.3,19,18.9,19.8,20,19.7,19.5,19.9],"paint":[26.8,26.2,26.2,26.5,26.5,27.1,26.6,27,26.2,27,27.1,26.5,26.3,28,26.6]}},{"b":8,"v":{"total":[10.1,10.1,11.6,10.1,11,9.8,10.1,10.1,10.4,10.4,11.7,9.6,10.6,10.2,10.1],"script":[8.1,7.9,9.1,7.9,8.3,8.1,7.7,7.7,8.5,7.8,9.5,7.7,8.7,8.5,7.7],"paint":[1.6,0.7,1.6,1.8,2.3,0.2,1.5,1.4,0.9,1.6,0.8,1.1,0.4,0.6,1.4]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.5]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[29]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[43.7]}}]},
-{"f":98,"b":[{"b":0,"v":{"total":[27,27.5,27,27.4,27.6,27.9,27.1,27.1,27.1,27.1,27,27.1,27.4,27.3,27.6],"script":[3.7,4.1,3.6,3.7,3.9,3.9,3.7,3.7,4,3.7,3.8,3.9,3.8,3.9,3.8],"paint":[22.9,23.1,23,23.3,23.3,23.6,23,22.9,22.8,23,22.8,22.8,23.2,23,23.4]}},{"b":1,"v":{"total":[35,35.2,36.2,35,34.4,34.9,34.7,34.5,34.7,34.9,34.6,34.5,35.5,35,34.7],"script":[10.2,10.3,10.8,9.9,9.8,10,10.4,10,10.1,10.2,9.9,10.1,10.1,10.4,10],"paint":[24.3,24.3,24.8,24.4,23.9,24.3,23.8,23.9,24,24.1,24.2,23.7,24.8,24.1,24.1]}},{"b":2,"v":{"total":[13.7,13.8,14.3,13.7,13,14.4,13.5,13.6,13.4,13.4,13.8,13.6,14.6,13.2,12.9],"script":[2.3,2.4,2.4,2.4,2.1,2.3,1.8,2.6,2.3,1.8,2.1,1.5,2.7,2.1,1.9],"paint":[9.9,10.2,10.7,10.2,10,10.3,10.8,9.5,10,10.6,9.5,11.1,11.3,9.7,9.4]}},{"b":3,"v":{"total":[2.8,3.3,3.4,3.9,3.1,3.1,3,3.5,3.3,3.1,2.8,3.4,3.6,3.2,3.1,3.5,4.2,3.3,3.4,3.2,3,3.8,3.1,3.1,3.5],"script":[1.4,1.3,1.3,1.4,0.9,1,1.1,1.5,1.5,1.3,0.9,1.7,0.9,1.3,1.3,1.6,2.1,1.4,1.4,1.6,1,1.8,1,1.8,1.2],"paint":[0.7,1.2,1.3,1.3,1.1,1.9,0.4,1.9,1.7,1,1.1,1.5,2.6,0.3,1.4,1.4,1.5,1.8,1.9,1.5,1.8,1.8,1.1,0.7,2]}},{"b":4,"v":{"total":[14.3,15.1,15.4,14.5,15.3,14.3,15.2,15.2,14.6,14.8,14.6,14.9,14.3,15.2,14.8],"script":[1.4,0.9,2,1.1,1.3,1.5,1.7,1.7,1.4,1.7,1,1.4,1.5,2,1.5],"paint":[11.3,12.1,12.3,12.5,13.1,11.6,11.6,12.5,12.2,11.9,12.3,12,11.7,11.6,12.1]}},{"b":5,"v":{"total":[11.3,11.5,11.1,11.1,11.5,11.5,11.1,11.5,11,11.2,12.4,11.4,11.2,11.3,11.5],"script":[0.7,0.8,0.7,0.7,0.8,0.8,0.7,0.7,0.7,0.7,1.6,0.7,0.7,0.6,0.7],"paint":[10,9.7,10,9.7,10.2,10.2,10.1,10.1,9.4,10,10.2,10.1,10.1,9.9,10]}},{"b":6,"v":{"total":[296.1,294.9,294.2,302.2,296.4,292.6,301.5,292.9,293.5,294.4,296,291.9,292.5,293.6,294],"script":[53.6,52.7,52.9,53.4,53.5,51.2,52.8,52.2,52.1,52.3,53.4,51.5,52.3,52.4,52.6],"paint":[237.1,236.4,235.3,242.6,237.4,235.4,242.1,234.8,235.6,236.3,237.1,234.4,233.9,235.6,235.9]}},{"b":7,"v":{"total":[33.6,33.2,32.8,33,32.9,33.5,32.9,33.1,32.4,32.3,32.9,33.1,34.7,33.6,32.9],"script":[5.1,5,4.9,4.5,5.3,5.1,5,4.8,4.3,4.9,4.8,4.6,5.3,5.1,5],"paint":[27.7,27.2,27.2,27.8,26.7,27.5,27,27.5,27.4,26.7,27.4,27.8,28.5,27.6,27]}},{"b":8,"v":{"total":[10.4,10.1,11.3,10.9,10.6,11.1,10,10.5,10.8,11.1,11.4,10.5,10.1,11.1,10.9],"script":[8.2,8.3,8.5,8.5,8.7,9.2,8.5,8.9,8.3,8.2,9.6,8.3,8.3,9.4,8.8],"paint":[0.4,1.6,1.8,1.5,1.7,0.6,0.2,0.3,1,1.8,0.9,1.9,0.9,0.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[22.7]}},{"b":14,"v":{"DEFAULT":[4.8]}},{"b":15,"v":{"DEFAULT":[2.4]}},{"b":16,"v":{"DEFAULT":[37.4]}}]},
-{"f":99,"b":[{"b":0,"v":{"total":[28.5,28.3,28.1,27.9,28.6,28,28.4,28.5,27.9,28.5,28.2,28.1,28.1,28.3,28.3],"script":[4.5,4.1,4.2,4.2,4.3,4.1,4.3,4.3,4.2,4.5,4.2,4.1,4.1,4.2,4.2],"paint":[23.6,23.8,23.4,23.4,23.9,23.4,23.8,23.8,23.4,23.6,23.6,23.5,23.6,23.6,23.7]}},{"b":1,"v":{"total":[36.1,36.1,35.9,37.8,36.6,35.7,37.1,36.3,36.4,35.9,35.7,37.6,37.1,37.1,36.8],"script":[11.8,11.2,11.4,12.4,11.6,11.3,11.6,11.9,11.7,11.4,11.4,11.7,11.8,12.1,11.5],"paint":[23.8,24.2,23.9,24.9,24.5,23.9,24.9,23.8,24.1,23.9,23.7,25.3,24.8,24.4,24.7]}},{"b":2,"v":{"total":[12.8,13.1,13.5,12.9,13.6,12.9,13.2,11.6,13.1,13,12.7,13.1,13.2,13,13.1],"script":[1.9,1.8,1.9,1.6,2.3,1.3,1.6,1.3,1.9,1.8,1.6,2.1,1.9,2,1.6],"paint":[9,9.7,10.3,10.3,10.4,10.6,10.9,9.1,9.8,9.8,10.5,9.8,9.6,10,10.8]}},{"b":3,"v":{"total":[1.7,2.8,2.2,2.3,2.1,2.2,3,2.5,1.9,2.9,2.4,2.5,2.2,2.4,2.8,2.4,2.3,2.1,2.2,1.9,2.1,3.8,2.5,2.6,2.6],"script":[0.1,1.1,0.7,0.1,0.6,0.1,0.8,0.7,0.1,1.2,0.8,0.9,0.6,0.1,0.7,0.6,0.1,0.5,0.6,0.6,0.6,0.9,0.1,0.6,0.8],"paint":[0.7,1.5,1.3,1.1,1.4,2,0.6,1.7,1.4,1.4,1.5,1,1.1,1.4,1.9,1.1,1.3,1.5,1.4,0.6,1.4,0.4,1.3,1.5,1.7]}},{"b":4,"v":{"total":[14.1,14.3,15.2,15.4,14.8,14.8,14.8,14.6,14.5,13.8,14.7,15.2,15,14.9,15],"script":[1,0.9,1.8,1.1,0.9,0.2,1.5,1.4,0.2,1.1,1,0.9,0.9,1.2,1.2],"paint":[12.1,12.1,12.5,13.2,11.8,13.4,11.9,11.4,13,10.6,12.7,12.3,13.1,12.8,12.9]}},{"b":5,"v":{"total":[11.2,11.4,11.4,11.5,11.2,11.1,11.5,10.6,11.3,11.5,11,11.8,11.3,11.3,10.9],"script":[0.5,0.6,0.6,0.6,0.4,0.2,0.6,0.3,0.5,0.6,0.6,0.6,0.3,0.6,0.5],"paint":[9.9,9.9,10.2,10.4,9.8,9.9,9.7,9.8,10.2,10.3,9.5,10.6,10.4,10.1,10]}},{"b":6,"v":{"total":[305.2,301.4,301.7,303.6,299.5,302.9,301.5,303.6,299.9,301.7,304.4,304.6,300.9,304.5,302],"script":[56.1,54.9,55.1,54.2,54.3,55.6,55,54.6,54.7,54.2,56.7,57.3,53.9,55,55],"paint":[242.9,240.1,240.5,242.4,239.4,241,239.8,241.7,239.1,241.4,241.4,241,240.8,243.4,240.9]}},{"b":7,"v":{"total":[31.5,32.4,32.5,31.8,32.9,32,32.3,32.9,32.3,31.6,31.6,32.9,32.1,33.3,32.1],"script":[4.4,4.7,4.4,4.4,4.6,4.3,4.3,5,4.4,4.4,4.2,5,4.5,4.6,4.3],"paint":[26.5,27,27.3,26.7,27.6,26.9,27.2,27.3,27.1,26.5,26.6,27.2,26.9,28,27]}},{"b":8,"v":{"total":[10.4,10,10.3,11.6,11.5,11.5,10.4,11.3,11.2,10.9,11.7,10.6,11,10.7,10.7],"script":[8.9,7.7,8.5,9.5,8.9,8.8,8.7,8.8,8.5,8.6,9.4,8.5,8.8,8.7,8.6],"paint":[0.2,1.2,1.4,1.1,1.9,1.9,0.2,1,0.8,1.6,0.8,0.7,0.6,1.6,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.3]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[25.9]}},{"b":14,"v":{"DEFAULT":[5.4]}},{"b":15,"v":{"DEFAULT":[2.6]}},{"b":16,"v":{"DEFAULT":[40.8]}}]},
-{"f":100,"b":[{"b":0,"v":{"total":[28.8,28.7,29.1,29.3,28.7,29.1,28.6,28.6,28.9,28.6,29,29,29.6,28.6,28.6],"script":[5.9,6.3,6.2,6.1,5.8,5.9,5.8,6,6.1,5.8,6.1,5.9,6.5,5.9,5.8],"paint":[22.3,21.9,22.4,22.7,22.3,22.6,22.3,22.1,22.2,22.3,22.4,22.6,22.6,22.2,22.2]}},{"b":1,"v":{"total":[34.4,33.1,33.6,33.1,32.9,33.6,33.7,33.2,33.1,32.9,33.7,33,33.2,34.5,33.1],"script":[9.3,8.2,8.6,8.3,8.3,8.4,8.3,8.1,8.2,8.2,8.5,8.3,8.3,8.2,8.1],"paint":[24.6,24.3,24.4,24.2,24,24.7,24.8,24.5,24.3,24.2,24.8,24.2,24.4,25.8,24.4]}},{"b":2,"v":{"total":[12.5,14.3,12,12.7,12.6,12.7,12.1,12.5,11.9,13,12.2,12.3,12.3,13,12.4],"script":[1.4,1.6,1.2,1,0.9,1,1.2,1.3,1.2,1.2,0.7,0.8,1,1.7,1],"paint":[10.5,11.1,9.5,10.6,8.9,10.4,9.6,10.2,9,10.8,10.6,9.3,10,10.3,9.9]}},{"b":3,"v":{"total":[3.2,3.4,2.9,3.3,2.5,3,2.9,3.1,2.4,3.4,2.4,2.9,3.6,2.7,2.5,2.8,2.9,2.5,3.5,2.6,2.7,2.9,3.8,2.8,2.1],"script":[1,1.4,1.1,1.2,1,1.1,0.6,0.2,1.1,1.4,0.7,0.9,1.1,0.8,1.3,1.2,0.8,0.7,1.5,1,0.9,0.6,0.9,1.1,0.8],"paint":[1.6,1.3,1.5,1.1,1.4,1,1.4,2.8,0.7,1.9,1.6,1.9,1.5,0.9,1.1,1.5,2,1.3,1.5,1.4,1.2,1.4,1.3,1.1,0.7]}},{"b":4,"v":{"total":[16,15.9,16,16,17.7,17.2,15.8,14.9,15.6,15.6,15.5,15.1,15.7,15.3,15.9],"script":[2.9,2.1,2.6,2.3,2.3,2.2,2.3,1.9,1.8,2.2,2.1,2.1,1.9,2.1,2.5],"paint":[12,12.7,12,12.3,14.8,13.3,12.2,12.7,12.5,12.1,12,11.1,12.3,12,11.9]}},{"b":5,"v":{"total":[12.2,12.1,11.8,11.9,12.1,11.9,11.8,12,11.6,11.9,11.9,12.1,11.9,12.1,11.9],"script":[1.2,1.3,1.2,1,1.1,1.2,0.9,1.2,1.2,1.2,0.9,1.2,1.2,1.2,1],"paint":[10.1,10.2,10.1,10.2,10.4,10.1,10.3,10.2,9.9,10.2,10.5,10.4,10.1,10.2,10.3]}},{"b":6,"v":{"total":[319.9,320.3,316.2,328.1,324.6,317,317.6,327.4,325.8,327.7,319.4,329.2,332.3,330.3,326.5],"script":[73.5,73.6,71.9,71.7,74.1,71.8,72.9,73.7,71.6,73.2,72.9,75.2,74.5,72,72.1],"paint":[239.7,240.6,238.5,250,244.8,238.8,238.7,247.2,247.8,247.7,240.1,248.2,251,251.3,248.3]}},{"b":7,"v":{"total":[35,33.8,34.9,33.8,35,34.1,34.7,34.3,34,34.4,34.2,34.2,33.7,33.9,34.7],"script":[7,6.8,7.2,7,7.3,7,7.2,6.9,7,6.9,7.2,7,6.9,7,7.1],"paint":[27.1,26.1,26.8,26,26.8,26.3,26.7,26.5,26.1,26.6,26.2,26.3,26,26,26.7]}},{"b":8,"v":{"total":[8.6,9.9,9.4,10,10.4,8.2,10.4,9.2,8.9,8.9,9.8,9.4,10.6,10.2,9.5],"script":[7.6,7.6,7.4,8.5,8.8,6.5,8.6,7.9,7.3,6.7,8,7.3,8.3,8.3,7.6],"paint":[0.9,1.2,1.1,0.7,0.2,1.6,0.9,0.2,0.2,0.7,0.3,0.2,1.7,0.9,0.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.9]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[21]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[44.4]}}]},
-{"f":101,"b":[{"b":0,"v":{"total":[33,32.9,32.3,32.3,32,32.4,32.3,32.6,32.1,31.9,32.4,32.2,32,32.6,32.2],"script":[7.7,8,7.8,7.9,7.8,7.6,7.7,7.8,7.7,7.6,7.7,7.7,7.7,7.7,7.7],"paint":[24.7,24.3,24,23.9,23.7,24.3,24.1,24.3,23.8,23.8,24.2,24,23.8,24.3,24]}},{"b":1,"v":{"total":[36.1,35.2,37,35.5,37.6,35.4,36.5,35.7,37.1,35,36.1,36.3,36.5,35,36.9],"script":[11.5,11.3,11.2,11.2,12.5,11.3,12.4,12,11.2,11.3,12,12,12.3,11.2,12.1],"paint":[24,23.4,25.2,23.7,24.5,23.5,23.6,23.2,25.2,23.2,23.5,23.7,23.6,23.2,24.2]}},{"b":2,"v":{"total":[15.9,15.9,17.8,17.2,17.4,16.3,16.2,18,18,17,16.9,16.5,16.3,17.9,16],"script":[4.9,4.9,5.3,4.9,5.2,5.1,4.9,5.5,5.5,5.3,5.2,4.9,4.7,5.4,4.8],"paint":[9.5,8.5,11,11.1,11.1,9.7,9.7,11.7,10.7,9.3,9.6,10.6,10.5,10.1,10]}},{"b":3,"v":{"total":[8.9,7.3,6.8,7.1,6.9,8.1,8.8,7.6,8.1,7.7,8.3,7.4,6.7,7.7,7.9,7.9,6.7,8.1,8.7,8.7,7.7,7.2,8.2,6.7,7.9],"script":[5.7,4.8,4.8,4.9,4.5,5.3,5.3,5.5,5.8,5.1,6,4.5,4.8,5.4,5.3,5.1,4.5,5.2,5.8,5.5,5.1,4.7,5.3,5,5],"paint":[1.3,1.9,1,2,1.8,1.3,2.5,1,0.4,0.8,1.3,1.5,1,1.1,1.6,0.7,1,1,2.1,1.9,0.4,1.1,1,0.7,1.9]}},{"b":4,"v":{"total":[20.7,20.7,20.3,19.8,20,20.2,19.5,19.2,17.9,22.5,21.7,20.4,20.6,20.3,20.6],"script":[4.7,5.6,4.8,4.8,5.3,5.2,5.1,4.9,4.3,5.7,5.5,5.6,6.6,6.1,5.7],"paint":[13.5,13.4,13.5,13.8,12.3,13.7,13,12.4,12.7,14.5,15.1,13,11.9,12.3,13.3]}},{"b":5,"v":{"total":[13.3,14,13,14,14,13.5,13.5,13.7,13.9,13.6,13.7,13.4,13.2,13.1,13.3],"script":[2.4,3,2.2,2.4,2.8,2.6,2.6,2.7,2.7,2.7,2.7,2.4,2.7,2.4,2.7],"paint":[10.3,10.2,10.4,10.9,10.6,10,10.1,10.5,10.1,10.2,10.4,10,9.5,10.1,9.8]}},{"b":6,"v":{"total":[337.3,336.4,333.2,335.8,335.5,336.3,334.8,338.4,338.5,337.1,337.3,339.3,336.5,333.2,334.5],"script":[88.1,86.5,86.1,87.6,88.8,87.7,87.6,87.7,87.8,88,86.8,88.3,86.6,88,86.8],"paint":[241.7,242.3,240.1,241.3,239.7,241.5,240.2,243.2,243.6,242.6,243.4,243.7,243.4,238.4,240.8]}},{"b":7,"v":{"total":[37.7,37.8,37.5,38.6,38.2,37.4,37.4,37.4,38.2,38.6,37.7,37.5,37.4,38.6,37.1],"script":[9.6,9.4,9.2,9.4,9.4,9,9.1,9,9.9,9.6,9.1,9.1,9.2,9.5,9.1],"paint":[27.2,27.5,27.3,28.2,27.9,27.5,27.4,27.4,27.4,28.1,27.4,27.4,27.3,28,27.1]}},{"b":8,"v":{"total":[17.2,15,18.6,16.3,17.2,15.9,17.2,16,16.2,17.8,17.2,15.8,15.8,14.9,16.2],"script":[14.9,14,16,14.5,15.1,14.5,15,13.7,13.9,16.4,15,14.3,13.7,13.3,14.2],"paint":[0.8,0.9,0.9,0.8,1.9,0.3,1.2,2.1,1.3,0.3,1.6,0.6,0.2,0.6,0.7]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[30.8]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.5]}},{"b":16,"v":{"DEFAULT":[50.2]}}]},
-{"f":102,"b":[{"b":0,"v":{"total":[29.4,29.1,29,29.3,28.7,29.1,29.2,29.8,29.1,29.3,29.9,29,28.9,29.1,28.9],"script":[5,4.9,4.9,4.9,4.9,4.8,4.9,5,5,4.9,5.1,4.9,4.9,4.8,4.9],"paint":[24,23.8,23.7,24,23.4,23.9,23.9,24.5,23.8,24,24.3,23.7,23.6,24,23.6]}},{"b":1,"v":{"total":[32.1,31.5,32.3,31.7,32.6,32.7,31.2,34,31.2,31.7,32.4,32.5,32.1,31.9,31.9],"script":[8,7.7,8.4,7.8,8,8.3,7,8,7.2,7.7,8,8,7.8,7.7,7.8],"paint":[23.6,23.2,23.4,23.4,24.1,23.8,23.7,25.4,23.4,23.3,23.8,23.9,23.7,23.6,23.5]}},{"b":2,"v":{"total":[12.3,12.8,13.9,12.1,12.6,12.1,13.8,14.1,13.3,12.2,12.9,12.7,13.8,13.1,13],"script":[1.4,1.9,3.2,1.5,2.2,1.7,1.7,2.3,1.9,1.3,1.8,1.8,1.8,1.2,1.8],"paint":[10,9.8,9.5,9.5,9.3,9.5,10.9,10.9,9.3,9.9,9.8,9.9,10.2,8.9,9.9]}},{"b":3,"v":{"total":[4.6,3,3.5,2.2,3,2.3,3.1,2.5,3,2.3,2.8,3,2.5,1.9,2.3,2.7,2.1,2.7,3.1,2.5,2.9,2.3,2.2,4.2,3.3],"script":[0.2,0.1,1.1,0.8,0.9,0.1,0.5,0.8,1.1,0.6,0.1,0.1,0.5,0.1,0.5,0.1,0.2,0.1,0.8,0.2,0.1,0.1,0.1,0.5,0.8],"paint":[1.1,2.7,1.5,1.3,1,0.5,1.6,1.5,1.7,1.2,2.6,1,1.1,1.6,1,1.6,1.1,2.4,2.2,1.4,1.7,1.3,0.9,0.9,1.3]}},{"b":4,"v":{"total":[14.1,15.5,15.5,14.8,13.8,14.8,15.1,14.9,15.3,14.7,15.5,14.1,16,14.9,14.6],"script":[0.9,1.3,1.1,1.5,1.1,1.4,1.3,1.6,1.8,1,1.6,1.1,1.3,2,1.5],"paint":[11.5,11.1,13.2,12.2,11.6,12.4,12.9,11.8,11.8,12.2,12.3,11.7,12.9,12.2,11.9]}},{"b":5,"v":{"total":[11,11.3,11.5,11.3,11,11,11.3,11.3,11.3,11.3,11,11.5,11.2,11.1,11],"script":[0.7,0.7,0.9,0.7,0.7,0.7,0.7,0.7,0.9,0.7,0.6,0.9,0.7,0.7,0.7],"paint":[9.7,9.9,9.9,10.1,9.7,9.6,10,10.1,10.1,10.1,9.8,9.9,9.9,9.6,9.7]}},{"b":6,"v":{"total":[400.3,399.1,400.8,398.9,387.9,397.8,401,399.8,399.1,399.9,397.5,399.6,398.9,398.9,389.7],"script":[156.4,155.3,156.8,152.3,147.9,155.2,156.1,156.3,156.8,158.6,155.6,156.1,154.4,154.7,150.1],"paint":[237.8,238.2,238.3,241.1,234.4,237,239.2,237.6,236.7,235.9,236.4,237.8,238.9,238.3,234.1]}},{"b":7,"v":{"total":[33.7,34.1,33,33.1,33.4,33.4,33,33.6,34.6,33.2,33.4,32.9,33.3,33.5,33.2],"script":[5.8,5.8,5.5,5.6,5.7,5.6,5.6,5.5,5.6,5.6,5.7,5.6,5.6,5.7,5.7],"paint":[27.1,27.5,26.7,26.7,26.8,26.8,26.6,27.2,28.1,26.8,26.8,26.5,26.7,26.9,26.6]}},{"b":8,"v":{"total":[11.5,11.7,11.5,10.9,10.9,11.3,11.7,11.2,10.6,11.5,12.1,11.3,11.4,10.3,11.5],"script":[9.2,9.6,9.8,9.4,9.6,9.3,9.9,9.3,8.1,9.3,10,9.3,9.7,9.2,9.7],"paint":[1.3,1.1,0.7,0.3,0.2,1.1,1.6,0.7,1.9,1.3,0.3,1.1,0.7,0.9,0.6]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[31.5]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[5.6]}},{"b":16,"v":{"DEFAULT":[53.9]}}]},
-{"f":103,"b":[{"b":0,"v":{"total":[31.4,29,29,28.8,28.6,28.7,28.8,28.8,28.4,28.7,28.7,28.6,31.4,28.5,28.5],"script":[6.6,6,5.8,5.7,5.8,5.8,5.8,5.8,5.7,5.8,5.7,5.6,6.7,5.6,5.7],"paint":[24.3,22.4,22.7,22.6,22.3,22.3,22.4,22.5,22.2,22.3,22.5,22.5,24.1,22.3,22.2]}},{"b":1,"v":{"total":[35.5,34.7,33.7,35.4,34.6,34.2,33.9,35.3,35,34.3,34.6,35.1,34.2,35.7,34.7],"script":[9.4,9.4,9,9.7,9.6,9.4,9.1,9.8,9.7,9.1,9.3,9.5,9.2,9.9,9.1],"paint":[25.5,24.8,24.1,25.1,24.5,24.3,24.3,24.9,24.7,24.6,24.8,25.1,24.4,25.3,25]}},{"b":2,"v":{"total":[13.2,13,13.2,13,13.4,12.9,12.8,13,11.8,12.7,13.1,12.9,13,12.2,12.9],"script":[0.9,1.2,1.9,1,1.3,1.5,1.5,1.7,0.6,0.6,0.6,0.9,1.1,0.9,1.5],"paint":[10.9,10.2,9.5,10.8,11.1,10.3,10.9,10.1,10.2,10.7,10.9,11,10.4,10.2,10.5]}},{"b":3,"v":{"total":[2.8,2.1,2.7,2.7,2.2,2.7,2.4,2.1,2.3,1.8,2.8,2.4,2.3,2,2.4,1.9,2.2,2.7,1.9,2.3,2.4,2.1,2.1,1.7,2.5],"script":[0.1,0,0.1,0.1,0,0,0.8,0,0,0,0,1,0,0,0,0,0,0,0,0.1,0,0,0,0.1,0.5],"paint":[2.4,1.3,2,2.5,1.1,2.2,0.9,1.9,1.3,0.9,2.1,1.3,1.8,1.8,1.4,0.9,1.6,1.3,1,1.1,1.5,2,1.8,0.7,1.4]}},{"b":4,"v":{"total":[15.3,13.7,14.5,14,14.6,14.1,14.6,14.1,14.4,13.6,13.7,15.3,14.3,14.1,15.3],"script":[0.2,0.1,0.9,0.1,1.2,0.1,1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.6],"paint":[13.7,12.4,12.4,12.9,12,13,12.6,12.7,12.7,12.5,11.2,13.3,13,12.2,13.3]}},{"b":5,"v":{"total":[10.8,10.6,10.7,10.5,10.8,10.4,10.5,10.8,10.9,10.7,10.5,10.9,10.5,10.9,11.1],"script":[0.1,0.3,0.2,0.1,0.2,0.1,0.1,0.1,0.2,0.1,0.1,0.3,0.1,0.1,0.1],"paint":[10.1,9.7,9.6,10,10,10,10,10.1,10,10.2,9.9,9.9,10.1,10.3,10.3]}},{"b":6,"v":{"total":[332.8,330.4,326.9,328.7,329.8,329,330.7,331.2,336.2,330.4,336.6,336.4,328.5,331.5,329.9],"script":[81.1,80.3,79.8,79.5,80.4,80.2,80.5,80.2,86.9,80.3,81.7,86.6,80,80.7,80.9],"paint":[244.9,243.7,240.9,243.2,242.6,242.2,244,244.9,242.9,243.8,248.5,243.4,242.2,244.2,242.7]}},{"b":7,"v":{"total":[36.6,36.7,35.9,36.8,36,37.3,35.8,36.7,35.7,37.3,36,35.5,36.1,35.8,35.5],"script":[8,8.1,7.5,8,7.5,7.9,7.6,8.2,7.5,8.2,7.9,7.4,7.4,7.5,7.5],"paint":[27.7,27.7,27.5,27.9,27.6,28.5,27.3,27.7,27.3,28.1,27.3,27.2,27.8,27.3,27.1]}},{"b":8,"v":{"total":[14.3,13.5,14.2,13.7,14.4,13.8,13.4,15.6,13.5,14,14.8,14.3,14.9,13.5,13.1],"script":[11.7,11.6,12.6,11.9,12.8,12.1,11.4,13.4,12,11.8,12.8,12.5,11.5,11.6,11],"paint":[1.6,0.2,0.7,0.6,1.4,0.5,1.8,1,0.6,1.5,0.3,1,1.6,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.4]}},{"b":11,"v":{"DEFAULT":[3.5]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[25.8]}},{"b":14,"v":{"DEFAULT":[73.4]}},{"b":15,"v":{"DEFAULT":[11.8]}},{"b":16,"v":{"DEFAULT":[92.8]}}]},
-{"f":104,"b":[{"b":0,"v":{"total":[31.7,30,31.1,30.4,30.4,30.3,30.3,30.3,30.5,30.2,30.3,30.3,30.5,30.3,30.8],"script":[7.5,7,7.2,7.2,7.1,7.2,7.2,7,7.1,7,6.8,7,7.3,7.1,7.2],"paint":[23.7,22.4,23.4,22.7,22.7,22.6,22.6,22.7,22.9,22.7,22.9,22.8,22.7,22.7,23]}},{"b":1,"v":{"total":[36.8,37.1,36.7,36.6,36.2,37.5,37.3,37.1,36.9,37,36.8,37.2,36.9,37.7,37.5],"script":[11.9,12.1,11.5,11.8,11.5,11.4,11.9,12.3,12,11.5,11.9,12,12.2,12.2,11.9],"paint":[24.3,24.5,24.6,24.3,24.1,25.5,24.8,24.2,24.3,24.9,24.4,24.6,24.2,24.9,24.9]}},{"b":2,"v":{"total":[13.7,14.3,14,13.5,13.6,13.9,13.4,13.8,14.2,14,14.1,13,13.8,14.1,17.1],"script":[2,2.8,1.9,2.5,2.2,2.4,2.4,2.6,2.1,2.3,2.9,1.8,1.8,2.6,2.9],"paint":[10.2,10.3,11,9.7,10.2,10.8,9.6,9.9,10.6,11,8.6,10.3,9.9,10.4,12.7]}},{"b":3,"v":{"total":[6.4,2.8,3.2,3,3.3,3.9,3.6,4,3,3.3,3.1,3.4,3.6,3.5,3.3,3.3,3.6,3.2,3.3,3.3,2.7,2.9,3.4,3.2,3.9],"script":[1.8,0.9,1,1.4,1.5,2,0.9,1.7,1.6,0.6,0.9,1,1.2,1.2,1.4,1.4,1.3,1.5,0.9,1.4,0.9,1.1,0.9,0.6,1.2],"paint":[1.9,0.7,1.3,1,1.2,1.8,1.7,1.2,1.3,2.1,1.1,1.7,1.6,1.3,0.4,1.3,1.3,1.5,2.1,1.8,1.6,1,1.3,2.1,2.5]}},{"b":4,"v":{"total":[15.5,14.9,17.1,15.2,14.5,15.1,15.5,15.4,15.7,15.1,14.7,15.1,15,15.9,14.9],"script":[1.3,1.6,1.9,1.5,0.9,1.4,1,1,1.5,1.2,0.7,1.8,1.6,1.2,1.6],"paint":[13.2,12.5,14.3,12.5,12.4,12.4,13,12.9,12.7,12.8,12.8,12.3,12.6,13.7,12.1]}},{"b":5,"v":{"total":[10.9,11,11.2,11.2,11.2,10.7,11,11.2,10.9,11.1,10.8,11.4,11.2,11,11.1],"script":[0.4,0.5,0.5,0.3,0.3,0.5,0.3,0.3,0.5,0.2,0.3,0.5,0.3,0.4,0.3],"paint":[9.6,9.8,10.1,10.5,10.2,9.6,10.1,10,9.9,10.2,9.8,10.3,10.1,10,10.2]}},{"b":6,"v":{"total":[334.9,332.7,336.6,337.1,338.6,336.2,336.9,336.1,337.2,335.2,337.6,335,339.8,336.8,335.8],"script":[85.3,82,83,84.2,84,85.4,84.5,84.6,84.9,84.7,83.8,83.9,83.9,83.7,83.9],"paint":[243.2,244.1,246.6,246.2,248,244,245.8,244.9,245.5,244.1,246.6,244.8,249.1,246.5,245.5]}},{"b":7,"v":{"total":[37,37.2,36.6,36.6,37,37.1,36,36.4,35.9,36.9,36.2,37.1,36.3,36.7,36.2],"script":[8.5,8.9,8.6,8.3,8.5,8.5,8.3,8.6,8.1,8.5,8.4,8.6,8.3,8.5,8.4],"paint":[27.5,27.4,27.2,27.3,27.6,27.8,26.8,27,26.9,27.5,26.9,27.5,27,27.2,26.8]}},{"b":8,"v":{"total":[14.6,15.2,19,16.6,15.8,17.3,17.6,15.9,15.2,15.3,17,17.7,15.5,17.1,17],"script":[12.5,12.8,16.2,14.2,14,15.8,14.9,14.4,12.7,13.8,14.9,14.9,13.1,14.6,14.6],"paint":[0.3,1.3,1.3,2,0.3,0.6,1.1,0.7,1.8,0.3,1.2,1.8,1.4,1.4,2.2]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[4.9]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[39.6]}},{"b":14,"v":{"DEFAULT":[81.4]}},{"b":15,"v":{"DEFAULT":[20]}},{"b":16,"v":{"DEFAULT":[98.1]}}]},
-{"f":105,"b":[{"b":0,"v":{"total":[40.5,40.5,35.2,40.8,33.6,41,40.3,41,33.5,40.6,33.1,32.1,32.9,33.9,32.1],"script":[4.9,4.9,5.5,5,4.9,4.9,4.9,5.1,4.8,4.8,5,4.9,5,4.8,4.9],"paint":[22.3,22.7,23.9,23,23.3,22.7,22.5,23.3,23.4,22.6,23.1,23.6,23,23.7,23.1]}},{"b":1,"v":{"total":[33.7,35.3,33.1,33.5,32.3,35,35.3,35.2,35.8,32.9,34.6,33.5,34,35.8,35],"script":[9.2,9,8.6,8.8,8.8,8.6,8.9,8.8,8.6,8.8,8.7,9.1,8.8,8.9,8.3],"paint":[23.3,22.9,23.2,23,22.9,23.2,22.8,23,23,23.6,23.2,22.8,23.6,22.9,23.9]}},{"b":2,"v":{"total":[34.3,35,32.5,36.8,33.3,33,33.5,33.7,15.5,34.1,32.9,35.8,34.2,36.9,32.9],"script":[3,3.3,3.6,3.1,2.6,2,3.2,3.6,3.1,3.5,2.9,3.6,3.4,3.5,3.2],"paint":[11.4,12.6,11.7,11.7,11.1,12.2,12.4,12.6,11.3,12.7,12.4,12.7,11.8,11.6,11.4]}},{"b":3,"v":{"total":[9.4,10.3,5.2,9.4,12.5,14.9,9,7.6,11.4,9.5,10.2,14.4,10,9.5,9.3,8.8,15.7,10.6,6.5,12.8,13.9,16.5,8.7,6.5,11.5],"script":[1.6,2.3,1.6,2,3.1,2,2.9,1.9,2.1,2.4,2.8,1.9,1.8,1.7,2.9,2,2.7,0.8,1.2,2.4,1,2.7,1.1,2.1,2.7],"paint":[2.7,1.6,2.2,1.9,3.1,1.4,3.5,2.8,2.9,2.8,2.4,2.3,3.2,2.9,3.1,3.8,2.3,2.6,2.5,2.1,3.1,2,3.4,2.2,1.7]}},{"b":4,"v":{"total":[35.8,35.5,35.9,40.9,34.9,36.2,35.6,40,36.2,34.8,35,34.6,35.3,37.9,38],"script":[1.4,1.4,2.4,2.3,2.3,2.2,1.8,1.9,2.5,0.8,1.4,1.9,2,1.9,2.2],"paint":[15.5,15.1,15.3,16.1,14,14.9,14.9,14.7,13.5,14.6,13.7,14.1,14.7,14.7,13.7]}},{"b":5,"v":{"total":[16.2,13.3,15.3,15.3,15.3,13.6,16.5,13.4,13.2,16.5,13.1,13.3,13.3,12.9,16.4],"script":[1.5,1.2,0.7,0.8,0.9,1.7,1.1,0.8,1.4,1.4,1.2,1.6,1.4,0.8,1.3],"paint":[11.3,10.4,10.9,10.9,11.1,10.5,10.8,11.3,10.4,11.3,10.7,10.2,10.5,10.3,11.2]}},{"b":6,"v":{"total":[302.2,296.4,299.5,300,301.9,300.6,299.5,301.6,293.9,303,294.5,293.6,298.4,295.5,294.9],"script":[52.5,53.7,53,53.8,53.3,54.6,53,54,51.5,53.2,53.4,53.1,53.1,53.4,53.1],"paint":[239.4,239.2,237.6,238,238,235.9,236.6,237.1,236.2,239.2,237.7,237.1,235.4,238,238]}},{"b":7,"v":{"total":[37.4,37,40,39.5,51,42,33.5,51.6,39.8,41.9,38.8,40.4,51.6,39.1,40.4],"script":[5.4,5.3,5.4,5.7,5.5,5.4,5.5,5.7,5.4,5.4,5.3,5.8,5.8,5.3,5.4],"paint":[26.6,26,26.6,26.4,26.4,27.3,26.8,26.2,26.4,26,26.8,28,26.4,26.6,26.2]}},{"b":8,"v":{"total":[35.4,36.1,32.4,15.7,13.9,36.3,35.8,34.4,15.4,35.3,36.9,36,15.2,35.9,15.1],"script":[11.2,11.9,10.4,11.2,10.5,12.2,11.8,10.9,11.6,11.5,11.4,11.4,11.6,12.1,11.6],"paint":[2,3.6,1.7,2,1.9,1.4,1.3,3.3,2.5,0.8,2.6,2.3,2,1.5,1.5]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[3.7]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[25.9]}},{"b":14,"v":{"DEFAULT":[92.5]}},{"b":15,"v":{"DEFAULT":[23]}},{"b":16,"v":{"DEFAULT":[107.1]}}]},
-{"f":106,"b":[{"b":0,"v":{"total":[58.8,58.8,59.1,59,58.4,57.7,58,58.4,57.7,57.4,58.3,57.8,58.8,58.5,57.4],"script":[31.2,33,32.8,32.8,31.8,31.6,31.7,32.2,31.7,31.8,31.9,32.1,32.5,31.9,31.7],"paint":[27,25.4,25.8,25.7,26.1,25.6,25.8,25.8,25.6,25.2,25.9,25.2,25.9,26.2,25.2]}},{"b":1,"v":{"total":[99.7,70.7,106.6,98.9,71,71.4,71.3,99.6,70.5,71.3,97.1,70.7,70.5,71.3,70.9],"script":[77.1,45.4,82.7,76.4,45.4,45.1,45,76.8,44.7,45.5,74.4,45.4,45,45.5,45.2],"paint":[22.1,24.8,23.4,22,25.2,25.8,25.8,22.3,25.2,25.3,22.2,24.8,25,25.3,25.2]}},{"b":2,"v":{"total":[42.9,43.1,41.1,42.3,43.8,42.2,42,42.6,41.8,42.3,42.6,40.9,42.3,41.6,42.6],"script":[29.4,29.2,28.5,29,30.4,29.1,28.9,28.7,28.7,28.7,28.4,27.9,29.1,28.7,28.7],"paint":[12.3,12.3,10.8,11.1,12.1,11.3,11.3,12.6,11.8,12.1,13,11.6,11.4,11.4,12.6]}},{"b":3,"v":{"total":[28.8,29.3,29.3,30,28.9,29.2,28.7,29.4,29.4,30.2,28.7,28,29.3,28.2,29.2,29.2,29,28.9,28.8,28.1,29.2,29.5,28.5,29.3,28.5],"script":[26.3,26.2,27,26.5,26.6,27,26.2,27.4,26.7,27.2,26.6,26.1,25.9,26.2,26,27.3,26.6,26.5,26.1,26.1,26.8,27.1,26.5,27.1,26],"paint":[1.5,2.1,0.4,2.8,1.2,1.2,1.7,1.1,1.8,1.6,1.9,1,1.8,1.1,2.4,1,1.8,1.4,1.8,1.1,1.6,1.5,1.1,0.4,1.8]}},{"b":4,"v":{"total":[68.7,69,69.9,69.8,67.3,68.4,69.3,70.4,69.6,71,71.2,69.4,68.7,70,69],"script":[52.8,52.1,53.2,54.1,52.4,51.8,53.2,52.8,53.9,54.1,54.1,52,52.7,53.4,52.4],"paint":[14.4,15.1,15.4,13.8,13.7,14.7,15.1,15.8,14.5,15.4,15.6,16,14.7,14.5,14.8]}},{"b":5,"v":{"total":[23.8,24.1,24,24.2,25,24.6,24.1,23.9,23.7,23.8,25.3,24.4,24.5,24.3,24.2],"script":[12.3,12.7,12.6,12.7,12.8,12.9,12.8,12.7,12.6,12.7,13.7,12.8,12.8,12.8,12.8],"paint":[10.7,10.5,10.1,10.7,11.4,10.7,10.7,9.8,10.1,10.1,10.8,10.9,10.7,10.6,10.8]}},{"b":6,"v":{"total":[949.3,884.2,862.1,896.3,900.7,902.6,844,853.5,855,866.9,897.1,860.8,843.5,845.9,863.1],"script":[654.3,613.1,590.1,626,628.6,608.4,572.8,578.9,562.8,595.7,623,565.6,572.2,571.7,570],"paint":[288,264.1,265.1,263.3,265.2,287.8,264.4,267.6,285.6,264,267.6,288.2,264.5,266.9,286.2]}},{"b":7,"v":{"total":[71.3,70.8,70.6,72.1,72,72.4,70.5,70.8,71.3,70.9,69.9,69.5,71.5,71.4,71.6],"script":[40.5,40.9,40,40.8,40.9,41.9,40.2,40.2,40.8,40.5,40.3,40,41.1,41.2,41.2],"paint":[29.8,29,29.6,30.5,30.2,29.6,29.5,29.7,29.6,29.5,28.7,28.6,29.5,29.3,29.5]}},{"b":8,"v":{"total":[23.4,23.7,25.2,24.4,23.7,22.8,23,24.9,23.5,22.9,23.7,23.9,23.8,24.6,23.8],"script":[21.9,22,21.7,22.6,22.6,21.5,21.4,23.1,21.7,21.4,22.1,22.2,21.8,22.7,22.3],"paint":[1.4,1.6,3.4,1.1,1,0.3,0.8,1.7,0.8,1.5,1.5,0.8,1.9,1.8,0.6]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[8.5]}},{"b":11,"v":{"DEFAULT":[11.2]}},{"b":12,"v":{"DEFAULT":[23.4]}},{"b":13,"v":{"DEFAULT":[68.5]}},{"b":14,"v":{"DEFAULT":[277.6]}},{"b":15,"v":{"DEFAULT":[81]}},{"b":16,"v":{"DEFAULT":[392.1]}}]},
-{"f":107,"b":[{"b":0,"v":{"total":[29.6,29.1,29.3,29.3,30.5,29.1,29.6,29.3,29.4,29.1,29.1,29.1,29.5,29.4,29.1],"script":[5,5,4.9,4.9,5.6,4.9,5.1,4.9,4.9,4.8,4.8,4.9,5,5,5],"paint":[24,23.8,24,24,24.4,23.8,23.9,24,24.1,23.9,23.9,23.8,23.9,24.1,23.8]}},{"b":1,"v":{"total":[32.2,31.9,32,32.7,31.9,32.3,32.1,32.4,32.1,31.8,32.2,32,32.1,32.5,32.1],"script":[7.4,7.2,7.1,7.3,7.1,7.1,7.3,7.2,7.2,7.2,7.2,7.2,7.3,7.3,7.3],"paint":[24.3,24.2,24.3,24.8,24.2,24.6,24.3,24.6,24.4,24.1,24.4,24.3,24.3,24.6,24.2]}},{"b":2,"v":{"total":[13.9,13.4,13.5,13.2,12.7,13.2,13.8,12.2,13.2,12.4,13.5,13.4,13,13.2,12.2],"script":[2,2,1.6,1.6,1.7,2.1,2.6,2.1,2.6,2.1,1.9,2.3,2.3,2.1,2.2],"paint":[10.9,10.4,10.7,9.9,10,9.4,10,9.2,9.4,9.6,10.6,9.6,9.7,9.1,8.6]}},{"b":3,"v":{"total":[5.5,3.9,4,4.6,3.9,3.9,4.1,4.4,4,3.9,3.9,3.5,4.2,3.7,3.5,3.9,3.9,3.4,4,3.8,4.2,4.4,4.4,3.6,3.3],"script":[2.3,1.5,1.7,1.8,1.5,1.7,1.8,2,2.1,1.5,2.3,1.3,1.8,2.1,1.1,1.8,2.2,1.8,2.1,1.9,1.2,2.2,2.5,1.8,2.2],"paint":[1.3,2.2,2.2,2.6,2.2,1.1,1.4,2.2,1.3,1.2,0.7,0.3,1.5,0.7,2,2,1.2,1.1,1.7,1.8,1,1.1,1.8,0.9,1]}},{"b":4,"v":{"total":[17,14.5,15.6,14.5,15.6,15.9,15.2,15.8,15.8,15.1,14.8,14.8,14.6,15.8,14.7],"script":[1.8,1.4,1.5,1.7,2.1,2.2,1.9,1.8,2,1.8,1.9,1.8,1.6,2.1,1.9],"paint":[13.5,11.8,13.4,11.9,11.5,11.7,11.8,13.1,12.6,12.2,11.2,12.1,11.1,12.9,11.1]}},{"b":5,"v":{"total":[11.5,11.5,11.4,11.2,11.6,11.1,11.5,11.5,11.4,11.4,11.4,11.1,11.2,11.4,11.4],"script":[1.2,1.2,1.2,0.9,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2],"paint":[9.5,9.5,9.6,10,9.7,9.3,9.7,9.8,9.6,9.5,9.6,9.3,9.6,9.5,9.3]}},{"b":6,"v":{"total":[302.9,303.1,302.3,299.7,303,299.3,300.5,299.2,299.7,297.9,301.2,297.5,299.7,298.9,298.6],"script":[49.8,49.4,49,49.8,51,49.2,49,49,49.1,48.8,49.3,48.6,49.1,50.1,48.8],"paint":[246.8,247,247.2,244.1,245.3,244.4,245.4,244.1,244.6,243.1,245.5,243.2,243.7,243.2,243.8]}},{"b":7,"v":{"total":[32.4,32.7,32.1,32,32,33.1,32.7,33.3,33.6,32.3,33.4,32.7,32.2,32.6,33.8],"script":[4.9,5.1,4.8,4.7,4.7,4.7,4.9,5,5.2,4.9,4.8,5.2,4.9,4.7,5.1],"paint":[26.8,26.7,26.6,26.6,26.5,27.7,27.1,27.6,27.5,26.7,27.8,26.6,26.6,26.9,27.8]}},{"b":8,"v":{"total":[11.3,11.6,12.7,11.9,12.3,11.3,12.1,12.2,11.5,12.8,12.1,12.8,12.4,12.7,11.4],"script":[9.4,9.6,10.5,9.9,10,9.7,9.4,10,10,9.6,10,10.8,10.5,10.9,9.8],"paint":[1,1.7,0.7,0.9,1.3,0.2,1.6,1.1,0.2,2.2,0.3,0.8,1,1.3,1.1]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[2.5]}},{"b":13,"v":{"DEFAULT":[22.1]}},{"b":14,"v":{"DEFAULT":[173.9]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[213.6]}}]},
-{"f":108,"b":[{"b":0,"v":{"total":[29.6,29.2,29.1,28.9,28.7,28.8,29.1,29.3,29.2,29.4,28.7,29.4,28.9,29.1,29.3],"script":[4.5,4.5,4.4,4.2,4.3,4.2,4.5,4.5,4.4,4.6,4.1,4.6,4.2,4.5,4.5],"paint":[24.7,24.3,24.2,24.3,24,24.3,24.3,24.4,24.4,24.4,24.2,24.4,24.4,24.3,24.4]}},{"b":1,"v":{"total":[31.3,31.2,31.5,31.3,31.1,31.3,30.9,31,32.7,31.1,31.1,31.3,31.3,32,31],"script":[6.2,6.2,6.4,6,6,6.3,6.1,6.2,6.5,6.2,6.1,6.4,6,6.6,6],"paint":[24.5,24.5,24.6,24.7,24.6,24.5,24.3,24.3,25.6,24.3,24.4,24.4,24.7,24.8,24.5]}},{"b":2,"v":{"total":[12.1,12.3,11.5,11.8,12.2,12.1,11.6,13.7,11.4,11.1,11.3,11.5,11.6,12.5,11.4],"script":[0.9,0.9,0.5,0.6,0.8,0.9,0.6,1.3,0.5,0.2,0.6,0.6,0.9,1.3,0.4],"paint":[9.4,10.4,9.9,10.2,9.1,9.4,9.8,11.2,9.9,9.8,9.6,9.8,9.6,9.7,9.5]}},{"b":3,"v":{"total":[1.9,1.8,2.4,1.9,3.1,1.3,2.4,1.7,2.4,2.4,1.8,2.9,2,2.3,1.9,1.9,1.6,2.5,2.4,1.9,2.2,1.7,2.7,2.4,2.1],"script":[0,0.6,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0.7,0,0,0,0,1,0],"paint":[1.3,1.1,1.4,1.7,1,0.7,1.3,1.5,1.4,1.4,1.7,1.8,1.8,2.1,1.8,1.3,0.7,2.3,1.6,1.3,1.3,1,2.5,1.3,1.8]}},{"b":4,"v":{"total":[15.4,15.4,16.6,15.5,17.7,15.2,14.8,14.4,15.3,15.2,13.9,14.8,14.7,15.5,15],"script":[1.5,1.4,1.5,1.3,3,1.4,1.2,1.1,1.6,1.5,1,1.1,1.5,1.7,1.3],"paint":[12.6,12.5,13.5,13.1,13.4,12.7,12.3,12.2,13.1,12.2,12.1,12.5,11.6,12.4,12.8]}},{"b":5,"v":{"total":[10.9,10.5,10.7,10.4,10.9,10.9,10.7,10.8,10.7,10.5,10.5,10.7,10.9,11.3,10.7],"script":[0.3,0.1,0.4,0.1,0.5,0.1,0.4,0.2,0.4,0.1,0.1,0.4,0.3,0.5,0.1],"paint":[10.1,9.8,9.8,9,9.9,10.2,9.7,10.1,9.8,9.7,9.8,9.7,10,10.3,9.9]}},{"b":6,"v":{"total":[305.8,305.6,306.7,307.7,308.5,305,306.9,304.6,302.8,304.7,305,302,305.6,304.1,303.2],"script":[55.8,55,57,56.9,56.8,56.1,56.7,56.7,55.9,56.7,57.3,54.8,56.3,55.6,56.7],"paint":[243.1,244.3,243.3,244,244.4,242.4,243.2,241.4,240.6,241.7,241.3,241,242.8,241.8,240.3]}},{"b":7,"v":{"total":[33.3,32.7,32.7,33.1,33.7,32.3,33,33.4,32.3,32.7,32.6,32.5,32.8,32.4,34.1],"script":[4.8,4.5,4.5,4.5,4.8,4.5,4.7,4.7,4.5,4.5,4.6,4.5,4.5,4.6,4.7],"paint":[27.8,27.4,27.5,27.9,28.2,27.1,27.5,27.9,27.1,27.4,27.2,27.2,27.6,27.1,28.7]}},{"b":8,"v":{"total":[9.1,9.2,9.3,8.6,9.3,9.4,9.4,9.5,9,8.8,11.3,9.4,9,9.8,10],"script":[7.3,7.6,7,6.8,7.1,7.1,7.6,8.4,7.4,6.7,8.3,8,7.2,8.1,7.9],"paint":[1,1,1.5,0.9,1.5,0.8,0.6,0.4,0.6,0.9,1.6,0.2,0.6,1,0.8]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[20.5]}},{"b":14,"v":{"DEFAULT":[9.4]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[39.8]}}]},
-{"f":109,"b":[{"b":0,"v":{"total":[40.5,40,40.2,40,41.3,41.2,40.6,40.1,40,40.4,39.9,40.6,40.6,40,40.1],"script":[15.2,15.2,15.3,14.9,16.1,16.1,15.5,15.1,15.1,15.5,15.2,15.4,15.3,15.1,15.1],"paint":[24.8,24.2,24.3,24.5,24.7,24.5,24.5,24.6,24.5,24.3,24.2,24.8,24.7,24.5,24.5]}},{"b":1,"v":{"total":[44.4,44.8,44.4,44.9,44.2,44.4,45.5,44.7,44.4,45.8,44,44,44.9,45.2,44.1],"script":[20.3,20.5,20,20.2,20.2,20,20.6,20.5,20,20.9,19.9,19.9,20.7,20.8,19.9],"paint":[23.6,23.7,23.9,24.2,23.6,23.8,24.3,23.6,23.8,24.4,23.6,23.5,23.9,23.9,23.7]}},{"b":2,"v":{"total":[19.1,20,20.6,19.9,19.2,19.2,19.3,20,20.4,18.2,19.3,19.4,21.1,20.8,18.7],"script":[6.5,6.6,7.1,7.4,6.5,7.2,7.1,7.5,6.7,6.2,6.8,6.3,7.4,6.7,6.3],"paint":[10,11.6,12.3,10.2,11.1,10.2,11,10.1,11.9,10.2,10.9,11.9,11.7,11.8,9.7]}},{"b":3,"v":{"total":[4.1,4.4,4,4,5,4.3,3.6,4.9,4.7,4.6,4.1,4,4.2,4,4.3,4.3,4.3,4.3,4.5,4.8,4,4,4.1,4.3,3.7],"script":[1.7,2,2.5,1.5,2.5,1.9,2,2.4,1.9,1.9,1.6,1.9,2.2,2.2,1.7,2.5,1.8,1.2,2.4,2.3,2.1,2.4,2.3,2,1.5],"paint":[1.5,1.9,1.3,1.7,1.3,1.7,1,1.2,2.1,1.7,1.9,1.2,0.7,1,1.6,1.6,1.3,2.9,1.2,1.6,1.1,0.7,1,2.1,1]}},{"b":4,"v":{"total":[16.1,16.8,16.2,16,16.2,16.3,16.7,16.9,17.5,15.5,16.5,15.7,16.6,16.1,16.4],"script":[2.1,2.1,1.8,1.8,1.8,1.9,1.5,1.9,2.1,2,2.1,1.9,2,2.2,2.3],"paint":[12.8,13,13.4,12.3,12.8,13.5,13.1,13.1,14,12.1,12.9,12.9,13.5,12.4,12.7]}},{"b":5,"v":{"total":[12.8,12.5,12.5,12.2,12.1,12.3,12.1,12.4,12.1,12.4,12.2,12.4,11.7,12.5,11.9],"script":[1.1,1.1,1.1,0.9,1.1,1.1,0.9,0.9,1.1,1,0.8,1,0.8,1.3,1],"paint":[10.3,10.2,10.8,10.5,9.9,10.4,10.3,10.1,10.4,10.6,10.7,10.8,9.9,10.6,10.1]}},{"b":6,"v":{"total":[396.9,396.3,399.8,395.9,397.2,398.3,395.2,398.8,397.4,393.2,394.8,397.4,395,397.8,393.9],"script":[144.6,147.5,145.2,144.5,145,144.2,144.9,146.5,148.1,143,143,144.1,142.7,144.5,142.6],"paint":[245.5,242.1,247.9,244.2,245.9,247.7,244,245.9,242.6,243.8,245.6,246.5,245.7,246.5,244.6]}},{"b":7,"v":{"total":[43.9,44.2,44.4,44.7,44.3,44.5,44.3,45.7,46.2,44.9,44.7,43.9,44.8,44.3,45.4],"script":[15.6,15.8,16,16.1,16.2,15.8,15.7,16.9,16.1,16.7,15.8,15.5,16,15.7,16.1],"paint":[27.4,27.4,27.6,27.7,27.2,27.8,27.7,27.9,29.1,27.4,27.9,27.6,27.9,27.7,28.3]}},{"b":8,"v":{"total":[10.3,8.7,9.1,9,10,10.1,9.5,9.6,9.4,8.6,9.7,9.8,9.9,9.4,9.5],"script":[8.9,7.2,8,7.4,8,8.5,8.1,8.3,8.1,7.4,8.2,7.8,8.4,8,8.1],"paint":[0.2,0.7,1,1.5,0.7,0.6,1.1,0.2,1.1,0.2,1.2,1.4,1.4,1,1.3]}},{"b":9,"v":{"DEFAULT":[0.4]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[1.4]}},{"b":13,"v":{"DEFAULT":[18.7]}},{"b":14,"v":{"DEFAULT":[5.2]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[43.9]}}]},
-{"f":110,"b":[{"b":0,"v":{"total":[26.2,26,25.7,26,25.8,26.2,26.2,25.7,26.3,25.8,26.2,26.1,25.7,26,26.1],"script":[2.5,2.4,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.5,2.4],"paint":[23.4,23.3,23,23.2,23.1,23.4,23.3,23,23.5,23,23.5,23.3,22.9,23.2,23.3]}},{"b":1,"v":{"total":[28.9,28.7,30.1,30.2,29.2,29.2,28.9,29.2,28.9,28.4,28.5,29.1,29,29.7,29.9],"script":[4.9,4.8,5.5,5,5.1,4.8,4.9,4.9,4.9,4.6,4.8,4.9,5,4.9,5.2],"paint":[23.6,23.5,24,24.9,23.6,23.9,23.6,23.9,23.6,23.4,23.3,23.8,23.6,24.4,24.1]}},{"b":2,"v":{"total":[11.6,11.3,11.9,11.8,11.9,11.7,11.6,12,11.1,11.8,12,11.5,12.5,12.4,10.6],"script":[0.9,0.8,1.1,0.2,0.9,1,0.8,0.2,0.2,0.6,0.8,1.4,0.2,0.9,0.2],"paint":[9.4,9.6,8.9,9.3,9.7,9.6,9.3,10.8,9.9,9.3,10.6,9,10.5,10.3,9]}},{"b":3,"v":{"total":[6.2,2.6,2.1,2.5,2.1,2.4,2.7,2.5,2.7,3.4,1.9,2.4,2.5,2.2,2.5,2.3,2.4,2.1,2.7,2.7,1.9,2.4,2.2,2.8,2.7],"script":[0.4,0.8,0.1,0.5,0.7,0.1,1,0.1,0.7,0.8,0.6,0.5,0.8,0.1,0.7,0.1,0.5,0.1,1,0.8,0.1,0.5,0.1,0.9,0.8],"paint":[1.5,1,1.1,1.3,1.3,1.8,1.6,2,1.8,1.2,0.7,1.8,1.5,1.3,1.4,2.1,1.1,1.2,0.5,1.7,1,1.1,1.1,1,1.8]}},{"b":4,"v":{"total":[15.5,15,14.1,14.4,14.8,14.2,15.1,14.7,14.1,14.4,14.1,14.1,14.4,14.5,14.8],"script":[1.9,0.8,1.4,1,1.7,0.7,1.5,1,1.4,1.3,1.8,0.9,0.6,1.1,1.2],"paint":[12.6,13,12,13.1,12.2,12.1,10.8,11.1,12.1,12.3,11.7,12.3,12.8,12.5,12.9]}},{"b":5,"v":{"total":[11,10.9,10.9,11,10.9,11,10.8,11,10.7,10.8,10.9,10.9,10.9,11.5,10.7],"script":[0.4,0.5,0.6,0.5,0.6,0.6,0.5,0.2,0.5,0.5,0.6,0.3,0.5,0.5,0.4],"paint":[10.2,9.8,9.8,9.8,9.7,9.8,9.9,10.3,9.7,9.7,9.7,9.6,9.5,9.9,9.9]}},{"b":6,"v":{"total":[277.4,275.2,273.9,274.4,276.7,273.8,278,276.1,277.4,272.6,276.6,273.2,276.1,273.5,276.4],"script":[29.1,29.6,29,29.2,29.8,28.6,29.7,29.1,28.9,28.6,30,29.1,28.8,29.2,29.4],"paint":[242.2,239.7,238.9,239.1,240.6,239.5,242.2,240.8,242.3,238.2,240.5,238.1,241,238.1,240.6]}},{"b":7,"v":{"total":[29.2,31.3,31.8,30.5,31.3,31.4,30.5,29.9,30.2,30.3,31,30.7,30.8,30.5,30.6],"script":[2.8,3,3.3,3,3.1,3,3,2.7,2.9,3,3,2.9,2.9,2.9,2.9],"paint":[25.7,27.6,27.6,26.8,27.5,27.6,26.8,26.4,26.6,26.6,27.3,27.1,27.2,26.8,26.9]}},{"b":8,"v":{"total":[12.3,10.3,12.2,11.7,10.1,12.5,11,10.6,13.1,9.7,13.6,8.9,9.6,13.3,10.2],"script":[10.4,7.8,10.1,9.8,8.1,10.2,8.9,8.2,10.9,8.2,11.6,6.9,8,10.7,8.2],"paint":[1.7,2,1.4,1.1,0.2,1.5,1.2,1.3,1.1,0.6,1.8,1.2,0.6,1.3,0.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[21.1]}},{"b":14,"v":{"DEFAULT":[11.5]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[47]}}]},
-{"f":111,"b":[{"b":0,"v":{"total":[27.6,27.6,28.9,27.6,27.4,28.2,27.3,27.5,28.8,28.6,27.7,27.7,27.5,27.8,28.3],"script":[3.8,3.7,4.7,3.8,3.7,3.9,3.7,3.7,4.6,4.7,3.8,3.8,3.8,3.8,4.2],"paint":[23.4,23.5,23.9,23.5,23.3,24,23.2,23.4,23.8,23.5,23.6,23.5,23.3,23.6,23.8]}},{"b":1,"v":{"total":[30.5,30.7,30.6,30.2,30.9,31,31.1,31.2,30.5,30.2,30.6,31.1,30.4,30.4,31.1],"script":[6.5,6,6.2,6,6.1,6.5,6.1,6.2,6.2,6,6.1,6.7,6.1,6,6.3],"paint":[23.5,24.1,23.9,23.7,24.3,23.9,24.3,24.5,23.7,23.7,24,23.9,23.7,23.9,24.2]}},{"b":2,"v":{"total":[11.6,11.4,11.9,11.7,12.2,11.8,11.6,12.8,11.4,12.8,12.1,13,12.1,12.9,11.8],"script":[1.2,1,0.9,1.1,1.2,1,1.1,1.1,1,1.7,1.1,1.3,1.3,0.9,0.9],"paint":[9.1,9.3,10,9.6,9.2,9.6,9.8,10.1,9.4,9.9,9.7,10.5,9.8,11,9.7]}},{"b":3,"v":{"total":[3.9,2.5,1.9,2.2,2.9,2.4,2.2,2.1,2.6,2.4,3,1.9,3.4,2.8,3.5,2.3,2.7,3.8,2.4,1.9,2.4,2.6,2.2,1.5,2.1],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.9,0.1,0.1,0.6,0.7,0.3,0.7,0.8,0.1,0.1,0.8,0.1,0.8,0.1,0.7,0.1,0.4,0.3,0.5],"paint":[1.7,1.3,0.7,1.9,1.6,1.9,0.7,1.9,1,1.1,1,1,1.1,1.8,1.6,2,0.3,1,1.5,1.7,1.2,1.6,1.6,0.7,1.5]}},{"b":4,"v":{"total":[16.1,15.5,16.4,15.8,15.3,15.6,16.6,16.4,16,15.9,15.9,16.5,16,16.3,15.4],"script":[2.2,2.2,2.1,2.3,2.2,1.9,2.8,2.1,2,2.2,2,3.3,2.8,3.1,2.1],"paint":[13,12.3,13,12.3,11.9,12.4,12.6,13.3,13.4,12.2,12.7,12.6,11.8,12.4,11.6]}},{"b":5,"v":{"total":[12.2,11.9,11.6,11.9,12.2,11.8,12.2,12.5,12,12.2,12.5,12.1,11.9,12.5,12],"script":[1.5,1.7,1.4,1.6,1.6,1.5,1.4,1.8,1.4,1.6,1.7,1.7,1.5,1.6,1.7],"paint":[10,9.9,9.7,9.6,10.2,9.9,10.2,10,9.8,10,10.2,9.9,9.8,10.3,9.7]}},{"b":6,"v":{"total":[283.1,287.7,281.2,283.8,285.5,285.1,282.9,282.2,284,284,284.4,283.8,284.1,281.2,285.1],"script":[44.6,46.1,45,43.9,46.2,46.7,45,44.6,46.4,44.7,45.9,45.3,45.6,44.2,47],"paint":[232.8,235.3,230.6,234.5,233.8,232.6,232.1,232.2,232.1,233.7,233.1,233.1,232.8,231.6,232.8]}},{"b":7,"v":{"total":[32.1,32.7,32.6,31.7,31.9,32.3,32.3,32.5,33.2,32.3,32.6,33.3,32.5,31.9,32.8],"script":[4.8,4.8,4.8,4.7,4.6,4.6,4.7,4.9,4.7,4.8,4.8,4.7,4.7,4.6,4.7],"paint":[26.6,27.1,27,26.3,26.5,26.9,26.8,26.9,27.7,26.8,27.1,27.9,27.1,26.6,27.4]}},{"b":8,"v":{"total":[11,10.5,10.2,11.1,11.4,10.6,10.3,10.8,10.3,10.7,12.3,10.8,10.3,11.5,10.7],"script":[8.6,8.3,8.3,9.2,9.5,9.1,8.8,8.4,8.1,8.6,10,8.8,8,9.4,8.5],"paint":[1.1,0.9,0.6,1.1,0.4,0.6,0.2,1.5,0.8,1.9,0.3,0.2,1.3,1.2,1.5]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3.1]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[22.7]}},{"b":14,"v":{"DEFAULT":[14.7]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[44.5]}}]},
-{"f":112,"b":[{"b":0,"v":{"total":[25,24.9,25,25.1,25,25.1,25,25.2,25.3,25.4,25.1,25.2,25.1,25.1,25],"script":[1.2,1.3,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.2,1.3,1.2,1.3,1.3],"paint":[23.4,23.3,23.4,23.5,23.4,23.4,23.4,23.6,23.6,23.7,23.5,23.5,23.6,23.4,23.4]}},{"b":1,"v":{"total":[27.9,27.5,27,27.7,27.5,27.3,27.6,27.4,27.4,27.2,28,27.4,27.7,28,27.5],"script":[3.2,3.1,3.1,3.1,3.1,3.1,3.3,3.1,3,3.1,3.1,3.1,3.2,3.2,3.2],"paint":[24.3,24,23.6,24.2,23.9,23.8,23.9,23.8,24,23.7,24.5,23.9,24.1,24.4,23.9]}},{"b":2,"v":{"total":[10.9,11.5,11.6,10.8,10.9,10.1,10.1,10.7,10.3,10.3,11.5,10.7,10.9,11.6,11],"script":[0.4,1.1,0.5,0.1,0.3,0.1,0.1,0.1,0.1,0.3,0.9,0.1,0.2,0.1,0.1],"paint":[9.4,9.8,9.7,9.3,9.6,8.7,8.6,10,8.7,8.8,9,9.4,9.8,9.5,10.2]}},{"b":3,"v":{"total":[1.6,2.4,2.1,1.5,1.9,2.1,1.6,3,1.9,2.2,1.4,1.9,2.3,1.6,2,2.1,2.2,2.1,2.4,2.1,1.3,1.8,2.4,2.2,2.1],"script":[0,0,0,0,0,0,0,0.5,0,0,0.3,0,0,0,0.7,0,0,0,0,0,0,0,0,0,0],"paint":[0.7,2,0.8,1.4,1.3,1.5,1.4,1.8,1,1.2,0.9,1.1,1.4,1.5,1.2,1.4,0.6,1.3,1.3,0.9,0.9,1.7,1.4,0.9,1.9]}},{"b":4,"v":{"total":[13.2,13,13.5,12.6,13.7,13.4,13.7,13.4,13.4,13.5,13.5,13.7,13.3,12.8,13.2],"script":[0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.4,0.1],"paint":[11.6,12.1,12.7,10.4,12,12.2,13,12.1,12.3,11.4,11.9,12.8,11.4,11.4,11.8]}},{"b":5,"v":{"total":[10.3,10.3,10.6,10.4,10.3,10.7,10.1,10,10.6,11,10.4,10.9,10.4,10.2,10.3],"script":[0.1,0.1,0.2,0.1,0.3,0.4,0.1,0.1,0.1,0.3,0.1,0.1,0.2,0.1,0.1],"paint":[9.5,9.9,9.8,9.6,9.6,9.7,9.5,9.3,10.1,9.9,9.4,10.3,9.7,9.4,9.6]}},{"b":6,"v":{"total":[258.2,259.4,260.8,259.9,259.7,259.4,258.9,259.8,257.7,259.2,259.8,259.4,259.5,259.3,259],"script":[13.6,13.6,13.9,13.9,13.8,13.7,13.8,13.8,13.8,13.7,13.8,14,13.7,13.9,13.8],"paint":[238.8,239.9,240.9,239.8,240,239.7,239.6,239.9,237.9,239.4,239.5,239.4,239.7,239.2,239.1]}},{"b":7,"v":{"total":[28.5,27.7,28.5,28,29.2,28.1,27.7,28.9,28.1,28.2,27.8,29.2,28.6,28.1,28.2],"script":[1.3,1.2,1.3,1.3,1.3,1.2,1.2,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3],"paint":[26.5,25.8,26.5,26,27.2,26.2,25.8,26.9,26.1,26.3,25.9,27,26.6,26,26.2]}},{"b":8,"v":{"total":[9.1,9.3,9.1,9.6,9.2,9.2,9,9,8.7,9.2,9,8.8,9.5,8.8,9.3],"script":[7.2,7.3,6.9,7.7,7,7.1,6.8,7.4,7,6.8,7.3,7,6.9,7.1,7.6],"paint":[1.7,1.1,0.5,1.1,1.3,1.3,1.5,0.6,0.9,1.3,0.3,0.9,1.5,0.2,0.2]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.7]}},{"b":14,"v":{"DEFAULT":[10.4]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[39.5]}}]},
-{"f":113,"b":[{"b":0,"v":{"total":[30.6,30.7,30.4,30.6,30.7,30.6,30.4,30.4,31.5,30.9,30.3,31.1,30.9,30.1,31.1],"script":[6.3,6.4,6.2,6.2,6.2,6.2,6.1,6.2,6.9,6.2,6.2,6.6,6.2,6.1,6.4],"paint":[23.8,23.8,23.7,23.8,23.9,23.8,23.8,23.7,24.1,24.2,23.6,23.9,24.1,23.5,24.2]}},{"b":1,"v":{"total":[34.3,34.4,33.9,34.2,34.3,33.8,33.6,33.8,34,34,35.4,34.4,34.1,34.1,34.7],"script":[9.3,9.4,9.1,9.2,9.4,9.1,9.1,9.1,9.2,9.2,9.8,9.2,9.4,9.1,9.4],"paint":[24.4,24.4,24.2,24.5,24.4,24.2,23.9,24.1,24.2,24.2,25,24.6,24.1,24.5,24.7]}},{"b":2,"v":{"total":[13.5,13.9,13.9,14.2,14,14.3,14.9,13.5,13.3,13.8,13.5,14.5,14.1,14.3,13.4],"script":[2,2.7,2.4,2.4,2.4,2.9,2.6,2.7,2.4,2.2,2.5,3,3.2,2.8,2.7],"paint":[10.2,9.9,10.5,10.5,10.5,10.4,11.7,9.6,9.3,10.1,10.1,9.4,9.1,10.5,9.7]}},{"b":3,"v":{"total":[6.2,3.7,4,3.8,3.9,3.5,3.5,3.7,3.6,3.7,3.7,3.7,3.4,3.9,3.3,3.8,4,3.6,3.4,3.3,4.1,3.5,3.4,3.9,3.7],"script":[2.4,1.9,1.9,2.1,2.1,1.9,2.1,1.4,1.6,1.3,2,1.9,1.3,1.9,1.2,1.8,2.1,1.8,1.8,1.5,2.3,1.9,1.8,2.2,2.2],"paint":[1,1.7,1.4,1.2,1.4,1.1,1.3,1.4,1.2,2.3,1.6,1,1.1,1.8,2,1.3,1.1,1.6,1.5,0.9,1.7,1.1,0.7,0.5,1.3]}},{"b":4,"v":{"total":[14.6,14.6,15.9,15,15.5,15.2,14.6,15.2,14.6,15,15.4,15.4,14.8,15.4,14.7],"script":[1.6,1.9,1.9,1.6,2.1,1.6,1.5,1.5,1.8,1.7,2.2,1.6,1.5,2.3,1.8],"paint":[11.4,11.6,13.1,11.3,12.2,12.3,11.8,12.5,12,12,12.3,12.4,12.3,11.6,11.8]}},{"b":5,"v":{"total":[11.7,11.7,11.9,11.5,11.6,11.7,11.6,11.6,11.7,11.5,11.6,11.5,11.7,11.7,11.2],"script":[1.1,1,1.1,1,0.9,1.1,1.2,1.1,0.9,1.1,1.1,0.9,1.1,1.1,0.9],"paint":[9.8,10,10.1,9.8,10,9.9,9.6,9.5,10.2,9.8,9.8,10.1,9.8,9.9,9.7]}},{"b":6,"v":{"total":[309,305.8,307,306.4,308.4,306.8,309,307.9,304.7,305,304.4,304.8,306.9,306.4,305.9],"script":[59.5,59,59.6,58.3,59.1,58.1,60,58.6,59.9,58.3,58.7,58.7,58.9,59.2,58.8],"paint":[243.2,241,241.5,242.1,242.8,242.2,243.3,243.3,238.9,240.9,239.9,240.1,242.1,241.2,240.8]}},{"b":7,"v":{"total":[35.6,35.4,36.3,36.3,35.8,36.6,36,36,36.1,36.7,36.4,36.4,36.2,36.4,36.2],"script":[7.1,7.2,7.7,7.2,7.1,7.7,7.1,7.4,7.8,7.5,7.6,7.5,7.2,7.5,7.6],"paint":[27.6,27.3,27.6,28.2,27.8,28,27.9,27.7,27.4,28.3,27.9,28,28.1,28,27.7]}},{"b":8,"v":{"total":[13.4,13.7,12.8,12.9,13.6,12.2,11.9,12.7,13.4,12.6,12.7,12.8,10.9,13,12.6],"script":[11.5,11,10.9,11.1,11.2,10.3,10.4,10.6,11.4,10.2,11,10.6,9.1,11.2,10.5],"paint":[0.2,1.7,1.7,0.9,0.9,1,0.6,1,0.6,2.1,0.4,1.1,0.9,0.7,0.3]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[5.1]}},{"b":11,"v":{"DEFAULT":[5.1]}},{"b":12,"v":{"DEFAULT":[3.6]}},{"b":13,"v":{"DEFAULT":[34]}},{"b":14,"v":{"DEFAULT":[101.4]}},{"b":15,"v":{"DEFAULT":[31.8]}},{"b":16,"v":{"DEFAULT":[129.2]}}]},
-{"f":114,"b":[{"b":0,"v":{"total":[30.7,30.8,31.2,30.4,30.3,30.2,30.4,30.6,30.7,30.5,30.7,30.6,30.4,30.6,31.1],"script":[5.9,6.4,6.6,6,6,5.9,6,6.1,6,6.2,5.9,6.1,6,6,6.7],"paint":[24.2,23.9,24,23.8,23.8,23.8,23.9,23.9,24.1,23.8,24.2,23.9,23.8,24.1,23.9]}},{"b":1,"v":{"total":[33.7,34.3,33.8,33.7,33,33.4,33.6,33.9,33,33.4,34.1,33.7,33.4,34,33.9],"script":[8.7,9.1,8.8,8.8,8.4,8.6,8.6,8.6,8.4,8.6,8.7,8.6,8.5,9,8.8],"paint":[24.4,24.7,24.4,24.3,24,24.2,24.4,24.7,24.1,24.2,24.8,24.5,24.3,24.5,24.6]}},{"b":2,"v":{"total":[13.2,14.9,13.9,13.4,13.8,13.6,14.1,13.6,13.1,12.8,13.4,13.7,13.5,13.7,13.8],"script":[2.2,2.8,2.5,2.9,2.4,2.2,2.6,2.1,2.3,2.4,2.4,2.5,2.7,2.4,2.4],"paint":[9.3,10.3,9.7,9.6,10.4,10.3,9.2,10.5,9.5,9.2,9.6,9.9,10.1,10.3,10.7]}},{"b":3,"v":{"total":[4.2,4.7,4.3,3.5,3.7,4.3,3.9,4.4,3.6,4.3,3.4,4.3,3.8,4.6,3.6,4.4,4.2,4,3.9,4.2,4.4,4,4.5,4.2,3.9],"script":[1.9,2.6,2,1.7,1.9,2.2,1.9,1.7,2.3,2.2,2.1,2.4,1.9,2.5,2.5,2.7,1.6,2.2,2.2,2.1,1.9,1.9,2.3,2.1,1.6],"paint":[1.5,1.2,2.2,1,1.1,1.3,1.2,2.4,1.2,1.9,1.3,1.4,1.6,1.3,0.3,1.6,2.3,1.1,1.2,1,2.4,0.8,2,2,0.8]}},{"b":4,"v":{"total":[15.4,14.8,14.9,15.7,15.6,14.7,15.2,15,16.4,15.9,14.8,14.7,14.5,14.4,16],"script":[2.1,1.5,1.8,2.1,2.2,1,1.5,0.9,1.8,1.6,1.6,1.4,1,1.8,1.5],"paint":[12.3,11.3,11.8,12.6,12.1,11.9,11.8,12.9,12.3,13.3,12.1,11.8,11.9,11.5,12.7]}},{"b":5,"v":{"total":[11.4,11,11.5,11.2,11.3,11.4,11.4,11.4,11,11.2,11.4,11.4,11.9,11.3,11.1],"script":[1,0.7,0.9,1,1,1.1,1.1,0.9,1.1,0.9,1,0.9,1,1.1,0.9],"paint":[9.8,9.6,10.1,9.6,9.7,9.5,9.5,9.7,9,9.9,9.7,9.8,10.2,9.7,9.3]}},{"b":6,"v":{"total":[301.2,303.6,306.5,304.6,306.2,305.6,303.7,305.1,304.3,306.2,307.4,304.2,308.9,306.7,306.1],"script":[55.5,57.3,57,57.7,57.1,57.3,56.7,56.6,57.4,58.2,58.2,57.5,59,57.6,57.4],"paint":[239.9,240.1,242.8,241.2,242.9,242.2,241.3,242.6,240.8,242.1,243.1,240.8,243.9,242.7,242.6]}},{"b":7,"v":{"total":[34.7,34.9,34.9,35.7,35.5,35.5,36.4,34.5,35.5,34.7,34.5,35.5,34.8,34.6,34.9],"script":[6.2,6.2,6.3,6.3,6.3,6.4,6.7,6.2,6.3,6.2,6.4,6.1,6.3,6.3,6.2],"paint":[27.5,27.7,27.7,28.4,28.3,28.3,28.8,27.4,28.2,27.6,27.2,28.4,27.6,27.4,27.8]}},{"b":8,"v":{"total":[11.2,11.3,12.3,11.5,11.2,12.6,10.9,11.7,11.5,11.1,11.5,11.3,11.7,11.6,11.5],"script":[10,9.4,10.4,9.6,9.8,9.9,8.8,10,9.4,9.1,9.7,9.7,9.6,9.6,9.7],"paint":[0.4,1.2,0.9,0.2,0.2,1.2,1.2,0.7,1.8,1.5,0.5,0.6,0.8,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[4.6]}},{"b":11,"v":{"DEFAULT":[4.6]}},{"b":12,"v":{"DEFAULT":[3.1]}},{"b":13,"v":{"DEFAULT":[29.5]}},{"b":14,"v":{"DEFAULT":[90.7]}},{"b":15,"v":{"DEFAULT":[27.8]}},{"b":16,"v":{"DEFAULT":[117.4]}}]},
-{"f":115,"b":[{"b":0,"v":{"total":[26.8,28.2,26.7,26.5,26.8,26.5,26.5,26.3,26.5,26.6,26.6,26.9,26.3,26.6,26.6],"script":[3.5,3.7,3.4,3.4,3.4,3.5,3.4,3.4,3.4,3.5,3.4,3.6,3.3,3.4,3.4],"paint":[23,24.2,22.9,22.7,23,22.6,22.7,22.5,22.7,22.8,22.8,22.9,22.7,22.8,22.8]}},{"b":1,"v":{"total":[30.7,30.9,31.3,31.1,30.6,30.7,30.6,30.8,31,31.1,31.1,31,30.8,30.7,31],"script":[6.4,6.1,6.3,6.3,6.2,6.4,6.1,6.1,6.2,6.2,6.3,6.2,6.2,6.1,6.2],"paint":[23.8,24.3,24.1,24.3,23.9,23.7,24,24.2,24.2,24.3,24.2,24.3,24,24,24.2]}},{"b":2,"v":{"total":[12,12.2,11.8,11.5,12.1,12.1,11.6,11.8,11.9,11.9,11.5,11.6,11.7,11.8,12.1],"script":[0.5,0.2,0.5,0.8,1.3,0.9,0.6,0.5,0.8,0.8,1.4,0.8,0.5,0.6,0.2],"paint":[9.9,10.7,10.4,10.4,9.8,10,9.5,10.6,10,10.3,9.2,10,10.1,9.9,11]}},{"b":3,"v":{"total":[3,2,1.9,2.1,2.6,1.5,2.6,2.4,2.2,2,2.5,2,2,1.8,1.9,2.2,2.3,1.8,1.6,2.5,2.1,1.9,2.1,2.4,2.1],"script":[1,0.1,0.1,0.1,0.9,0.1,0.8,0.1,0,0.1,0.7,0,0,0.3,0.1,0.1,0.4,0,0,0,0.5,0.1,0.7,0,0],"paint":[1,1.2,1,1,1.3,1.3,1.1,1.5,2,1.8,1.7,1.9,1.4,1.1,1.7,2,1.7,1.1,1,2.3,1.1,0.6,1.3,2.2,0.9]}},{"b":4,"v":{"total":[14,13.2,13.3,13.4,13.8,14.3,12.9,13.3,13.7,13.5,12.7,14.3,14.5,13.2,13.6],"script":[0.1,0.1,1.1,0.1,0.1,0.5,0.1,0.6,0.5,0.1,0.1,0.5,0.1,0.1,0.8],"paint":[12.9,11.5,11.6,11.9,12,12.6,11.8,11.6,11.8,12.2,11.5,12.7,13.4,11.6,11.5]}},{"b":5,"v":{"total":[10.4,10.6,10.7,10.7,10.7,10.7,10.7,10.6,11,10.9,10.5,10.6,10.6,10.4,10.5],"script":[0.1,0.4,0.2,0.2,0.4,0.3,0.2,0.3,0.2,0.3,0.3,0.3,0.3,0.1,0.1],"paint":[9.7,9.5,9.8,9.7,9.8,9.8,9.8,9.7,10.2,9.6,9.7,9.8,9.5,9.6,10]}},{"b":6,"v":{"total":[284.1,282.2,282.8,285.1,286,284.1,283.2,285.7,285.2,285.3,284.4,286,285,285.4,283.7],"script":[37.5,36.7,37.6,37.6,37.4,37,37.2,36.9,36.8,37.2,36.5,36.7,36.8,37,36.7],"paint":[240.4,239.5,239.3,241.7,242.7,240.8,240.2,242.9,242.4,242.3,241.1,243.2,241.7,242.1,241.4]}},{"b":7,"v":{"total":[31.6,31,31.4,31.7,31.6,31.4,31.7,32.4,31.9,31.4,32.4,31.3,32.1,32.2,32.5],"script":[4,4,4,4,4,4,4.2,4.1,4.1,3.9,4.2,4,4,4.2,4.2],"paint":[26.9,26.4,26.7,27.1,26.9,26.7,26.8,27.5,27.1,26.8,27.5,26.6,27.3,27.3,27.6]}},{"b":8,"v":{"total":[10.8,9.7,9.4,9.2,10.2,9.7,9.4,10,9.4,10.3,11.6,9.7,9,9.3,9.5],"script":[8.6,7.5,7.6,6.8,8,8.1,7.6,7.7,7.6,8.2,9.3,7.7,7.3,7.6,7.8],"paint":[1.2,1.2,0.2,1.2,1.1,1,0.6,1.3,1,0.9,2.1,0.7,0.2,1.1,0.2]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[18.2]}},{"b":14,"v":{"DEFAULT":[33.9]}},{"b":15,"v":{"DEFAULT":[8.7]}},{"b":16,"v":{"DEFAULT":[60.1]}}]},
-{"f":116,"b":[{"b":0,"v":{"total":[33.9,33.1,33.1,33.7,33.5,33.2,33.6,33.7,34,33.1,33.9,33.6,33.2,33.6,33.2],"script":[9.4,8.7,8.8,9.2,9.1,8.8,8.9,9.1,9.4,8.7,9.2,9.2,8.8,9.1,9],"paint":[23.9,23.8,23.8,24,23.8,23.9,24.1,24,24,23.9,24.1,23.9,24,24,23.7]}},{"b":1,"v":{"total":[36.3,35.6,35.2,35.8,36,35.7,35.6,35.7,35.6,36.4,35.7,35.4,35.9,37.1,35.6],"script":[11.7,11.6,11.1,11.2,11.4,11.3,11.2,11.3,11.3,11.6,11.5,11.1,11.5,11.4,11.3],"paint":[24,23.5,23.5,24.1,24,23.9,23.8,23.9,23.8,24.2,23.8,23.7,23.9,25,23.8]}},{"b":2,"v":{"total":[14.1,13.4,13.1,13.4,12.8,13.3,13.6,13.4,13.7,13.9,13.7,13.1,14.5,14.2,13.8],"script":[2,2.2,1.9,1.7,1.8,2.1,2.8,1.8,2.7,1.9,2.2,1.7,2.5,1.5,1.4],"paint":[10.1,10.3,10.2,10.8,9.3,10.3,9.5,10.2,9.4,10.6,10,10.2,11.3,11.2,11.4]}},{"b":3,"v":{"total":[4.8,4.5,4.3,3.8,4.1,4,3.8,4.5,4.6,4.3,4.4,4.5,4.2,4.8,4.6,3.8,4.1,3.6,4.1,4,4,4,4.2,4.1,4],"script":[2.3,2.4,2.3,2.2,2.3,2.4,1.9,2.9,2.7,1.4,2.5,2.6,1.8,2.5,2.7,2,2.2,1.6,1.7,1.9,2.5,1.8,2.4,1.7,2],"paint":[1.6,0.3,1.4,1.5,1.1,1.5,1.1,1.5,1.8,2.8,1.3,0.7,1.3,0.8,1.7,1.7,1,1.4,1.8,1.4,1.4,1,0.7,2.3,1.9]}},{"b":4,"v":{"total":[15.4,13.8,14.5,14.8,15.5,14.8,15.1,14.8,15,15.4,14.9,15.6,14.2,15.1,15.3],"script":[1.3,1.1,1.8,1.6,2.3,1.5,2.3,1.5,1.8,1.8,1.7,1.9,1.6,1.6,1.5],"paint":[13.2,11.5,11.8,11.7,12.6,12.3,11.9,11.8,12,12.3,12.3,12,11.5,12.9,12.6]}},{"b":5,"v":{"total":[11.1,11.6,11.5,11.5,11.4,11.5,11.1,11.1,11.8,11.2,11.5,11.5,11.1,11.6,11.5],"script":[1.1,1,1.2,1.2,1.2,1.1,1.1,1.1,1.2,0.8,1.2,1.2,0.8,1,1.1],"paint":[9.4,9.6,9.4,9.8,9.4,9.9,9.2,9.5,9.9,10.1,9.6,10.1,9.6,9.9,10]}},{"b":6,"v":{"total":[315.1,313.7,314.2,316.6,317.1,313.6,313.1,312.9,315,312.6,313.4,314.4,314,312.7,314.9],"script":[61.5,62.2,62,62.6,62,62.9,62.2,62.9,64.7,62.5,63.3,62.1,63,61.8,62.4],"paint":[247.7,245.3,246.1,247.6,248.6,244.8,245.1,243.8,244.4,243.9,244.4,246.4,244.8,244.8,246.3]}},{"b":7,"v":{"total":[34.1,34.5,34.7,33.7,33.9,35.1,34.5,34.2,34.4,34.2,34.1,34.8,33.7,33.6,34],"script":[6.1,6.3,6,6,6,6.1,6.1,6.1,6.2,6.1,6.1,6.1,6,6,6.1],"paint":[27,27.2,27.5,26.8,27,27.9,27.4,27.2,27.3,27.1,27,27.7,26.8,26.7,27]}},{"b":8,"v":{"total":[13.2,12.9,13,12.3,12.2,12,13,13.5,13.3,13.2,13.4,12.9,13.2,13,12.6],"script":[11.2,11.1,11.2,10.9,10.4,10.5,10.8,11.5,11,11.7,11.5,10.6,11.4,10.6,10.5],"paint":[1.4,1.2,0.3,0.2,0.9,0.6,0.7,1.1,1.3,0.6,0.9,1,1.2,1.7,1.2]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[3.3]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[2.4]}},{"b":13,"v":{"DEFAULT":[16.5]}},{"b":14,"v":{"DEFAULT":[130.8]}},{"b":15,"v":{"DEFAULT":[34.2]}},{"b":16,"v":{"DEFAULT":[70.9]}}]},
-{"f":117,"b":[{"b":0,"v":{"total":[34.3,34.4,34.3,34,34.2,34.5,34.5,34.1,34.2,34.2,34.1,34.3,34.6,34.2,35.3],"script":[8.8,9.3,8.8,8.8,9.1,9,8.9,8.9,9.1,9,9,8.8,9,8.9,9.2],"paint":[24.9,24.6,24.9,24.7,24.5,24.9,25.1,24.6,24.6,24.6,24.5,24.8,25,24.8,25.4]}},{"b":1,"v":{"total":[38.9,39.9,38.7,40.4,39,38.8,39.9,39.7,39.1,39.5,39.4,40.6,38.9,39.6,38.9],"script":[14.5,15.2,14.5,14.9,14.5,14.5,14.7,15.1,14.7,14.7,14.7,14.5,14.6,14.7,14.4],"paint":[23.9,24.1,23.6,24.9,23.9,23.7,24.7,24,23.8,24.2,24.1,25.6,23.7,24.3,24]}},{"b":2,"v":{"total":[25.6,25.7,26.6,24.4,25.9,25.6,26,24.9,25.4,27,25.8,27.3,25.4,25.1,26.7],"script":[12.3,12.3,12.6,11.8,12.2,11.7,13,12.3,11.8,13.8,13.1,13.6,12.2,11.4,12.7],"paint":[11,11.7,11.5,10.3,10.6,12.2,11,10.8,11.5,10.5,10.1,11.2,10.9,11.4,12.1]}},{"b":3,"v":{"total":[15.6,16.4,15,14.8,14.9,14,14.5,14.8,17.3,15.2,14.9,14.5,14.4,13.9,17.9,14.8,13.8,15.2,16.4,16.1,15,15.5,16.1,15.5,14.4],"script":[12.3,12.5,11.8,10.9,10.5,11.2,11.5,11.5,13.8,11.6,11.5,11.5,11.1,10.7,14.1,11.8,10.5,11.8,12.8,13.3,11.4,12.2,12.3,12.4,10.9],"paint":[1.5,1.4,1.6,1.5,1.4,1.1,1.5,2.2,2.2,2.4,2.4,1.1,1,1.5,1.5,1.2,1.5,1.3,3.3,1.2,1.8,1.5,2,1.5,1.1]}},{"b":4,"v":{"total":[26.1,29.6,26.4,28.1,27.2,26.7,25.6,26.4,27.6,27.7,27.7,27.7,26.9,27.1,28.3],"script":[10.6,12.5,10.1,11,11.1,10,9.8,10.6,11,11.2,10.8,11.6,11.1,11,13.1],"paint":[13.5,14.8,13.5,15.3,13.9,14.4,13.9,13.8,14.3,14.1,14.3,13.6,13.1,15,13]}},{"b":5,"v":{"total":[17.7,17.7,18.2,18.7,18.4,17.7,17.7,18.1,18.5,17.8,17.4,18.1,18.5,17.7,18.2],"script":[5.9,5.7,5.7,6.4,6.5,6,5.7,6.5,6.3,5.9,5.8,6.1,6.4,6,6.1],"paint":[10.6,10.6,11.6,11.2,10.7,10.5,10.8,10.8,11,10.8,10.5,10.6,11.1,10.6,11]}},{"b":6,"v":{"total":[345.1,339.5,343.9,340.5,345.2,343.7,346.9,341.1,345.8,342.9,343,343.2,342.2,342.4,344.8],"script":[92.7,91.9,93,92.1,93.9,92.9,93.4,93,94.3,93.2,93.3,93.4,93.2,94,94],"paint":[245.4,241.4,244,242.1,243.8,243.9,246.3,241.9,245.1,243,243,243.5,242.6,242,243.1]}},{"b":7,"v":{"total":[40.6,42,41.2,41.3,40.4,41.1,41,40.3,41.9,41.8,40.4,41.3,40.3,40.8,41.5],"script":[12.1,12.2,12.1,12.1,11.9,12,12.3,11.8,11.8,12,11.9,12.5,11.7,12.3,12.2],"paint":[27.6,28.8,28.2,28.2,27.5,28.1,27.8,27.4,29,28.7,27.5,27.9,27.6,27.6,28.4]}},{"b":8,"v":{"total":[10.9,11.4,10.8,11.3,11.2,11.5,11.2,11.4,10.5,11.5,11.1,10.4,10.4,12,11.5],"script":[8.8,8.8,9,8.8,8.8,8.8,9.1,8.9,8.5,9.6,9,8.8,8,10.3,9.1],"paint":[1.6,1.5,1.6,1.5,1.2,1.6,1.2,2.3,1.6,1.2,0.9,0.3,2.2,0.9,1.2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.7]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[29.5]}},{"b":14,"v":{"DEFAULT":[17.6]}},{"b":15,"v":{"DEFAULT":[7.2]}},{"b":16,"v":{"DEFAULT":[48.5]}}]},
-{"f":118,"b":[{"b":0,"v":{"total":[26.3,26.3,26.5,25.9,26.7,26.3,26.5,26.6,26.6,26.4,26.9,26.6,26.4,26.4,26.4],"script":[2.3,2.5,2.4,2.4,2.5,2.4,2.5,2.4,2.5,2.5,2.5,2.5,2.5,2.4,2.4],"paint":[23.6,23.4,23.7,23.2,23.9,23.5,23.6,23.8,23.7,23.6,24,23.7,23.6,23.6,23.7]}},{"b":1,"v":{"total":[29.1,29.5,29.5,29.7,30,29.5,29.5,30,29.5,30,29.5,29.5,29.5,30.2,29.9],"script":[5.1,5.2,5.4,5.2,5.6,5.1,5,5.6,5.3,5.5,5.1,5.1,5.3,5.2,5.5],"paint":[23.4,23.7,23.5,24,23.8,23.8,24.1,23.8,23.6,23.9,23.8,23.8,23.7,24.4,23.9]}},{"b":2,"v":{"total":[12.6,12.5,12.2,12.6,12.7,12.1,13.4,12,12.3,12,12.7,12.1,12.2,12.2,12.4],"script":[0.8,1,0.8,0.8,1.2,1.3,1,1,1,1.1,1,0.9,0.5,0.9,1.1],"paint":[10.8,10.3,10.2,11.2,10.2,9.8,10.1,10.1,10.1,9.9,9.9,10.1,10.4,10,10.5]}},{"b":3,"v":{"total":[2.9,3,2.8,3.3,2.9,3.6,4.4,3.2,3.1,2.9,3.1,2.7,3.3,2.3,3,3.1,2.9,2.4,3.4,2.7,3,3,2.8,3,2.5],"script":[1.1,1.2,0.8,1.4,1,1.5,1.3,1.1,1.1,1.1,1.2,0.9,0.9,0.6,0.9,1,1.1,0.9,0.8,1,1,0.9,0.5,0.6,1.1],"paint":[1.3,1.5,1.9,0.5,1.1,1.8,1.3,1.1,1.7,1.3,1.2,1.3,1.4,1.6,1.2,1.9,0.9,0.9,1.7,0.9,1.1,1.2,2.1,2.3,1.3]}},{"b":4,"v":{"total":[15,15.1,16,15.1,14.7,14.7,15,14.3,15.2,14.4,15.5,14.2,14,14.6,16.4],"script":[1.1,1.1,1.2,1.1,0.8,1.2,1.7,1,1.4,0.9,1.5,0.6,1.2,0.9,1.2],"paint":[11.6,12.9,13.9,12.4,12.8,12.5,12.5,12.2,12.8,12.1,12.4,12.7,11.5,12.6,14.5]}},{"b":5,"v":{"total":[11.4,11.2,10.9,11,10.8,10.9,11,10.7,10.9,10.9,10.6,10.6,10.8,10.7,10.5],"script":[0.5,0.3,0.3,0.5,0.4,0.4,0.5,0.5,0.4,0.5,0.2,0.3,0.5,0.3,0.4],"paint":[10,9.8,10,10,9.6,10,10,9.6,9.8,9.9,9.8,9.8,9.7,9.8,9.1]}},{"b":6,"v":{"total":[283.4,283.6,280.8,279.6,271.4,285,274,273.9,281.9,271.3,272.3,272.1,273.8,279.6,280.3],"script":[27.8,27.6,27.3,27.1,28.2,30.7,28.7,28.3,28.9,27.6,27.9,27.9,28,27.6,27.7],"paint":[249.2,249.5,247.3,246.6,237.3,248.5,239.5,239.8,247.2,237.9,238.8,238.4,239.4,246,247.1]}},{"b":7,"v":{"total":[31.9,31.3,29.3,29.7,29.9,29.7,29.1,29.4,29.3,29.6,29,29.3,30,29.5,29.4],"script":[3,2.6,2.9,2.8,3.1,2.9,2.6,2.6,2.5,2.6,2.5,2.6,3,2.6,2.6],"paint":[28.1,27.8,25.7,26.3,26,26.1,25.8,26.1,26,26.3,25.8,26,26.3,26.2,26.1]}},{"b":8,"v":{"total":[9.7,9.5,10.4,10.1,9.8,10.4,10.6,10.1,10.1,9.8,10.6,9.6,9.5,10.7,9.8],"script":[7.9,7.8,8.9,8.1,7.9,7.8,8.3,8.8,7.8,7.9,8.6,7.5,7.4,9,7.9],"paint":[0.8,0.3,0.6,0.6,1.1,1.4,0.6,1.1,1.4,1.2,0.3,1.1,0.2,0.5,1.7]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.9]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[20.4]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[50.2]}}]},
-{"f":119,"b":[{"b":0,"v":{"total":[26.5,26.2,26.4,26.4,26.6,26.5,26.9,26.7,26.7,26.3,26.9,26.8,26.5,26.4,26.4],"script":[2.9,2.9,3,2.9,3,2.9,2.9,2.9,2.9,2.9,2.9,3,2.9,2.9,2.9],"paint":[23.3,23,23,23.1,23.2,23.2,23.6,23.5,23.4,23,23.6,23.5,23.3,23.1,23.2]}},{"b":1,"v":{"total":[30.5,29.8,31.1,30,30.6,30.8,30.1,30.4,30.9,30.1,30.6,30.9,30.9,30.7,30.5],"script":[6.3,6,6.2,5.8,6.4,6,6.2,6.4,6,6.1,5.9,6.1,6,6.2,6.1],"paint":[23.6,23.3,24.5,23.5,23.7,24.3,23.4,23.5,24.4,23.5,24.2,24.3,24.2,23.9,23.8]}},{"b":2,"v":{"total":[13,13,12.5,13,12.8,12.2,12.9,13.9,13,12.6,12.1,13,13,13,12.5],"script":[1.2,2,0.9,1.4,1.7,1,2.1,2.4,1.7,1.7,1.4,1.5,1.3,1.3,1],"paint":[10.9,9.9,10.1,10.5,9.7,10,9.2,10.5,9.9,10.2,9.8,10.3,9.5,11.1,10.4]}},{"b":3,"v":{"total":[3.7,3.2,3,3.4,3.3,2.8,3.9,2.7,2.7,2.9,2.7,2.5,3.1,2.4,3.5,2.8,3.2,3.6,3.2,3.3,3,2.7,3.2,2.9,2.7],"script":[0.8,1,1,1.2,1.5,1.1,1.8,0.6,0.9,1,0.6,0.8,0.2,0.9,1.4,0.9,0.8,0.8,0.9,1.3,1,0.2,0.6,0.8,0.9],"paint":[1.1,1.5,1.1,1.3,1.7,1.1,1.3,1.1,1,1.7,2,0.8,1.8,1.4,1,1.1,1.5,0.7,1.8,1.4,1.9,1.6,2.4,1.2,1.6]}},{"b":4,"v":{"total":[16.6,14.6,16.1,15.5,16.1,17.7,16.7,16.1,15.5,15.2,15.4,15.1,15.3,15.7,14.9],"script":[1.1,1.8,1.6,1.4,1.3,3.8,2.2,2.2,1.9,1,2.2,1.4,1.5,1.8,1.3],"paint":[14,12.1,13.4,12.9,14,12.3,13.5,12.7,12.3,13.3,12.9,12.7,12,12.8,12.6]}},{"b":5,"v":{"total":[11.9,11.5,11.8,12.1,11.8,11.9,11.7,11.7,11.8,11.5,11.1,11.7,11.6,11.4,11.6],"script":[1.2,0.7,0.9,1.1,0.8,0.7,0.9,0.8,1.4,1,0.8,1.1,1,1,0.9],"paint":[10.1,9.9,10.1,10.3,10.2,10.6,10.2,10.3,9.4,9.5,10,9.8,9.7,9.9,10.1]}},{"b":6,"v":{"total":[291.8,289.6,289.1,293,292.6,289.8,289,289.4,292,293.8,289.6,291.2,289.9,291.3,290.9],"script":[40.6,39.9,39.7,40.8,40,39.5,39.9,40,39.5,41.6,40.1,39.8,39.5,39.9,39.8],"paint":[244.6,243.6,243.3,245.7,245.8,244.1,242.7,243,246.1,245.6,242.9,245,243.8,244.9,244.5]}},{"b":7,"v":{"total":[31.3,31,30.9,30.9,31.5,31.4,31.2,31.5,31.9,31.7,31.1,31.6,31.2,31.3,31.3],"script":[4.2,3.9,3.6,4.2,4.2,3.9,4.3,3.6,4.2,3.8,3.9,4.2,4.2,4.2,4.2],"paint":[26.4,26.5,26.6,26,26.5,26.9,26.2,27.1,27,27.1,26.5,26.7,26.3,26.4,26.5]}},{"b":8,"v":{"total":[10.3,11.1,9.8,9.4,10.2,10.2,10,9.8,9.5,9.8,10.7,9.4,10.8,10.3,9.8],"script":[8,9.1,7.1,7.4,8.4,8.4,7.9,7.7,8.2,8,8.9,7.6,8.7,8.2,7.8],"paint":[1.6,1.7,2.1,1.2,1,0.9,0.6,0.2,0.2,0.9,1,1,1.3,0.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3]}},{"b":12,"v":{"DEFAULT":[1.5]}},{"b":13,"v":{"DEFAULT":[21.7]}},{"b":14,"v":{"DEFAULT":[22.9]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[54.9]}}]},
-{"f":120,"b":[{"b":0,"v":{"total":[25.7,25.5,25.3,25.7,25.8,25.9,25.5,25.9,25.9,25.6,25.7,25.9,25.4,25.4,25.3],"script":[2.3,2.2,2.2,2.2,2.2,2.2,2.1,2.1,2.2,2.1,2.2,2.2,2.2,2.2,2.2],"paint":[23.1,23,22.7,23.2,23.3,23.4,23,23.4,23.3,23,23.2,23.3,22.8,22.9,22.7]}},{"b":1,"v":{"total":[28.9,29.3,29.5,28.9,28.9,29.6,29.5,29,29.4,29,29.2,29.3,29.3,28.8,28.7],"script":[5.2,5.3,5.7,4.9,5,5.1,5.3,5.4,5.3,5.2,5.3,5.6,5.4,5,5],"paint":[23.1,23.4,23.3,23.6,23.5,23.9,23.4,23.1,23.5,23.2,23.3,23.2,23.3,23.5,23.3]}},{"b":2,"v":{"total":[12.2,12.3,11.8,11.7,12.1,12.6,12.2,11.9,12.2,12,12,11.7,12.3,12.4,11.6],"script":[1,1,0.6,0.6,1.2,0.8,1.5,0.2,0.8,1,0.8,0.8,0.9,1.2,0.9],"paint":[10.4,10.5,9.8,9.2,9.9,9.8,9.5,10.5,10,9,10.4,9.5,10,9.9,9.6]}},{"b":3,"v":{"total":[3.1,2.8,2.8,2.6,2.6,3.2,3.4,2.8,3.3,3.6,2.9,3.6,3,2.4,3.2,3.3,3.4,2.8,2.5,2.8,3.2,3.1,2.9,2.4,3.3],"script":[1,0.9,1,0.5,0.8,1.3,0.8,0.9,1.2,1.3,1.3,1.5,0.9,0.6,1.3,1.4,1.2,0.9,0.7,1.2,1.2,1,1.1,0.9,1.2],"paint":[1.4,1.8,1.1,1.6,1.7,1.8,2,1,1.9,1.6,1.1,1.4,1.4,1.6,1.1,1.2,1.3,1.4,1.4,0.9,1.4,1.9,1.1,1.4,1.4]}},{"b":4,"v":{"total":[14.9,15,16.2,15,14.9,13.9,14.2,14.2,14.4,14.8,13.5,14.4,15,13.9,14.8],"script":[0.7,1,1.6,1.5,1.3,1.3,1.2,1.1,1.2,1.4,0.9,0.9,1.7,0.6,1.1],"paint":[13.4,12.9,13.1,11.5,12.4,11.7,11.8,11.3,11.9,11.9,11.1,12.7,12.4,12,12.8]}},{"b":5,"v":{"total":[11.1,10.7,11,10.7,10.9,11,11,10.8,10.7,10.5,10.5,10.9,10.9,10.7,10.7],"script":[0.5,0.4,0.5,0.3,0.4,0.6,0.5,0.5,0.3,0.2,0.2,0.4,0.5,0.5,0.5],"paint":[9.6,9.9,10,9.7,9.7,10.2,9.7,9.5,9.7,9.8,9.9,9.8,9.9,9.6,9.8]}},{"b":6,"v":{"total":[273.1,279.4,281,273,283.4,273.4,274.1,271.1,273.5,278.9,277.1,273.5,281.4,273.5,283.9],"script":[30.9,30.5,30.6,31.1,31.5,30.6,29.9,30.1,30.9,30.5,29.2,29.9,29.5,31,31.6],"paint":[236,243.5,244.8,236.2,245.9,236.8,238.2,235,236.6,242.7,241.9,237.9,245.8,236.8,246.1]}},{"b":7,"v":{"total":[28.3,28.4,29,28.9,29,29.3,28.7,28.2,29.3,28.6,28.2,28.4,28.2,28.6,28.6],"script":[2.4,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[25.2,25.3,25.9,25.7,25.8,26.1,25.6,25.2,26.1,25.5,25.2,25.4,25.2,25.5,25.5]}},{"b":8,"v":{"total":[10.1,10.6,10,9.9,10.3,9.9,10.4,9.6,9.4,9.9,9.8,10.3,10.5,9.3,10.5],"script":[8.4,8,7.8,7.3,8.3,7.4,8.4,7.3,7.4,8,8,8.4,6.9,7.2,8.7],"paint":[0.2,1.3,0.7,1.7,1.5,1.7,0.5,1.3,0.2,0.6,0.2,1.3,2.1,1.2,0.6]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.9]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[20.4]}},{"b":14,"v":{"DEFAULT":[19.1]}},{"b":15,"v":{"DEFAULT":[7]}},{"b":16,"v":{"DEFAULT":[50.5]}}]},
-{"f":121,"b":[{"b":0,"v":{"total":[31.5,31.4,30.9,30.7,31.6,31.1,31,30.8,31.1,31,31.1,30.6,30.6,31,31],"script":[7.1,6.9,6.5,6.4,7,6.6,6.5,6.5,6.5,6.5,6.5,6.4,6.3,6.5,6.5],"paint":[23.9,24,23.9,23.8,24.1,23.9,23.9,23.8,24.1,24,24,23.7,23.7,23.9,24]}},{"b":1,"v":{"total":[35.7,35,36.1,35.9,35.4,35.1,35,35.2,35.1,35,36,35.3,35.2,35.9,35.3],"script":[10.8,10.7,11.2,10.8,10.9,11,10.9,10.7,10.8,11,10.7,10.8,10.9,11,10.9],"paint":[24.3,23.7,24.4,24.5,23.9,23.5,23.5,23.9,23.8,23.4,24.7,23.9,23.7,24.3,23.8]}},{"b":2,"v":{"total":[14.7,14,13.9,14.6,14.6,13.9,15.5,14.5,13.7,14.1,13.8,14.6,15.9,15,14.2],"script":[3.3,3,2.6,3.6,3.3,2.7,2.8,3.2,2.7,3.2,3.2,3,3.1,3.6,3.1],"paint":[10.5,9.5,9.4,9.5,10.1,10,11.9,9.7,9.4,9.7,9.8,10.7,10.5,10.4,10]}},{"b":3,"v":{"total":[6.5,5.9,5.6,5.4,5.7,5.4,5.7,5.7,5.6,5.3,6.1,5.4,5.3,5.8,5.7,5.4,6,5.9,5.9,5.4,5.7,6,6.5,6.1,5.6],"script":[3.9,4,4.3,4,3.7,3.6,3.9,3.7,4,3.5,3.2,3.2,3.8,3.6,4.2,3.7,3.9,3.6,3.7,3.2,3.6,3.9,4.5,4,3],"paint":[1.7,1.8,1.2,1.3,1.5,1,1.7,1.6,0.7,1,2.7,1.4,1,2.2,1,1,1.4,2.1,1.4,2.1,1,1.2,1.3,1.5,2.5]}},{"b":4,"v":{"total":[16.7,16.2,16,16.7,16.4,16.4,16.4,16.2,15.9,15.7,16.4,17.1,16.3,16.7,16.5],"script":[1.8,2.8,2.4,3.2,2.8,2.4,2.7,2.2,2.6,2.2,2.5,2.7,3.3,3.3,2.2],"paint":[14,12.2,13.3,11.9,12.8,12.9,12.7,12.9,12,11.7,12,13.6,12,12.5,13.5]}},{"b":5,"v":{"total":[12.1,12.1,12.2,11.8,12.2,12.1,11.9,11.7,12.2,12.3,12.1,12,12,12.1,11.8],"script":[1.5,1.8,1.8,1.5,1.7,1.7,1.6,1.4,1.7,1.7,1.8,1.8,1.8,1.7,1.7],"paint":[10.1,9.7,9.7,9.7,9.9,9.8,9.6,9.9,9.6,10,9.8,9.6,9.7,9.8,9.4]}},{"b":6,"v":{"total":[309.9,313.8,313.3,314.8,315.3,313.6,313.6,316.2,311.7,313.7,314.5,313.7,313.4,312.6,314.2],"script":[61.5,63.4,64.8,63.5,64.6,62.9,63.8,64.7,64.3,63.8,64.5,63.5,64.3,63.6,63.7],"paint":[242.4,244.2,242.6,244.9,244.6,244.2,243.5,245.1,241.7,243.8,243.9,243.7,242.9,243.2,244.1]}},{"b":7,"v":{"total":[35.7,35.7,35.6,35.6,35.7,35.6,35.5,35.7,35.4,36.5,35.2,35.8,35.9,36,36],"script":[7.8,7.7,7.7,7.8,7.8,7.8,7.8,7.8,7.5,8,7.6,7.8,7.9,7.8,7.8],"paint":[27,27.1,26.9,26.9,26.9,26.9,26.8,27,27,27.6,26.8,27.2,27,27.3,27.4]}},{"b":8,"v":{"total":[13.8,13.7,15.4,13.2,13.7,13.7,13.3,13.5,13.1,13.3,13.7,14,13.1,13.3,13.5],"script":[11.8,11.8,11.8,10.9,11.7,11.6,11.8,11.2,11.2,11,12.2,11.8,11,11.4,11.4],"paint":[1.3,1.7,2.4,1.4,1.1,1,0.6,1.1,1.6,1.3,0.7,1.1,1.1,0.8,1.5]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[4.9]}},{"b":11,"v":{"DEFAULT":[4.9]}},{"b":12,"v":{"DEFAULT":[3.5]}},{"b":13,"v":{"DEFAULT":[40.6]}},{"b":14,"v":{"DEFAULT":[157.5]}},{"b":15,"v":{"DEFAULT":[47.2]}},{"b":16,"v":{"DEFAULT":[212.4]}}]},
-{"f":122,"b":[{"b":0,"v":{"total":[26.5,25.4,26.1,25.8,25.6,25.5,25.6,25.4,25.9,25.9,25.8,26.1,25.8,26.1,25],"script":[2.4,2.2,2.3,2.3,2.2,2.2,2.1,2.2,2.2,2.1,2.2,2.4,2.2,2.4,2.2],"paint":[23.7,22.9,23.5,23.1,23.1,22.9,23,22.9,23.4,23.4,23.3,23.3,23.3,23.3,22.5]}},{"b":1,"v":{"total":[28.4,28.3,28.4,28.8,28.2,28.2,28.3,28,28,27.8,28.3,29.5,29.1,28.1,28.1],"script":[4.2,4.3,4.3,4.4,4.3,4,4.1,4.2,4,4,4.2,4.2,4.4,4,4.1],"paint":[23.7,23.6,23.7,24,23.6,23.8,23.8,23.4,23.5,23.4,23.7,24.9,24.2,23.7,23.6]}},{"b":2,"v":{"total":[12.9,12.3,12.5,12.2,12.5,12.7,13.1,12.5,12.9,12.9,12.5,12.5,12.2,12.9,12.4],"script":[1.3,1,1.3,0.7,1.4,1.4,0.7,1.3,1.3,0.9,1,1.2,1.5,1.8,1.5],"paint":[10,9.9,10,9.8,9.8,10.4,10.7,10.3,10.6,10.4,10.2,10.2,9.2,10,9.5]}},{"b":3,"v":{"total":[4.7,3.1,3.4,3,3.5,3.3,5.4,3.2,3.4,3.3,4.1,3.5,3.1,3,4.4,2.8,2.9,2.9,3.1,3.3,3.2,8.5,3.3,3,3.3],"script":[1.6,1.2,0.9,0.6,1.2,1,1.6,0.9,0.9,0.8,1,0.3,0.6,0.9,1.2,1,0.6,1.2,1.2,0.9,1.1,1.4,1.6,0.6,0.6],"paint":[0.8,1.2,1,1.5,1.2,1.4,1.6,1.4,2.3,1.4,2,2.1,2.4,1.2,1.6,0.3,1.3,1.5,1.7,1.4,2,1.2,1.2,1.5,1.6]}},{"b":4,"v":{"total":[15.9,15.6,15.3,16.2,15.6,15,14.8,14.9,16.4,15.4,14.5,15.2,15.3,15,15.2],"script":[1.5,1.4,1,1.8,1.5,1.9,1.4,1.7,1.8,1.9,1.4,1.7,1.1,2,1.7],"paint":[12.1,12.4,13.7,13.7,12.7,12,12.4,11.9,12.8,12.4,11.6,12.1,13.2,11.5,12.5]}},{"b":5,"v":{"total":[11.4,11.4,11.3,11.7,11.4,11.1,11.3,10.6,11.1,11.6,11.2,11.7,11.6,11.1,11.4],"script":[0.6,0.6,0.6,0.6,0.6,0.4,0.6,0.3,0.6,0.7,0.6,0.6,0.4,0.6,0.4],"paint":[9.8,9.8,10.4,10.8,10,10.2,10.2,10,10.2,10.4,10.2,10.6,10.5,9.8,10.3]}},{"b":6,"v":{"total":[279.6,278.7,278.3,279.4,277.5,280.4,279,278.8,275.7,276.6,280.4,275.5,277.5,279.7,276.9],"script":[26.1,25,25.8,26.3,24.8,25.7,26,26,25.5,25.3,26.4,24.4,26.2,25.9,25.6],"paint":[247.2,247.5,246.4,247,246.5,248.5,246.6,246.4,244.1,245.4,247.8,245,245.7,246.7,245.3]}},{"b":7,"v":{"total":[29.4,29.8,29.3,30,30.7,30.9,30.4,30.7,29.8,29.8,29.5,29.3,31,30.3,30.3],"script":[2.3,2.3,2.3,2.3,2.4,2.5,2.4,2.4,2.3,2.4,2.3,2.3,2.5,2.4,2.3],"paint":[26.4,26.7,26.3,26.6,27.6,27.7,27.2,27.5,26.8,26.7,26.5,26.3,27.8,27,27.3]}},{"b":8,"v":{"total":[10,11.4,11.1,11.7,10,10.4,9.6,10.2,10.4,10.6,9.8,10.9,10.2,10,11],"script":[8.4,8.8,8.8,8.9,7.9,8.1,8,8.3,8.3,8.5,8.4,9.1,8.1,8.4,9.3],"paint":[0.4,0.2,0.7,1.3,1.5,1.1,0.2,0.7,1.2,1.5,0.2,0.8,0.6,0.2,0.4]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[17.6]}},{"b":14,"v":{"DEFAULT":[191.7]}},{"b":15,"v":{"DEFAULT":[32.4]}},{"b":16,"v":{"DEFAULT":[188]}}]},
-{"f":123,"b":[{"b":0,"v":{"total":[29.3,29,28.9,28.9,29.1,28.8,29,29.8,29.2,28.4,28.8,29.3,28.7,29.2,29.2],"script":[5.3,5.4,5.4,5.4,5.4,5.4,5.4,5.5,5.3,5.3,5.3,5.4,5.3,5.4,5.5],"paint":[23.4,23.1,22.9,22.9,23.2,22.9,23,23.8,23.4,22.6,23,23.3,22.8,23.3,23.2]}},{"b":1,"v":{"total":[33.5,33.6,33.4,33.3,33.6,33.5,33,33.4,33.3,32.6,33,33.5,33.7,33.2,33.3],"script":[8.4,8,8.3,8.2,8.2,8.4,8.2,8.3,8.3,7.8,8.1,8.3,8.4,8.4,8.2],"paint":[24.6,25,24.6,24.6,24.8,24.5,24.2,24.6,24.4,24.2,24.4,24.6,24.7,24.3,24.5]}},{"b":2,"v":{"total":[13.3,11.5,12,11.3,13.8,11.8,11.8,11.8,11.9,11.5,12.1,12.9,12.5,12.5,11.6],"script":[1.1,0.8,0.6,0.5,1.2,1.1,0.6,0.6,1.2,0.5,0.6,0.1,0.2,0.9,0.8],"paint":[10.8,9.7,10.6,9.3,11,9,10.1,10.6,9.2,9.5,10.5,11.7,10.6,10.4,9.8]}},{"b":3,"v":{"total":[7.2,1.9,2.3,1.5,2.4,1.8,1.9,2,1.4,1.7,2.4,2,1.8,2.5,2.1,2.3,2.4,3.1,2.4,1.8,1.8,2.1,2.5,1.6,2.2],"script":[0,0,0,0.4,0,0.5,0.7,0.4,0,0,0,0,0,0,0,0.3,0,0,0.9,0.7,0,0,0,0,0.3],"paint":[1.4,1.2,1.3,0.9,2.2,1.2,1,1.5,0.7,0.7,1.3,1.6,1.7,1.5,0.9,1.8,2.2,1.2,1.3,0.9,1.6,1.5,2.3,1.4,1.7]}},{"b":4,"v":{"total":[23.9,23.2,23.5,22.8,22.9,22.5,21.9,23.3,24.9,22.9,24.7,22.7,24.8,22.4,22.9],"script":[8.5,8.2,8.3,7.6,7.6,8.3,7.3,8,8.6,7.6,9.4,7.4,9.8,7.7,8],"paint":[13.6,12.7,13.7,13.4,13.2,11.6,13,14.1,14.2,13.2,12.9,13.1,13.3,12.7,13.4]}},{"b":5,"v":{"total":[14.8,14.7,15.1,15.2,14.6,15.3,15.2,15,14.7,14.5,14.8,16.1,16.5,14.8,14.6],"script":[3.9,3.8,4.1,4,3.8,3.9,4.3,4,4,3.7,4.3,3.9,5.5,3.8,3.7],"paint":[10,9.6,9.8,10.3,10.1,11,10,10.2,10.1,10.2,9.6,11.4,10.2,10.3,10.2]}},{"b":6,"v":{"total":[310.6,312.1,308,308.7,307.2,310.9,307.6,306.2,308.4,311.1,309,314.8,308.1,308.2,309.9],"script":[65.4,64.6,64.8,65.2,64.4,65.5,63.9,64.2,64.7,67.1,64.6,65.5,65.2,65.7,66.1],"paint":[237.4,241.3,236.7,237,236.3,238.8,237.2,235.8,237.4,237.9,237.8,242.9,236.6,236.3,237.5]}},{"b":7,"v":{"total":[37.3,37.1,36.9,36.2,37.5,35.6,37.4,37.6,37.7,36.2,36.8,37.5,36.1,37.7,38],"script":[8.4,8.2,8.4,8.2,8.3,8.2,8.5,8.8,8.1,8.3,8.1,8.6,8.1,8.8,8.6],"paint":[28.1,28,27.6,27.1,28.3,26.4,27.9,27.8,28.7,27,27.8,28,27,28.1,28.4]}},{"b":8,"v":{"total":[10.4,10,10.6,9.9,9.2,10.6,10.6,10.1,11.5,10.1,10.1,10.3,10.5,9.9,9.5],"script":[8.4,8.1,8.2,8,7.7,8.3,8,7.9,9.3,7.5,8,7.8,8.3,7.7,8],"paint":[1.1,1.1,1.7,0.9,0.7,1,1.8,0.7,0.3,2.2,1.2,1,1.3,0.5,0.6]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.5]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[67]}}]},
-{"f":124,"b":[{"b":0,"v":{"total":[31.3,30.7,31.1,31.8,31.2,31.2,31.8,31.2,32,31.2,31.1,31.2,31.6,31,31.6],"script":[6.2,6.2,6.3,6.5,6.4,6.3,7,6.5,6.4,6.4,6.3,6.4,6.5,6.4,6.9],"paint":[24.5,23.9,24.2,24.8,24.3,24.3,24.2,24.2,25.1,24.3,24.3,24.3,24.5,24,24.2]}},{"b":1,"v":{"total":[36.2,34.6,34.9,35.9,34.4,34.2,34.7,34.7,34.5,35.3,35.2,34.9,34.9,34.8,34.3],"script":[9,9,8.9,9.1,9,8.7,9,8.8,9,9.3,9.2,9,8.9,8.9,8.6],"paint":[26.6,25,25.4,26.3,24.8,25,25.2,25.2,24.9,25.4,25.4,25.3,25.5,25.4,25.2]}},{"b":2,"v":{"total":[11.9,11.9,11.9,12.2,11.7,11.8,11.7,11,12.6,12.1,12.2,12.4,12.4,12.3,12],"script":[0.2,0.9,0.9,1.3,0.2,0.5,0.8,0.2,0.8,0.5,0.2,0.2,0.9,0.6,0.2],"paint":[9,9.2,9.8,10,9.9,10.3,9.9,8.5,11.3,10.2,10.9,11.1,9.8,10.7,10.4]}},{"b":3,"v":{"total":[1.6,1.9,2.4,2.1,2.1,2.8,1.9,1.6,2.4,2.1,2.4,2.4,2.1,2.2,3.3,1.8,2.1,1.8,2.2,1.9,2.2,2.1,1.4,1.6,2.4],"script":[0,0,0.4,0,0.9,0,0,0,0.9,0,0,0,0.8,0,0,0.5,0.7,0,0,0,0,0,0,0,0.5],"paint":[1.4,1.1,1.8,0.8,0.7,2.6,1.2,0.9,1.2,1.9,1.9,1.2,0.7,1.3,1.8,0.7,1.3,1.2,0.9,1.2,1,1.6,1.3,0.7,1.3]}},{"b":4,"v":{"total":[23.6,24.5,24.6,24.7,24.5,23,24.5,23.6,24.9,23,24.2,25.1,23.8,23.4,24.7],"script":[9,9.3,9.5,9.8,9.7,8.5,8.8,8.9,9.6,9.2,9.3,9.8,9.5,8.3,8.6],"paint":[12.3,13.7,13.6,13.2,13.4,12.6,13.2,12.6,12.3,11.8,12.4,14,12.4,12.4,13.5]}},{"b":5,"v":{"total":[15.3,15.7,15.4,15.9,15.9,15.1,15.1,15.5,14.9,15.7,15.4,15.3,15.3,15.2,16.4],"script":[4.5,4.6,4.4,4.5,4.8,4.4,4.6,4.7,4.3,4.7,4.9,4.8,4.6,4.7,5.1],"paint":[9.9,10.7,10,10.7,10.2,9.8,9.5,10.2,9.8,10.2,9.9,9.7,9.7,10.1,10.2]}},{"b":6,"v":{"total":[315.3,317.4,316.9,319.2,312.6,318.3,318.2,314.8,314.2,317.4,316.2,316.7,316.7,316.1,314.8],"script":[67.2,71.3,68.3,68.1,69.4,68.1,68.8,67.9,70.2,67.2,69.6,67.5,68.8,70.9,71],"paint":[242.1,239.4,242.1,244.5,236.8,243.8,243.2,240.4,237.6,243.5,239.9,242.9,241.8,238.5,237.4]}},{"b":7,"v":{"total":[38.4,37.6,36.7,37.1,37.9,37.8,37.8,37.5,38,38.7,37.4,37,37.2,37.8,38.3],"script":[9.2,8.9,8.8,8.6,9.3,9.3,8.9,9,9.3,9.3,8.9,8.8,8.9,9.2,9.3],"paint":[28.3,27.7,26.9,27.5,27.6,27.6,27.9,27.6,27.8,28.4,27.6,27.4,27.4,27.6,28]}},{"b":8,"v":{"total":[10.5,11.1,10.4,10,10.2,9.9,9.8,10.1,9.8,10,10.9,9.7,10,9.8,10.1],"script":[8.2,8.7,8.3,8.2,8.1,7.8,8.3,8,7.7,7.4,9,7.6,7.9,8,8.1],"paint":[0.8,2.1,0.7,1.2,1.9,1.3,0.8,1,1,1.1,1.2,0.3,1,0.2,1.4]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.9]}},{"b":11,"v":{"DEFAULT":[2.9]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[21.6]}},{"b":14,"v":{"DEFAULT":[13.4]}},{"b":15,"v":{"DEFAULT":[5.2]}},{"b":16,"v":{"DEFAULT":[71.7]}}]},
-{"f":125,"b":[{"b":0,"v":{"total":[28,28,27.3,27.8,27.5,27.6,27.8,27.4,27.5,27.6,27.2,27.5,27.6,27.6,27.4],"script":[3.6,3.7,3.5,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.5,3.6,3.6,3.7,3.5],"paint":[24,23.9,23.4,23.9,23.6,23.6,23.8,23.5,23.6,23.6,23.3,23.5,23.7,23.5,23.4]}},{"b":1,"v":{"total":[30.7,30.9,30.9,30.5,30.7,31,31.2,30.8,30.4,31.1,31.1,31.7,30.8,30.9,31.1],"script":[5.9,6.1,6.2,5.9,6,6.3,6.1,5.9,5.9,5.9,6.2,6.6,6.3,5.8,6.1],"paint":[24.3,24.2,24.2,24,24.2,24.2,24.5,24.3,24,24.6,24.3,24.5,23.9,24.5,24.5]}},{"b":2,"v":{"total":[12.8,12.4,12.9,11.9,12.2,12.4,12.4,11.5,12.2,12.3,12.1,13.1,12.8,11.6,12],"script":[1,1,1.1,0.9,1.1,1.2,1.1,0.6,1.4,1,0.8,1.4,1.2,0.6,1.1],"paint":[11.2,9,10.8,9.4,9.9,9.7,10.3,9.9,10.1,10.1,10.1,11,10.5,10,9.6]}},{"b":3,"v":{"total":[7.1,1.9,2.3,2.7,2,1.5,1.5,1.9,2.4,1.9,2.2,2.4,2.5,1.8,2,1.7,1.7,2.3,2.2,3.7,2.2,2.3,1.9,2.8,2.5],"script":[1,0,0,0,0.7,0.4,0,0,0,0,0,0.8,0,0,0,0,0,0.5,0,0,0,0,0,0.9,0],"paint":[1.6,1.3,1.5,1.3,1.2,0.9,1,1.1,1.1,1.3,1.2,1.1,2.3,1.1,1.8,0.7,1.4,1.2,1.2,2.2,1.3,1.3,1.4,1.4,1.4]}},{"b":4,"v":{"total":[14.5,14.7,14.9,14.7,15.2,15.2,15.5,16,15.7,15.1,16.1,16.1,14.2,15.8,14.6],"script":[0.6,1,0.9,0.7,1.5,1.3,0.6,1.9,0.9,1,2.5,1.8,0.8,1.4,0.9],"paint":[12.4,12.6,12.6,13,12.4,12.1,13.9,12.9,12.8,13.2,12.7,12.5,12,12.7,12.7]}},{"b":5,"v":{"total":[11.1,10.9,11,11.2,11.3,11.3,11.3,11.3,12,11.7,11,11.6,11.2,11.1,11.4],"script":[0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.8,9.8,9.9,9.9,10.1,10.2,9.8,9.9,10.5,10.4,9.8,10.3,10.1,9.7,10.2]}},{"b":6,"v":{"total":[306.2,305.2,302.8,304.5,304.1,304.9,305.2,304.7,305.9,305.3,305.2,304.7,303.9,306,302.5],"script":[55.8,55.3,54.7,54.8,54.9,55.9,54.2,54.6,55.6,55.2,55.8,54.4,55,55.5,54],"paint":[243.6,243.5,241.7,242.9,242.4,242.2,244.2,243,243.8,243.4,242.7,243.7,242.1,243.5,241.5]}},{"b":7,"v":{"total":[32.2,32.2,32.2,32.2,32.6,33,33.1,31.7,33,32.2,31.9,32.4,32.1,32.3,31.9],"script":[4.4,4.5,4.5,4.5,4.8,4.6,5,4.5,4.9,4.6,4.5,4.8,4.5,4.5,4.6],"paint":[27,26.9,27,27,27,27.7,27.3,26.4,27.3,26.8,26.7,26.8,26.8,27.1,26.6]}},{"b":8,"v":{"total":[10.8,9.8,9.5,10.3,10,10.9,9.7,9.4,10.3,10.7,11.3,10.6,10,9.6,9.4],"script":[8.1,8.1,7.6,8.1,8.2,8.5,7.8,7.7,8.5,8.4,8,8.5,7.6,8.2,8.1],"paint":[0.7,0.7,0.9,1,0.9,0.9,1.7,0.9,1,0.8,1.1,1.3,2.2,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.3]}},{"b":11,"v":{"DEFAULT":[2.4]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[17.5]}},{"b":14,"v":{"DEFAULT":[9.7]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[45.6]}}]},
-{"f":126,"b":[{"b":0,"v":{"total":[29.9,29.9,30,31.3,31.4,32.8,33.7,31,31,32.7,33.2,32.2,32.9,31.6,33.4],"script":[5.2,5.2,5.2,5.2,5,4.8,5,4.9,5,5.1,5,5,5.1,4.9,5.2],"paint":[24.3,24.3,24.4,24.3,24.5,25,24.3,24.4,24.5,24.7,24.3,24.7,24.2,24.4,24.2]}},{"b":1,"v":{"total":[32.4,31.9,32.2,32.4,38.3,32.3,30.6,33.3,34.7,37.8,31.2,36.8,33.3,34.8,30.3],"script":[7.3,6.5,6.3,7,6.8,6.4,6.5,7.2,6.7,6.5,6.6,6.9,6.5,7.4,6.8],"paint":[24.7,23.5,23.1,23.8,23.2,23.3,23,24.7,24.8,23.4,23.1,24.5,23.7,24.6,23.2]}},{"b":2,"v":{"total":[30.6,13.2,12.3,13.3,13.1,13.8,12.4,13.7,14.5,14,13.8,28.6,14.2,13.3,12.6],"script":[2.7,2.5,2.3,2.5,2.2,1.5,2.2,2.5,1.9,2.3,2.5,1.4,2.7,1.9,1.9],"paint":[11.4,10.5,8.6,10.1,10.6,11.3,9.3,11,11.3,11.5,10.9,10.7,10,10.5,10.1]}},{"b":3,"v":{"total":[5.8,4.6,5.1,4.2,5,6.4,5.8,5.7,4.5,5.5,5.8,4.9,5.5,5.6,5.9,4.8,4.7,4.9,6.5,5.7,4.6,6.9,5.9,5.8,6],"script":[3.3,2.2,2.9,2.7,2.5,3.5,3.1,2.9,3,2.8,3.5,3,3.2,3.1,3.7,1.7,2.8,2.6,3.6,2.4,2,4.2,3.2,3.6,2.3],"paint":[2.3,2.3,1.6,1.3,1.2,2.6,2.1,1.1,0.9,2.2,2,1,1.4,2,1.6,2.1,1.8,1.6,2.4,2,1.6,1.6,1,1.5,2.2]}},{"b":4,"v":{"total":[33.3,17.4,34.3,33.7,34.5,34.9,32.8,32.3,18.9,33.5,16.8,33.7,17.6,19.1,32.1],"script":[2.9,3.4,2.8,2.7,3.1,3.5,2.4,2.3,3.2,3.1,2.9,3.8,3.3,4.2,1.9],"paint":[14.3,13.8,14.5,14.9,13.6,14.7,14.3,13.9,13.8,13.5,13.3,13.8,13.2,14.4,13.3]}},{"b":5,"v":{"total":[11.6,11.8,11.4,11.9,11.1,13,11.9,12.8,12,11,12,13.7,14.4,11.8,11.6],"script":[2.2,2,1.6,1.9,1.2,2.3,2.1,1.9,1.3,1.2,1.9,2.1,1.3,1.9,2],"paint":[9.2,9.6,9.6,9.7,9.2,9.1,9.6,9.7,9.4,9.4,9.4,9.7,9.5,9.7,9.4]}},{"b":6,"v":{"total":[303.9,308.7,303.6,309.2,302.2,302.5,300.4,301.9,304,305.4,307.8,302.1,303.1,303.5,301],"script":[52.2,54.3,54,53,54.9,52.3,52.6,54.2,54.9,55,53.6,52.5,52.3,54.4,53.1],"paint":[247.7,247,245.2,245.7,243.9,246.6,244,243.7,245.4,244,246.4,243.7,245.8,244.9,244.4]}},{"b":7,"v":{"total":[40.8,41.1,41.8,41.3,41.7,41.1,41.5,42.2,41.5,41,41,41.9,43.2,41.3,41],"script":[5,5.1,5,4.9,5.1,5,4.8,5.1,5.2,5,4.9,4.9,5.2,5,5],"paint":[25.8,26,25.9,25.9,26.3,26.3,26.7,26.3,26.3,26.1,26.2,26.9,26.8,26.3,25.8]}},{"b":8,"v":{"total":[11.7,10.9,12.5,11.6,28.2,11.1,27.7,11.2,11.4,28.7,11.3,11.6,27.6,12.4,12.5],"script":[9.6,9,10.2,9.7,9.6,8.8,9.3,9.6,9,9.9,9.6,9.3,9.3,10.4,9.7],"paint":[0.9,1.7,2.1,1.5,2.4,1.4,2.4,0.7,2.3,1.7,0.3,1.7,1.7,1.1,2.6]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.2]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[21.8]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[98.6]}}]},
-{"f":127,"b":[{"b":0,"v":{"total":[34.6,33.6,33.9,33.8,33.9,34.2,33.8,34,34.1,33.3,33.6,33.8,33.8,33.8,35.2],"script":[11.9,10.9,11.1,11.1,11,11.1,11.2,11.6,11.1,10.8,11,11.1,10.9,11.1,11.7],"paint":[22.2,22.3,22.4,22.3,22.4,22.5,22.3,22,22.7,22.1,22.2,22.4,22.4,22.4,23]}},{"b":1,"v":{"total":[38,39.1,37.9,38.6,38.8,37.8,40,38.3,37.9,38.1,37.9,38.5,38,37.5,38.5],"script":[14,14.7,14.1,14.6,14.1,14.3,14.1,14,13.6,14.3,14.2,14.3,14.3,13.9,14.5],"paint":[23.3,23.8,23.3,23.6,24.2,23.1,25.4,23.7,23.8,23.4,23.2,23.9,23.3,23.2,23.4]}},{"b":2,"v":{"total":[23.6,24.6,23.6,23.1,22.9,23.9,24.4,22.4,23.6,23.2,24.1,23,22.5,23,23.8],"script":[11.6,11.2,11.9,11.8,11.3,11.9,12,11.2,12,11.6,11.3,11.5,11.1,11.4,12.2],"paint":[9.7,10.6,10.5,10.2,9.6,11,10.6,10.1,9.6,10.4,11.3,10.2,9.9,10.2,10]}},{"b":3,"v":{"total":[8.2,6.9,7.5,6.9,7.2,7.7,7.3,7.6,7.8,8.9,7.2,8.2,7.7,7.7,7.4,7.5,8.2,8,8.6,7.9,8.9,7.8,7.8,7.7,7],"script":[5.4,4.4,5.2,5,4.4,4.9,4.6,5.3,4.3,7,4.8,5.5,4.9,5.2,5.2,5.1,5.7,5.6,6.2,5.2,6.3,5.6,5.3,4.9,4.8],"paint":[1.2,1.9,1.7,1,2.6,2.2,2.5,1.4,2.4,1.2,0.9,2,1.7,1.7,1.4,1.2,1,1.7,2.2,2.4,1.8,1.1,2.3,2.1,2]}},{"b":4,"v":{"total":[119.3,120.8,122.9,124.4,120.1,121.1,120.9,122.1,123.4,119.1,120.9,122.5,123.2,120.7,122.1],"script":[23.8,23.9,24.2,25.5,25.1,23.3,24.6,23.7,24.7,24.6,24.1,25.7,25.8,23.8,24],"paint":[93.2,94.8,96.4,96,93.9,94.5,95.2,94.9,95.6,92.3,95.6,94.4,95,94.6,96.4]}},{"b":5,"v":{"total":[18,18.5,17.4,17.6,18.5,17.7,17.8,18.5,18,18,17.8,17.5,17.5,17.8,18.5],"script":[6.7,6.5,6.2,6.6,7.2,6.6,6.3,6.7,7,6.6,6.6,6.9,6.9,6.7,7],"paint":[10.1,10.8,10.6,10.3,10.2,10.4,10.5,11,10.4,10.2,10.3,9.9,9.9,10.2,10.7]}},{"b":6,"v":{"total":[451.6,450.4,447.5,444.2,453.1,450,452.8,448.5,449.9,452.3,452.5,452.3,449.9,458.7,448.8],"script":[206.7,203.8,204.1,201.4,208.9,205.5,205.3,204,207.5,206,207.3,206.8,202.9,208.4,203.8],"paint":[239,241.3,237.9,237.1,238.8,238.9,241.5,239,237,240.8,239.4,239.9,241.1,244.7,239.4]}},{"b":7,"v":{"total":[42.1,42.7,42.9,41.8,42.9,42.7,43.7,42,42.1,42.5,42.6,42.9,42.2,42.3,42],"script":[14.4,14.9,14.9,14.4,15.6,14.6,14.2,14.6,14.6,14.4,14.8,14.9,14.6,15.1,14.5],"paint":[26.8,27.1,27.2,26.5,26.4,27.4,28.6,26.6,26.6,27.4,27,27.2,26.8,26.5,26.6]}},{"b":8,"v":{"total":[14.4,14.5,17.1,14.7,13.4,14.6,14.8,15,15.2,14.5,15.6,13,15,14.2,14.5],"script":[12.3,11.7,13.5,13.3,11.8,12.2,11.8,12.3,13.2,12.7,13.6,11.3,12.9,12.5,12.8],"paint":[1.4,0.6,1.9,0.3,0.4,2.3,1.1,1.5,1.9,1,1.2,1.7,0.8,0.7,0.6]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[6.1]}},{"b":11,"v":{"DEFAULT":[6.8]}},{"b":12,"v":{"DEFAULT":[2.9]}},{"b":13,"v":{"DEFAULT":[46.8]}},{"b":14,"v":{"DEFAULT":[145.2]}},{"b":15,"v":{"DEFAULT":[41.3]}},{"b":16,"v":{"DEFAULT":[166.1]}}]},
-{"f":128,"b":[{"b":0,"v":{"total":[25.8,25.9,25.7,26.1,25.6,26.2,26,25.6,26.1,25.5,25.8,25.5,25.7,25.8,25.2],"script":[1.7,1.7,1.7,1.7,1.6,1.7,1.7,1.7,1.7,1.7,1.8,1.7,1.6,1.6,1.7],"paint":[23.7,23.7,23.6,24,23.6,24.1,23.9,23.5,24,23.5,23.6,23.4,23.6,23.7,23.2]}},{"b":1,"v":{"total":[27.9,27.9,28.4,27.7,27.8,28.1,28.1,27.9,27.9,27.7,27.8,28.5,27.8,27.8,27.9],"script":[3.5,3.4,3.4,3.5,3.5,3.5,3.6,3.5,3.5,3.3,3.6,3.4,3.5,3.4,3.4],"paint":[24,24.2,24.5,23.8,23.9,24.1,24.1,24,24,24,23.8,24.7,23.9,24,24.2]}},{"b":2,"v":{"total":[11,10.7,10.4,10.8,10.9,10.9,10.9,11.6,11.2,11.3,11.4,11,10.3,10.7,10.5],"script":[0.1,0.1,0.5,0.4,0.1,0.6,0.5,0.6,0.5,0.1,0.1,0.1,0.5,0.1,0.1],"paint":[9.8,9.1,8.7,8.1,10.2,9.3,9.3,10,8.8,9.9,10.2,10.2,8.6,9.5,9.4]}},{"b":3,"v":{"total":[2.3,2.2,2.4,1.5,2.7,2.2,2.2,2.7,1.8,2.3,2.6,2.1,2.1,1.8,2.5,2.5,2,1.8,2.2,3.6,2.2,2.6,2.1,1.8,1.8],"script":[0.3,0.1,1,0.1,0.1,0.1,0.1,0.9,0.1,0.1,0.1,0.2,0.1,0.5,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.2],"paint":[1.5,1.1,1.3,1.3,1.5,1.4,1.3,1.7,1.6,1.9,1.1,1.1,1.9,0.7,2.1,2.3,1.3,1,1.3,1.4,2,1.7,1.1,1.6,1]}},{"b":4,"v":{"total":[12.5,13.5,13.1,14.1,12.9,12.8,12.5,13.2,13.5,13.5,13,13.4,12.8,12.8,12.9],"script":[0.1,0.1,0.1,0.9,0,0.2,0.1,0.1,0.1,0.1,0.9,0.1,0.1,0,0.1],"paint":[11.4,11.8,12.1,11.9,11.7,11.7,11.6,12.2,12.3,12.4,11.3,12.2,11.7,11.8,11.7]}},{"b":5,"v":{"total":[10.5,10.4,11.4,10.9,10.6,10.3,10.6,10.9,10.3,10.6,10.3,10.6,10.6,10.7,10.4],"script":[0.1,0.3,0.3,0.3,0.3,0.4,0.4,0.5,0.1,0.1,0.2,0.5,0.4,0.3,0.2],"paint":[9.8,9.4,10.6,10,9.8,9,9.6,9.8,9.3,10.1,9.5,9.5,9.5,9.9,9.4]}},{"b":6,"v":{"total":[260,260.1,268.7,271.5,257.7,271.5,266.6,266.7,267.7,259.1,267.9,266.4,269.5,266.1,267.6],"script":[18.4,18.4,18.5,17.9,18.2,18.5,18.5,18.9,19.4,18.4,19.4,18.8,18.1,19,18.6],"paint":[234.9,234.9,243.2,246.7,232.7,246,241.2,241.1,241.4,234.1,241.6,240.9,244.3,240.5,242.1]}},{"b":7,"v":{"total":[28.3,28.6,28.8,28.8,29,29,29.1,28.3,28.1,28.5,29.7,29,29.2,28.6,28.3],"script":[1.6,1.7,1.8,1.8,1.7,2,1.7,1.7,1.7,1.8,1.7,1.7,1.6,1.6,1.6],"paint":[26,26.2,26.3,26.3,26.7,26.4,26.7,25.9,25.8,26,27.3,26.6,26.8,26.3,26]}},{"b":8,"v":{"total":[8.7,8.1,9.9,8.7,8,8.7,8.6,8.7,8.8,8.3,8.9,9.3,8.9,9.9,9.2],"script":[6.8,6.3,7.8,6.9,6.6,6.5,6.8,7.1,6.5,6.2,6.9,6.9,6.7,8.3,7.3],"paint":[1.7,0.9,1.8,0.9,0.3,1.6,0.7,1.1,1.7,1.5,1.3,1.2,1.3,0.7,1]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[2]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[13]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[40.8]}}]},
-{"f":129,"b":[{"b":0,"v":{"total":[25.7,25.4,25.3,25.4,25.6,25.7,25.5,25.4,25.3,25.7,25.2,25.3,25.3,25.1,25.4],"script":[1.2,1.3,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.3,1.2,1.3,1.2,1.2,1.3],"paint":[24.1,23.8,23.7,23.8,24,24,23.9,23.8,23.7,24.1,23.7,23.7,23.8,23.6,23.8]}},{"b":1,"v":{"total":[27.5,28,28.3,27.5,27.8,27.7,27.9,28.2,27.8,27.5,27.6,27.3,27.8,28.2,28.2],"script":[3,3.1,3.2,3,3.1,3,3.2,3.3,3.1,3.1,3,2.9,3.1,3.2,3.2],"paint":[24.1,24.5,24.7,24,24.3,24.3,24.3,24.6,24.3,24.1,24.1,24.1,24.4,24.7,24.6]}},{"b":2,"v":{"total":[11.3,10.5,10.9,10.8,10.9,11.2,11.3,10.2,11.4,11.1,11,11.2,12.7,10.9,11.8],"script":[0.1,0.1,0.5,0.4,0.1,0.7,0.6,0.1,0.6,0.1,1.1,0.7,0.8,0.6,0.9],"paint":[9.8,9.5,9.6,9.5,9.4,9.1,9.5,8.6,9.5,10,8.8,9.1,10.4,8.8,9.6]}},{"b":3,"v":{"total":[2.4,1.9,1.9,2.8,2.5,2.2,2.3,2.4,2.2,2.7,2,2.1,1.7,2.5,2.2,3,2.4,2.4,2.5,2,2.4,2.2,2,2.3,2.9],"script":[0,0,0,0,0,0.5,0.6,0,0,0,0.5,0,0,0.6,0,0,0,0,0,0,0,0.4,0,0,0],"paint":[1.3,1.6,0.3,1.9,2.3,1.6,1.4,1.7,2.1,1.5,1.1,1.9,1.6,1.8,2,1.6,1.1,1.5,1.1,1.5,1.6,1.7,0.7,1.4,0.7]}},{"b":4,"v":{"total":[13.2,14.2,13.1,12.9,15,13.6,16.4,13.2,13.5,13.4,15,13.8,13.6,13.2,13.1],"script":[0.1,0.8,0,0.1,0.1,0.1,1,0.1,0.5,0.1,1,0,0.1,0.1,0],"paint":[12.5,12.3,12.1,11.4,12.8,12.1,13.4,11.2,12,12.5,12.9,12.5,12.7,11.9,12.3]}},{"b":5,"v":{"total":[10.7,10.5,10.6,10.9,10.7,10.3,10.2,10.4,11,10.6,10.5,10.6,10.3,10.4,10.4],"script":[0.1,0.2,0.3,0.1,0.3,0.1,0.3,0.1,0.1,0.1,0.1,0.4,0.3,0.4,0.1],"paint":[10,9.7,9.8,9.8,9.6,9.7,9.4,9.7,9.8,9.8,9.8,9.6,9.4,9.4,9.8]}},{"b":6,"v":{"total":[267.9,266.8,259,261.8,267.8,270,270,270.5,268.2,269.2,269.5,260.1,260.4,269.8,267.4],"script":[13.7,13.6,13.8,13.5,13.9,13.6,13.9,13.6,13.7,13.5,13.6,13.7,13.7,13.7,13.9],"paint":[248.4,247.6,239.5,242,248.2,250.1,250,250.3,248.9,249.8,249.7,240.7,241,250.4,247.8]}},{"b":7,"v":{"total":[28,27.8,27.9,27.8,28,28.1,28.3,28,28.4,28.8,27.8,28.3,28.4,27.8,28.2],"script":[1.2,1.3,1.2,1.3,1.3,1.4,1.3,1.3,1.3,1.4,1.3,1.2,1.3,1.2,1.3],"paint":[26,25.9,26,25.9,26,26.1,26.4,26.1,26.4,26.6,25.9,26.3,26.4,26,26.2]}},{"b":8,"v":{"total":[8.9,9,9.5,8.8,9,8.5,9.3,8.6,8.5,8.4,8.6,8.7,8.6,9.1,8.4],"script":[7.1,6.6,7.5,6.8,7.3,6.7,6.9,7.2,7.4,6.7,7,6.4,6.3,6.9,6.5],"paint":[1.1,2.2,1.8,1,0.2,0.4,0.8,0.2,0.2,1,1.4,0.6,1.3,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.8]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.5]}},{"b":14,"v":{"DEFAULT":[5.3]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[42.1]}}]},
-{"f":130,"b":[{"b":0,"v":{"total":[25.3,25.1,25.2,25.2,25.3,25.1,25.5,25.6,25.2,25.3,25,25.1,25.3,25.1,25.2],"script":[1.2,1.2,1.2,1.3,1.2,1.2,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.3,1.3],"paint":[23.7,23.5,23.6,23.5,23.7,23.5,23.9,24,23.5,23.7,23.4,23.5,23.7,23.4,23.6]}},{"b":1,"v":{"total":[27.6,27.4,27.8,27.2,27.3,27.8,27.8,27.6,27.6,27.3,27.4,27.7,27.5,27.4,27.6],"script":[3.1,3.1,3.2,3,3,3.1,3.1,3.1,3,3,3.1,3,3.1,3.1,3.2],"paint":[24.1,23.9,24.2,23.8,23.9,24.3,24.3,24.1,24.2,23.9,23.9,24.2,24,23.9,24.1]}},{"b":2,"v":{"total":[11.1,10.9,11,11.6,10.8,11.3,11.5,10.8,10.8,11.4,10.7,11.4,11.4,11.2,11.2],"script":[0.1,0.1,0.1,0.1,0.1,0.5,0.9,0.2,0.1,0.8,0.1,0.8,0.1,0.1,0.5],"paint":[9.5,9.9,9,10.6,10,9.7,9.2,9.6,10,9.7,9.4,9.4,10.3,9.8,9.4]}},{"b":3,"v":{"total":[1.9,2.4,2.3,2,1.7,1.7,1.9,1.8,2,1.9,2.3,1.4,1.6,2.2,2,1.8,1.9,1.9,2.5,1,1.7,1.9,1.9,1.3,1.6],"script":[0,0.5,0,0,0,0,0,0,0.2,0,0.4,0,0,0.5,0,0.7,0,0,0,0,0.4,0,0,0,0],"paint":[1.1,1.4,2.1,1.4,1.2,1.4,0.9,1.7,1.2,1,1.7,1.3,0.7,1.2,0.8,1,1.2,1.5,1.3,0.5,1.2,1.7,0.7,0.9,1.4]}},{"b":4,"v":{"total":[13.3,13,12.7,12.8,13.6,14.1,12.9,13.1,13.4,13.3,13.1,13,12.7,12.8,13.2],"script":[0.3,0.2,0.1,0.1,0.1,0.9,0.4,0.1,0.1,0.1,0.4,0.1,0.4,0.4,0.1],"paint":[11.9,11.7,10.9,11.8,12,11.7,12.2,11.8,11.8,12.5,11.7,12.1,11.3,11.4,12.1]}},{"b":5,"v":{"total":[10.1,10.3,10.3,10.6,10.3,10.4,10,10.2,10.7,10.6,10.4,10,10.2,10.4,10.2],"script":[0.2,0.4,0.1,0.3,0.1,0.2,0.1,0,0.1,0.1,0.2,0.1,0,0.1,0],"paint":[9.3,9.3,9.6,9.7,9.5,9.5,9,9.5,10.1,10,9.4,9.4,9.6,9.7,9.7]}},{"b":6,"v":{"total":[260.9,263.9,263.2,267,263.4,253.1,263.3,263.9,263.8,262.4,264.6,254.5,262.2,253.4,255.5],"script":[13.5,13.5,13.5,13.4,13.2,13.2,13.3,13.2,13.4,13.5,13.2,13.3,13.4,13.1,13.6],"paint":[240.7,243.4,243.1,246.7,243.5,233.3,243.3,243.8,243.4,242.1,244.6,234.5,242,233.6,235.2]}},{"b":7,"v":{"total":[28.5,28.2,28.6,28.6,28,28.3,27.9,28.8,28.1,28.3,27.7,28.1,27.9,28,27.9],"script":[1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.3,1.3],"paint":[26.5,26.1,26.6,26.6,26.1,26.4,26,26.8,26.1,26.4,25.8,26.2,26,26,25.9]}},{"b":8,"v":{"total":[9.4,8.3,8.5,9,9.1,8.8,8.5,8.9,8.8,9.1,10.1,8.6,9.3,8.5,10.6],"script":[7,7.2,6.7,7,7,6.6,6.9,6.6,6.9,7.2,7.6,7.1,7.5,6.2,7.9],"paint":[1,0.3,0.2,1.8,0.2,2,1,1.3,0.2,0.9,0.8,0.5,1,1.3,1.5]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.7]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.1]}},{"b":14,"v":{"DEFAULT":[4.9]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[46.8]}}]},
-{"f":131,"b":[{"b":0,"v":{"total":[25.5,25.7,25.5,25.2,25.2,25.2,25,25.5,25.5,25.4,25.3,25.4,25.7,25.4,25.2],"script":[1.7,1.7,1.7,1.6,1.6,1.6,1.6,1.7,1.6,1.6,1.6,1.7,1.7,1.6,1.7],"paint":[23.4,23.6,23.4,23.3,23.1,23.2,23.1,23.4,23.5,23.4,23.3,23.3,23.7,23.4,23.2]}},{"b":1,"v":{"total":[27.1,27.3,27.3,27.4,27.3,27.4,27.3,27.6,27.2,27.7,27.3,28.3,27.9,27.3,27.2],"script":[3.4,3.5,3.4,3.5,3.4,3.5,3.4,3.4,3.4,3.5,3.4,3.7,3.6,3.4,3.5],"paint":[23.3,23.4,23.5,23.5,23.5,23.5,23.4,23.8,23.5,23.8,23.5,24.2,24,23.5,23.3]}},{"b":2,"v":{"total":[11.3,11.1,11.2,11.1,10.4,11.6,10.7,10.2,11,10.9,11.3,12.3,11,11.4,11.8],"script":[0.1,0.1,0.4,0.8,0.1,0.7,0.1,0.1,0.1,0.2,0.6,0.9,0.1,0.1,0.8],"paint":[9.7,10.1,9.6,9.3,9.5,9.8,10,9.3,9.3,9.7,9.5,9.4,9.6,9.3,10.1]}},{"b":3,"v":{"total":[2.3,2.2,2,2.1,2.1,2,2,2.1,2.1,1.9,2.2,2.7,2.2,2.2,1.7,2.5,2,2.1,2.5,1.9,1.9,2.4,2.2,2,2.3],"script":[0.1,0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.4,0.9,0.1,0.4,0.1,0.1,0.5,0.4,0.7,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[1,1.5,1.7,1.9,1.9,0.3,0.9,1.2,0.4,1.7,1.2,0.4,1.7,0.6,0.9,1.9,1,1,0.7,1.1,1.2,2.2,1,1.4,2.1]}},{"b":4,"v":{"total":[14,12.8,13.2,12.9,12.9,12.9,12.3,13.1,13.1,13.1,12.8,13.7,14.5,14.2,13.3],"script":[1,0.1,0.9,0,0,0,0,0,0.1,0,0,0.3,0.1,0.1,0],"paint":[11.8,11.3,11.7,11.8,11.9,12.2,11,10.7,12,11.4,11.1,12.1,13.1,12.9,11.1]}},{"b":5,"v":{"total":[10.7,11,10.3,10.7,10.2,10.4,10.4,10.5,10.8,10.4,10.3,10.7,10.8,10.6,10.5],"script":[0.1,0.4,0.3,0.3,0.1,0.2,0.3,0.1,0.4,0.1,0.5,0.4,0.3,0.3,0.1],"paint":[9.9,9.7,9.2,9.6,9.6,9.6,9.5,9.8,9.7,9.9,9.3,9.3,9.9,9.7,9.7]}},{"b":6,"v":{"total":[263,263.1,254.2,254.1,264.6,255.7,265.4,262.5,253.4,256,262.7,265.5,254.5,262.2,283.1],"script":[17,17.3,17.1,17,17.2,17.4,17.8,17.5,17.5,17.3,17.6,16.9,17.3,17.8,17.5],"paint":[239.6,238.9,230.3,230.3,240.3,231.2,240.8,238.2,229.2,231.8,238.1,241.8,230.5,237.5,258.3]}},{"b":7,"v":{"total":[28,27.9,27.9,27.9,27.9,27.8,27.8,27.7,28,27.8,27.4,27.8,28.4,27.8,28.1],"script":[1.7,1.6,1.5,1.6,1.6,1.5,1.6,1.5,1.6,1.5,1.6,1.6,1.8,1.6,1.7],"paint":[25.6,25.5,25.7,25.6,25.6,25.6,25.4,25.5,25.7,25.5,25.1,25.5,25.9,25.5,25.7]}},{"b":8,"v":{"total":[9.2,8.4,8.5,9.2,8.7,8.2,8.6,9.6,9.5,8.9,8.8,8.6,8.4,9.1,8.9],"script":[7.3,7.1,7.5,7.5,6.8,6.1,6.5,6.8,7.8,6.3,7,6.5,6.6,6.6,7],"paint":[1.7,0.7,0.9,0.8,1,1.2,1.9,1,1,1.4,1,0.7,0.7,0.7,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2]}},{"b":11,"v":{"DEFAULT":[2]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[13]}},{"b":14,"v":{"DEFAULT":[10.5]}},{"b":15,"v":{"DEFAULT":[2.2]}},{"b":16,"v":{"DEFAULT":[46.4]}}]},
-{"f":132,"b":[{"b":0,"v":{"total":[29.4,28.8,28.9,28.8,29,28.7,28.8,29,28.6,28.8,28.8,29,28.4,28.9,29],"script":[4.9,4.8,5,4.9,5,4.9,5,4.8,4.9,5,4.9,4.9,4.9,4.9,5],"paint":[24.1,23.6,23.5,23.4,23.6,23.4,23.5,23.8,23.4,23.4,23.5,23.7,23.1,23.6,23.7]}},{"b":1,"v":{"total":[31,31.5,31.6,31.7,31.5,34,31.4,31.5,31.5,31.3,31.3,31.7,31.7,31.4,31.8],"script":[6.7,7.1,6.9,7,6.9,7.4,7,7,6.9,6.8,6.8,7,6.9,6.9,6.8],"paint":[23.7,23.9,24.1,24.1,24,25.9,23.9,24,24,24,23.9,24.1,24.2,23.9,24.3]}},{"b":2,"v":{"total":[12,12.3,11.7,12.5,11.9,12.3,12.4,12,11.6,11.9,11.2,12,12,11,11.9],"script":[0.9,1.6,0.9,1.4,1,1.5,1.5,0.9,1,1,1.2,0.9,0.9,0.6,1.1],"paint":[9.9,9.6,9.5,10,9.7,9.4,9.7,10.5,9.5,9.2,9.2,10.2,10.4,9.4,8.4]}},{"b":3,"v":{"total":[4.3,2.3,2.5,2.4,2.1,2.2,2.7,2.5,2.5,2.7,2.6,2,2.7,2.4,2.5,2,2.1,2.1,2.8,3.6,2.3,2.4,2.7,2.6,2.5],"script":[0.5,0.9,0.5,0.8,0.6,0.1,1.2,0.7,0.1,0.8,0.8,0.6,0.9,0.1,0.1,0.1,0.5,0.1,0.6,0.7,0.2,0.7,0.1,0.9,0.1],"paint":[1.3,1.3,1.3,1.5,1,1.1,1,1.7,1.5,1.1,1.7,1.3,1.1,2.2,2.2,1,0.7,1.9,2,0.3,1.3,1.6,2.4,1.1,1.9]}},{"b":4,"v":{"total":[13.2,13.4,13.6,12.5,13.3,13.2,13.4,13.3,13.4,14.2,13.3,13.4,12.7,14.5,12.8],"script":[0.1,0.1,0.1,0,0.4,0,0.1,0.6,0,0.8,0.9,0,0,0,0],"paint":[11.9,12.2,12.3,11.5,11.8,12.4,11.1,11.6,12.4,12.2,11.9,11.9,11,13.5,11.8]}},{"b":5,"v":{"total":[10.9,10.4,10.3,10.4,10.4,10.7,10.8,10.4,10.6,10,10.4,10.5,10.6,10.4,10.7],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.3,0.3,0.1],"paint":[9.9,9.6,9.7,9.5,9.8,9.8,9.6,9.7,9.7,9.2,9.4,9.5,9.7,9.5,9.8]}},{"b":6,"v":{"total":[298.5,298.3,297.9,298.9,295.6,295.3,295,296.8,296.1,294.9,297.8,295.4,298.2,297.5,298.7],"script":[60.7,60.5,61.1,60.4,60.3,60.8,59.5,60.2,60.1,59.7,60.6,60.2,60.5,59.9,59.8],"paint":[231,231.1,229.9,232,228.5,227.7,228.9,230.1,229.5,228.4,230.5,228.8,231,229.9,232.3]}},{"b":7,"v":{"total":[33.2,32.4,32.6,32.2,32.5,32.4,32.3,32.1,32.6,32.6,32.6,32.8,33.8,32.3,32.5],"script":[4.8,4.5,4.6,4.5,4.7,4.4,4.5,4.5,4.5,4.6,4.8,4.4,4.5,4.4,4.5],"paint":[27.6,27.1,27.2,26.9,27,27.1,27.1,26.9,27.3,27.2,27,27.5,28.4,27,27.3]}},{"b":8,"v":{"total":[9.2,9.6,10,10.1,9.3,9.8,10,9,9.1,9.5,9.8,8.3,9.7,9.1,9.4],"script":[6.9,7.9,8.1,7.9,7.6,7.6,7.9,7.3,7.2,7.4,7.8,6.9,7.3,7.5,7.4],"paint":[1.6,0.6,1,1.2,0.4,0.9,0.6,0.5,0.3,1.3,1.1,0.3,0.3,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[15.9]}},{"b":13,"v":{"DEFAULT":[32.5]}},{"b":14,"v":{"DEFAULT":[21.3]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[48.9]}}]},
-{"f":133,"b":[{"b":0,"v":{"total":[27.1,26.9,26.9,27.1,27,26.8,26.9,27.2,26.8,27.4,27,26.9,26.8,26.8,27.1],"script":[2.9,2.9,3,2.8,2.9,2.8,3,2.8,2.9,2.9,2.7,2.9,2.9,2.7,2.9],"paint":[23.9,23.6,23.5,23.9,23.7,23.6,23.6,24,23.5,24.1,23.9,23.7,23.5,23.7,23.8]}},{"b":1,"v":{"total":[29.1,29.9,29.7,29.8,29.7,29.4,29.6,29.5,29,29.6,29.3,29.1,29.4,29.6,29.4],"script":[4.7,4.8,4.7,4.9,4.8,4.8,4.9,4.8,4.6,4.6,4.7,4.7,4.9,4.9,4.7],"paint":[24,24.7,24.5,24.5,24.5,24.2,24.3,24.3,24,24.6,24.2,24,24.1,24.3,24.3]}},{"b":2,"v":{"total":[12.7,11.9,11.1,12.5,12.2,11.1,12.3,12.1,11.6,11.7,12,11.2,12.5,12.1,11.6],"script":[1,0.1,0.1,0.1,0.9,0.3,0.1,0.8,0.5,0.1,0.6,0.1,0.2,0.5,0.1],"paint":[10.7,9.8,10,11.1,9.8,9.9,11,9.8,9.7,10.6,10.5,10.2,11.7,10,10.8]}},{"b":3,"v":{"total":[2.2,2.4,4,2.4,2.2,2,2,2.2,1.9,2.4,2.1,2.3,2.4,1.7,1.7,2,2,1.3,3,1.9,1.8,2.1,1.8,2.6,1.5],"script":[0,0,0,0,0.4,0,0,0,0,0,0,0,0.6,0,0,0.1,0,0,0,0,0,0,0,0,0],"paint":[1,1.3,1.9,2.3,1.7,0.9,1.4,1.6,1.7,1.8,1.6,1.6,1.4,0.7,1.5,1.8,1.9,0.7,2,1.3,1.7,1.9,1.7,1.1,1.3]}},{"b":4,"v":{"total":[14.3,14.1,14.9,13.4,13.3,13.7,14,14.2,15.1,13.2,13.7,13.7,13,13.9,13.3],"script":[0.4,0.1,0.1,0,0.4,0.1,0,0.1,0.1,0.1,0.1,0.3,0.3,0.1,0],"paint":[13.3,13,12.8,12.2,11.7,12.5,12.3,13.2,13.7,12.1,11.7,11.4,11.6,12.7,11.9]}},{"b":5,"v":{"total":[10.6,10.8,10.7,10.4,10.4,10.5,10.4,10.3,10.5,10.7,10.4,10.2,10.4,10.4,10.5],"script":[0.3,0.3,0.1,0.1,0.1,0.3,0.2,0.3,0.1,0.2,0.1,0.2,0.1,0.1,0.2],"paint":[9.5,9.5,9.9,9.7,9.7,9.9,9.7,9.4,9.8,9.7,9.7,9.4,9.7,9.7,9.6]}},{"b":6,"v":{"total":[294.7,294.4,297.5,294.4,295.9,297,291.2,294.3,295.9,296.4,294.6,294.1,295.4,297.5,296.8],"script":[40.4,38.7,40.8,40,40.9,41.1,38.5,40,39.7,40.6,39.7,38.5,39.9,40.1,40.3],"paint":[248.1,249.1,250.3,248,248.5,249.6,246.3,248,249.5,249.6,248.3,249.1,248.9,250.9,250.1]}},{"b":7,"v":{"total":[31,30.8,30,30.1,30.4,29.8,29.9,29.9,29.8,30.6,30.2,30.6,30.5,30.4,29.9],"script":[2.8,2.9,2.9,2.7,3,2.7,2.8,2.8,2.9,2.7,3.1,2.8,3.2,2.8,2.6],"paint":[27.4,27.2,26.5,26.7,26.7,26.3,26.4,26.5,26.3,27.1,26.4,27,26.6,26.9,26.6]}},{"b":8,"v":{"total":[8.9,8.8,8.9,9.7,9.3,9.9,9,9.1,8.9,9,10,9.1,9.6,10.3,8.9],"script":[6.8,6.7,7.5,7.8,7.2,7.5,7,7.2,7.1,7.1,7.9,7,7.3,7.3,6.7],"paint":[1.9,0.6,0.2,1.7,1.6,1.5,0.7,0.6,0.9,0.2,1.6,1.9,1.7,2,1]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2]}},{"b":11,"v":{"DEFAULT":[2]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[14]}},{"b":14,"v":{"DEFAULT":[9.8]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[40.7]}}]},
-{"f":134,"b":[{"b":0,"v":{"total":[33.5,33.8,33.6,33.3,33.7,33.4,33.3,32.6,34,33.4,33.4,33.1,33.4,33.4,32.8],"script":[8.3,8.4,8.3,8,8.4,8.3,8.2,7.8,8.3,8.4,8.3,8.3,8.4,8,7.9],"paint":[24.6,24.8,24.7,24.7,24.8,24.6,24.5,24.4,25.1,24.5,24.6,24.3,24.5,24.7,24.4]}},{"b":1,"v":{"total":[36.7,37.5,36,36.1,36.4,35.8,36.4,36.3,36.2,35.9,36.3,36.2,36.5,36.2,36.2],"script":[10.1,10.7,10.4,10.4,10.4,10.1,10.4,10.4,10.4,10.2,10.1,10.4,10.3,10.4,10.2],"paint":[26,26.2,25,25.1,25.4,25,25.4,25.4,25.2,25.1,25.5,25.2,25.6,25.2,25.4]}},{"b":2,"v":{"total":[36.6,32,30.9,31.3,31.4,30.9,32.6,34.6,31.6,31.1,31.1,33.6,30.8,32.3,31.5],"script":[1.3,1.7,0.9,1,1,1,0.3,0.9,1,1.4,0.6,2,1.2,0.8,0.3],"paint":[13.7,13.5,13,12.2,12,12.9,13.4,11.5,11.7,13.3,12.5,12.6,12.9,11.9,12.9]}},{"b":3,"v":{"total":[6,8.8,10.6,8.6,8.5,10.8,9.2,9.5,9.9,4.9,4.2,4.7,11.5,13.1,9.2,6.1,7.2,11,4.9,9.3,6,3.7,7.6,10.3,9.9],"script":[1.1,0.4,1,0.1,0.1,0.5,0.9,0.1,0.1,0.6,0.1,0.1,0.8,0.1,0.9,0.7,1,1.2,0.1,0.1,0.7,0.1,0.1,0.3,0.1],"paint":[3.4,2.2,3.6,3.5,2.7,3,3,2.4,2.6,1.2,2.8,2.7,3.9,2.5,2.6,2.6,2.3,1.8,3.2,2.8,2.9,3.3,1.2,2.5,2.2]}},{"b":4,"v":{"total":[14.2,14,14.2,13.8,14.2,13.5,14.1,12.9,14.7,14.2,13.6,13.7,14,14.1,13.4],"script":[0.1,0.7,0.8,0.1,0.1,0.3,0.1,0.1,0.1,1,0.5,0.1,0.8,0.1,0.5],"paint":[12.9,12.4,12.2,12.3,12.7,11.8,12.8,11.8,13.1,12.5,12.1,12.2,11.7,12.3,12.3]}},{"b":5,"v":{"total":[16.7,14.5,12.9,12.5,14.3,13.7,14.4,17.3,14.6,14.2,13.6,12.7,14.2,14.2,17.5],"script":[0.4,0.1,0.4,0.1,0.1,0.1,0.3,0.1,0.3,0.1,0.1,0.3,0.2,0.2,0.1],"paint":[10.9,11.6,11.2,10.9,11,11.3,11.8,10.9,11.4,11.3,11.5,11.6,11.4,11.5,11.6]}},{"b":6,"v":{"total":[329.9,329.4,333.5,331.6,330.8,332.1,330.1,330.1,331.6,330.6,335,329.2,330.4,329.8,328.2],"script":[82.6,82.2,82.8,84.6,84.1,83.4,83.6,82.8,83.4,84.4,84.2,83.1,83.3,83.3,82.6],"paint":[240,241.3,243.9,240.8,240.3,242.2,240.7,240.9,241.3,240.2,245,239.7,240.9,240.1,239.8]}},{"b":7,"v":{"total":[36.4,36.2,36.9,36.5,36.9,36.5,36.5,37.3,36.7,36.1,37,37.2,36.1,36.3,35.8],"script":[7.9,8,8.2,8,8.2,8.3,8,8.3,8.1,7.9,8.2,8.3,7.7,7.9,8],"paint":[27.6,27.3,27.8,27.5,27.8,27.3,27.6,28.1,27.6,27.2,27.8,28,27.5,27.5,26.9]}},{"b":8,"v":{"total":[9.8,10.5,12.2,10,10.5,11.2,10,9.7,9.2,10.6,10.3,9.6,9.5,10.2,9.6],"script":[7.3,8.5,9.8,8,8.4,8.5,7.5,7.7,7.3,8.5,8,7.4,7.6,8.1,7.6],"paint":[1.6,1.1,1.1,1.9,0.7,1.9,1.8,0.9,1,0.9,1.1,1.9,0.6,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.4]}},{"b":11,"v":{"DEFAULT":[2.4]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[18.6]}},{"b":14,"v":{"DEFAULT":[5.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[40.2]}}]},
-{"f":135,"b":[{"b":0,"v":{"total":[31.2,31.6,31.7,31.9,32.2,31.8,32,32,31.7,31.6,31.6,32.1,32,32.6,32.3],"script":[6.2,6.3,6.5,6.7,6.6,6.9,6.7,6.8,6.6,6.6,6.2,6.6,6.8,6.9,6.2],"paint":[24.4,24.8,24.7,24.6,25,24.4,24.7,24.7,24.6,24.5,24.9,24.9,24.5,25.2,25.6]}},{"b":1,"v":{"total":[35.1,33.6,34.1,33.5,34.6,34.2,33.7,34,33.5,34.2,33.6,34,33.8,33.7,33.7],"script":[12.2,11.5,11.5,11.7,11.8,12.1,11.5,12,11.1,11.3,11.3,11.6,11.3,11.5,11.3],"paint":[22.2,21.6,22,21.3,22.3,21.7,21.6,21.5,21.8,22.3,21.8,21.8,21.9,21.7,21.9]}},{"b":2,"v":{"total":[15.1,15.8,33.9,15.6,14.8,16.4,16.3,17.4,15.6,14.8,16.7,16.8,16,16,15.2],"script":[3.2,3.7,3.7,4.1,3,3.3,3.3,4.3,3.3,2.8,4.6,3.3,3.2,3.1,3.3],"paint":[10.8,11.3,11.2,10.7,10.9,11.2,12.1,11.9,10.7,11,11.1,12.5,11.8,12,10.2]}},{"b":3,"v":{"total":[12.2,12.9,9.7,17.7,11.6,15,13.3,12.4,12.7,11.3,13.5,14.2,9,12.2,15.3,10.5,15.8,13.5,12,16.3,11.5,16.3,17,8.9,15.1],"script":[1.8,1,1.3,1,0.5,0.8,0.9,1.5,1.5,1,1.1,1.1,1.5,1.3,1.4,1.2,0.8,1,1,1.3,1.1,1.6,1.5,0.8,1.5],"paint":[1.3,2.3,2.1,1.6,0.7,1.8,2,1.6,2,1.3,1.1,1.3,1.3,1.5,1.7,1.2,1.5,1.1,1.8,1.8,1.7,1.7,1.4,1.6,1.3]}},{"b":4,"v":{"total":[16.5,16.3,16,17,15.7,34.5,34.9,34.9,17.2,34.6,16.6,35.1,16.4,17.1,15.8],"script":[1.6,2.4,1.3,1.7,2.1,1.9,1.9,2.3,1.6,1.8,2.3,2.1,2.1,2.6,1.8],"paint":[14.6,13.1,13.6,13,13.1,12.8,13,13.1,14.2,12.9,13.7,13.1,13.3,13.5,13.1]}},{"b":5,"v":{"total":[19,12.5,14,14.6,18.2,19.2,13.5,21,21.7,19,20.3,16.4,14.2,19.8,14.3],"script":[0.8,1.6,0.9,1,1,0.9,1.1,0.9,1.7,0.9,1.6,1,1.8,0.8,1],"paint":[11,10.4,10.4,10.4,10.8,10.8,11.7,11,11.1,10.8,10.7,10.2,10.4,10.8,10.8]}},{"b":6,"v":{"total":[303.6,305.1,302.7,305.2,296.3,305.2,296.9,300.9,303.5,303,305.1,307.2,308.7,305,304.9],"script":[72.1,72.3,71.7,72.3,69.3,71.7,69,71.2,72.4,71.9,72.6,73.2,72.9,72.8,72.9],"paint":[225.2,226.4,225.2,226.8,221.2,227.4,221.8,223.6,225,224.9,226.7,227.8,229,226.6,226.5]}},{"b":7,"v":{"total":[34.4,33,33.4,35.1,35.3,32.9,33.9,34.5,32.8,35.4,32.4,35.3,33.1,34.7,35.2],"script":[8.5,7.8,7.7,8.9,8.7,7.5,8.6,8.6,7.8,8.7,7.7,9.2,7.8,8.4,9],"paint":[25.2,24.4,24.9,25.5,25.8,24.6,24.5,25.2,24.2,25.7,23.8,25.4,24.6,25.4,25.5]}},{"b":8,"v":{"total":[10,15.2,11.5,11.7,17.5,14.5,17.1,15.5,14.7,14.2,9.8,14.1,10.2,12.4,15.7],"script":[7.9,7.2,8.5,7.8,7.7,7.9,8.1,8,7.5,7.6,8,7.7,7.2,7.1,7.5],"paint":[1.5,0.2,0.6,1.7,0.9,0.2,1.2,1,1.2,0.3,0.6,0.6,0.9,1.9,0.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.3]}},{"b":11,"v":{"DEFAULT":[4.4]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[35.3]}},{"b":14,"v":{"DEFAULT":[39.9]}},{"b":15,"v":{"DEFAULT":[11.1]}},{"b":16,"v":{"DEFAULT":[77]}}]},
-{"f":136,"b":[{"b":0,"v":{"total":[30,29.3,29.7,30,29.8,29.6,30.3,30.6,29.5,29.8,29.9,29.8,30.1,29.8,30.4],"script":[6.3,6.1,6.7,6.4,6.7,6.4,6.6,6.4,6.4,6.3,6.4,6.5,6.8,6.2,6.9],"paint":[22.8,22.6,22.4,23.1,22.5,22.7,23.1,23.6,22.5,22.9,23,22.7,22.8,23,22.9]}},{"b":1,"v":{"total":[32.7,32.5,32.7,32.3,32.4,32.9,32,32,32.7,31.9,33.1,32.3,32.1,33.1,32.6],"script":[8.3,8.3,8.3,8.1,8.1,8.1,8.2,8.2,8.2,7.9,8,8.3,8.2,8.2,8.4],"paint":[23.8,23.5,23.8,23.6,23.7,24.2,23.3,23.3,23.9,23.4,24.5,23.4,23.4,24.2,23.7]}},{"b":2,"v":{"total":[13.4,14.3,14.1,13.8,14.5,13.4,14.4,14,14.5,13.8,13.4,13.4,13.6,14.1,14.4],"script":[2.3,2.7,2.5,2.4,2.7,1.6,1.7,2.7,2.4,2.3,2.2,2,2.4,2.2,2.5],"paint":[9.9,10.3,10.6,9.9,11.1,9.9,11.9,9.3,10.7,10.2,9.8,10.1,10.6,10.8,10]}},{"b":3,"v":{"total":[4,3.7,4.2,3.6,4.4,3.7,4.1,3.6,3.6,3.4,4.2,2.6,4.3,3,3.9,3.9,2.8,4.5,4,3.3,3.3,4.5,4.2,3,4.7],"script":[0.9,0.7,1.8,1.2,0.3,0.7,2.3,0.6,0.9,1,0.8,0.7,1,0.9,1.3,2,0.9,1.2,0.9,1.1,0.6,0.9,0.9,0.7,2.5],"paint":[1,2,1.9,1.2,1.8,2.1,1.7,2.4,1.3,2.2,1.4,1.1,2.7,1.5,1.5,1.1,1.7,1.4,1.1,2.1,1.5,3.2,1.3,1.5,2]}},{"b":4,"v":{"total":[15.7,15.3,14.9,15.3,16.7,15.6,15.1,14.9,16.2,14.3,15.4,14.9,15.3,14.6,14.4],"script":[1.5,1.2,1.7,1.4,2.1,1.4,1.4,1.1,1.5,1.6,1.3,1.5,1,1.5,1],"paint":[12.8,13.4,12.6,12.8,13.3,11.6,12.2,12.3,13.8,11.2,13.1,12.2,12.6,11.9,11.8]}},{"b":5,"v":{"total":[13.5,13.2,13.3,12.4,13.5,13.2,13.3,13,13.5,13.4,13.2,13,12.7,13.4,13.1],"script":[2.5,2.4,2.4,2,2.4,2.5,2.7,2.4,2.5,2.4,2.4,2.1,2.1,2.9,2.4],"paint":[10.5,10.1,9.8,9.5,10.4,10.1,9.9,10,10.4,10.4,10,10.6,10,9.9,10]}},{"b":6,"v":{"total":[308.1,305.5,307.2,310.3,305.4,307.1,307.6,308.9,306.3,305.8,308.7,308.2,310.2,314.8,308.7],"script":[64.8,61.9,62.3,65.5,61.3,64,62.4,64.3,62,62.1,62.8,64.6,65.1,65.9,64.8],"paint":[237.3,237.5,238.7,238.9,238.1,237.3,239.3,238.4,238.4,237.6,239.5,237.5,239.3,242.9,237.7]}},{"b":7,"v":{"total":[35.4,34.5,33.5,33.4,34.1,33.3,34.4,33.9,34,34.6,34.2,34.4,33.6,34.9,35],"script":[6.3,6.5,6.2,6.1,6.2,6.1,6.3,6.3,6.1,6.5,6.3,6.2,6.2,6.5,6.3],"paint":[28.3,27.1,26.4,26.3,27,26.3,27.2,26.8,27,27.1,27,27.4,26.5,27.5,27.8]}},{"b":8,"v":{"total":[10.5,10.9,10.1,10.4,10.7,11.4,10.7,10.7,11.9,11,11.7,11.5,11,11.7,9.7],"script":[8.5,8.5,8.2,8.5,8.8,8.5,8.3,8.7,9.6,9.4,9.5,9.6,9.6,10.1,8.3],"paint":[0.2,2.1,1.1,0.3,0.9,2,1.4,1.1,1.1,0.2,1.3,0.6,1.2,0.2,1.2]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[4]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[28.7]}},{"b":14,"v":{"DEFAULT":[61.7]}},{"b":15,"v":{"DEFAULT":[22.5]}},{"b":16,"v":{"DEFAULT":[83.7]}}]},
-{"f":137,"b":[{"b":0,"v":{"total":[31.4,31.3,31.1,31.5,31.3,31.7,31.7,31.7,31.2,31.8,31.4,31.1,31.9,30.9,31],"script":[6.6,6.7,6.7,7,6.7,7,7.1,7.1,7.1,7.1,7.1,6.7,6.9,6.7,6.5],"paint":[24.2,24,23.9,23.9,24,24.1,24,24.1,23.6,24.2,23.7,23.9,24.3,23.6,23.9]}},{"b":1,"v":{"total":[33.2,33.2,33.9,33.3,33.1,33.1,33.2,34,33.2,33.2,33.5,33.1,32.9,33.5,33.5],"script":[9,8.8,10.1,9,9,8.8,9,9,8.8,8.8,9,9,8.9,9,9],"paint":[23.7,23.9,23.2,23.7,23.5,23.7,23.6,24.5,23.8,23.9,23.9,23.5,23.5,24,23.9]}},{"b":2,"v":{"total":[22.2,21.6,21.6,22.2,20.7,22.6,21.3,23.1,21,23.2,21.4,22.2,23,21,21.6],"script":[9.4,8.9,8.5,9.1,8.4,10,8.6,9.3,8.8,8.9,9.5,8.7,9.6,8.9,8.8],"paint":[10.8,10.5,11.2,11.3,10.3,10.4,10.6,10.9,9.7,13.1,10.4,11.1,12,9.8,10.9]}},{"b":3,"v":{"total":[12.1,12.4,12.1,12,12.2,12,11.8,11.2,12.3,11.9,11.2,11.8,11.6,11.7,12.3,10.9,12.1,11.7,12.1,11.5,11.6,11.2,11.6,11.7,12.6],"script":[8.5,8.9,8.6,8.8,9.2,8.4,8.7,8.9,9.2,8.7,8.4,9,8.4,8.3,8.5,7.6,8.4,8.4,8.7,8.3,8.4,7.9,8,8.3,8.2],"paint":[1.7,2.5,1.7,2.6,1.6,1.8,0.9,1.3,1.1,1.5,1.2,1.5,2.2,1.5,1.6,1.7,2,1.5,1.8,1.3,1.5,1.7,1.8,1.2,2.1]}},{"b":4,"v":{"total":[23.4,25.1,23.3,23.4,23,23.8,23.4,24.5,24.2,23.8,23.3,24.2,22.6,24.7,24.9],"script":[8.2,9,8.3,8.7,8.7,8.8,8.3,8,8.4,9,8.2,9,7.4,9.1,8.7],"paint":[13.8,14,12.5,12.7,12.4,13.6,13.3,14.6,13.7,12.2,13.3,13.3,13.4,12.4,13.9]}},{"b":5,"v":{"total":[15.9,14.9,15.2,15.8,15.1,14.9,16,15.2,15.8,15.5,15.6,15.7,15.1,14.9,15.1],"script":[4.3,3.9,4.1,4.6,4.2,3.9,4.6,3.8,4.2,4.4,4.2,4.2,4.2,4.1,4.2],"paint":[10.9,10.2,10.1,10.5,10,10.6,10.5,10.7,10.9,10.3,10.9,10.8,10,10.2,10.2]}},{"b":6,"v":{"total":[311.8,312.3,308.8,311.7,315,312.2,311.2,313.7,311.2,309.8,312.3,311.9,313.4,311,310.5],"script":[67.6,67.9,67.4,67.5,68.3,67.4,68.5,67.4,67.2,65.8,68,67.3,67.1,66.9,67.2],"paint":[238.1,238.5,235.3,237.3,239.8,238.9,236.8,240.5,238,237.4,238.6,238.9,239.8,238.3,237.5]}},{"b":7,"v":{"total":[36.5,36.9,37.2,37.2,37.1,37.3,37.1,37,36.6,39,36.6,37.5,36.8,38.9,37.6],"script":[8.4,8.6,8.7,8.7,9.1,8.8,8.7,8.6,8.4,8.7,8.7,9,8.7,9.4,9.2],"paint":[27.2,27.3,27.6,27.6,27.1,27.7,27.5,27.5,27.2,29.4,27.1,27.6,27.2,28.6,27.4]}},{"b":8,"v":{"total":[11.5,10.5,11.5,11.2,11.1,11.3,12.7,11.5,10.3,11.9,11.8,10.9,12.3,11.1,11.2],"script":[9.2,8.3,9.9,9.3,9,9.3,10.5,9.4,8.6,9.7,9.7,9.2,10.1,9,9.4],"paint":[1.4,1.2,0.6,1,0.6,1.3,1.8,1.1,0.9,2,0.7,0.8,0.9,1.2,1.5]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[4.3]}},{"b":11,"v":{"DEFAULT":[4.3]}},{"b":12,"v":{"DEFAULT":[1.3]}},{"b":13,"v":{"DEFAULT":[32.5]}},{"b":14,"v":{"DEFAULT":[59.5]}},{"b":15,"v":{"DEFAULT":[21.6]}},{"b":16,"v":{"DEFAULT":[84.9]}}]},
-{"f":138,"b":[{"b":0,"v":{"total":[27.9,28,27.7,27.5,27.7,27.8,27.9,28.9,28.1,27.9,27.9,27.6,27.9,27.6,27.4],"script":[4.3,4.4,4.2,4.2,4.3,4.2,4.2,5,4.5,4.2,4.2,4.5,4.2,4.2,4.2],"paint":[23.2,23.2,23.1,22.9,23,23.2,23.3,23.5,23.2,23.3,23.3,22.7,23.3,23,22.7]}},{"b":1,"v":{"total":[29.8,30.7,32,29.7,30.4,29.8,30.3,30,29.9,29.9,29.8,29.6,29.2,29.5,30.4],"script":[5.6,5.8,6.8,5.8,5.7,5.6,5.9,6,5.9,5.7,5.6,5.7,5.8,5.8,5.8],"paint":[23.6,24.3,24.6,23.4,24.2,23.6,23.8,23.5,23.5,23.6,23.6,23.3,22.8,23.2,24]}},{"b":2,"v":{"total":[12.2,12.3,12,12.5,11.4,12,11.9,12.4,12.6,12.3,12.2,12.2,13.7,13.9,13],"script":[1,1,1,1.1,1,1,1.8,1.8,1,1.2,1,1.3,1.3,1.5,1.8],"paint":[9.4,9.5,9.7,10.1,9.4,9.6,8.5,8.9,10.5,9.5,10.4,10,11.3,11.2,10.3]}},{"b":3,"v":{"total":[6.1,3.2,4.4,3.7,3.7,5,3.6,4.8,3.7,3.4,4,3.7,3,2.9,3.5,3.1,3.2,3.6,3.3,3.6,4.4,3.7,2.7,3.7,3],"script":[1,1.1,1.4,1,1.9,1.2,1.3,2.8,1.8,1.5,1.3,1,0.9,1.3,0.8,1.2,0.9,1.3,1.5,1.6,1.4,1.7,0.9,1.3,1.2],"paint":[2.5,1.1,1.8,1.4,1.3,1.4,2.1,1.5,1.2,0.3,1.6,2.4,1.9,1,1.4,1.1,1.1,2.2,1,1.9,1.6,1.2,1.7,1.6,1]}},{"b":4,"v":{"total":[15.5,15.6,15.2,16.3,15.2,14.6,15.1,15.8,14.8,15.5,14.6,15.7,15.3,14.1,15.4],"script":[2.3,1.5,2,2,1.5,1.6,1.4,2,1.3,1,0.9,1.8,1.7,1,0.7],"paint":[12.2,12.8,12.2,13.4,12.5,12.4,12.2,12,12.9,13.2,12.3,12.4,12.4,12.5,13.7]}},{"b":5,"v":{"total":[11.6,11.2,11.2,11.1,11.1,11.5,11.1,11.1,11.4,11.2,11.1,11,11.2,11.2,11.4],"script":[0.7,0.7,0.7,0.7,0.8,0.9,0.7,0.7,0.8,0.7,0.7,0.7,0.8,0.7,0.7],"paint":[10.1,9.9,9.9,10.1,9.8,9.5,9.5,9.7,10.1,9.9,9.6,9.7,9.8,9.9,10.1]}},{"b":6,"v":{"total":[292.3,297.8,292.8,303.6,292.5,291.4,301.5,295.3,301.1,304.7,291.2,291.4,303.5,292.1,296.4],"script":[47.7,47.5,49.7,49.9,50.2,46.5,49.7,47.3,47.6,51.3,49.7,47.3,50.3,47.7,49.9],"paint":[238.5,244.4,236.7,247.1,236.6,238.9,245.3,242.3,247.5,247.9,235.2,237.9,246.5,238.7,239.8]}},{"b":7,"v":{"total":[30.5,29.5,30.3,30.3,29.9,30.7,30.5,29.6,29.6,30.2,30.4,30.3,30.7,30.5,30.2],"script":[3.4,3.4,3.3,3.3,3.3,3.6,3.5,3.6,3.4,3.6,3.4,3.7,3.4,3.5,3.7],"paint":[26.3,25.4,26.3,26.3,25.9,26.3,26.3,25.3,25.5,25.8,26.3,25.8,26.6,26.3,25.8]}},{"b":8,"v":{"total":[12.6,11.5,10.5,10.7,12.1,10.6,11.2,12.5,11.1,10.6,11.8,11.4,12.1,11.5,11.2],"script":[10.5,9.1,8.9,9,9.7,8.7,8.9,10.5,8.9,9.1,9.4,9.6,10.3,9.6,8.8],"paint":[1.7,2.2,0.3,0.6,1.5,1,1.2,1.2,1.2,0.7,2,0.9,1,0.6,0.8]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[28]}},{"b":14,"v":{"DEFAULT":[38.7]}},{"b":15,"v":{"DEFAULT":[13.7]}},{"b":16,"v":{"DEFAULT":[66.7]}}]},
-{"f":139,"b":[{"b":0,"v":{"total":[31.1,31.1,31.1,31.2,30.7,31.5,31.2,31.2,31.4,31.5,30.9,31,31.3,31.6,30.9],"script":[7.1,7.3,7.2,7.2,7.2,7.5,7.1,7.3,7.2,7.3,7.3,7.2,7.3,7.2,7.2],"paint":[23.5,23.3,23.4,23.4,23,23.5,23.6,23.3,23.6,23.7,23.1,23.2,23.5,23.9,23.2]}},{"b":1,"v":{"total":[34,35.5,33.7,33.5,33.4,33.7,33.3,33.3,33.6,33.6,33.4,34.1,33.6,33.2,34.5],"script":[9.4,9.6,9.8,9.3,9.3,9.5,9.2,9.4,9.6,9.4,9.6,9.5,9.4,9.2,9.6],"paint":[24,25.3,23.4,23.7,23.5,23.6,23.5,23.3,23.5,23.7,23.3,24,23.7,23.4,24.3]}},{"b":2,"v":{"total":[16.3,16.1,15.5,15.7,15.8,15.7,15.3,15.9,15.7,15.7,15.5,15.2,15.5,16.1,15.5],"script":[4.5,4.6,3.4,4.6,4.2,3.7,3.7,4,4.5,3.9,4.3,3.9,3.9,3.9,3.6],"paint":[10.9,10.5,10.6,9.4,10.2,11.4,10.5,10.4,10.5,10.5,9.9,10.3,10.5,10.3,10.6]}},{"b":3,"v":{"total":[3.6,4.8,4.1,3.5,3.9,4.1,4.6,4.3,4.3,4.2,4.3,4.4,4.6,4.5,4.2,4.1,4.2,4.6,4.3,5,4.6,5.1,4.5,3.9,4.3],"script":[1.6,2.4,2,1.7,2.1,2,2.3,2.7,2.5,2.1,2.4,2.9,2.1,2,1.9,2.1,2.3,1.9,1.8,2.9,1.9,2.7,2.4,2.2,2.1],"paint":[0.9,1,0.4,1.7,1,1.2,2.1,1.4,1,1.6,1.1,1,0.6,1.9,2.2,1.8,1,1.8,1.4,1.3,2.5,1.1,1.2,1.6,1]}},{"b":4,"v":{"total":[15.9,16.4,17.7,15.7,16.2,15.8,15.8,15.9,16.8,16.9,16.6,16.3,16.1,16.9,16.9],"script":[2.3,3.2,3.4,2.3,2.7,2.4,2.4,2.3,2.5,2.8,2.4,3.2,2.9,3.4,2.3],"paint":[12.4,12.6,12.9,12.2,12,12.2,12.3,10.7,13.3,12.4,13.3,12.1,12.1,12.1,12.4]}},{"b":5,"v":{"total":[16.3,16.5,17.1,16.1,16.9,16.2,15.9,17,17.1,16.4,16.3,16.7,17,16,17],"script":[5.2,5.1,5.8,5.1,5.8,4.9,4.9,5.5,5.3,5.3,5.3,5.6,5.7,5.1,5.6],"paint":[10.3,10.7,10.4,10.1,10.6,10.6,10,10.7,10.6,10.6,9.9,10,10,9.8,9.9]}},{"b":6,"v":{"total":[314.9,312.5,312.7,310.8,312.8,313.8,315.4,313.2,314.4,314.9,311,311.3,311.7,312.1,311.7],"script":[70.2,69.1,69.2,69.2,69.7,69.9,69.6,69.3,69.8,70,69.4,69.1,69.4,69.6,69.3],"paint":[238.4,237.3,237.5,235.4,237.1,237.4,239.7,238,238.5,239,235.7,236.5,236.8,237,236.5]}},{"b":7,"v":{"total":[35.1,36.3,36.2,36.9,36.7,35.6,36.2,36.1,36.3,37.2,36.1,36.4,35.8,36,35.7],"script":[7.8,8.8,8.5,8.3,8.8,8.6,8.6,8.3,8.4,8.5,8.5,8.5,8.5,8.2,8.3],"paint":[26.5,26.6,26.7,27.7,27,26.1,26.7,26.9,27,27.4,26.6,26.9,26.4,26.9,26.6]}},{"b":8,"v":{"total":[11.2,12.3,12.7,12.3,12.3,11.7,13,12.9,12,13.9,14.5,11.5,14,12.1,12],"script":[8.8,9.7,10,10.3,10.2,10,10.8,10.9,9.9,11.5,12.3,9.5,11.5,9.5,10],"paint":[1.2,1.5,1.7,0.9,0.8,0.2,0.7,1.3,1,0.8,1.1,1,1.1,1.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[4.3]}},{"b":11,"v":{"DEFAULT":[4.3]}},{"b":12,"v":{"DEFAULT":[1.5]}},{"b":13,"v":{"DEFAULT":[31.7]}},{"b":14,"v":{"DEFAULT":[66.2]}},{"b":15,"v":{"DEFAULT":[24.1]}},{"b":16,"v":{"DEFAULT":[91]}}]},
-{"f":140,"b":[{"b":0,"v":{"total":[26.8,26.6,27.1,26.4,26.6,27.2,26.8,26.5,26.8,26.6,26.5,26.7,27,26.6,26.7],"script":[3.1,3.1,3.1,3.1,3.1,3.1,3.1,3,3.2,3,3,3.1,3.1,3,3],"paint":[23.4,23.2,23.6,22.9,23.1,23.7,23.3,23.1,23.3,23.2,23.1,23.3,23.5,23.2,23.3]}},{"b":1,"v":{"total":[29.6,30,30,29.3,29.3,29.2,29.5,30.1,29.9,29.7,29.5,29.5,29.4,29.6,29.2],"script":[5.4,5.5,5.2,5.1,5,5,5.1,5.4,5.3,5.5,5.1,5.1,5.1,5.1,5.1],"paint":[23.7,24,24.3,23.6,23.7,23.6,23.8,24.1,24,23.6,23.8,23.9,23.7,23.9,23.6]}},{"b":2,"v":{"total":[12.9,12.3,12.7,12.2,11.3,14.3,13.7,12.1,11.9,12.5,12.1,10.8,12.9,11.8,11.7],"script":[1.5,1.2,1.7,1.3,1.2,2.2,1.5,1.6,1.4,1.6,1.6,1.2,2,1.2,1.5],"paint":[10.1,9.4,10,9.3,8.9,10.4,10.7,9.4,9,9.9,8.8,8.4,9.8,9.5,8.8]}},{"b":3,"v":{"total":[4.9,4.6,4.2,4,3.3,3.1,3.8,3.5,4,4.4,3.1,3.6,3.5,3.9,3.9,3.6,4.3,3.9,3.6,4.5,3.8,3.4,3.3,3.9,3.4],"script":[1.7,2.3,1.8,1.6,1,1.5,1.1,1.3,1.7,2,1.1,1.6,1.5,1.3,1.6,1.1,2.2,1.5,1.5,2,1.2,1.2,1.5,2,1.2],"paint":[1.2,1.5,1,1.5,0.8,1,2.5,2,2.2,2.2,1.8,1.5,1.9,2.1,1.8,0.6,2,1.7,1.9,1.3,1.3,1.3,1.2,1,1.1]}},{"b":4,"v":{"total":[15.5,14.4,16.6,14.8,16.4,15.2,14.3,14.5,14.6,14.2,15,14.9,15.6,14.5,16.2],"script":[1.4,1.7,2,1.3,2.5,1.1,1.2,1,1.6,1.1,1.4,1.6,2.6,1,3.3],"paint":[12.5,11.1,13.2,12.4,12.5,13.2,12,11.6,11.6,11.3,12.6,11.6,12,12.4,12]}},{"b":5,"v":{"total":[11.3,11.5,11.3,11,11.3,11,10.9,11.1,11,11,11.4,11.3,10.9,11.4,11.5],"script":[0.7,0.8,0.7,0.7,0.9,0.7,0.7,0.7,0.7,0.7,0.7,0.9,1,1,0.8],"paint":[10,10.1,10,9.5,9.9,9.7,9.8,9.7,9.7,9.9,9.8,9.8,9.3,9.8,10.1]}},{"b":6,"v":{"total":[285,277.4,281.3,284.9,279.1,283.3,282.9,277.5,276.7,286.8,277.7,284.3,288.9,285.2,283.9],"script":[32.3,32.3,33.4,31.7,31.9,31.8,32.1,32,32.1,31.9,31.8,31.9,32.3,32.2,31.3],"paint":[246.7,239.5,241.3,247.3,241.7,246.1,245.3,239.3,238.5,248.2,239.7,246.5,249.9,247.3,247.1]}},{"b":7,"v":{"total":[29.9,29.9,30.2,29.9,30,29.9,29.7,30.8,30,31.3,30.4,29.7,31.1,30,30],"script":[3.3,3.2,3.2,3.3,3,3.5,3.2,3,3.6,3.3,3.1,3.3,3,3.4,3],"paint":[25.9,25.9,26.2,25.9,26.2,25.7,25.8,27,25.7,27.3,26.5,25.7,27.3,25.9,26.2]}},{"b":8,"v":{"total":[10.1,10.8,9.7,10.1,9.8,9.4,9.8,9.5,10,9.2,10.8,9.1,10.1,10,9.8],"script":[8.2,8.4,8.3,8.3,7.4,7.9,8,7.7,8.2,7.6,8.9,7.7,7.8,7.6,7.8],"paint":[1,0.6,0.2,0.9,1.1,0.6,0.2,0.2,0.9,1.4,0.3,0.2,1.4,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3.1]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[21.5]}},{"b":14,"v":{"DEFAULT":[37.6]}},{"b":15,"v":{"DEFAULT":[13.4]}},{"b":16,"v":{"DEFAULT":[63.4]}}]},
-{"f":141,"b":[{"b":0,"v":{"total":[27,26.9,26.4,26.8,26.5,26.7,26.6,26.9,26.5,26.6,26.2,26.3,26.9,27,27],"script":[3.6,3.5,3,3.5,3,3.6,3.1,3.1,3.1,3,3,3,3.5,3.4,3.6],"paint":[23,23,23,22.9,23.1,22.8,23.2,23.3,23.1,23.2,22.8,23,23,23.2,23]}},{"b":1,"v":{"total":[29.6,29.7,30.4,29.9,29.9,29.8,30.1,29.9,31.1,30.9,30.3,30.8,30.2,30,30.6],"script":[5.8,5.8,6.1,5.7,6.2,6.1,6.2,5.8,6.3,5.8,5.9,6,6.2,6,5.9],"paint":[23.2,23.4,23.7,23.6,23.2,23.2,23.4,23.5,24.2,24.6,23.8,24.2,23.4,23.4,23.9]}},{"b":2,"v":{"total":[12.2,12.4,12.3,12.4,12.1,11.7,12.4,12.2,12.8,12.1,12.2,12.7,12.8,12.4,11.8],"script":[1.4,1.4,1.9,1.2,1.2,1.3,1.9,1.2,1.7,1,1.1,1.7,1,1.7,1.1],"paint":[9.8,10,9.2,10,9.9,9.4,9.9,9.7,10.1,9.6,10.1,9.5,10,10.4,10.1]}},{"b":3,"v":{"total":[5.7,2.6,2.1,2.7,1.9,1.6,2.3,2.7,1.8,2.4,2.3,2.3,1.6,1.7,2.5,4.8,2.7,2,2,2.2,2.2,2.4,1.4,2.6,2.4],"script":[0.1,1,0.5,0.1,0.1,0.1,0.6,0.6,0.1,0.5,0.6,0.3,0.5,0.1,0.1,0.7,0.8,0.1,0.1,0.1,0.7,0.1,0.1,0.6,0.1],"paint":[1.8,1.5,1.5,2.5,1,0.6,1.4,1.7,1.6,1.8,1.6,1.7,1,0.7,2,1.5,1.8,0.9,1.1,2,1.3,1.3,0.7,1.8,2]}},{"b":4,"v":{"total":[16.2,15.8,16.9,17,16.8,16.2,16.5,15.5,16,16.6,16.3,16.6,16,16.7,16],"script":[3.3,2.6,3.3,3.6,3.4,3,2.5,2.8,2.5,3,3.4,3.1,2.8,2.8,2.9],"paint":[11.9,12.2,12.2,11.2,12.4,11.5,12.8,11.2,12.4,12.4,10.8,12.6,11.8,11.9,11.9]}},{"b":5,"v":{"total":[12.1,11.6,11.8,11.6,11.9,11.6,11.5,12,11.7,11.6,12,11.6,11.8,11.6,11.5],"script":[1.2,1.2,1.4,1.2,1.5,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2],"paint":[10.5,9.7,9.8,9.7,9.8,9.9,9.7,10.2,9.8,9.7,10.2,10,9.8,9.8,9.4]}},{"b":6,"v":{"total":[283.1,283.9,285,283.8,281.7,281.8,284.6,283.5,285.7,288.4,282.5,281.8,280.9,282.1,284.5],"script":[35.8,35.6,36.4,35.2,35.7,35.5,35.7,34.9,35.9,36.4,35.4,35.4,35,35.7,36.1],"paint":[241.3,242.2,242.4,242.7,240.5,240.3,242.6,242.4,243.6,245.5,241.6,239.9,240,240.5,242.3]}},{"b":7,"v":{"total":[31.1,32.9,32.5,35.1,33.3,33.7,31.6,33.9,33.3,31.4,32.2,32.1,32.2,32.2,31.9],"script":[4.8,4.8,4.9,5.5,5,5.4,4.8,4.8,4.7,4.6,5.1,4.7,5,5.2,5.2],"paint":[25.6,27.4,26.7,28.7,27.5,27.4,26.1,28.3,27.8,26.1,26.1,26.7,26.3,26.1,25.8]}},{"b":8,"v":{"total":[11.6,10.5,10.4,10.6,10.4,10.9,10.2,11,10.4,9.7,10.2,9.8,10.4,10.9,9.4],"script":[9.8,8.2,8.4,8.2,8.1,8.5,8.3,8.8,8.2,8.2,8.4,8.1,8.5,8.8,8.2],"paint":[1,0.6,1.7,1.2,1.6,1.5,1.2,1.2,1.8,0.6,0.7,0.2,1.7,1.3,0.2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.2]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[23.4]}},{"b":14,"v":{"DEFAULT":[21.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[47.6]}}]},
-{"f":142,"b":[{"b":0,"v":{"total":[27.7,28.3,27.9,27.8,27.8,27.6,27.8,27.6,28,28,27.7,27.6,28.1,27.6,27.5],"script":[3.1,3.5,3,3.5,3,3.1,3.4,3.1,3.6,3.5,3.1,3,3.4,3.1,3],"paint":[24.3,24.4,24.5,23.9,24.3,24.1,24.1,24.1,24.1,24.2,24.3,24.2,24.3,24.1,24.1]}},{"b":1,"v":{"total":[29.4,29.7,29.4,29.7,29.8,29.6,29.7,29.8,29.9,30.2,29.9,29.8,29.4,29.9,29.4],"script":[5,4.9,4.9,5.1,5,5,5,5.1,5.2,5,5,5,4.9,4.9,5],"paint":[24,24.4,24,24,24.3,24.3,24.3,24.2,24.2,24.5,24.6,24.2,24.2,24.5,24]}},{"b":2,"v":{"total":[13.2,14.2,13,13.3,14,12.5,13.3,12.9,12.9,12.4,12.7,12.9,12.8,13.6,13.2],"script":[2.3,3.3,2.1,1.6,2.2,1.7,1.8,1.6,1.5,1.3,1.6,1.2,1.7,1.1,2.2],"paint":[10.1,9.5,9,10.5,10.7,9.1,10.7,10.3,10.8,10.1,10.1,10.7,10.1,10.8,9]}},{"b":3,"v":{"total":[2.8,3.1,2.7,3,3.4,3.4,2.7,3,3.5,3.2,2.6,3.3,2.5,4.4,2.5,3,2.8,2.9,3,2.2,2.6,3,2.8,3.6,2.8],"script":[0.3,0.9,0.6,0.9,0.8,0.9,0.9,0.9,1.3,1.2,0.8,0.9,1.2,2.1,1,0.9,1.1,0.2,1.2,0.6,0.9,0.7,0.9,0.9,0.9],"paint":[2.3,1.3,1,1.2,1.6,2.4,1.7,1.2,2,1.9,1,2.3,0.7,2,1,1.2,0.4,2.1,1.2,0.7,0.9,2.1,1.8,2.5,1]}},{"b":4,"v":{"total":[14.6,14.7,15.8,14,14.4,15.1,15,14.8,14.4,15.1,14.3,14,14.5,14.7,13.9],"script":[1.5,1.3,1.5,0.9,0.5,1.2,0.9,1.4,0.9,0.9,0.8,0.6,1.1,1.1,0.6],"paint":[12.5,12.3,13.1,11.4,12.8,12.7,13.2,12.3,12.8,12.6,12.3,12,11.5,12.3,12.6]}},{"b":5,"v":{"total":[11.2,10.7,11.1,10.9,11.2,11.2,11.5,10.9,10.9,11.3,10.6,11,10.9,10.6,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,1.1,0.6,0.6,0.6,0.4,0.4,0.6,0.3,0.6],"paint":[9.8,9.5,9.9,9.7,9.8,10.1,9.9,9.7,9.4,10.2,9.6,10.1,9.7,9.7,9.6]}},{"b":6,"v":{"total":[283.9,281.9,283.1,283.3,279.1,282.6,282.2,281.8,279.2,281.5,281.5,282.5,281.2,281.5,280.9],"script":[30.3,30.3,30.8,30.2,29.6,30,30.9,29.9,30.3,30.2,29.9,30.5,29.4,30.3,30.7],"paint":[246.8,245.1,246.3,246.7,243.5,246.2,245,245,243,245.3,245.5,245.6,245.8,245.2,244.4]}},{"b":7,"v":{"total":[30.9,30.7,31.5,31.1,31.5,31,31.4,31.3,31.1,31,31.2,31.7,31.7,31.6,30.9],"script":[3.2,3.2,3.6,3.2,3.2,3.6,3.2,3.6,3.2,3.3,3.6,3.3,3.8,3.6,3.2],"paint":[27,26.7,27.2,27.1,27.5,26.8,27.4,27,27.1,27,26.9,27.7,27.1,27.2,27]}},{"b":8,"v":{"total":[10.9,9.7,10,9.9,11.2,10.5,10.3,10.1,10.5,10.2,11.9,10.4,9.9,10.5,9.8],"script":[8.8,8.3,8.4,8,9,8.2,8,7.7,8.5,8.1,9.7,8.5,8.3,8.1,7.3],"paint":[1.1,0.3,0.5,0.6,1.2,1.4,1.8,1.4,1.4,1,0.8,0.7,0.2,2.2,1.9]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[2.9]}},{"b":11,"v":{"DEFAULT":[2.9]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[13.9]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[73.4]}}]},
-{"f":143,"b":[{"b":0,"v":{"total":[38.9,38.6,39.2,39.2,39.1,39,38.8,38.5,38.7,38.9,38.4,38.5,38.3,38.8,39],"script":[14.5,14.3,15.2,14.8,14.9,14.9,14.7,14.5,14.7,14.7,14.3,14.5,14.2,14.7,14.7],"paint":[24,23.9,23.6,24,23.8,23.7,23.7,23.5,23.6,23.8,23.6,23.6,23.6,23.7,23.9]}},{"b":1,"v":{"total":[43.8,43.6,43.7,45.1,44.1,44.6,44,44.2,44.3,43.9,43.7,44.1,44.1,44.3,45.2],"script":[19.6,19.3,19.6,19.9,19.5,20.1,19.8,19.9,20,19.8,19.7,19.9,19.6,20,19.7],"paint":[23.8,23.9,23.6,24.8,24.1,24,23.6,23.8,23.8,23.6,23.5,23.8,24.1,23.8,25]}},{"b":2,"v":{"total":[19.4,19.4,20.3,18.6,19.1,18.7,18.8,19.2,18.9,19.2,18.9,18.5,18.8,18.6,19],"script":[7.5,7.3,7.4,7.7,7.5,7.6,7.4,7.2,7.8,7.5,7.1,7.2,7.9,7.4,7.5],"paint":[10.6,10.8,11.8,10.2,9.9,10,10.2,10.2,10.2,10.5,11.1,10.4,10,10.1,9.6]}},{"b":3,"v":{"total":[7.5,7.1,7.6,7.4,7.8,7.3,7.6,7,7.7,9,7.1,7.8,7.6,7.7,7.5,8.1,8.1,7.8,7.4,6.8,8,8.2,7.3,7.9,7.4],"script":[5.6,4.8,5.1,5.2,5.6,5.4,5.2,5.7,6,6.9,4.7,5.9,5,5.8,5.4,5.6,6,5.5,5.1,5.4,5.5,6.6,5.2,5.7,5.1],"paint":[1.2,1.3,1,0.9,2,1.1,1.3,1.2,1.2,0.9,1.3,1.2,2.5,1.1,1.8,1.8,0.4,1.1,1.5,1.3,1.2,0.9,1,1.5,1.8]}},{"b":4,"v":{"total":[19,19.1,20.6,19.5,18.9,19.4,19.8,19.2,21.3,19.8,18.9,19,19.3,19,19.4],"script":[5,5.5,5.6,5.2,4.6,5.5,5.5,5.5,5.9,6,5.4,5.7,5.2,5.1,5.3],"paint":[13.1,11.9,13.5,12.8,12.9,12.7,12.6,13.4,13.4,12.4,11.6,12.1,12.8,12.3,12.6]}},{"b":5,"v":{"total":[12.9,13.1,13.1,13.3,12.9,12.8,13.2,13.1,13.3,13.6,13.2,13.7,12.9,13.4,13.3],"script":[2.6,2.8,2.7,3,2.6,2.6,2.8,2.7,2.9,2.9,2.6,3,2.6,3,2.8],"paint":[9.4,9.7,9.7,9.9,10,9.6,9.8,9.8,9.4,10.2,10.1,10.2,9.5,9.9,9.9]}},{"b":6,"v":{"total":[421.4,421.5,418.2,421.4,417.5,416.4,424.6,419.1,420.3,423.6,422.5,423.3,420.1,419.5,425.7],"script":[156,153.1,152.7,153.6,150.8,151.7,159.8,152.5,153.3,157.2,157.2,156,155,154.1,160.4],"paint":[259.2,262.2,259.5,260.7,260.7,258.5,258.6,259.8,260.7,260.2,259,260.5,258.9,259.2,259.1]}},{"b":7,"v":{"total":[42.7,42.6,43.4,42.4,43.6,43.3,42.9,43.1,42.5,43.1,43,43.1,43.5,43.4,43.3],"script":[14.4,14.5,14.7,14.5,15,14.6,14.9,14.9,14.7,14.8,14.8,14.7,15.1,14.7,14.7],"paint":[27.4,27.3,27.9,27.1,27.8,27.9,27.2,27.5,27,27.6,27.4,27.7,27.6,27.9,27.9]}},{"b":8,"v":{"total":[20,19.4,21.4,19.3,19.8,21.4,20.7,20.7,23,21.5,22.9,21.3,20.1,21.2,21],"script":[18.7,18.1,19.6,18,18.5,19.8,18.8,19.8,20.9,20.1,21.8,19.9,17.8,19.9,19.3],"paint":[0.3,0.2,1.3,0.3,1.2,1.3,1.8,0.5,2,1,0.3,1.3,1.1,1.2,1.6]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[6.4]}},{"b":11,"v":{"DEFAULT":[6.5]}},{"b":12,"v":{"DEFAULT":[5]}},{"b":13,"v":{"DEFAULT":[47.1]}},{"b":14,"v":{"DEFAULT":[207.4]}},{"b":15,"v":{"DEFAULT":[58.5]}},{"b":16,"v":{"DEFAULT":[259.3]}}]},
-{"f":144,"b":[{"b":0,"v":{"total":[38.4,39.1,39,38.8,39,38.5,38.7,38.4,39,39,39,38.8,38.9,38.9,39],"script":[14.3,14.9,14.7,14.5,14.8,14.4,14.4,14.6,14.7,14.8,14.6,14.3,14.9,14.7,14.6],"paint":[23.7,23.8,23.9,23.8,23.7,23.7,23.8,23.4,23.8,23.8,23.8,24.1,23.6,23.8,23.9]}},{"b":1,"v":{"total":[44,44.8,45,43.4,44,43.7,44.8,44.5,44.6,44.7,46.2,44.5,43.7,44.3,43.2],"script":[19.7,20.1,20.2,19.1,19.7,19.4,20,19.7,20.1,19.9,20.5,20.4,19.4,19.3,19.3],"paint":[23.8,24.3,24.3,23.8,23.9,23.8,24.3,24.3,24.1,24.4,25.2,23.6,23.8,24.5,23.3]}},{"b":2,"v":{"total":[23.5,22.9,24.2,24.2,23.4,23.5,22.7,23.7,25.1,23.9,23.6,22.8,23,24.4,22.9],"script":[12.1,12.2,12.5,12.5,11.9,11.3,11.6,11.3,11.8,12.3,12,12.2,11.8,12.5,12],"paint":[9.6,9.8,10.3,10.5,10.2,11.2,10.1,11.1,10.6,10.1,10.1,9.7,9.7,10.6,10]}},{"b":3,"v":{"total":[13.8,13.1,13.3,13.8,13.3,13,13.3,13.4,12.8,13,12.9,13.1,14,13.1,13.1,13.4,12.6,12.9,13.6,13.4,13.9,14,13.1,13.2,13.9],"script":[11.5,11,11,11.4,11.5,10.9,11,10.7,11.2,11.2,11.2,11.2,11.6,11.2,10.9,10.7,10.8,10.7,11.2,11.5,11.4,11.7,11.2,10.2,11.9],"paint":[1.8,1.6,0.5,1.8,1.6,1.9,2,2.5,0.7,1,0.7,0.8,1.4,1.7,2.1,2.5,1.7,1.1,2.1,0.8,2.4,0.4,1,1.6,0.8]}},{"b":4,"v":{"total":[25.1,25.2,25.8,25,26.2,26.1,25,26.9,26,24.8,25.2,26.1,26.7,25.3,26.5],"script":[11.3,11.4,11.5,11.8,12,12.2,11.7,12.6,12.2,11.2,11.2,10.9,11.9,11.4,11.8],"paint":[12.9,12.6,13.2,11.5,12.7,12.1,11.7,12.5,11.9,12.6,12.5,12.9,13.8,13,13.6]}},{"b":5,"v":{"total":[16.1,16.5,16.4,16.4,16.6,16.4,16.4,16.8,16.2,16.5,16.2,16.3,16.3,16.2,16],"script":[5.6,5.8,5.8,5.7,5.8,5.7,5.8,6,5.9,5.9,5.7,5.9,5.7,5.8,5.7],"paint":[9.8,9.9,9.8,10.1,10.2,10,9.9,10.3,9.7,10,9.9,9.7,10,9.5,9.6]}},{"b":6,"v":{"total":[421.5,424,415.6,422.3,422.1,426.5,420.5,424.8,422,423,422.3,421.6,419.9,422.9,425.9],"script":[156,157,151.6,155.4,154.6,158.8,154.8,159.2,156,156.3,157.9,155.2,152.6,157.3,157.1],"paint":[259.5,260.7,257.9,260.6,260.6,261.1,259.5,259.4,259.4,260.4,258.5,260.1,261,259.3,262.5]}},{"b":7,"v":{"total":[44.5,44.6,44.6,45,44.5,45.3,44.7,45.2,44.7,44.4,44.2,44.7,43.9,45.3,45.1],"script":[16.5,16.3,16.3,16.7,16.2,16.1,16.2,16.4,16.4,16.2,16.1,16.3,16.1,16.4,16.4],"paint":[27.2,27.4,27.5,27.5,27.5,28.4,27.7,28.1,27.6,27.4,27.3,27.6,27,28.1,28]}},{"b":8,"v":{"total":[20.9,21.6,20.6,21.7,22.8,22.2,22.4,21.9,20.6,23.7,23.5,20.4,20.9,21.8,20.9],"script":[19.1,20.3,19.2,19.9,21,20.6,20.4,20.4,19.4,21.7,21.7,18.8,19.1,20.2,18.8],"paint":[0.6,0.3,1.3,1.1,0.8,0.6,1,0.8,0.6,1.8,1.4,1.5,1.7,0.7,2]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[6.6]}},{"b":11,"v":{"DEFAULT":[6.8]}},{"b":12,"v":{"DEFAULT":[5.1]}},{"b":13,"v":{"DEFAULT":[48.3]}},{"b":14,"v":{"DEFAULT":[211.9]}},{"b":15,"v":{"DEFAULT":[59.2]}},{"b":16,"v":{"DEFAULT":[267.1]}}]},
-{"f":145,"b":[{"b":0,"v":{"total":[42.3,43.2,42.8,42.3,43.2,42.7,42.5,42.8,43,42.6,42.8,42.5,42.7,42.2,43.5],"script":[17,17.5,17.4,17.2,17.5,17.2,17.3,17.4,17.3,17.5,17.2,17.2,17.2,17.1,17.4],"paint":[24.7,24.9,24.9,24.6,25.1,24.9,24.6,24.8,25.2,24.5,25,24.7,24.8,24.6,25.6]}},{"b":1,"v":{"total":[45.5,44.8,44.9,44.7,45.2,45.2,45.1,45.1,45.3,44.2,45.3,44.4,44.3,44.4,44.7],"script":[19.9,19.7,19.7,19.1,19.6,19.8,19.8,19.8,19.9,18.9,19.9,19.1,19,18.9,19.2],"paint":[24.9,24.6,24.6,25.1,25,24.9,24.7,24.7,24.9,24.7,24.8,24.7,24.8,24.8,24.7]}},{"b":2,"v":{"total":[27.1,27.8,27.1,26.6,27,25.8,26.6,26.2,26.8,28.3,29.4,28.7,26.8,26.1,26.7],"script":[14,14.9,14.1,13.6,14.8,13.9,14.3,13.8,14.4,14.4,15.3,14.8,14.6,14.2,13.8],"paint":[11.4,10.9,11.3,10.7,10.4,9.8,10,9.3,10.5,10.7,11.8,12.2,10.3,9.8,10.8]}},{"b":3,"v":{"total":[3.9,3.7,3.4,4,3.7,3.4,3.5,3.9,3.9,3.5,3.9,3.4,3.6,3.7,4.2,3.8,3.6,3.1,4.2,3.5,3.9,4.1,3,3.7,4.4],"script":[1.6,1.4,1.6,1.4,2,1.1,1.6,1.7,2.3,1.6,1.6,1.8,1.3,1.5,2,1.7,1.7,1.6,1.8,1.1,1.6,1.7,1.3,1.4,2.1],"paint":[1.9,1.2,1,2.1,0.7,1.8,1.1,2,1.1,1,2.1,0.7,1.8,1.9,1.5,0.8,1.8,1.3,2.1,1.2,1.5,1.2,1,1.3,1.5]}},{"b":4,"v":{"total":[15.9,14.4,15.5,14.7,15.4,15.2,15.6,15.5,16.4,15.8,16,15.9,15.2,15.8,15.9],"script":[2.1,1.5,2.3,1.6,2,1.8,1.6,1.5,2.1,2.1,1.7,2.5,1.5,1.9,1.8],"paint":[12.7,11.8,12.2,11.5,12.2,11.8,12.8,12.9,13,12.1,13.4,12.3,12.1,12.7,12.6]}},{"b":5,"v":{"total":[15.3,14.8,16.6,15.3,15.2,14.8,14.6,15.2,14.5,14.6,14.8,14.7,14.9,14.7,14.2],"script":[3.7,3.4,3.6,3.6,3.8,3.5,3.6,3.9,3.6,3.6,3.6,3.5,3.8,3.5,3.3],"paint":[10.3,10.5,11.9,10.7,10.8,10.6,10.3,10.7,10.4,10.3,10.7,10.3,10.3,10.6,10.3]}},{"b":6,"v":{"total":[431.7,434.6,420.8,432.2,434.8,431.8,430.8,426.4,426.3,435.6,435.8,425.2,434.4,436.4,423.9],"script":[163.3,166.1,163.6,162.9,166.4,163.8,163.5,166.4,166,166.8,166,165.5,165.9,166.8,164],"paint":[261.3,261.7,250.4,262,261.8,261,260.5,252.9,253.8,262.2,262.8,252.6,261.7,262.9,253.3]}},{"b":7,"v":{"total":[46.4,47.1,46.9,47.3,47.3,46.4,46.9,47.3,46.6,47.6,47.1,47.7,47.3,47.2,47.7],"script":[17.6,17.6,17.8,17.8,18,17.7,17.4,17.7,17.6,18,17.6,18,17.8,18,17.9],"paint":[28,28.5,28.1,28.5,28.4,27.8,28.6,28.6,28.1,28.7,28.6,28.7,28.6,28.3,28.8]}},{"b":8,"v":{"total":[10.7,11.3,12.8,10.9,11.5,11.8,11.3,11.7,12.9,10.9,11.6,11.2,11.8,11.2,11.6],"script":[8.9,9.2,10.7,9.4,9.4,9.9,9.2,8.9,10.8,9.5,9.8,9.1,9.5,8.9,10],"paint":[1,1.5,1.6,0.2,0.9,1.1,1.5,1.9,1.7,0.4,0.6,0.3,0.2,1.5,0.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[18.3]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[39.8]}}]},
-{"f":146,"b":[{"b":0,"v":{"total":[37.4,37.4,37.3,37.1,37.8,37.8,37.7,37.3,37.4,37.6,37.6,37,37.4,37.7,37.6],"script":[13.1,13,13.1,13.2,12.8,13.1,13,12.7,13.1,12.9,13,12.9,13,13.1,12.9],"paint":[23.8,23.9,23.6,23.4,24.3,24.2,24.2,24,23.7,24.1,24.1,23.6,23.9,24,24.2]}},{"b":1,"v":{"total":[14.3,14.6,14.5,14.1,14.5,14.6,14.2,14.6,13.5,14.4,14.2,14.1,14.5,14.5,14.2],"script":[3.8,3.9,4,3.8,3.7,3.8,3.7,3.9,3.5,3.7,3.8,3.7,3.7,3.8,3.8],"paint":[10.1,10.3,10.2,10,10.4,10.4,10.1,10.4,9.7,10.3,10.1,10.1,10.4,10.3,10.1]}},{"b":2,"v":{"total":[13.1,13.1,12.8,13.5,13.6,12.3,13.4,13.7,12.6,13.1,12.5,13.1,13,12.8,13.3],"script":[1,1.4,1.4,1.7,1.8,1,1.6,1.9,1.8,1.4,1.3,1.6,1.4,0.9,1.5],"paint":[10.4,10.5,10.5,10,10.8,10.1,10.3,10.7,9.8,10.3,10.5,10.5,10.4,10.6,10.9]}},{"b":3,"v":{"total":[4.9,3.9,3.9,3.1,2.7,5.1,3.3,4,3.2,3.5,3.5,2.9,3.1,2.6,3,2.7,3.3,3,2.8,5.2,4.2,6.1,4.4,2.9,2.8],"script":[1.8,1.3,2,1,1.2,1,1.7,1,0.9,1.5,1.4,0.8,1,1.2,1.3,0.7,1.2,0.7,1.2,1,1.2,1.2,1.2,0.3,0.6],"paint":[1,1.3,1.3,0.9,1.3,1.5,1.5,1.6,1.3,1.5,1.3,1.2,2,1.3,1.6,1.2,1.9,2.2,0.7,2.3,1.5,1.6,1.8,2.2,1.3]}},{"b":4,"v":{"total":[8.9,8.8,10.3,9.7,9.1,8.9,8.8,8.9,9.3,9.1,9.3,8.5,8.5,8.7,8.7],"script":[0.6,0.1,1.1,1,0.3,0.1,0.1,0.1,0.6,0.1,0.1,0.5,0.2,0.1,0.9],"paint":[7,7.5,8.6,7.6,7.7,7.7,6.6,7.4,8.1,8.3,8.2,6.9,7.4,6.9,6.5]}},{"b":5,"v":{"total":[13,13.1,12.7,12.5,12.7,12.8,13.1,13.5,13.3,12.6,13.1,12.7,12.8,12.9,12.5],"script":[2,2.1,2,2,1.9,1.9,2.1,2,2.2,1.8,1.9,1.9,2,2.1,1.9],"paint":[10.3,10.3,9.9,9.9,10.2,10.2,10.4,10.9,10.3,10.1,10.4,10.1,10.2,10.4,9.7]}},{"b":6,"v":{"total":[379.1,374.5,374.5,378,377.6,377,378.4,378.1,375.3,378.8,375,378,377.8,375.8,377.4],"script":[132.8,132.1,131.8,133.6,132.9,132.7,132.2,133.2,131.9,131.4,133.4,133,132.5,132.5,132.1],"paint":[240.3,236.1,237,237.8,238.9,237.5,239.7,238.4,237.3,241.4,235.6,238.9,239.2,237.6,237.6]}},{"b":7,"v":{"total":[41.4,41.7,41.6,41.6,41.7,41.7,42.9,41.7,41.4,42.1,41.8,41.7,42,41.6,41.9],"script":[13.2,13,13.4,13.3,13.1,13.5,13.5,13.2,13,13.7,13.2,13.5,13.3,13.2,13],"paint":[27.4,27.8,27.3,27.4,27.7,27.3,28.5,27.6,27.5,27.6,27.6,27.3,27.9,27.5,28.1]}},{"b":8,"v":{"total":[12.9,12,12.5,12.6,13.4,13.6,12.4,11.8,12.9,12.7,13.9,13.5,11.8,12.5,12.1],"script":[10.7,9.7,10.2,10,10.6,11.5,9.9,9.9,10.6,11.1,11.9,11.2,10.3,10.1,10.3],"paint":[1.9,1.2,0.6,1.6,1.6,1.1,2.2,0.3,0.8,1.1,1,1.6,0.8,0.7,0.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[5.4]}},{"b":11,"v":{"DEFAULT":[5.4]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[46.1]}},{"b":14,"v":{"DEFAULT":[23.6]}},{"b":15,"v":{"DEFAULT":[7.7]}},{"b":16,"v":{"DEFAULT":[52.4]}}]},
-{"f":147,"b":[{"b":0,"v":{"total":[32.9,33.4,33.2,33.5,32.6,32.8,33.2,33.2,33.3,33.3,32.8,32.9,33.1,33.3,33.7],"script":[8.4,8.6,8.7,8.7,8.3,8.4,8.5,8.4,8.4,8.4,8.3,8.3,8.5,8.5,8.6],"paint":[24,24.2,23.9,24.2,23.8,23.8,24.1,24.2,24.3,24.3,23.9,24,24,24.3,24.5]}},{"b":1,"v":{"total":[18.6,18.8,18.9,19.1,19,18.2,18.4,18.2,19,18.9,18.1,18.4,18.7,18.8,18.3],"script":[7.4,7.7,7.6,7.8,7.7,7.4,7.5,7.4,7.7,7.8,7.4,7.6,7.7,7.7,7.4],"paint":[10.6,10.5,10.7,10.7,10.6,10.2,10.3,10.2,10.6,10.5,10.2,10.2,10.4,10.6,10.3]}},{"b":2,"v":{"total":[41.4,40.7,41.7,40.5,40.5,43,41.9,40.6,42.4,41.5,40.6,38.5,41,41.9,41.5],"script":[27.3,27.8,28,27.4,25.9,28,27.2,28.1,28.6,28.1,26.5,25.4,27.6,27.3,27.4],"paint":[11.9,11,11.5,11.3,11.1,12.3,12.8,10.8,11.6,11.2,10.7,11.2,11.9,12.4,12]}},{"b":3,"v":{"total":[31.5,32.2,30.1,31.1,31.7,31.8,30.8,30.5,31.5,33.5,32.3,33.5,33.3,31.7,33,33,32.3,30.4,31,30.4,31.6,30.6,29.6,30.9,29.1],"script":[27.5,28.8,26.6,27,28.4,28.2,27.7,26.9,27.6,28.9,28.3,29.4,29.7,27.5,28.1,28.6,28.1,26.5,27.6,26.7,27.7,26,26.6,27.2,26.5],"paint":[2.1,1.6,1,1.8,1.9,2.3,1.7,1.5,1.2,2.8,1.3,1.5,1.5,2.3,3.3,1.7,2.3,2.6,2.3,1.4,2.1,3.3,1.1,2.1,1.6]}},{"b":4,"v":{"total":[37.4,37.4,37.7,37.1,38.2,37.4,38,36.6,39.4,37.1,37.9,37.7,38.3,38,36.7],"script":[26.2,26.3,26.8,27.1,27.6,26.7,27.7,25.5,27.8,26.4,26.9,27.8,27.4,27.1,26.5],"paint":[9.3,8.7,10,7.4,9.5,8.5,8.5,8,9.5,7.9,8.1,7.6,8.3,9.1,7.4]}},{"b":5,"v":{"total":[36.5,37.5,38.3,38,37.3,36.8,38.3,39,37.6,37.6,36.7,37.4,37.6,37.2,36.5],"script":[15.2,15.4,16.3,15.9,15.4,15.4,15.6,15.9,15.2,15.6,15.1,15.1,15.4,15,15.1],"paint":[19.9,20.6,20.6,20.6,20.5,20.2,21,22,20.9,20.4,20.3,20.9,20.6,20.8,20.5]}},{"b":6,"v":{"total":[332.3,331.5,334,333.2,332.9,332.8,330.8,328.8,333.2,334.5,334.3,333.5,335.5,334.3,332.2],"script":[90.2,89.3,90.2,89.4,88.6,88.5,87.7,87.5,89.8,89.2,88.6,88.9,90.5,91.4,90.3],"paint":[236.2,236.2,237.8,236.9,238.2,237.7,237,235.3,237.4,238.8,239.5,238.3,238.8,236.3,235.5]}},{"b":7,"v":{"total":[44.4,43.5,42.9,43,43.7,44.1,43.2,44.2,43.1,43.6,44,43,44.4,43.5,44.1],"script":[15.4,15.1,14.8,15.2,15.3,15.5,15.2,15.6,14.9,15.2,15.5,14.9,15.8,15.2,15.4],"paint":[28.1,27.4,27,26.8,27.5,27.7,27.1,27.7,27.3,27.3,27.5,27.1,27.6,27.3,27.7]}},{"b":8,"v":{"total":[12.1,11.8,13.3,10.9,10.7,11.1,12.5,12.1,11.8,10.9,12.2,11.1,13.2,11.5,10.9],"script":[9.7,9.4,11,8.7,9.2,9.1,10.3,9.5,9,9.7,10.4,9.4,10.8,8.8,9.1],"paint":[1.4,2.2,0.2,1.2,0.6,1.5,1.9,1.7,2.4,0.3,0.6,0.7,1.3,1.9,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[18]}},{"b":14,"v":{"DEFAULT":[19]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[53]}}]},
-{"f":148,"b":[{"b":0,"v":{"total":[77.3,78.5,81.9,77.4,74.7,79.2,76.3,78.8,81.2,76.5,81.7,78.2,79.1,78,81.7],"script":[46.4,46.6,46.9,47.2,46.6,45.7,46.6,47.1,46.5,47.2,46.2,46.1,46.4,47.2,46.6],"paint":[25.3,25.7,26,25.6,25.6,25.7,25.3,25.6,25.8,25.6,25.6,25.6,25.6,25.7,25.7]}},{"b":1,"v":{"total":[83.9,79.6,81.2,76.7,81.2,77,77.6,79.7,79.3,81,81.1,83.2,83.3,79.8,81.1],"script":[50.5,48.8,48,48.5,49,48.2,48.2,49.8,48.5,48.4,49.1,48.8,49,49.3,48.7],"paint":[26,25.5,26,25.6,25.5,25.7,25.9,26.1,26,25.7,26,25.5,25.9,25.5,25.6]}},{"b":2,"v":{"total":[85.5,82.1,67.4,66,83.1,68.2,66.4,65.7,67.1,84.9,81.3,84.3,81.7,68.1,85.2],"script":[38.5,38.8,38.8,38.5,39.6,38.8,39.1,38.3,39.7,38.3,37.5,38.6,37,37.1,40.7],"paint":[27,26,26.5,26.3,25.3,26.4,26,26.4,26.1,27.3,26.1,27.4,26.8,27.6,26.4]}},{"b":3,"v":{"total":[11.4,10.1,12.7,13.5,9.6,9.7,12.2,10,10.6,14.2,15.4,9.1,13.4,14.7,9.5,15.8,12.8,9.5,16.1,12.2,13.7,12.3,11.8,12.2,12.8],"script":[5.8,5.5,5.2,6.4,5.8,6,5.4,5.9,6.6,5.8,5.1,5,4.9,6.2,5.4,5.5,5.6,4.8,7,6.1,5.7,6.4,6,6.6,5.2],"paint":[2.9,2.9,1.6,2,2.2,1.9,2.5,3.3,2.9,1.7,2.9,2.4,2.7,2.5,2.6,3,2.7,2.3,2.6,2.8,2.4,3.8,3.7,4.1,3.1]}},{"b":4,"v":{"total":[38.8,38.8,36.3,37.8,38.4,36.4,36.3,37.7,37.9,54,38.4,39.2,54,37.6,36.1],"script":[19.6,19.6,18.9,19.9,20.2,19.4,19.2,19.8,19.4,18.7,19.8,20.3,19,18.6,18.9],"paint":[17.3,16,17,16.4,15.1,15.3,14.8,16.8,16.4,17.6,16.7,16.8,15.1,14.9,15.7]}},{"b":5,"v":{"total":[165,162.4,166.9,162.8,166.6,169.1,172.2,167,166.4,163.1,171.3,167.1,169.7,163.8,169.4],"script":[112.6,111.7,114.2,113.5,114.7,112.5,119.4,113.8,112.7,111.7,115.8,114.7,115,113.3,113.1],"paint":[49.5,48.3,48.9,47.4,49.9,48.6,49.4,49,50.1,49.2,48.5,49.7,51,47.3,48.6]}},{"b":6,"v":{"total":[658.1,648.3,657.6,647.5,651.6,660.3,665.3,660.4,658.6,658.9,662.7,658.2,662.2,667.7,661.3],"script":[398.4,395.3,400.9,394.4,394.9,399.3,402.5,398.2,401.4,398.3,403.4,400.9,403.1,404.9,401.3],"paint":[255.8,248.9,252.6,249,252.6,256.9,258.4,258,253,256.6,254.3,253,254.9,257.9,255.8]}},{"b":7,"v":{"total":[87.7,93.2,87.2,90,87.3,86.7,89.1,87.1,88.8,88.3,88.2,88.2,88.5,88.2,87.6],"script":[52.5,54,52.7,53.2,51.8,51.1,53.8,52.4,52.9,51.1,52.1,52.8,53.1,53.7,52.8],"paint":[29.6,29.5,29.5,29.7,29.8,29.6,30.3,29.5,30.3,29.6,30.6,30,30,29.5,29.6]}},{"b":8,"v":{"total":[22.1,20.6,18.7,20,42.3,41.6,20.1,21.7,21.6,21.2,19.4,20.4,19,38,19.8],"script":[18.1,16.2,15.7,15.8,17.6,16.7,16.6,17.1,18.9,17.5,15.7,15.8,16.4,14.8,16.7],"paint":[3.4,2.5,1.9,2.7,2.7,2,1.5,3.4,1.8,2.9,2,2.8,1.7,2.9,2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[9.9]}},{"b":11,"v":{"DEFAULT":[15.5]}},{"b":12,"v":{"DEFAULT":[44.7]}},{"b":13,"v":{"DEFAULT":[89.5]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[42.4]}}]},
-{"f":149,"b":[{"b":0,"v":{"total":[41.7,32,39.8,43.3,43.4,37.6,43.1,32.9,44,41,33.9,43.2,43.9,32.6,40.6],"script":[7,7.1,5.4,7.2,7.4,7.1,7.1,7.5,7,5.4,7.7,6.9,7.6,7.2,5.4],"paint":[23.3,24.4,23.7,23.4,23.8,24.3,23.7,24.8,23.8,23.7,24.3,23.4,23.8,24.5,23.6]}},{"b":1,"v":{"total":[22.2,22.1,25.2,23,22.7,22.8,23.7,22.8,24.4,22.4,22.7,23.8,24.1,23.8,24.6],"script":[6.7,6.6,6.8,6.7,6.7,6.6,6.6,7.1,6.8,6.7,6.7,7.2,6.7,6.9,6.6],"paint":[10.6,10.9,10.6,11,10.6,10.4,10.5,10.6,11.1,10.5,10.9,10.8,10.9,10.4,10.6]}},{"b":2,"v":{"total":[38.6,35.1,18.3,17.7,16.7,17,38,19.9,35.7,35.4,33.8,34.4,15.8,34.6,37],"script":[6.1,4.7,5.1,3.9,4.2,4.3,4,4.7,4.2,3.9,4.8,3.6,4.7,4.8,4.6],"paint":[13,13.3,12.1,12.6,12.2,11.2,14.5,13.3,11.7,12.6,12,12.4,10.4,12.5,12.9]}},{"b":3,"v":{"total":[10.9,12.9,7.1,5.7,6.3,6.3,12,11.7,9.1,6.1,9.8,14,9.7,6.3,9.6,5.7,12.4,6.5,7.4,6.3,6.9,11.8,7.9,6.4,6.1],"script":[2.4,2.8,3,1.6,2.6,2.8,2.5,2.4,2.2,2.1,2.7,2.3,2.6,3.2,2.8,2.4,2.9,1.4,2.8,2.1,1.9,2.4,3.6,2.2,2.3],"paint":[2.9,3.1,2.6,2.7,1.3,2.7,3.5,2.8,2.9,2.5,2.4,2.2,1.4,2.4,2.1,1.6,3.4,1.6,2.2,2.1,3,2.2,3.4,2,1.9]}},{"b":4,"v":{"total":[29.9,29.9,28.6,29.2,28.9,29.5,32.3,12.7,30.3,30.3,29.4,28.6,29,29.7,29.4],"script":[3.4,2,2.3,2.6,2.3,2.8,1.6,2.3,3,1.9,2.7,1.8,1.8,2.9,1.7],"paint":[8.9,9,8.8,8.8,8.5,8.3,11,9.8,9,10.7,10,9.6,8.7,8.9,10.2]}},{"b":5,"v":{"total":[42,36.7,38.4,38.6,38.2,38.4,37.1,36.5,36.8,36,37.4,38.9,35.3,37.7,36.1],"script":[12,11.9,12.9,11.9,12.2,13.2,12,13,13,11.6,12.4,12.2,12.2,13.2,11.8],"paint":[22.4,23.3,23.1,22.1,22.4,22.1,22.5,22,21.9,22.7,22.8,22.8,22.1,23.1,22.5]}},{"b":6,"v":{"total":[314.4,315.3,323.3,319.6,322.8,315.8,322.9,315.2,323.5,316.8,318.6,316.2,319.3,323.3,319.2],"script":[71,75.7,74.6,74.4,74.4,72,73.8,73.6,76.1,71.1,74.2,71.4,74.6,74,74.4],"paint":[237.6,236.3,238.5,238.8,240,237.9,241,238.4,242.9,237.7,239.3,238.7,236.6,240.1,237.2]}},{"b":7,"v":{"total":[41,41.1,41.5,40.7,41.9,41.9,41.8,41.2,41.6,41.1,42.6,41.8,41.3,41.4,41],"script":[7.3,7.2,7.1,6.9,6.9,7.1,7.1,7.2,7,7,7.2,7,7,7.3,7.1],"paint":[27.6,27.6,28.2,27.7,28.9,28.5,28.5,27.7,28.4,28,27.4,28.5,28.2,28.2,27.8]}},{"b":8,"v":{"total":[11.4,12.7,11.9,11.6,12.6,34.6,12.8,11.6,13.3,12.2,13.9,12.6,13.6,10.8,35.6],"script":[7.8,8.4,8.6,7.4,8,9.7,9.3,8,8.4,8.6,9.2,8.6,9.5,7.6,8.9],"paint":[2.3,1.3,2.7,2.9,1.5,3.2,3.1,1.7,2,2,1.4,1.9,2.2,0.9,1.8]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[31.8]}},{"b":14,"v":{"DEFAULT":[13.5]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[43.1]}}]},
-{"f":150,"b":[{"b":0,"v":{"total":[37.1,39.1,37.6,38,37.2,37.7,37,37.5,37.1,37.3,37.4,37.8,37.5,37.4,37.5],"script":[12.4,13.5,13.1,13.3,13.1,13.2,12.3,13.1,12.8,12.5,12.7,13.3,12.9,12.7,12.8],"paint":[24,24.9,23.9,24.1,23.4,23.8,24.1,23.8,23.6,24.2,24.1,23.9,23.9,24,24]}},{"b":1,"v":{"total":[13.8,13.8,13.3,13.8,14,13,13,13.6,13.2,13.7,13,13.9,13.7,13.9,13.4],"script":[3.4,3.4,3.4,3.4,3.4,3,3,3.3,3,3.4,3,3.4,3.4,3.4,3.4],"paint":[10,10,9.6,10,10.2,9.6,9.6,9.9,9.8,9.9,9.6,10.1,9.9,10.2,9.7]}},{"b":2,"v":{"total":[12.4,11.5,13.2,13.3,13.2,12,11.8,12.8,12.5,14.6,14,13.1,13.4,12.2,12.4],"script":[1.4,1.2,1,0.9,0.9,0.8,1.1,1.2,0.8,1.7,1,0.6,1.5,1.2,0.3],"paint":[9.7,9.3,10.8,10.5,10.6,10.4,9.8,10.1,10.6,11.7,11.7,11.1,10.9,9.9,10.6]}},{"b":3,"v":{"total":[5.9,8,5.8,6.8,5.5,5.9,6,7.3,7.2,6.5,5.8,5.8,6.4,7.3,6.6,6.9,6.5,8.1,5.7,5.9,5.2,6.4,6.4,6.3,6.1],"script":[3.4,4,4.3,4.4,3.4,3.5,3.5,4.3,4.5,3.5,3.9,4.2,3.6,4.5,4.9,4.3,3.9,4.7,3.6,3.8,4,4.3,3.9,4.1,4.2],"paint":[1.1,1.5,1,1.5,1.2,2.2,1.9,2.9,1.5,2.1,1.1,0.9,2.7,1.1,1.5,2.3,1.9,1.6,1,1.6,1,1.6,1.7,1.2,1]}},{"b":4,"v":{"total":[9.9,9.6,9.7,9.6,9.1,10.3,10.4,10.9,10.1,9.3,10.3,10.7,9.2,8.8,9.6],"script":[0.8,1,1,0.6,0.2,0.9,1.2,1.5,0.8,0.2,1.3,1,1,0.6,1],"paint":[7.6,7.4,6.8,8.1,7.6,8.5,7.3,8.1,8.4,8.1,7.9,7.9,7,7.7,6.7]}},{"b":5,"v":{"total":[27.4,27.9,27.2,27.9,27.8,28.5,28,27,26,28.9,26.1,28.3,28.6,28.5,27.9],"script":[6.6,6.8,6.1,6.6,6.8,7.3,6.7,6.1,6,6.8,6.1,7.4,7.2,7.2,7.2],"paint":[19.8,19.6,19.8,20.3,19.9,19.7,20.1,19.7,18.6,20.8,19.3,19.6,20.2,20,19.8]}},{"b":6,"v":{"total":[798.5,814.4,790.3,781,782.7,806.5,782.8,782.2,798.4,782.7,776.8,773.7,773.3,791.5,773.6],"script":[211.9,224.3,191.1,200.9,203.6,214.5,196.2,197.6,198.4,193,201.3,194.1,191.9,201.4,194.8],"paint":[253.3,255.8,255.2,253.5,252.4,254.5,257.2,256.6,257.7,253.4,253.1,256.9,255.6,255.3,255.3]}},{"b":7,"v":{"total":[44.3,41.8,43.8,42.6,42.4,42.9,44.5,42.9,43.2,43.3,42.9,42.8,43.7,43.1,43.4],"script":[15.3,14.4,15.4,14.9,14.4,14.5,15,14.8,14.8,15,14.8,14.5,15.1,14.8,14.9],"paint":[27.8,26.3,27.1,26.5,26.9,27.3,27.2,27,27,27.3,26.8,27.2,27.3,27.2,27.2]}},{"b":8,"v":{"total":[18.6,19,19.1,18.4,19.4,19.7,18.4,17.9,19.3,20.2,19.7,19,20.8,17.6,18.7],"script":[16.2,17.4,17,16.3,17.3,17.6,16.6,15.5,17.3,18.2,17.7,16.5,18.5,15.3,16.8],"paint":[1.9,0.5,1,1.2,1,1.4,0.7,1.3,1.7,1.1,1.2,1.4,0.9,0.2,0.7]}},{"b":9,"v":{"DEFAULT":[2.4]}},{"b":10,"v":{"DEFAULT":[6.5]}},{"b":11,"v":{"DEFAULT":[6.5]}},{"b":12,"v":{"DEFAULT":[2.8]}},{"b":13,"v":{"DEFAULT":[40.6]}},{"b":14,"v":{"DEFAULT":[354]}},{"b":15,"v":{"DEFAULT":[80.5]}},{"b":16,"v":{"DEFAULT":[298.2]}}]},
-{"f":151,"b":[{"b":0,"v":{"total":[33.4,31,31.3,30.8,31.1,33.7,31.3,34.2,31.9,33.4,33.2,33.5,33.4,33.6,31.1],"script":[8.1,7.5,7.5,7.4,7.6,8.1,7.7,8.9,7.9,8.1,8.1,8.3,8.2,8.1,7.7],"paint":[24.7,22.9,23.3,22.9,23,25,23.1,24.8,23.5,24.7,24.6,24.6,24.6,25,22.8]}},{"b":1,"v":{"total":[10.2,10,10.2,10.5,10.3,9.9,10.1,10,9.9,9.9,9.7,10.6,9.8,10.2,9.7],"script":[3.3,3.2,3.2,3.5,3.4,3.2,3.3,3.2,3.2,3.1,3.1,3.5,3.1,3.3,3],"paint":[6.5,6.3,6.3,6.7,6.5,6.3,6.4,6.4,6.3,6.4,6.3,6.7,6.4,6.5,6.1]}},{"b":2,"v":{"total":[14.1,14.1,15.3,14,15,14.9,13.9,13.2,13.9,14.3,13.4,14.1,14.5,14.4,13.8],"script":[2.7,2.6,3.5,2.9,3.3,3.3,2.8,2.2,2.8,2.1,2.5,2.9,3.4,3.4,2.8],"paint":[10.3,10,11.5,9.4,10.5,10.6,10.6,9.5,9.7,8.3,10,10.7,10.6,10,10]}},{"b":3,"v":{"total":[1.8,1.8,1.6,1.8,2.1,2.1,2.5,1.7,1.8,2.2,2.5,1.6,2.4,2.1,1.7,1.9,1.9,2.3,1.4,1.9,2.1,2,1.7,1.8,1.9],"script":[0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0],"paint":[1.6,1.7,1.1,1,1,2,1.8,1.5,0.9,2.1,1.8,1,1.4,1.6,1.5,1,0.7,1.3,0.9,1.7,0.4,1.2,1.5,1.7,0.9]}},{"b":4,"v":{"total":[10.1,10.4,10.1,8.7,9.8,9.7,9.9,9.9,10.4,9.8,9.8,9.4,9.7,9.7,10.4],"script":[1.7,1.5,1.2,0.3,0.7,0.3,1.3,0.8,1.4,0.9,1.1,1.6,0.9,1.7,0.3],"paint":[7.4,8.3,8.1,7.6,6.8,7.3,7.5,7.7,8.3,7.9,7.5,6.8,7.9,7.3,7.9]}},{"b":5,"v":{"total":[11,10.9,11.1,10.7,10.9,10.9,10.9,11.2,10.8,11,10.9,10.9,10.9,10.5,10.7],"script":[0.4,0.6,0.3,0.4,0.6,0.2,0.6,0.6,0.4,0.6,0.4,0.6,0.5,0.2,0.3],"paint":[10.1,10,9.6,9.7,10,9.5,9.7,10,9.5,9.6,9,10,9.7,9.6,9.7]}},{"b":6,"v":{"total":[327.8,328.7,329.4,331.3,327.8,328.3,328.2,329.8,330,328.2,327.3,327.6,327.7,327.6,328.7],"script":[83.6,83.5,83.1,83,82.4,82.9,82.8,82.5,83.5,83.9,81.2,82.6,82.4,81.4,83.6],"paint":[238.2,239.1,240.2,242.4,239.5,238.7,239.3,240.5,240.6,238.4,240,239.1,238.8,240.1,239]}},{"b":7,"v":{"total":[37.1,36.1,36.9,36.8,36.6,37,36.8,36.7,37,36.8,36.7,37.7,36.9,37,37.1],"script":[8.7,8.6,8.8,9.2,9.1,9.1,9,9,9.4,9,9.1,9,9.1,9.2,9.1],"paint":[27.5,26.7,27.3,26.7,26.6,27,26.6,26.8,26.7,27,26.8,27.7,26.9,26.8,27.2]}},{"b":8,"v":{"total":[10.1,9.5,9.7,10.3,9.7,12.5,9.2,10.6,9.5,9.6,11.1,9.8,9.7,9.7,9.9],"script":[7.8,6.7,7.8,7.6,8,10,7.5,7.9,8.1,8,8.8,8.2,6.7,7.8,7.6],"paint":[1.3,2.5,1,1.8,0.6,2.2,0.7,0.3,1.2,1,1.6,0.2,1.6,1,1.9]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[19.9]}},{"b":14,"v":{"DEFAULT":[7.9]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[40.6]}}]},
-{"f":152,"b":[{"b":0,"v":{"total":[40.6,40.6,40.3,40.9,41,40.4,41,40.2,40.8,41.5,41.4,41.2,40.9,40.4,40.5],"script":[17,17.4,16.9,17.3,17.1,17.1,17.2,16.8,17.2,17.7,17.5,17.4,17.3,16.7,17],"paint":[23.1,22.9,23,23.1,23.4,22.9,23.4,23,23.2,23.4,23.5,23.4,23.1,23.2,23.1]}},{"b":1,"v":{"total":[44.6,44.8,44.4,44.7,44.1,45.3,44.7,44.4,45,44.6,44.7,44.9,44.6,44.6,44.7],"script":[19.2,20,19.2,19.4,19.2,19.8,19.2,19.4,19.8,19.1,19.3,19.4,19.5,19.2,19.4],"paint":[24.9,24.3,24.7,24.7,24.4,25,25.2,24.6,24.7,25,24.9,24.9,24.6,24.9,24.8]}},{"b":2,"v":{"total":[16.1,15,13.8,14.8,13.7,14.7,16.7,14.8,14.8,13.9,14.3,15.1,15.5,15.3,14.9],"script":[2.6,2.6,2.3,2.7,2.1,2,3.2,2.2,2.4,2.7,2.5,2.4,2.7,2.4,2.8],"paint":[12.4,11.1,10,10.8,10.7,11.5,12,10.9,10.4,10.3,10.9,12,11.4,11.8,10.8]}},{"b":3,"v":{"total":[5.3,6.6,5.7,6,7.1,5.7,5.5,5.9,6,5.3,5.7,5.7,4.8,4.9,6.7,5.3,5.5,5.2,5.8,4.9,6,5.7,5,5.1,5.8],"script":[3.3,3.6,3.5,3.6,3.4,3.9,3.8,3.9,3.7,3.3,3,3.8,2.8,2.9,3.7,2.9,3,4,3.3,2.9,3,3.2,2.7,3,3.8],"paint":[1.1,2.1,1.4,2.3,1.6,1.6,0.7,1.1,2.1,1.1,1.5,1.3,1.9,1.2,1.7,1.3,2.3,1.1,1.6,1.3,1.6,1.4,1.8,1.6,1.1]}},{"b":4,"v":{"total":[18.8,18,18.6,18.4,18.4,19,17.8,18.1,19.5,19.9,19.1,17.5,19.1,17.9,18.4],"script":[3.1,3.6,3.3,3.3,3.2,3.9,3.6,3.5,2.8,3,4,3.3,4.6,3.6,3.1],"paint":[14.1,13.2,13.7,12.3,14.5,13.5,12.9,11.8,13.9,15.8,14.1,13.1,12.8,13.1,13.8]}},{"b":5,"v":{"total":[11.6,11.6,11.8,11.5,11.5,11.7,11.9,11.6,11.5,12.2,11.8,12.1,11.7,11.5,10.9],"script":[0.9,0.8,0.9,0.7,0.7,0.7,0.7,0.9,0.7,0.7,0.7,1,0.8,0.8,0.7],"paint":[10.3,10.5,10.3,10.2,10.2,10.3,10.7,9.8,10.3,10.5,10.2,10.4,10.4,10,9.6]}},{"b":6,"v":{"total":[393.5,392.1,391.2,391.3,390.9,393.3,391.3,395.5,392.9,391.4,392,392.2,395,389.7,392.9],"script":[148.6,146.3,146.5,145,146.4,146.8,145.2,147.6,147.2,144.7,146.8,146,146.6,144.8,146.9],"paint":[238.8,240,238.7,239.6,238.5,241,240.1,241.5,240.1,241,239.2,240.5,242.1,239,240.5]}},{"b":7,"v":{"total":[46.7,46.8,47.7,46.8,46.3,47.1,47.3,46.6,46.4,46.7,45.8,46.8,48.1,46.4,46.6],"script":[18,18.2,18.6,18,17.6,18.1,18.1,17.9,18,18.1,17.3,18.2,18.1,17.8,17.8],"paint":[27.9,27.9,28.4,27.9,27.8,28.2,28.4,27.8,27.6,27.8,27.7,27.8,29.3,27.8,28.1]}},{"b":8,"v":{"total":[22.5,23,22.9,23.3,22.8,24.8,23.1,23.3,23.7,24.6,23.3,22.8,23.1,23.4,23.8],"script":[21.2,21.7,21.4,21.3,21.7,23.3,21.7,20.9,22.1,22.5,21.4,21.4,21.4,21.4,22.2],"paint":[0.3,0.8,0.6,1.9,0.9,1.4,0.4,2.3,1.4,1.9,1.6,0.9,1.1,0.9,1.4]}},{"b":9,"v":{"DEFAULT":[2]}},{"b":10,"v":{"DEFAULT":[9.9]}},{"b":11,"v":{"DEFAULT":[10]}},{"b":12,"v":{"DEFAULT":[2.5]}},{"b":13,"v":{"DEFAULT":[75.8]}},{"b":14,"v":{"DEFAULT":[284.5]}},{"b":15,"v":{"DEFAULT":[44.8]}},{"b":16,"v":{"DEFAULT":[293.2]}}]},
-{"f":153,"b":[{"b":0,"v":{"total":[49,49.9,49.5,49.4,49.7,49.3,49.2,50,49.6,49.5,49,49.4,49.4,49.7,49.1],"script":[24.2,24.4,24.4,24.3,24.4,24.3,24.3,24.3,24.3,24.6,24.4,24.5,24.5,24.5,24.3],"paint":[24.2,24.9,24.6,24.5,24.7,24.4,24.3,25.1,24.7,24.3,24,24.3,24.3,24.6,24.2]}},{"b":1,"v":{"total":[52.8,53.8,52.5,52.8,52.5,54,52.1,51.9,54.6,52.4,53,54,53.9,53.6,53],"script":[27.4,28.5,27.2,27.8,27.1,27.4,27,26.9,28.8,27.3,28.1,27.7,27,28.4,27.7],"paint":[24.8,24.6,24.5,24.2,24.7,25.9,24.5,24.2,25.1,24.4,24.3,25.6,26.3,24.5,24.6]}},{"b":2,"v":{"total":[125,125.2,124.7,124.5,124.7,122.5,125.4,125.7,123.1,125.6,124,126.8,124.5,123.5,123.7],"script":[99.4,100.3,99.3,98.7,98.9,97.7,100,100,98.6,98.4,98.7,100.3,99.2,97,98.8],"paint":[23,21.3,23.4,24.2,22.5,22.5,23.3,23.5,22.3,25.7,22.7,23.6,23.1,23.8,23.3]}},{"b":3,"v":{"total":[4.1,3.6,4.1,4.5,4.2,3.6,5.3,3.7,3.2,4.1,3.8,3.9,5.8,4.1,4.6,3.8,5.6,5.2,4,6.4,4.1,3.6,4.8,4.2,4.2],"script":[1.5,1.7,2.3,1.8,1.7,1.1,1.9,1.5,1.1,1.9,1.8,2.3,1.9,1.8,1.5,1.7,2,2.5,1.6,2.1,1.8,1.5,1.3,2.1,1.7],"paint":[1.8,1.1,1.7,0.5,1,2,1.7,0.8,1.9,1,1.2,1,1.7,1.2,1.1,1.2,1.2,1.1,1.6,0.7,2.1,1.5,1.7,1.2,1.5]}},{"b":4,"v":{"total":[18.4,17.9,18.4,17.8,16.9,19.7,17.9,16.4,16.9,17.1,17.6,18.4,17.6,17.2,16.5],"script":[3.4,4.4,4.4,3.3,3.5,3.9,3.2,3.1,4,3.6,3.9,4.3,3.6,3.4,3.5],"paint":[14.2,12.5,13.4,13.5,12.5,14.6,13.6,12.4,11.9,12.3,12.1,13.1,12.5,12.8,12]}},{"b":5,"v":{"total":[11.9,12.2,12.5,11.9,12.1,12.1,12.1,11.8,12.2,12.1,12.1,12.3,12,12.1,12.2],"script":[1.3,1.3,1.5,1.3,1.3,1.2,1.5,1.6,1.4,1.2,1.3,1.4,1.3,1.5,1.5],"paint":[10,10.2,10.4,10,9.8,10.3,9.8,9.8,10,10.5,10.1,10.3,9.7,10.1,10.1]}},{"b":6,"v":{"total":[489.9,491.1,489.4,490.3,495.4,489.7,492.7,491.9,491.2,498,493.3,490.8,489.7,492.7,489.7],"script":[234.8,233.4,235.2,235.7,234.1,236.3,234.8,233.5,236.1,239.7,235.2,232.9,235.4,235,234.6],"paint":[248.3,251.1,247.4,248.3,252.7,246.7,251.2,251.3,248.5,251.6,251.4,250.6,247.8,251.3,248.7]}},{"b":7,"v":{"total":[107.3,106.4,108.1,106.5,107.9,107.4,107.6,106.6,106.9,107.1,108.5,106.8,109.8,109.1,109.9],"script":[55.4,54,55.1,54,55.2,54.9,55.2,54.1,55.2,55.4,55.2,54.2,57.4,56.4,56.1],"paint":[51,51.2,52,51.5,51.6,51.5,51.4,51.4,50.7,50.7,52.2,51.6,51.4,51.6,52.7]}},{"b":8,"v":{"total":[15,14.4,14.6,16.1,14.3,14.2,14.8,15,13.9,14.8,16.5,14.4,15.9,14.4,15.8],"script":[12.6,12.7,12.5,14.1,12.5,12.2,12.8,13.1,11.9,12.5,14,12.1,14.3,12.6,12.5],"paint":[1.1,1.1,1.4,1.2,0.6,1.2,1.6,0.9,1.4,1.2,0.6,2.1,0.3,0.9,1.6]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[4]}},{"b":12,"v":{"DEFAULT":[2]}},{"b":13,"v":{"DEFAULT":[21.5]}},{"b":14,"v":{"DEFAULT":[413.1]}},{"b":15,"v":{"DEFAULT":[100.4]}},{"b":16,"v":{"DEFAULT":[416.6]}}]},
-{"f":154,"b":[{"b":0,"v":{"total":[33.4,32.5,32.6,33.1,33.5,33.1,33.6,33.7,33.2,33.3,32.3,33.1,32.4,33.1,33.3],"script":[8.4,8,8.2,8.4,8.5,8.1,8.6,8.5,8.4,8.4,7.8,8.4,7.7,8.2,8.2],"paint":[24.3,23.9,23.8,24.1,24.4,24.4,24.4,24.6,24.2,24.4,23.9,24.1,24.1,24.3,24.6]}},{"b":1,"v":{"total":[14.8,15.2,14.7,15.4,15.6,14.6,15.3,15.1,14.7,15.7,15.5,15.1,14.7,14.8,14.6],"script":[4.5,4.8,4.4,4.9,4.9,4.4,4.6,4.4,4.5,5,4.9,4.7,4.4,4.5,4.4],"paint":[9.9,10,9.9,10.2,10.3,9.8,10.3,10.3,9.9,10.3,10.3,10,9.9,9.8,9.9]}},{"b":2,"v":{"total":[27,25.8,27.4,28.3,26.8,25.5,27.5,26.3,29.1,26.8,26.9,26.5,26.4,26.3,26.9],"script":[13.5,12.8,14,15.2,13.8,12.9,14.5,14.2,15.1,13.1,13.7,14.2,13.8,13.5,13.9],"paint":[11.7,10.8,11.5,10.2,10.9,10.4,11.1,10.4,12.1,11.3,10,10.4,10.7,11.2,11.3]}},{"b":3,"v":{"total":[15.2,14.5,15.7,13.9,13.9,14.3,15.6,15.3,14.5,14.4,14.4,14.6,15.6,16.3,14.3,14,15.5,15.1,14.1,15.3,14.9,15.4,15.1,14.5,14.4],"script":[12.2,11.7,11.9,10.6,10.8,11.1,12.4,12.5,12.2,11.6,11.5,12.1,12.1,13,11.7,11.2,12.2,11.5,11.1,12.7,11.5,11.5,11.6,11.6,10.8],"paint":[2.7,1.8,2.5,1.5,2,2,1.2,0.8,1.6,1.4,0.9,1.1,2.7,1.8,1.2,1.8,1.8,2.8,1.2,1.5,1.4,2.9,1.9,1.8,1.6]}},{"b":4,"v":{"total":[20.9,19.2,20.4,20.8,19.8,19.5,20,19.8,21.1,20.5,21.2,20.6,19.7,21.2,21],"script":[10.6,9.7,10.2,11.2,9.9,10.8,9.8,10.4,10.7,9.7,11.2,10.8,10.6,10.2,11.2],"paint":[8.9,7.6,8.7,7.1,7.6,7.2,7,6.6,8.1,8.8,8.9,7.1,7.2,8.5,8.2]}},{"b":5,"v":{"total":[29.3,29,28.5,29.3,30.4,31,30.2,28.8,29.4,29.5,30.8,28.6,29.4,30.1,29.6],"script":[7.9,7.7,7.4,8,8.2,7.9,8.2,7.9,7.9,8.8,8.8,7.8,8.4,8.8,8.4],"paint":[20.2,20.3,20,20.4,20.8,22,21,20,20.4,19,20.7,20,19.8,20.3,20.3]}},{"b":6,"v":{"total":[334.1,329,333.8,331.9,333.8,332,331,333.2,330.2,332,332.7,330.8,334.3,330.9,331.8],"script":[83.6,81.3,82.9,83.3,83.4,84,81.3,82.9,82.6,82.8,82.5,83.2,83.8,81.3,82.8],"paint":[243.9,241.4,244.5,242.3,243.7,241.7,243.6,243,241.3,243.1,243.8,241.2,243.6,242.9,242.6]}},{"b":7,"v":{"total":[39.7,39.7,40.1,39.6,39.9,39.5,39.8,39.3,39.9,40,38.7,40.5,39.7,39.5,39.7],"script":[11,11,11,10.9,10.9,10.9,11,10.9,11.2,11,11,11,10.9,10.8,11.1],"paint":[27.8,27.8,28.2,27.8,28,27.7,27.8,27.4,27.7,28.1,26.8,28.5,27.9,27.6,27.7]}},{"b":8,"v":{"total":[15.9,14,16.4,14.9,18.5,15,14.6,14,16.3,14.9,17.8,14.3,14.4,14.3,15.5],"script":[13.5,12.2,13.8,12.7,16.1,12.6,12,12.4,14.3,13.3,15.5,12.4,12.3,12.5,13.2],"paint":[1.2,0.2,0.3,1.9,1.1,1.3,1.6,0.2,0.8,0.7,1.6,0.9,1.9,1,1.3]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[3.4]}},{"b":11,"v":{"DEFAULT":[3.5]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[25.6]}},{"b":14,"v":{"DEFAULT":[63.5]}},{"b":15,"v":{"DEFAULT":[16.7]}},{"b":16,"v":{"DEFAULT":[83.8]}}]},
-{"f":155,"b":[{"b":0,"v":{"total":[28.9,29.4,28.9,29.2,29.6,29.2,29.3,29.2,29.2,29.3,26.8,29.4,29.5,26.8,26.4],"script":[4.2,4.4,4.2,4.2,4.5,4.5,4.6,4.3,4.6,4.3,4,4.2,4.6,4,4],"paint":[24.3,24.5,24.3,24.6,24.7,24.3,24.3,24.5,24.2,24.6,22.4,24.8,24.4,22.4,22]}},{"b":1,"v":{"total":[12.6,12,12.1,11.8,12.2,11.7,12.1,11.9,11.9,12.8,11.7,11.9,12,12.1,12.2],"script":[2.1,1.6,1.8,1.6,1.7,1.6,1.7,1.7,1.6,2.1,1.5,1.7,1.6,1.6,1.6],"paint":[10.2,10.1,9.9,9.9,10.2,9.8,10.1,9.9,9.9,10.3,9.9,9.9,10,10.2,10.1]}},{"b":2,"v":{"total":[13.5,14,13.4,14.9,13.3,15,14.2,13.8,14.4,13.8,14.2,14.6,15.9,14.6,13.3],"script":[2.4,2.8,2.5,2.8,2.3,4,3.3,2.9,2.8,2.7,2.8,3.3,3.9,2.8,2.7],"paint":[9.6,10.1,10,11,9.2,10,9.7,9.5,10,10.2,9.6,9.8,10.9,9.5,9.9]}},{"b":3,"v":{"total":[3.5,3,3.2,4,3.3,3,2.8,3.4,3.1,3.6,2.8,2.9,3.3,4.7,3.8,3.3,2.6,3,4.2,2.6,3.3,2.8,3,3.4,4.1],"script":[1.8,0.9,0.9,1.9,1.1,1.2,1,1.2,1.3,1.5,1.3,1,1.5,2.2,1.3,0.9,1.5,1.1,2.5,1.1,0.9,0.6,0.8,1.2,1.2],"paint":[1.2,1,1.3,1.9,1.1,1.1,1,1.3,1.1,1.3,1,1.1,1,1.5,2.4,1.3,1,1.6,1.6,1,2.3,2,1.1,1.9,2.7]}},{"b":4,"v":{"total":[11.8,11,11.3,11.2,12.5,12.1,12.4,11.8,11.5,11,11.5,11.3,11.9,11,11.5],"script":[2.6,2.5,3.1,2.2,3.8,3.1,3.5,2.5,2.9,2.4,2.7,2.6,2.8,3.2,2.9],"paint":[7.8,7,6.5,7.9,7.8,7,7.8,8.4,6.4,7.1,7.9,6.9,8.1,6.7,8.3]}},{"b":5,"v":{"total":[23.5,24.2,23.9,23.1,23.7,24.5,24.3,23.7,23.7,24.8,23.1,23.5,24.4,23.2,25.7],"script":[3.5,3.5,3.4,3.3,3.3,3.3,3.4,3.4,3.4,3.6,3.4,3.4,3.3,3.2,3.5],"paint":[19.4,20.1,19.5,19.1,19.7,20.5,20.2,19.6,19.3,20.5,19,19.6,20.3,19.3,21.4]}},{"b":6,"v":{"total":[295.4,292.1,292.7,295.2,295.8,295.5,292.5,296.9,294.2,293.5,294.3,292.9,293.9,293.7,292.8],"script":[43.9,40.9,41.6,44.1,43.6,43.5,41.2,44.4,41.3,42.7,44,42.7,42.7,41.5,41.6],"paint":[245.3,245.1,244.8,244.5,246,245.9,245.7,246,246.5,244.6,244,243.6,245,245.8,244.9]}},{"b":7,"v":{"total":[32.5,32.2,32.5,32.6,33.4,32.4,32.3,32.4,33.2,32.9,32,32.1,32.1,32.3,34.3],"script":[4.7,4.6,4.6,4.5,4.6,4.7,4.9,4.6,4.9,4.9,4.8,4.5,4.7,4.7,5.3],"paint":[27.1,26.9,27.2,27.4,28.1,27,26.7,27.1,27.5,27.3,26.5,26.9,26.7,26.8,28.1]}},{"b":8,"v":{"total":[9.1,9.1,9.3,11.7,9.4,9.7,8.7,9.7,10.2,9.8,10.4,10.4,10.4,10.6,10.3],"script":[7.5,7.3,7.7,9.7,7.3,8,7.4,8,8.2,7.6,8.5,8.6,8.1,8.2,8.2],"paint":[0.6,0.2,0.3,1,1.4,0.7,1.1,0.2,1.8,0.3,1.6,0.3,0.6,2.2,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.4]}},{"b":11,"v":{"DEFAULT":[2.4]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[16.2]}},{"b":14,"v":{"DEFAULT":[8.7]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[41.1]}}]},
-{"f":156,"b":[{"b":0,"v":{"total":[26.5,25.9,26.5,26.3,26.7,26.5,26.4,26.8,26.3,26.5,26.2,26,26.6,27,26.2],"script":[2,1.9,2,1.9,2,2,1.9,1.9,2,2,2,2,2,2,2],"paint":[24.1,23.5,24.1,24,24.3,24.1,24.2,24.4,23.9,24.2,23.9,23.6,24.3,24.5,23.9]}},{"b":1,"v":{"total":[11.7,11.8,11.6,11.8,11.9,11.9,11.7,11.7,12,11.6,11.5,11.7,11.7,11.7,11.8],"script":[1.1,1.1,1.1,1.1,1.2,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1],"paint":[10.2,10.3,10.2,10.4,10.4,10.4,10.3,10.3,10.5,10.2,10.2,10.3,10.2,10.3,10.3]}},{"b":2,"v":{"total":[11.2,11.4,11.3,12.2,10.9,11.6,11.4,13,11.5,10.8,11.2,12.1,12,11.9,11.2],"script":[0.2,0.1,0.1,0.1,0.1,0.1,0.6,1,0.1,0.1,0.1,0.9,0.5,0.9,0.5],"paint":[9.3,10.4,10.5,10.7,9.8,10.9,9.9,10.9,10.7,9.4,9.7,10,10.3,9.9,9.3]}},{"b":3,"v":{"total":[2.4,1.8,2.3,2,1.7,2.3,2,2.3,2.1,2.2,1.6,2.7,2,2.4,3.2,1.8,2.2,1.4,2.2,2.1,2,1.9,1.8,3.1,1.8],"script":[0,0.1,0,0,0.5,0.4,0.4,0,0.6,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0.2],"paint":[2.3,1.6,2.2,1.5,1.1,1.7,1.1,1.5,1.3,2.1,0.7,2.3,1.3,1.4,1.5,1.4,2,1.3,1,1.1,1.5,1.5,1.6,1.8,1.2]}},{"b":4,"v":{"total":[8.8,7.9,7.8,8.5,8.3,8.2,8.5,7.8,8.2,8.9,7.9,8.3,8.1,8,7.9],"script":[0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0],"paint":[7.5,6.5,6.3,7.6,7,7.1,7.4,6.5,7.5,8.2,6.8,7,7.2,6.5,6.7]}},{"b":5,"v":{"total":[10.4,10.5,10.4,10.3,10.4,10.4,10.3,10.3,10.2,10.4,10.3,10.6,10.2,10.4,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[9.9,9.8,9.7,9.6,9.8,9.6,9.2,9.6,9.6,9.7,9.6,9.7,9,9.7,9.8]}},{"b":6,"v":{"total":[273.4,273,274.2,275.9,271.9,271.7,273.8,274.7,273.1,272.8,274.2,272.5,274.1,274.2,275.6],"script":[22.8,22.1,23.4,22.3,22.9,23.1,23.1,23.4,22.5,23,23.4,22.9,22.9,23.8,23.7],"paint":[244.1,244.9,244.7,247.7,243.2,243,244.6,245.3,244.8,243.7,244.5,243.5,244.6,244.5,245.4]}},{"b":7,"v":{"total":[29,28.8,29,30.4,28.8,28.5,29.1,28.9,29,28.6,30,29.7,29.8,29.5,29],"script":[2.1,1.9,2,2,1.9,1.8,2,2.1,1.9,2,2,1.9,1.9,2.1,1.8],"paint":[26.2,26.2,26.3,27.6,26.2,26,26.4,26.1,26.4,25.9,27.1,27,27.2,26.8,26.5]}},{"b":8,"v":{"total":[8.6,9.7,8.5,9.1,9.4,8.7,8.8,9.3,9.2,10,10.7,8.8,9.4,8.8,8.9],"script":[6.3,7.3,6.4,6.8,7.4,7.4,7.3,7.1,6.9,7.6,8.4,6.7,7.8,6.6,7.2],"paint":[1.3,1.4,1.1,1.9,1.4,0.2,0.5,1.3,0.6,1.3,1,1.2,0.2,1.2,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[13.3]}},{"b":14,"v":{"DEFAULT":[6.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[37.1]}}]},
-{"f":157,"b":[{"b":0,"v":{"total":[28.4,28.6,28.6,28.4,28.1,28.7,28.5,28.5,29.2,28.4,28.4,28.5,28.6,28.3,28.4],"script":[3.5,3.4,3.4,3.4,3.5,3.4,3.8,3.4,3.9,3.4,3.9,3.4,3.8,3.4,3.4],"paint":[24.5,24.7,24.8,24.7,24.2,24.8,24.3,24.7,24.8,24.6,24.1,24.8,24.4,24.6,24.6]}},{"b":1,"v":{"total":[14.2,14.1,14,14,13.8,13.7,13.9,14,14,14,13.8,14.1,14.4,14.2,14.3],"script":[3.4,3.5,3.5,3.5,3.4,3.3,3.5,3.3,3.4,3.5,3.3,3.4,3.7,3.4,3.5],"paint":[10.4,10.3,10.1,10.2,10.1,10,10.1,10.4,10.2,10.2,10.1,10.4,10.4,10.4,10.4]}},{"b":2,"v":{"total":[13.1,13.3,12.9,13,12.7,12.9,13.5,12.3,12.3,12.5,12.8,13.1,13,13.2,12.7],"script":[1.4,1.2,1.8,1.4,1.9,1.6,1.9,1.6,1.3,1.3,1.3,1.6,1.3,0.9,1.5],"paint":[9.9,11.1,9.6,10.6,9,10.2,10.5,9.7,10.3,10.1,10.6,10.7,10.6,11.3,9.6]}},{"b":3,"v":{"total":[3.3,2.3,2.9,2.8,3,3,2.6,2.8,2.9,2.9,2.6,3,3.3,2.9,2.9,3,2.5,3.6,3,3.1,3.3,3.2,2.3,2.2,2.8],"script":[1.4,0.7,1,0.9,0.9,1.4,0.7,0.2,0.9,0.8,1.1,1.4,1,0.9,1.1,0.9,1,1.8,1,1.4,1.4,1,0.8,0.6,1],"paint":[1,1.5,1.1,1.1,1.2,0.7,1.8,1.7,1.2,1.3,1.1,0.7,2.2,1.9,0.9,1.2,1.4,1.7,1.9,1.3,1.1,2,1.3,0.7,1.7]}},{"b":4,"v":{"total":[11.2,10.1,10.3,10.1,11.3,10.2,10,10.4,9.5,10.3,10.2,11.9,11.5,10,9.7],"script":[1.9,1.5,1.2,1.6,2.6,1.2,1.6,1.5,1.1,2,1,1.5,2.1,1.8,1.4],"paint":[7.8,6.7,7.3,7.1,7.5,8,6.8,8.1,7.5,7.3,8.6,8.3,7.9,7.1,7.3]}},{"b":5,"v":{"total":[11.3,10.9,11,10.8,11,10.5,10.9,10.9,10.8,10.8,11,10.6,11.1,10.8,10.7],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.9,9.6,9.9,9.5,9.8,9.3,9.9,9.9,9.7,9.6,9.7,9,9.5,9.8,9.7]}},{"b":6,"v":{"total":[289.5,287.7,289.2,289.5,291.2,291.5,290.7,292.7,290.3,290.8,291.3,289.5,290.4,290,291.6],"script":[37,37.4,37,36.7,37.6,37.3,36.4,37.6,37.3,36.3,36.9,37.3,37.1,37.6,37.3],"paint":[246.3,244.6,246.4,246.8,247.7,248.3,246.9,248.7,246.8,248.4,248.3,246.3,247.1,245.8,248]}},{"b":7,"v":{"total":[32.6,32,31.2,32.2,32.2,32,31.7,31.7,31.4,32.1,32.3,31.4,32,31.9,31.5],"script":[3.8,3.7,3.6,3.7,3.7,3.7,3.8,3.6,3.6,3.6,3.8,3.6,3.8,3.7,3.6],"paint":[28,27.5,26.9,27.5,27.8,27.5,27.2,27.3,27.1,27.7,27.7,27.1,27.4,27.5,27.2]}},{"b":8,"v":{"total":[10.6,12.4,11.1,10.6,10.8,9.4,11.6,10.4,9.6,10.7,10.8,10.2,10,9.5,9.6],"script":[8.2,10,9.3,8.4,8.9,7.6,9.7,8.1,7.8,8.6,9.3,8.3,7.8,7.3,8.1],"paint":[0.8,1.3,1,1.6,0.2,0.2,1.3,1.4,1.6,0.9,0.5,0.6,0.4,0.9,0.4]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[3.3]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[18]}},{"b":14,"v":{"DEFAULT":[101.1]}},{"b":15,"v":{"DEFAULT":[36.1]}},{"b":16,"v":{"DEFAULT":[44.1]}}]},
-{"f":158,"b":[{"b":0,"v":{"total":[27.6,26.8,27.4,26.7,27.7,27.5,27.6,27,26.9,27.3,27,26.9,27,27,27],"script":[2.7,2.6,2.8,2.3,2.7,2.9,2.5,2.3,2.7,2.9,2.4,2.4,2.3,2.3,2.4],"paint":[24.5,23.8,24.2,24,24.6,24.3,24.7,24.3,23.8,24,24.3,24.1,24.3,24.3,24.2]}},{"b":1,"v":{"total":[11.8,11.9,12.4,11.9,12.2,12.1,12.5,12.1,12.2,12.2,12.3,12.4,12,12.5,12.1],"script":[1.4,1.3,1.5,1.4,1.5,1.5,1.5,1.5,1.6,1.7,1.6,1.5,1.4,1.5,1.5],"paint":[10.1,10.3,10.5,10.1,10.3,10.2,10.6,10.3,10.2,10.2,10.4,10.5,10.2,10.6,10.3]}},{"b":2,"v":{"total":[14.6,13.7,13.2,13.6,13.3,13.2,13.7,14.3,13.8,13.4,13.4,13.4,15,12.9,13.7],"script":[3.1,2.3,2,1.7,1.9,2.3,2.3,2.2,2.7,2.4,2.5,2.4,2.6,2.3,2.4],"paint":[10.2,10.1,10.3,9.4,9.6,9.8,10.2,10.7,9.6,10.4,9.9,10.4,10.4,9.6,10.3]}},{"b":3,"v":{"total":[4.3,2.8,2.3,1.8,2.1,2.7,2.6,2.7,2,2.6,2.1,2.2,2.5,2.4,1.9,2.2,2.4,2.2,2.3,2.8,2.3,2.1,2.2,2.5,2.5],"script":[0.1,0.7,0.4,0.1,0.1,1,0.1,0.8,0.1,0.1,0.4,0.1,0.4,0.1,0.1,0.1,0.5,0.3,0.5,1,0.6,0.1,0.1,0.1,0.1],"paint":[1,1.9,1.8,1.6,1.5,1.5,1.4,1.8,1.8,2.4,1.5,1.1,1,2.2,1,2,1.3,1.6,1.7,1.1,1.6,1.2,1.1,1.9,1.2]}},{"b":4,"v":{"total":[12.3,11.5,10.9,10.8,11.4,11.3,11,11.4,12,11,11.2,11.1,10.8,11.5,10.6],"script":[2.3,2.4,2.5,1.7,1.8,2.2,2.1,2.4,2.7,2.2,2.6,2.1,2.1,2.1,1.9],"paint":[8.7,8.2,6.9,8.1,8.6,7.8,7.7,8.1,6.8,7,6.9,7.8,7.5,8.3,7.7]}},{"b":5,"v":{"total":[24.1,25,24.2,24.8,25.6,23.5,24.7,24.7,24.7,24.4,23.8,24,24.3,24.4,23.6],"script":[2.5,2.5,2.7,2.7,2.5,2.5,2.7,2.4,2.8,2.7,2.9,2.4,2.6,2.8,2.9],"paint":[20.6,21.1,20.8,20.7,22.4,20.3,21,21.5,21.2,20.9,20.1,20.8,20.6,20.6,20]}},{"b":6,"v":{"total":[281.4,280.4,283,282.8,282.1,280.8,280.5,278.9,280.4,279.5,279.1,280.3,280.1,278.7,280],"script":[30.2,29.9,29.7,29.8,29.7,29.4,28.9,29.2,30.1,28.9,29.2,29.1,30.1,29.6,30.2],"paint":[244.2,244.2,246.8,246.6,245.4,244.7,245.2,243.3,243.8,244.2,243.9,245,244,243.2,243.8]}},{"b":7,"v":{"total":[32.8,31.6,32,32.6,31.7,32.6,31.9,32,32.8,32.1,31.6,31.7,31.9,32.3,32.1],"script":[4.1,3.7,3.6,3.7,3.7,4.2,3.7,3.7,4,3.8,3.8,3.7,3.7,3.7,3.8],"paint":[28,27.2,27.6,27.9,27.3,27.7,27.4,27.5,27.9,27.6,27.1,27.4,27.5,27.9,27.4]}},{"b":8,"v":{"total":[10.4,10.5,11.1,12.4,11.5,10.1,11.4,11,11.5,11,11.2,11.8,10.3,11.7,10.3],"script":[7.9,8.4,8.4,10.3,9.4,9,8.9,9.2,9.2,9.7,9.2,9.5,8.3,9.4,8.3],"paint":[1.6,0.9,1,0.9,1,0.9,1.9,0.6,2.1,0.8,0.6,2.1,1.8,1.9,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.3]}},{"b":11,"v":{"DEFAULT":[2.2]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[16.1]}},{"b":14,"v":{"DEFAULT":[18.3]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[44.3]}}]},
-{"f":159,"b":[{"b":0,"v":{"total":[39.1,38.8,39.4,38.7,39.5,39.2,39.1,38.6,38.9,39,39,38.7,39,38.7,39.1],"script":[15.1,14.7,15.3,14.9,15.1,14.9,15,14.7,14.9,15,15.1,14.8,14.8,14.8,15],"paint":[23.4,23.5,23.6,23.3,23.8,23.8,23.5,23.4,23.5,23.5,23.4,23.4,23.6,23.4,23.6]}},{"b":1,"v":{"total":[25.1,25.8,24.5,24.9,24.9,24.7,25.1,24.6,24.8,25.9,24.6,24.8,24.9,24.9,24.9],"script":[14.1,14.2,13.9,14,14.3,13.9,14.1,14.1,14.1,14.9,14,14,14,14.1,14.1],"paint":[10.4,10.9,10.1,10.4,10.1,10.2,10.4,10,10.2,10.4,10,10.2,10.3,10.2,10.3]}},{"b":2,"v":{"total":[18.4,18.1,19.2,17.8,18.2,18,18.7,19.4,18.4,18.1,17.8,17.7,18.3,18.2,17.5],"script":[6.9,6.6,7.6,5.9,6.2,6.4,6.4,6.4,6.6,5.9,6.1,6.6,6.5,6.3,6.1],"paint":[9.3,10.4,10.3,10.4,9.6,10.1,11.1,11.1,10.2,10.6,10.3,9.7,8.8,9.4,10.4]}},{"b":3,"v":{"total":[5.9,5.3,5.5,5.9,6.3,5.2,5.8,5.6,5.5,5.9,5.9,5.8,6.5,6.1,5.7,5.7,6.3,6.9,4.9,5.2,6.3,5.8,6.2,5.7,5.8],"script":[3.9,3.5,4,3.8,4,3.6,3.4,3.7,3.6,3.7,3.6,3.5,4,3.7,3.6,3.5,4.4,4.4,3.4,3.1,4.2,3.8,4.2,2.8,4.3],"paint":[1.2,1,1,0.9,2.2,0.7,2.2,1,1.1,1.7,2.1,0.4,1.9,1.7,1.9,1.5,1.7,1.7,1.4,2,1.6,1.9,1.3,2.7,1.3]}},{"b":4,"v":{"total":[12.5,11.9,13.5,12.4,11.9,12.9,11.7,13.1,11.8,11.9,12.9,12.2,12.4,12.1,12.7],"script":[3.9,3.4,3.9,3.2,3.7,4.2,3.9,4.1,3.8,4,3.8,4.2,3.6,3.5,3.9],"paint":[7.7,7.4,8.6,7.3,6.8,7.3,6.9,7.5,6.4,6.9,7.2,6.7,7.7,7.4,7.3]}},{"b":5,"v":{"total":[35.5,35.4,35,35.2,34.7,35.9,35.5,34.7,35.2,35.5,36.5,34.8,35.4,34.9,35.1],"script":[13,12.9,13.3,12.4,12.7,13.5,13,12.7,12.9,12.9,13.3,12.3,12.6,12.8,12.7],"paint":[21.6,21.2,20.5,21,21.2,21.5,21.5,20.7,20.8,21.3,21.9,21.3,21.5,20.7,21.1]}},{"b":6,"v":{"total":[424.8,428.1,426,428.6,428,430.5,427.1,430.1,429.2,427.1,429.1,427.3,426,427.5,428.1],"script":[180.3,183.4,180.2,182.7,182,183.3,182.2,184.2,183.4,180.1,182.6,181.5,182.1,182.1,180.8],"paint":[238.9,239.1,240.3,240.3,240.3,241.5,238.9,240.1,240,241.4,240.8,240.1,238.4,239.9,241.5]}},{"b":7,"v":{"total":[54.5,53.8,54,53.6,53.8,54.1,53.8,53.8,54.9,53.7,53.8,54,53.6,54.3,53.9],"script":[25.4,25.4,25,25.5,25,25.3,25.4,25.7,25.2,25.4,25.4,25.3,25.4,25.8,25.3],"paint":[28.2,27.5,28,27.1,27.7,27.8,27.5,27.2,28.8,27.4,27.5,27.8,27.4,27.5,27.7]}},{"b":8,"v":{"total":[14.8,13.8,14.8,15,16.7,15.3,14.6,13.3,13.1,12.6,14.8,14.5,13.3,13.6,15.4],"script":[12.4,11.9,12.6,12.9,14,13,12.7,11.2,11,11.1,12.8,12.6,10.9,11.9,12.7],"paint":[1.9,1.1,1.4,1.1,1.6,1.2,0.3,1,1.8,0.7,1.8,1.7,1.3,0.6,1.6]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[4.4]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[8.5]}},{"b":13,"v":{"DEFAULT":[33.6]}},{"b":14,"v":{"DEFAULT":[75]}},{"b":15,"v":{"DEFAULT":[19.7]}},{"b":16,"v":{"DEFAULT":[90.9]}}]},
-{"f":160,"b":[{"b":0,"v":{"total":[26.8,26,25.9,26.3,25.8,25.6,25.5,26,25.7,25.8,26.2,26,26.3,25.7,25.5],"script":[1.9,1.7,1.7,1.7,1.6,1.6,1.7,1.6,1.7,1.7,1.7,1.7,1.7,1.7,1.6],"paint":[24.4,24,23.9,24.2,23.8,23.6,23.4,24,23.6,23.7,24.1,24,24.2,23.6,23.5]}},{"b":1,"v":{"total":[11.2,11.7,11.9,11.5,11.5,11.5,11.7,11,11.6,11.1,11.3,11.5,11.7,11.7,11.8],"script":[1.1,1.2,1.2,1.1,1.2,1.2,1.1,1,1.1,1,1.1,1.1,1.2,1.2,1.2],"paint":[9.8,10.2,10.4,10.1,10,10,10.3,9.7,10.2,9.7,9.9,10,10.2,10.2,10.2]}},{"b":2,"v":{"total":[12.1,12.1,11.6,12.3,12.1,11.5,11.9,11.7,12.1,12.3,11.5,11.8,13.2,12.7,11.6],"script":[0.5,1.2,1.2,0.2,0.2,0.7,0.6,0.5,0.9,1,0.8,0.9,1.1,1.4,0.2],"paint":[11.2,9.4,9.2,9.8,11,9.8,10.6,9.6,9.2,10.7,9.5,9.5,11,9.7,10.2]}},{"b":3,"v":{"total":[3.4,2.2,3,1.9,2.2,1.3,2.5,2.4,2.6,2.1,1.6,2.1,2.2,2.4,2.8,1.8,2.4,2.4,2.3,1.2,1.9,2,2.4,4.4,1.5],"script":[0,0.1,0.7,0,0.6,0,0,1,0,0,0.1,0.1,0,0.1,0.1,0,0.1,0.1,0,0.2,0.1,0.1,0.7,0.9,0.5],"paint":[1.5,1.3,1,1.7,1.2,0.7,1.8,1.3,2,0.8,1.4,1,1,2.2,1.6,1,1.7,1.4,1.3,0.9,1.7,1.9,1.5,1.7,0.9]}},{"b":4,"v":{"total":[8.6,9.4,9.7,8.3,8.6,8.8,8.5,8.7,9.3,8.3,9.1,8.6,8.9,9.3,8.4],"script":[0.1,0.8,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0,0.1,1,0.1,0],"paint":[7.3,7.5,8.6,7.2,6.9,7.5,7,7.5,8.3,7.2,7.6,6.4,6,8.4,7.5]}},{"b":5,"v":{"total":[11.2,11.4,10.4,10.9,10.4,10.3,10.9,11,10.7,10.9,10.4,10.3,11.1,10.7,10.5],"script":[0.3,0.3,0.1,0.2,0.1,0.1,0.2,0.3,0.1,0.1,0.2,0.1,0.3,0.2,0.1],"paint":[10.1,10.5,9.7,10.2,9.6,9.6,10,9.9,10.2,9.8,9.7,9.7,10.2,9.8,9.7]}},{"b":6,"v":{"total":[350.3,350.3,353.3,351,353.2,350.7,351.6,350.6,354.1,356.4,350.1,350.2,355.1,350.1,351.5],"script":[105.9,106.4,108.2,106.7,108.5,106.8,105.8,105.4,108.5,106.9,105.7,105.6,109.2,104.4,107.2],"paint":[238.4,237.9,238.7,237.9,238,238,239.7,238.8,240,242.9,237.8,238.4,239.4,239.5,238.2]}},{"b":7,"v":{"total":[38.8,38.7,39.4,38.9,38.7,39.5,40.1,39,41.2,38.8,39.8,39.2,39.2,38.7,38.5],"script":[10.8,10.8,11.2,10.9,10.9,11.1,11,11.1,11.1,10.9,11.1,11.2,11,10.8,11],"paint":[27.1,26.9,27.3,27.2,27,27.4,28.2,27.1,29.1,26.9,27.8,27.3,27.4,27,26.8]}},{"b":8,"v":{"total":[13,12.4,12.9,12.9,12.2,11.5,13.6,11.8,12.8,14.8,13.4,12.3,12.8,11.8,12.9],"script":[10.7,10.2,11,11.8,9.9,10.2,10.3,10.5,11.1,12.4,11.7,10.8,10.6,10.1,11],"paint":[1.3,1.5,0.9,0.6,0.9,0.6,1.1,0.2,1.1,2.1,1,0.7,0.9,1.6,0.8]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[4.8]}},{"b":11,"v":{"DEFAULT":[4.8]}},{"b":12,"v":{"DEFAULT":[4.8]}},{"b":13,"v":{"DEFAULT":[39]}},{"b":14,"v":{"DEFAULT":[25.4]}},{"b":15,"v":{"DEFAULT":[8.3]}},{"b":16,"v":{"DEFAULT":[67.7]}}]},
-{"f":161,"b":[{"b":0,"v":{"total":[30.8,37,34.6,32.1,33,31.4,31.9,30.4,34.7,31.9,30.4,34.8,37.5,32.4,35.1],"script":[5.5,5.5,5.7,5.9,5.7,5.7,5.7,5.8,5.5,5.6,5.9,5.3,5.4,5.4,5.5],"paint":[23.6,23.4,24.1,24.4,24.1,24.1,24.4,24.2,24.3,24.4,24,24.3,24.2,24.1,24.5]}},{"b":1,"v":{"total":[21,21.4,21.3,14.9,21.7,14.8,19.8,20.7,19.1,17.8,21.1,17.6,19.6,22.2,22.3],"script":[4.9,4.4,4.5,4.5,4.4,4.6,4.5,4.5,3.5,3.6,4.7,3.5,3.6,4.2,4.8],"paint":[10.3,9.8,9.9,9.9,9.8,9.9,9.8,9.9,9.8,10.2,10.2,10,10.2,9.9,10.1]}},{"b":2,"v":{"total":[17.8,13.9,14.6,30.3,14.8,14,31.1,15.2,14.6,32.3,13.9,13.7,13.9,30.7,14.2],"script":[2.5,2.2,1.6,3.3,2.9,1.9,2.4,2.6,3,3,2.1,2.3,2.5,2.2,2.5],"paint":[11.9,9.6,11.6,9,10.8,10.7,10.6,11,10.5,10.7,9.9,10,10.5,11.2,10.6]}},{"b":3,"v":{"total":[8.5,2.9,9.4,8.7,8.5,8.5,5.7,3.4,12.1,3.2,7.4,5.6,5.9,3.4,6.2,4.6,6.8,8.4,3.6,3,9.4,6.2,8.6,3.9,3.3],"script":[0.7,1.1,0.9,0.2,1,0.2,0.2,0.9,1.2,0.8,1.2,1.1,1,0.2,0.6,0.5,1.1,1,0.2,0.7,0.3,0.6,0.5,1,1.2],"paint":[1.3,1.7,2.5,2.1,1,1.5,2,1.2,1.9,1.6,0.9,1.6,1.9,1.4,1.9,1.9,1.4,1.7,2.6,1,1.9,1.4,1.3,1.8,1.4]}},{"b":4,"v":{"total":[26.9,9.7,25.6,9.7,9.5,9.5,10,10.1,10.5,9.2,26.7,9.4,26.2,10.3,9.5],"script":[1.9,0.2,1.2,0.7,1,1,1,1.2,1.5,0.7,0.9,0.9,0.2,0.7,1.2],"paint":[7,8.8,7.3,7.2,7.5,7.8,7.4,7,8.4,7.5,8.7,7,8,7.7,8]}},{"b":5,"v":{"total":[28.3,31.2,27.2,29.5,29.1,28.4,29.2,29.8,29.5,29.6,27.7,31.9,29.1,28,29.7],"script":[6.1,7,6.8,6.3,5.8,7.3,6.4,5.8,6.9,7.9,7.3,6.8,6.2,6.7,6.1],"paint":[19.1,20.2,19.2,19.5,19.5,20.4,19.9,20.5,19.7,20.1,19.4,19.8,19.7,20.1,19.7]}},{"b":6,"v":{"total":[313.9,317.4,311.7,758.8,746.5,757.4,314.8,313.9,314.7,312,313.9,314.1,312.2,319.9,315.2],"script":[64.3,65.4,62.6,67.2,61.9,64.9,63.6,61.8,64.4,64.2,63.8,63.1,63.2,66,63],"paint":[242.8,244.3,239.4,248.6,246.4,249.1,241.9,242.8,240.9,241.3,240.6,240.9,242.2,247.3,244.9]}},{"b":7,"v":{"total":[39.6,39.5,40.4,39.6,39.4,39.3,40.6,40.8,39.1,39.9,39.8,40.2,39.7,39.4,40.5],"script":[6.1,6.3,6.3,5.9,6.2,6.3,6.5,6.5,6.3,6.1,5.9,6.5,6.6,6.7,6.3],"paint":[26.4,26.8,27,27.3,26.4,26.7,26.7,26.7,26.7,27.6,26.6,26.8,27.2,26.6,27.3]}},{"b":8,"v":{"total":[30.6,30.3,8.2,32.1,9.7,10.8,29.9,31.5,9.7,9.1,8.2,9.8,11.2,28.4,29.7],"script":[7.3,7.6,6.7,8.2,7.4,8,6.8,7.7,7.2,6.8,6.9,7.5,7.3,8.1,7],"paint":[0.9,1,0.2,0.3,1.7,0.8,1.4,1.1,1,1.6,0.7,1.2,1.1,0.3,0.4]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.7]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[28.9]}},{"b":14,"v":{"DEFAULT":[22.4]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[54.1]}}]},
-{"f":162,"b":[{"b":0,"v":{"total":[36.2,33.8,32.2,28,31,32.3,31.9,30.9,31.3,29.2,32.6,30.7,32,32.1,27.5],"script":[2,2.1,2,2.1,2,2,2,2,2,2,2,2.1,2,2,2.1],"paint":[23.5,26.4,24.2,25.1,24.3,24.2,24.3,24.1,24.6,24.1,24.4,25,24.9,24.3,25]}},{"b":1,"v":{"total":[13.3,13.5,13.3,13.6,18.4,20.1,15.6,13.3,13.5,20.5,16.5,13.8,14.6,20.5,15.1],"script":[3.1,3,2.9,3.2,3,3.3,3,3,3.2,3.3,3.3,3.2,3.2,3.4,3.3],"paint":[10,10.3,10.2,10.3,10.2,10.6,10.3,10.2,10.1,10.2,10.9,10.4,10.5,10.6,10.3]}},{"b":2,"v":{"total":[31.3,30.9,30.1,30.8,14.4,29.9,29.6,14.9,14.1,14.2,14,30.9,14.3,13.9,30.7],"script":[3.5,2.8,2.6,2.5,2.7,3.3,2.3,3,3.5,2.8,2.6,2.9,2.4,2.3,3.1],"paint":[11.1,12.1,11.1,11.9,11.4,10.4,11.8,11.7,9.6,10.8,10.2,10.8,11.2,10.1,11.8]}},{"b":3,"v":{"total":[6.9,5.9,6.1,6.6,6.1,6.1,6.4,10.1,6.9,6.4,8.9,7.2,9.4,5.8,8.2,6.2,7.1,10.9,5.9,7.2,5.3,6.5,7.1,6.4,6.8],"script":[3.1,3.7,4,4.2,4,3.9,4.2,4.5,3.3,3.9,3.3,4.9,4.3,3.9,6.1,3.8,3.6,4.3,4,3.3,3.6,4.3,4.4,3.7,4.9],"paint":[2.6,1.3,2,1.9,1.9,1.8,1.8,1.6,2.2,2.3,1.3,2.1,2.4,1.1,2,2.2,1.8,1.8,1.7,1.6,1.5,2,1.6,2,1.4]}},{"b":4,"v":{"total":[25.5,8.5,9,8.8,24.9,8.9,8.8,10.4,26.5,8.4,24.4,9.8,26.7,8.8,8.9],"script":[0.2,0.8,0.4,0.9,0.3,1.3,0.9,0.1,1,0.7,0.2,0.9,1.7,0.6,0.1],"paint":[9.3,6.5,8.4,7.4,7.8,6.4,7.8,8.4,8.8,6.7,8.1,8.7,7.8,7.5,7.8]}},{"b":5,"v":{"total":[11.7,13.4,15.3,12.3,14.2,11.9,13.5,11.5,11.4,14.3,11.4,12.6,11,12.6,11.6],"script":[1.2,1.3,1.2,1,1.4,1,1.2,1.2,1.1,1.2,1.2,1.2,1.2,1.1,1.5],"paint":[10,9.9,9.5,9.6,10.1,10.2,9.4,10,10.1,10.2,10.1,10,9.5,10.1,9.9]}},{"b":6,"v":{"total":[342.5,335.3,335.2,332.5,335,335.8,336.8,338,338.2,337.4,333.8,337.3,339.6,336.2,335.4],"script":[80.6,83,85.4,81.5,83.5,82.8,82.9,81.6,83.4,83.7,82.4,82.1,83.6,83.4,84.2],"paint":[245.6,247.6,243.6,244.5,244.1,245,245.4,246.4,247.6,246.2,244.8,247.5,247.2,247.4,242.8]}},{"b":7,"v":{"total":[47.7,47.3,47.5,48.6,36.7,36.4,47.6,47.4,49.4,47.4,47.2,47.4,48.5,47.8,47.5],"script":[7.3,6.9,7.1,6.8,6.9,7.5,7.2,7.1,7.2,6.9,6.9,7,7,6.9,7],"paint":[27.7,27.7,27.7,27.4,29.1,28.3,27.8,27.5,28.2,27.9,27.7,27.6,27.3,28,27]}},{"b":8,"v":{"total":[27.8,28,11.4,27.8,11.9,27.2,12.5,27.5,11.5,27.6,27.5,10.3,29.6,27.9,27.8],"script":[10.1,10,8.9,10.6,8.7,9.6,9.5,10,9.7,10.2,10.1,9,10.8,10.4,10],"paint":[1.7,1.9,0.3,0.6,1.4,1.1,0.6,1.5,1,0.3,0.3,1.3,2,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[4.3]}},{"b":11,"v":{"DEFAULT":[4.5]}},{"b":12,"v":{"DEFAULT":[4.2]}},{"b":13,"v":{"DEFAULT":[34.4]}},{"b":14,"v":{"DEFAULT":[52.8]}},{"b":15,"v":{"DEFAULT":[14.8]}},{"b":16,"v":{"DEFAULT":[77]}}]},
-{"f":163,"b":[{"b":0,"v":{"total":[42.7,34.5,39.2,36.2,40.4,36.4,41.5,38.2,37.1,40.6,39.4,39.1,35.4,40.2,39.5],"script":[9.7,9.7,10.3,10.2,9.9,9.9,9.8,9.8,9.8,9.1,9.2,9.8,10.3,10.2,9.7],"paint":[22.1,23.4,22.6,23.1,23.2,23.4,22.7,23.6,24.6,22.9,22.8,23.3,23.5,23.5,23.2]}},{"b":1,"v":{"total":[19.4,18.8,20.6,18.8,17.4,18.2,17.8,17,18.4,20.3,17.8,19.3,19.5,22.7,19.6],"script":[5.5,5.6,5.9,5.7,5.8,5.7,5.8,5.9,5.7,5.7,6.3,5.9,5.7,5.7,6],"paint":[10.5,10.9,10.2,11,10.6,10.4,10.3,10.5,10.5,10.6,10.7,10.6,10.8,10.3,10.6]}},{"b":2,"v":{"total":[50,16.8,51,18.5,49.8,48.3,50,47.7,18.4,49.4,50.3,49.9,17,50.1,48.9],"script":[3.9,3.8,4.5,4.1,4.6,4.2,4.7,4.5,5.2,4.9,4.9,4.2,4.2,4.7,4.4],"paint":[10.7,11.3,13.1,13,10.1,11.3,12.4,11.4,11.5,12.6,13.3,12.8,12.5,13,12.2]}},{"b":3,"v":{"total":[11.9,15.2,10.2,14.9,10.3,6.2,8,14.7,15.5,7.8,14.8,8.1,7,10.6,7.9,14.9,8.7,8.4,15.8,8.1,8.3,8.2,13.4,10.9,14.4],"script":[2.8,2.1,2.2,3.2,2.5,3.1,3.4,3.1,2.8,3.1,2.8,2.7,2.6,3.6,3.5,3.3,2.9,3.2,2.6,3,2.2,2.2,2.3,2.5,2],"paint":[2.3,2.6,3.2,2.7,2.8,2.5,2.9,3.8,3.6,2.3,2.2,1.6,3,2.6,1.7,3.8,3,2.1,3,1.2,2.9,2.9,2.4,1.9,3.3]}},{"b":4,"v":{"total":[43.5,44.9,45.9,44.3,45.1,12.1,12.9,44.8,44.2,43.6,12.1,46.1,44.9,44.1,46.6],"script":[2.1,2.6,2.6,2.6,2.6,2.7,2.5,1.9,2.3,2.5,2.3,2.4,2.8,2.2,2.8],"paint":[7.7,9.7,9.5,8.4,9.3,7.7,8.5,9.4,7.1,8.2,8.7,10.9,7.9,8.5,8.1]}},{"b":5,"v":{"total":[37.8,32.7,35.2,33.5,32.5,33.1,36,32.4,33.7,35.9,32.8,34.7,32.7,35.1,34.8],"script":[26.2,26.5,26.8,27.2,26.3,26.9,26.7,26.5,26.6,27.3,26.7,26.6,26.3,25.8,26.3],"paint":[20.8,20.7,21.2,21.7,20.6,21.6,21.2,21.1,20.9,21.8,21.5,21.1,20.6,20.2,20.9]}},{"b":6,"v":{"total":[320.6,333.5,327,324.1,324.2,322.6,317.4,331.9,322,320.6,318.9,331.5,327.3,322.5,320.5],"script":[70.8,88.4,89.9,89.9,84.9,74.8,73,88.6,76.3,74.1,73.6,89.7,91.7,92.1,71.9],"paint":[229.9,221.9,222.5,221.1,221.2,232.2,230.8,223.3,233,232.6,232.2,221.8,219.6,220.5,233.2]}},{"b":7,"v":{"total":[46.8,46.9,39.8,47.9,46.7,46.9,47.3,47.2,47.1,47.6,39.2,47.9,46.7,46.4,47.5],"script":[10.5,10.5,10.4,10.2,10.5,10.9,10.9,10.4,10.4,10.5,10.5,10.8,10.1,10.1,10.8],"paint":[27,27,28.7,28.2,26.8,26.6,26.7,27.6,26.8,27.4,27.9,27.7,27.1,26.8,27.3]}},{"b":8,"v":{"total":[48.2,11.3,46.8,11.3,12.9,11,11.5,12.3,13.2,12.8,12,11.6,12.5,12.9,12.8],"script":[8.8,8.8,8.4,8.2,8.9,7.1,7.3,7.9,8.3,8.3,8,8,8.6,9.4,9.2],"paint":[3.9,2.1,3.8,1.7,2.6,2.4,3.2,4.1,2.6,3.1,3.2,1.3,1.8,2.5,2.4]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[5.7]}},{"b":11,"v":{"DEFAULT":[5.7]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[48.5]}},{"b":14,"v":{"DEFAULT":[16.8]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[49.3]}}]},
-{"f":164,"b":[{"b":0,"v":{"total":[35.9,35.5,36.1,36,35.1,35.9,35.3,34.8,35.7,36.4,35.4,34.6,35,35.5,35.6],"script":[10.4,9.8,10.1,10,9.8,9.7,10,9.7,9.9,10.2,9.9,9.6,9.8,10,10],"paint":[24.9,25.2,25.2,25.3,24.7,25.6,24.8,24.5,25.2,25.7,25,24.4,24.7,25,25.1]}},{"b":1,"v":{"total":[16.9,16.5,16.1,15.6,16.6,16.5,16.3,17.5,16.2,16.7,17.3,16.4,16.7,16.6,17.5],"script":[5.8,5.8,5.4,5.2,5.9,5.8,5.5,6.4,5.8,5.7,6.2,5.7,5.7,5.9,6.3],"paint":[10.5,10.2,10.1,9.9,10.2,10.2,10.3,10.6,9.9,10.4,10.5,10.2,10.4,10.2,10.7]}},{"b":2,"v":{"total":[19.1,19,19.4,18.6,19.7,18.6,18.8,19.1,21.9,19.3,19.4,20.7,19.7,22.1,20.7],"script":[6.2,6.2,6.9,6.4,6.5,6.7,6.2,7,7.9,6.2,6.6,7.5,6.8,8,7.6],"paint":[10.9,10.5,10.9,10.5,11.1,9.3,10.3,10.7,11.6,11.6,10.7,12,11.6,12.1,11.4]}},{"b":3,"v":{"total":[6.5,6.5,6.6,8,5.3,5.6,5.7,6.3,6.2,5.4,6,5.9,5.3,6.4,5.8,6,7.4,5.8,6,6,6.8,5.9,6.2,6.6,6.4],"script":[3.6,3.7,4,3.7,2.9,3.8,3.6,3.9,3.8,3.5,3.1,3.5,3.6,3.4,3.2,3.7,5,3.7,4.1,3.8,3.3,3.9,3.7,4,3.8],"paint":[1.8,1.3,1.7,1.4,1.7,1.7,1.5,2.3,1.5,1.1,1.2,2.2,1.5,2.4,1.9,1.4,1.8,1.1,1.2,1.1,0.4,1.6,1,2.5,1.1]}},{"b":4,"v":{"total":[12.4,11.9,12.4,12.8,12.6,13.1,12.6,12.2,13,11.7,11.7,11.2,13.2,12.2,12.2],"script":[3.9,3.6,4.1,4.4,3.7,3.9,3.8,3.7,3.6,3.7,3.7,3,4.8,3.6,3.2],"paint":[7,6.9,7.3,6.7,7.7,8.1,7.3,7.6,8.1,6.7,6.8,7.2,7.3,7.6,7.4]}},{"b":5,"v":{"total":[33.9,33.4,32.4,32.4,33.3,34.8,33,34,33.3,34,32.1,33.4,33.3,33.7,32.4],"script":[11.7,11.5,11.2,11.1,11.5,12.4,11,11.5,12,12.2,10.8,11.6,11.6,11.8,10.8],"paint":[21,21.1,19.8,20.1,20.7,21.5,21,21.6,20.3,20.6,20.5,20.6,20.6,21.1,20.5]}},{"b":6,"v":{"total":[356.4,356.4,355.4,355.3,354.3,357.3,358.4,359.5,354.9,357.1,359.1,354.6,355.6,355.8,356.5],"script":[106.1,106.1,104.4,105.5,104.5,104.3,105.1,104.5,105,105,105.4,104.1,105.8,104.4,105],"paint":[244.1,243.5,244.1,243.2,243.1,245.9,246.5,247.6,243.7,245.7,246.6,244,243.7,245.2,244.9]}},{"b":7,"v":{"total":[39.8,41.3,40.7,41.3,40.6,41.6,41.6,41.4,41.6,41.7,40.4,40.2,41.1,40.2,40.8],"script":[12,12.6,12.5,12.7,12.3,12.8,12.5,12.7,12.6,12.8,12.2,11.8,12.8,11.9,12.6],"paint":[26.9,27.8,27.3,27.7,27.4,27.8,28.2,27.8,28.1,28,27.3,27.5,27.3,27.3,27.3]}},{"b":8,"v":{"total":[15.6,14.5,14.4,14.5,14.4,15.2,14.3,14.4,15,13.7,14.2,14.2,14.6,15.1,15.7],"script":[13.2,13,12.5,12.4,12.3,12.8,12.5,12.1,13,12.3,12.2,12.4,12.9,13,13.4],"paint":[2.1,0.6,1.6,1.9,0.9,1.7,1.7,1.2,1,0.2,0.3,0.6,0.2,0.4,1.3]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[4]}},{"b":11,"v":{"DEFAULT":[4.3]}},{"b":12,"v":{"DEFAULT":[2.3]}},{"b":13,"v":{"DEFAULT":[30.9]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[82.9]}}]},
-{"f":165,"b":[{"b":0,"v":{"total":[33.2,32.6,32.9,32.2,32.5,32.7,32.6,32.9,32.8,32.6,32.4,32.8,32.3,32.8,32.3],"script":[8,7.6,7.4,7.2,7.2,7.6,7.1,7.7,7.6,7.5,7.1,7.5,7.1,7.7,7.4],"paint":[24.6,24.5,24.9,24.4,24.7,24.6,24.9,24.6,24.7,24.6,24.8,24.6,24.6,24.5,24.3]}},{"b":1,"v":{"total":[15.7,14.7,15.5,16.7,15.6,14.4,14.8,14.9,14.6,14.9,14.6,15.1,14.9,14.4,15.8],"script":[4.8,4.5,5.2,5.3,5.3,4.2,4.6,4.7,4.4,4.6,4.4,4.6,4.6,4.4,4.8],"paint":[10.4,9.8,9.7,10.7,9.7,9.7,9.8,9.7,9.7,9.8,9.8,10.1,9.8,9.6,10.5]}},{"b":2,"v":{"total":[32.4,32,34.1,32.1,31.4,31.8,32.8,34.2,32.5,34.5,31,33.1,30.9,30.7,34.3],"script":[17.9,16.5,19.5,17.2,17.7,17.9,17.8,19,18.8,19.4,17.4,19,16.6,16.2,19.2],"paint":[12.9,12,11.9,12.5,12.1,12,12,12.4,11.2,11.6,11.5,11.8,11.5,11.6,13.3]}},{"b":3,"v":{"total":[17.8,19.6,19,21.4,19.7,19.4,19.8,21.1,18.6,18.6,20,19.1,19,20.4,19.2,20.2,18,18,18.5,18.3,19.2,18.1,20.1,18,19],"script":[14.2,15.9,15.3,16.9,15.6,16.3,15.3,16.9,15.3,15,15.8,15.1,15.3,16.9,15.6,16.4,14,14.1,15.2,15.1,15.6,14.5,16.1,15.4,15.1],"paint":[2.4,2.3,1.2,2.3,3,1.9,2.3,2.9,1.5,1.9,3.3,2.5,1.3,2.4,2.2,2,2.1,2.5,1.1,1.3,0.8,2.5,2.7,1.3,0.8]}},{"b":4,"v":{"total":[25,26.3,26.2,25.6,25.7,26.2,27.3,24.6,24.5,25.7,25.3,27.8,26.2,25,24],"script":[14.6,14.6,14.9,14.3,13.6,15.4,16.3,13.5,13.4,14.9,14.6,16.2,14.6,14.5,13.3],"paint":[8.4,9,9.3,9.7,8.6,9.6,8.6,8.5,9.3,8.8,8.6,8.4,9.3,7.5,7.2]}},{"b":5,"v":{"total":[33.1,32.5,31.2,35,31.4,30.4,30.9,32.1,30.7,31.5,31.9,30.1,31.6,31,31.1],"script":[10,10,8.8,10.2,8.6,8.6,8.5,8.7,8.4,9,9.6,8,8.7,8.5,8.6],"paint":[21.4,21.6,21.1,23.2,21.5,20,21.1,21.9,20.7,21.1,21,20.9,21.5,21.2,20.8]}},{"b":6,"v":{"total":[337.7,339.9,337.4,337.9,339.9,333.4,333.8,337.1,339.3,339.9,339.9,338.1,338.2,340.8,338.5],"script":[86.8,87.3,84.8,86.1,87.6,83.9,84.2,86.8,86.3,89,87.4,87.4,89.1,87.8,85.8],"paint":[244,245.5,245.2,245,245.2,243,242.9,243.2,245.4,243.9,245.4,243.9,242.3,246.1,245.5]}},{"b":7,"v":{"total":[42.6,41.9,42.2,43,42.3,42.3,42.2,42.1,41.5,41.8,42.2,42,42.1,41.9,42.9],"script":[13,12.2,12.3,13,12.5,12.5,12.4,12.5,12.1,12.1,12.9,12.1,12.3,12.4,13.8],"paint":[28.6,28.7,28.9,29,28.8,28.8,28.8,28.6,28.5,28.7,28.3,28.9,28.9,28.6,28.1]}},{"b":8,"v":{"total":[18.5,19.7,20.8,17.7,19.7,19.9,20,19.6,18.5,18.5,19.5,20.2,16.7,19.7,18],"script":[15.6,17.3,18.5,15.3,17.3,17.7,16.9,17.4,16.8,16.2,17.1,18,15,17.5,15.8],"paint":[1.1,1.5,1.4,1.4,2.1,0.3,0.4,2,0.6,1.7,0.8,1.9,0.6,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[5.9]}},{"b":11,"v":{"DEFAULT":[8.3]}},{"b":12,"v":{"DEFAULT":[6]}},{"b":13,"v":{"DEFAULT":[48.7]}},{"b":14,"v":{"DEFAULT":[152.4]}},{"b":15,"v":{"DEFAULT":[21.9]}},{"b":16,"v":{"DEFAULT":[163.5]}}]},
-{"f":166,"b":[{"b":0,"v":{"total":[39.4,38.7,38.8,38.7,39.6,39.8,39.5,39.3,39.2,39.1,38.7,39.5,39.8,39,39.5],"script":[15.2,15,15.1,15.1,15.6,15.6,15.3,15.2,14.7,15.3,14.6,15.3,15.5,15.1,15.9],"paint":[23.7,23.3,23.2,23.2,23.6,23.8,23.8,23.8,24,23.4,23.6,23.7,23.8,23.5,23.3]}},{"b":1,"v":{"total":[18.7,18.6,18.6,19.3,18.9,18.8,18.9,18.5,20.1,18.4,18.6,18.8,19.6,19.6,19.2],"script":[8.2,8.4,8.4,8.8,8.4,8.3,8.4,8.2,9,8.2,8.4,8.4,8.7,8.8,8.7],"paint":[10.1,9.8,9.8,10.1,10,10,10.1,9.8,10.6,9.8,9.8,10,10.4,10.4,10.1]}},{"b":2,"v":{"total":[14.5,12.2,12,12.9,12.4,13.3,12.7,13.2,12.6,13.8,14,12.8,12.6,12.7,13.4],"script":[1.5,1.5,1.3,1.9,1.4,1.8,2,2,1.1,1.7,1.6,2,1.4,1.5,1.7],"paint":[12.2,9.7,9.7,9.6,10,10.5,9.8,10.4,10.1,10.8,11.3,9.7,9.7,9.9,10.7]}},{"b":3,"v":{"total":[5.8,5.3,5.3,5.6,5.3,5.2,4.9,5.2,5.2,5.3,5.2,5.2,4.7,6.2,5.4,5.4,4.7,5,5,5.2,5.1,5.6,5.1,5.3,5.7],"script":[3.2,2.8,2.8,3.5,3,3.4,2.7,3.3,3.3,3.1,2.8,3.2,2.8,4,3.2,3.6,3.3,2.7,2.7,3,3.3,3.2,2.8,2.9,3.6],"paint":[1.4,1.3,1.3,1.3,1.5,1.6,1,1.2,1.3,2.1,2,1.9,1.7,0.5,1.2,1.3,1.3,1.5,1.1,1,1.7,2.3,1.2,2.2,1.6]}},{"b":4,"v":{"total":[9.6,8.6,8.9,8.7,8.6,8.6,8,8.1,8.8,7.5,8.1,8.1,9.1,8.9,8.7],"script":[0.3,0.5,0.1,0.4,0.1,0.1,0.1,0.5,0.6,0.2,0.2,0.1,0.9,0.8,0.1],"paint":[7.7,7.8,7.8,7.4,7.5,7.3,7.6,6.7,7.6,6.2,6.5,7.4,7,6.7,7.8]}},{"b":5,"v":{"total":[10.9,10.4,10.5,10.8,10.8,10.7,11.8,10.9,10.2,10.6,10.3,10.8,10.6,10.7,10.8],"script":[0.2,0.1,0.1,0.4,0.3,0.1,0.2,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.3],"paint":[10,9.4,9.4,9.6,9.8,10.2,11,10.3,9.5,9.9,9.4,10.1,9.9,9.9,9.7]}},{"b":6,"v":{"total":[408.7,408.2,405.2,404.4,410.8,409,408.9,406.2,407.8,406.1,409.4,408,407,406.7,408],"script":[153,154.5,152.3,153.5,154.5,156.2,155.3,153.8,153.9,154.6,154.9,154.6,153,152.7,154.4],"paint":[250.3,247.8,247,245.5,249.7,247.4,247.9,247,248.4,246,248.8,247.5,248.6,248.2,247.8]}},{"b":7,"v":{"total":[49.9,48.4,48.5,48.5,47.8,49,48.1,49.1,48,48.1,48.8,49.7,48.8,48.6,48.1],"script":[20.8,20.7,20.9,20.9,20.4,21,21,20.9,20.7,20.7,20.7,21.2,20.9,20.8,20.8],"paint":[28.2,26.9,26.8,26.6,26.6,27.3,26.4,27.5,26.5,26.6,27.4,27.7,27.1,27,26.6]}},{"b":8,"v":{"total":[9.9,9.5,9.7,8.9,10.8,10.3,9.7,9.5,9.5,10.3,10.1,10.7,9.8,10,9.8],"script":[8,8.5,7.8,7.6,8.6,8.5,8.2,8.5,8.1,8.4,9.1,9.7,8.6,8.8,8.1],"paint":[1.9,0.2,1.8,1.2,2.1,1.1,0.7,0.9,1.3,1.8,0.9,0.9,1.2,1.1,1.6]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.1]}},{"b":11,"v":{"DEFAULT":[4.2]}},{"b":12,"v":{"DEFAULT":[1.3]}},{"b":13,"v":{"DEFAULT":[31.9]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[49.1]}}]},
-{"f":167,"b":[{"b":0,"v":{"total":[36,30,29.4,30.8,29.4,31,30.3,29.1,28.9,29.8,30.4,30.1,31.8,32,30.4],"script":[1,1,1,1,1,1,1,1,1.1,1.3,1,1,1,1,1],"paint":[22.5,23.9,23.4,23.5,23.8,23.7,23.7,24,24.1,23.8,23.5,23.6,23.6,23.1,23.6]}},{"b":1,"v":{"total":[13.5,18.1,18.5,18,17.5,16.9,14.8,17.3,16.9,12.5,11.9,11.2,13.3,17.6,17.7],"script":[1.2,1,0.9,0.9,1.1,0.9,1,1.1,1.2,0.9,1.1,0.9,1,1.1,1.2],"paint":[9.9,10.1,9.8,9.8,10,10,9.9,10.4,10.5,10.3,10.4,10.1,10,10.2,10.1]}},{"b":2,"v":{"total":[28.8,27,12.5,12.3,27.4,11.6,13.2,12.6,12.5,13,29.9,28.9,28.7,27.2,28.3],"script":[2.2,0.9,0.6,1.3,0.3,0.9,1.6,1.2,0.8,1,1.4,1,1.2,0.6,1.3],"paint":[10.3,10.2,10.4,10.8,11,10.2,11.5,11.3,10.4,11,12.4,11,10.2,10.5,10.4]}},{"b":3,"v":{"total":[6.8,3.1,3.9,2.6,3.7,3.4,2.7,4.9,7,3.5,4.4,9.2,4.3,3.7,6.7,5.8,5.5,3.1,3.8,4.4,7.2,3.6,6.7,2.7,3.6],"script":[0.7,0.2,1,0.2,0.2,1.4,0.6,0.9,0.2,1.1,0.8,0.2,0.9,1.4,1.3,0.6,0.8,0.7,0.2,1.2,0.3,0.2,0.4,1.1,0.3],"paint":[1.6,1.4,1.6,1.4,0.5,1,1.5,1.7,2.5,0.8,1.8,1.8,1.2,1.4,1.1,1.1,1.6,1.5,2.3,2,1.7,1.8,2.1,1,1.8]}},{"b":4,"v":{"total":[25.5,26.4,9.1,9.7,24.7,26.3,25.9,9.8,9.5,9.3,26.5,25.5,9.3,26.3,24.4],"script":[0.7,0.6,0.6,1,0.5,1.8,1.8,0.6,0.9,1.1,1.1,0.7,1.2,1.8,0.9],"paint":[8.2,9.7,7.7,8.6,8.6,8.2,7.3,9,8.2,7.2,8.8,8.4,7.4,7.8,7.6]}},{"b":5,"v":{"total":[25.4,21.4,21.3,21.6,22.4,21.2,20.2,22,20.6,21.3,20.8,24.8,21.9,21.7,21.4],"script":[1.6,1.4,1.7,1.7,1.6,1.6,1.3,2,1.7,1.6,1.4,1.5,2,1.9,1.4],"paint":[19.1,19.8,18.8,19.4,20.4,19.3,18.8,19.6,18.8,19.5,19.3,21.5,19.4,19.4,19.4]}},{"b":6,"v":{"total":[321.1,321.3,319.2,316.7,316.5,326.9,319.2,324.2,321.2,317.7,321.5,323.4,323.2,319.9,317.4],"script":[70.7,74.8,71.1,71.1,69.8,76.1,70.5,76,71.3,70.7,74.2,74.9,77.3,72,70.6],"paint":[241.3,239.5,240.5,239.3,238.9,243.2,238.9,241.2,241,239.3,238.9,242.5,238.8,240.8,240.2]}},{"b":7,"v":{"total":[38.7,39.6,38.2,39.1,39.1,38.8,37.6,38.5,39.5,39.3,37.9,38.7,38.9,39.4,37.3],"script":[6.8,6.9,6.5,6.8,6.5,6.6,6.3,6.6,7.1,6.6,6.5,6.5,6.6,6.5,6.3],"paint":[26.8,27.3,26.7,27.3,27.8,26.8,26.4,27.1,26.2,27.5,26.4,27.3,26.6,26.7,26.3]}},{"b":8,"v":{"total":[26.7,10.9,10,9.4,26.7,28.1,25.2,26.9,26.4,9.4,11.4,25.5,26.9,25.7,26.1],"script":[9.1,7.3,8.1,7.8,9.1,9.7,7.5,9,8.4,7.9,8.5,7.7,9.2,8.4,8.4],"paint":[0.7,1.4,0.3,0.3,1.8,2.3,2.2,1.9,1.1,1,0.3,1.4,0.7,0.9,0.9]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[3.5]}},{"b":13,"v":{"DEFAULT":[26.8]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15]}},{"b":16,"v":{"DEFAULT":[88.2]}}]},
-{"f":168,"b":[{"b":0,"v":{"total":[148.3,150.3,150.1,149.1,147.6,147.4,146.2,149.9,148.8,149.5,148.6,148.8,149,149.1,150.7],"script":[14.1,14.1,13.8,13.7,13.6,14.1,13.7,13.8,13.9,13.7,14.1,14.3,14.1,14,14.5],"paint":[23.3,23,22.8,22.8,23.4,23,22.9,22.9,22.6,23.1,23.1,23.3,22.8,22.6,23]}},{"b":1,"v":{"total":[131.1,129.8,132.3,131.9,131.6,130.8,131.4,132.5,132.8,130.8,131.1,132.7,132.1,133.7,130.6],"script":[13.8,14.1,14.3,14.3,14.1,14.3,13.7,13.6,13.9,14.1,14.3,14.4,14.3,14.1,14.1],"paint":[9.3,9.7,9.6,9.9,9.7,9.9,9.5,9.4,9.3,9.6,10.1,9.4,9.9,9.8,9.7]}},{"b":2,"v":{"total":[178,177.9,185.2,177.5,177,184.7,179.1,185.1,183.5,176.5,177.5,178.6,178.4,179.1,179],"script":[49,49.8,50,50.7,48.6,50.4,49.2,51.9,49.9,48.6,50.4,50.2,50,49.5,51.2],"paint":[13.5,12.5,13.8,13.4,11.4,14.5,13.7,13.6,14.6,14.4,13,13.9,14.8,12.2,15]}},{"b":3,"v":{"total":[159.5,159.4,153.2,158.6,160.2,157.2,156.3,159.4,159.3,158.1,158.1,152,149.8,148.4,159,157.6,157.6,156.8,158.9,159.2,157.1,158.5,151.2,156.5,158.9],"script":[49.5,53.7,50.2,52.6,50.5,51.5,51.1,51.9,50.5,51.3,51,49.8,50.2,50.9,51.6,49.5,49.8,51.9,50.4,52.1,50.1,52.8,50.6,50.3,49.5],"paint":[2.6,2,2.6,1.8,2.6,2.2,2.3,2.8,3.2,2.5,2.5,0.8,2.1,2.2,1.9,2.3,1.4,2.2,2.6,2,2.5,2.6,1.4,2.6,3.1]}},{"b":4,"v":{"total":[184.1,189.2,186.5,177.8,183,178,177,176.5,179.3,179.5,184.7,186.5,177.2,178.4,176.4],"script":[49.1,52.8,51.6,48.8,48.6,47.4,48.2,50.6,49.7,48.7,50.1,58.2,49.1,48.5,48.4],"paint":[8.2,9.9,10.7,9.4,8.4,9.7,9.7,10.1,10.2,11.2,9.3,10.1,9.6,10.2,9.3]}},{"b":5,"v":{"total":[153,162,152.2,161.3,153.9,159.7,161.8,152.7,152.1,152.1,151.1,152.9,161.7,152.5,153.4],"script":[27.4,28.4,28.2,28,28.1,28.4,28,29,28.2,27.4,27.5,27.3,29.3,27.7,28.3],"paint":[21.1,22,21.7,22.4,21.8,21,22.4,21.4,21.9,20.8,21.9,21.5,21.3,21.9,21.7]}},{"b":6,"v":{"total":[907.2,923.6,914.6,913.2,915.2,906.2,916.1,916.1,908.8,916.1,923.7,916.4,916.4,914.6,932],"script":[126.2,132.2,130.9,129.1,130.4,129.6,128.3,130.2,130.9,128.7,128.5,132.2,126.4,129.3,129.4],"paint":[239.5,239.2,237.4,247.1,239.4,239.9,239,237.7,240.3,245,238.8,246.2,240.2,239.3,248.2]}},{"b":7,"v":{"total":[183.1,180.9,181.6,178.7,180.6,180.3,181.8,172.1,180.5,180.9,181.3,172,174,173.3,173.1],"script":[25.3,26.8,25,24.9,25.6,26.4,25.5,24.8,25.8,25.5,25.4,25.4,25,25,25.2],"paint":[27.7,27.9,28.4,27.5,27.7,27.9,27.9,27.6,28.1,27.8,27.8,27.7,27.8,28,27.5]}},{"b":8,"v":{"total":[111.5,152.6,110.3,109.1,111.5,143.7,108.9,112,151.9,107.3,110.8,143.7,108,108.6,143.7],"script":[11.8,14.9,11.8,13.2,12.2,13.3,11.7,11.8,12.2,12.8,12.2,11.4,10.8,12.2,13.1],"paint":[2.3,2,1,1,1.6,0.4,1.5,1.4,0.7,1.2,1.4,1.3,1.6,1.7,1.6]}},{"b":9,"v":{"DEFAULT":[4.4]}},{"b":10,"v":{"DEFAULT":[8]}},{"b":11,"v":{"DEFAULT":[8.1]}},{"b":12,"v":{"DEFAULT":[4.7]}},{"b":13,"v":{"DEFAULT":[37]}},{"b":14,"v":{"DEFAULT":[946.8]}},{"b":15,"v":{"DEFAULT":[243.2]}},{"b":16,"v":{"DEFAULT":[1087]}}]},
-{"f":169,"b":[{"b":0,"v":{"total":[27.4,27.6,26.8,27.9,27.3,27.2,26.9,27.2,27.3,26.9,27.4,27.1,26.8,27,27.2],"script":[3.9,3.6,3.2,3.3,3.3,3.4,3.2,3.2,3.2,3.3,3.3,3.3,3.2,3.1,3.3],"paint":[23.1,23.6,23.3,24.1,23.6,23.4,23.3,23.5,23.6,23.3,23.7,23.4,23.3,23.5,23.5]}},{"b":1,"v":{"total":[11.4,11.4,11.5,11.7,11.3,11.5,11.3,11.7,11.3,11.4,11.6,11.6,11.5,11.8,11.8],"script":[1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.4,1.2,1.2,1.2,1.2,1.2,1.3,1.2],"paint":[9.8,9.8,10,10,9.7,10,9.8,10,9.8,9.9,10,10.1,10,10.2,10.2]}},{"b":2,"v":{"total":[12.6,12.4,11.7,11.9,13.9,11.9,11.8,13.1,13.1,12.4,13,13,13.6,12.4,12.7],"script":[1,1,1.4,0.9,2.6,1,0.7,0.7,0.7,1.2,1.6,1.7,2.1,1.4,1.7],"paint":[9.9,10.2,9,9.8,10.2,9.9,9.5,10.1,10,10.5,10.3,10.3,9.9,10,9.8]}},{"b":3,"v":{"total":[3.4,2.6,2.5,3,3.1,3.6,3.7,3.2,2.7,4,4.2,2.5,2.8,2.7,2.8,2.5,2.9,2.6,2.1,2.3,3.8,3.9,3.3,4.6,3.4],"script":[0.9,0.2,0.7,0.9,0.7,0.9,0.6,0.2,0.9,0.9,1.1,0.2,0.8,0.8,0.2,0.1,0.9,0.6,0.5,0.1,0.8,1,0.8,0.8,1.6],"paint":[0.4,1.1,0.5,1.3,1.5,1.1,0.9,2.6,1,1.4,1.3,1.4,1.3,1.4,2.1,1.2,1.4,1.3,0.7,2,2.6,1.6,0.7,0.4,1.4]}},{"b":4,"v":{"total":[8.9,9.2,8.5,9.2,9.5,9.3,8.6,8.8,9.6,9.7,9.5,9.1,9.5,9,9.2],"script":[0.8,1,0.1,0.1,0.5,1.2,0.1,0.5,0.9,0.5,0.2,0.1,0.5,0.5,0.1],"paint":[7,7.4,7.5,7.9,8.1,7.2,7.2,7.7,6.4,8.2,8.5,7.9,7.8,7.4,7.1]}},{"b":5,"v":{"total":[22.3,22.9,23.3,22.1,22.4,21.7,22.2,21.9,22.9,22,22.1,21.6,21.9,22.4,22.3],"script":[1.9,2.2,2.4,2,1.9,1.9,1.9,2.2,2.2,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[19.3,19.8,20.3,19.3,19.8,19.1,19.7,19,20,19.5,19.2,19,19.4,19.9,19.8]}},{"b":6,"v":{"total":[289.3,284.8,288.4,286.9,288.4,285.7,288.9,286.7,289.4,290,287.4,288.8,285.8,288.8,286.3],"script":[37.7,37.2,38.9,38.1,38.5,37.9,38.3,36.1,37.8,38.7,37.3,38.4,37.4,37.9,38.5],"paint":[245.8,241.5,243.5,242.8,243.8,241.9,244.7,244.8,245.3,244.9,244,244.6,242.1,244.3,241.7]}},{"b":7,"v":{"total":[30.9,31.5,30.5,31.5,31.7,32.3,31.6,30.9,31.3,31.1,30.9,31,31.4,31.7,31],"script":[3.9,4.2,3.9,4.4,4.2,4.6,4.5,4.3,4.2,3.9,4,3.6,3.5,4.5,3.7],"paint":[26.2,26.6,25.9,26.4,26.8,27,26.5,25.9,26.4,26.4,26.2,26.6,27.1,26.5,26.6]}},{"b":8,"v":{"total":[9.4,9.6,10.1,9.7,9.8,10,9.3,9.7,10.5,9.2,9.1,9.9,9.6,10.3,9.6],"script":[7.7,7.6,8.3,7.5,7.3,8.3,7.7,7.7,8.2,7.6,7.8,8.1,8,8,7.5],"paint":[0.7,1.1,0.6,1.6,1.2,0.3,0.2,0.9,0.9,0.2,1.1,1.2,0.6,1.3,0.7]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.9]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.1]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[69.5]}}]},
-{"f":170,"b":[{"b":0,"v":{"total":[28.6,28.6,28.5,28.4,28.5,28.3,28.4,28.8,28.5,28.4,28.2,28.1,28.1,28.5,28.3],"script":[3.7,3.3,3.7,3.7,3.6,3.3,3.5,3.7,3.3,3.4,3.6,3.3,3.6,3.4,3.3],"paint":[24.5,24.9,24.4,24.3,24.5,24.6,24.6,24.7,24.8,24.6,24.3,24.5,24.2,24.7,24.6]}},{"b":1,"v":{"total":[10.6,11.2,11.4,11,11.2,11,11.7,10.6,11.4,11.4,11.1,11.1,10.8,11.8,11.2],"script":[0.9,1.1,0.9,1,1,0.9,1.1,0.9,1.2,1.2,1,1,0.9,1.2,1],"paint":[9.4,9.8,10.1,9.6,9.9,9.7,10.3,9.3,9.8,9.9,9.7,9.7,9.5,10.2,9.9]}},{"b":2,"v":{"total":[12.2,13,12.5,12.9,12.4,12.8,12.2,13,13.5,12.6,12.5,12.7,11.8,12.1,12.6],"script":[1.5,1.8,1.3,1.5,1.8,1.6,1.5,2.1,1.5,1.4,1.8,1.5,1.1,1.7,1.6],"paint":[9.3,9.6,10.5,9.8,9.7,9.9,9.8,9.4,10.6,10.2,9.8,9.3,8.2,9.4,10.2]}},{"b":3,"v":{"total":[5.1,2.7,2.9,2.7,2.7,2.1,2.1,2.6,2.6,2.8,4.4,2.4,2.5,2.3,3.1,2.5,2.5,2.9,2.6,3.5,2.8,3,4.2,2.7,2.9],"script":[0.7,0.6,0.6,0.6,1.2,0.8,0.3,0.2,0.1,0.9,0.6,0.5,0.1,0.2,0.9,0.5,0.8,0.8,0.8,0.5,0.9,1.2,0.6,0.8,1],"paint":[1.3,1.4,1.5,1.5,1.4,1.2,1.7,2.1,2.3,1.8,1.4,0.3,1.5,1,1.4,1.4,0.8,1.9,1.1,1.5,1.2,1.3,0.9,0.3,1.7]}},{"b":4,"v":{"total":[8.7,8.8,8.9,9,8.6,9.5,9.6,9.7,10.3,9.3,9.6,9.1,8.8,9.4,9],"script":[0.1,0.5,0.1,0.6,0.5,0.2,0.8,0.6,1.2,0.9,0.9,0.2,0.7,0.5,0.9],"paint":[8.3,7.3,7,6.3,7.2,8.3,7.6,8.2,8.1,7.4,7.2,7.1,7,7.9,6.8]}},{"b":5,"v":{"total":[23.3,21.7,21.9,21.7,22.1,21,21.4,21.2,21.7,21.6,22.4,22,21.1,21.2,21.6],"script":[1.8,1.6,1.8,1.4,1.5,1.6,1.4,1.7,1.7,1.5,1.5,1.4,1.6,1.5,1.7],"paint":[20.8,19.5,19.4,19.3,19.9,18.7,19.3,18.5,19.4,19.4,19.6,19.8,18.9,19,18.8]}},{"b":6,"v":{"total":[294.7,294.1,293.5,293.5,296.4,297.5,292.1,294.8,297,295.9,294.6,293.3,295.2,296,294.7],"script":[42.1,42.1,41.8,41.9,42,42.5,41.6,42.4,43.3,43.2,42.9,42.2,41.8,42.2,41.6],"paint":[246.8,245.8,245.5,245.3,247.4,248.6,244.6,246.2,247.4,246.6,245.8,245.1,246.9,247.5,247]}},{"b":7,"v":{"total":[31.5,32.5,31.7,31.3,32.4,31.8,32,31.9,31.8,32.9,31.5,32.5,31.6,31.7,31.7],"script":[3.4,3.6,3.5,3.5,3.5,3.5,3.7,3.5,3.5,3.6,3.4,3.7,3.7,3.5,3.4],"paint":[27.4,28.1,27.5,27.1,28.1,27.5,27.6,27.7,27.6,28.6,27.4,28.1,27.2,27.5,27.5]}},{"b":8,"v":{"total":[10.9,10.5,11.2,10.8,11.1,9.8,10.4,10.3,10.9,10.1,11.6,10.3,9.8,11,10.7],"script":[9,8.8,8.7,8.4,9.3,8.3,8.5,8.5,9.4,8.3,9.8,8.4,7.7,9,8],"paint":[0.9,0.7,2.2,0.9,0.7,0.9,1.1,1,0.6,0.7,1.2,1.4,1,0.3,1.7]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.2]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[15.8]}},{"b":14,"v":{"DEFAULT":[26.1]}},{"b":15,"v":{"DEFAULT":[9.7]}},{"b":16,"v":{"DEFAULT":[71.6]}}]},
-{"f":171,"b":[{"b":0,"v":{"total":[40.2,39.7,41.5,39.5,40.2,40.2,38.9,39.6,39.5,39.1,39.5,39.4,39.6,39.8,39.9],"script":[15.5,15.3,16.8,15.4,15.5,15.1,14.7,15.2,15.2,15.3,15.3,15,15.5,15.2,15.4],"paint":[24.3,24,24.3,23.7,24.3,24.7,23.9,24,23.9,23.4,23.9,24,23.7,24.2,24]}},{"b":1,"v":{"total":[25.7,26.6,25.9,26.2,25.8,26,25.9,26,25.9,25.7,26.1,26.4,25.8,26,26.1],"script":[15,15.6,15,15.3,15,15.2,15.1,15.1,15,14.9,15.2,15.4,15.1,15.1,15.1],"paint":[10.3,10.6,10.4,10.5,10.4,10.4,10.5,10.5,10.4,10.4,10.5,10.5,10.3,10.5,10.6]}},{"b":2,"v":{"total":[53.8,51.9,53.3,53.1,52.4,52.2,51.6,51.8,52.7,53.3,52.5,52,51.9,51.9,52.6],"script":[39.8,39.3,39.8,40.1,39.3,39.4,39.4,39,39.8,39.6,39.8,39.2,38.8,39.8,39.8],"paint":[12.9,10.6,11.1,11.4,12,11.8,11,10.3,12.1,12.6,11.1,11.3,11.9,10.6,11.8]}},{"b":3,"v":{"total":[38.9,39.8,40,39.3,39,38.7,39.2,39,38.3,38.7,39.8,39.4,39.3,38.8,39.7,39.7,39,38.1,40,38.4,40.5,40.6,39.2,39.1,38.8],"script":[36.4,37.1,36.3,36.9,36.8,36.8,36.8,35.9,35.4,35.8,36.7,36.7,36.9,36.3,37,37.3,36.3,35.2,37.5,36.3,37.9,37.5,36.6,36.8,36.8],"paint":[2.3,1.8,2.4,1.5,1.3,1,0.9,2.2,2,2.2,2.8,2,1.8,1.7,2.5,2.2,2.2,1.9,1.9,1.9,1.6,1.8,1.5,0.9,1.1]}},{"b":4,"v":{"total":[47.4,46.2,46.7,47.9,47.4,47,47,50.8,47.5,50,49.2,47.3,47.4,47.6,48.1],"script":[37.7,36.9,37.3,38.2,37.7,37.9,37.3,40.5,37.8,39.6,38.1,38.3,36.8,37.2,37.6],"paint":[7.9,7.3,7.4,8.4,8.5,7.8,8.8,9.2,8.7,8.8,8.3,8,9.4,9.2,9.4]}},{"b":5,"v":{"total":[50.9,50.5,48.8,49,49.7,49.4,49.2,49.6,49.5,48.6,50.4,50,48.1,50.7,48.4],"script":[28.3,27.6,27,27.1,27.3,27.3,27.5,27.4,27.5,26.9,28.1,27.4,26.8,27.3,26.8],"paint":[21.7,22.1,21.1,21.2,21.3,21.3,20.8,21.6,21.2,21,21.6,21.5,20.6,22.7,20.7]}},{"b":6,"v":{"total":[452.5,454.4,423,462.4,441.9,440.1,443.9,446.6,431.5,442.8,469,459.2,447,470,437.8],"script":[191.2,190.6,163.2,198,178.2,177.4,181.6,182,162.7,180.8,204.4,196.6,185,207.3,175.4],"paint":[255.2,257.5,254.2,258.6,257.8,256.1,256.4,258.7,260.4,256.5,258.3,256.3,256.3,257.2,256.5]}},{"b":7,"v":{"total":[53.9,55.1,55.1,56.1,55.7,55.8,54.7,54.7,54.6,54.3,54.8,54.6,54.1,54.4,54.2],"script":[25.9,26.5,26.5,26.2,27.2,27,26.4,26.3,26.3,26.1,26.3,26.2,26,26.3,26],"paint":[27.2,27.8,27.8,29.1,27.7,28,27.5,27.6,27.6,27.4,27.7,27.6,27.3,27.3,27.5]}},{"b":8,"v":{"total":[23.4,23,20.3,20.1,20.9,22.1,22.5,23.5,19.1,22.2,21.4,19,23,20.4,23.3],"script":[21.5,21.2,18.9,19,19.4,20.6,21.1,21.6,18.1,20.6,20.1,18,21.8,19.2,21],"paint":[1.4,1.6,1.3,1,1.4,0.8,0.3,1.8,0.9,1.5,0.8,0.9,0.9,1.1,1.8]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[7.4]}},{"b":11,"v":{"DEFAULT":[9.5]}},{"b":12,"v":{"DEFAULT":[5.9]}},{"b":13,"v":{"DEFAULT":[56.1]}},{"b":14,"v":{"DEFAULT":[253.1]}},{"b":15,"v":{"DEFAULT":[59.9]}},{"b":16,"v":{"DEFAULT":[292.2]}}]},
-{"f":172,"b":[{"b":0,"v":{"total":[35.2,34.2,34.8,35.1,34.9,34,33.7,34.7,35,35.2,34.4,34.6,35.1,34.7,34.4],"script":[11.4,10.9,11,11.2,11.3,10.9,10.5,11.1,11.3,11.5,11.1,10.8,11.4,11,10.6],"paint":[23.2,22.8,23.3,23.4,23.1,22.6,22.6,23,23.1,23.1,22.7,23.2,23.2,23.1,23.2]}},{"b":1,"v":{"total":[16.8,17.2,16.9,17.1,16.5,16.8,16.8,17,16.1,16.3,17,17.1,16.4,17.1,16.9],"script":[6.2,6.5,6.4,6.5,6.3,6.2,6.3,6.5,5.8,6.2,6.5,6.5,6.3,6.3,6.3],"paint":[9.9,10.1,10,10.1,9.7,10.1,10,9.9,9.8,9.6,9.8,10.1,9.6,10.3,10]}},{"b":2,"v":{"total":[18.3,19.2,18.9,18.3,20.2,19.5,16.7,18.5,18.9,17.6,20.1,17.9,18.4,20.5,17.5],"script":[5.8,7.1,6.6,6,6.2,6.6,4.9,5.5,5.9,5.7,6.7,5.5,5.3,6.6,5.5],"paint":[10.2,9.6,10.2,10.6,12.4,10.6,10.5,11.1,11.5,10.5,11.6,9.9,10.7,11.6,9.9]}},{"b":3,"v":{"total":[5.7,5.9,5.6,4.8,4.7,5.1,6.5,5.7,5.7,4.7,5.6,4.2,6.3,5.3,4.8,3.6,4.7,5,5,5.1,4.9,5,5.9,5.4,4.9],"script":[3,3.4,2.2,2.6,2.4,3,3.9,2.7,3.1,2.6,2.5,2.1,2.6,2.5,2.7,1.7,2.5,3,2.6,3.2,2.4,2.6,2.4,2.3,2.8],"paint":[1.8,2.3,2.5,1.4,2.2,1.7,2.1,1.7,2.2,0.9,2,2,1.8,2.1,2,1,2,1.8,2.2,1.2,1.3,1.5,1.2,2.6,1.2]}},{"b":4,"v":{"total":[10.8,11.7,12.3,10.9,12.4,11.8,11.8,11.6,11.5,11.6,10.9,11.8,11.7,11.7,12.4],"script":[2,2.6,3.8,2.2,3.8,2.4,2.5,2.7,2.7,2.1,2.3,2.7,2.9,2.8,3.4],"paint":[7.8,7.3,7.6,6.8,7.6,8.1,8.3,7.4,7.8,8.5,7,6.8,7,7.5,7.2]}},{"b":5,"v":{"total":[13.3,14,14.3,13.3,14.2,14,13.4,13.6,14.1,14.2,13.9,14.2,13.9,13.6,13.4],"script":[2.5,2.8,3.4,2.8,3,2.8,2.6,2.6,2.9,3.4,2.6,3.3,2.9,2.9,2.9],"paint":[10.1,10.4,10.2,9.8,10.5,10.5,9.8,10.4,10.6,10.2,10.3,9.7,10,10.1,10.1]}},{"b":6,"v":{"total":[435.6,434.5,437.5,452.1,443.1,438.7,432.3,442.3,441.6,442.5,435.3,438.7,436,438.8,437.3],"script":[189.1,188.1,192.5,204.7,195.4,191,187.7,193.8,195.8,196.4,189.2,192.2,191.4,193.8,191.8],"paint":[240.2,240.5,238.9,241.4,241.7,241.7,238.7,242.6,239.5,239.7,240.3,240.7,238.2,239.2,239.4]}},{"b":7,"v":{"total":[38,38.2,38.7,38,38.2,38.4,39,38.4,39.6,37.8,38.9,38,37.4,38.2,37.9],"script":[10.3,10.5,9.8,9.9,10.2,10.2,11.2,10,9.6,10.2,10.6,9.8,9.6,10,10.1],"paint":[26.7,26.8,28,27.2,27,27.3,26.9,27.5,29.1,26.7,27.4,27.3,26.9,27.3,26.9]}},{"b":8,"v":{"total":[14.7,12.6,13,13.1,13.8,13.1,12.2,13.5,12.7,13.7,13.9,13.9,12.7,14.6,15.5],"script":[12.1,10.6,10.5,11.1,11.7,9.9,10.1,10.8,10.9,11.5,11.7,11.7,10.8,11.6,13.1],"paint":[1,0.9,1.8,1.8,1.2,0.9,0.8,2,0.3,1,1.3,0.8,1.7,1.5,0.6]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[5.8]}},{"b":11,"v":{"DEFAULT":[6.4]}},{"b":12,"v":{"DEFAULT":[4.8]}},{"b":13,"v":{"DEFAULT":[43.7]}},{"b":14,"v":{"DEFAULT":[157.2]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[179.5]}}]},
-{"f":173,"b":[{"b":0,"v":{"total":[30.2,30.9,29.1,29.8,28.6,28.6,29.9,29.7,30.3,30.6,28.6,28.5,28.6,29.1,28.4],"script":[4.9,5.3,4.7,5,4.8,4.7,5.3,4.9,5.3,4.9,4.6,4.7,4.6,4.6,4.6],"paint":[24.9,25.1,23.9,24.4,23.5,23.5,24.1,24.3,24.4,25.2,23.6,23.4,23.5,24.1,23.4]}},{"b":1,"v":{"total":[12,12.2,12.3,12.4,12,12,11.9,12,12.2,12.4,12,12.3,11.7,12.2,11.9],"script":[1.6,1.6,1.7,1.7,1.5,1.6,1.4,1.8,1.7,1.7,1.6,1.6,1.5,1.7,1.7],"paint":[10,10.2,10.3,10.3,10.1,10,10.1,9.9,10.1,10.1,10.1,10.3,9.8,10.1,9.9]}},{"b":2,"v":{"total":[12.9,13.6,12.2,13.7,14.6,13.6,13.1,13.1,13.3,14,13.7,12.5,15.4,13.1,13.5],"script":[2.4,2.1,1.3,2.3,3.2,2.2,1.6,1.8,1.8,2.3,1.8,1.6,2.1,1.9,2.3],"paint":[9.8,10.5,9.9,9.9,10.1,10.3,10.2,10.4,10.1,11,11.3,10,11.4,9.8,10.3]}},{"b":3,"v":{"total":[4.6,5.2,3.7,4.2,4.5,5.4,4.6,4.9,4.4,5.1,4.8,4.9,4.5,5,4.3,4.2,5.8,4.4,4.4,5.3,5.9,5.9,4.9,5.7,4.3],"script":[2.1,3.5,2.1,2,2.1,3,2.6,2.1,2.6,2.6,2.6,2.1,1.8,2.7,1.7,2.3,3,2,2.3,3.1,3.4,3.4,3,3,2.6],"paint":[1.4,1.6,1,2.1,1.4,1.7,1.5,2.3,1.6,1.8,1,1.6,1.5,1.6,2.4,1.1,1.7,1.5,1.6,1,1.6,2.2,1.8,2.5,0.7]}},{"b":4,"v":{"total":[10.7,10.4,11.9,11.7,11.6,10.8,11.5,10.8,11.3,11.9,11.9,12,10.7,10,11.5],"script":[2,1.7,1.3,2,2.6,1.9,2.2,2,1.7,2.9,2.2,3,2.7,2,3.3],"paint":[7.2,7.2,9.4,8.3,7.6,8.1,8.4,7.5,8.5,8,7.3,8.4,6.4,6.4,6.6]}},{"b":5,"v":{"total":[23.4,23.5,25,24.5,23.3,24.1,23.7,23.1,24.6,24,24,23.6,22.7,23.9,25.3],"script":[3.3,3.3,3.8,3.5,2.5,3.4,3.2,2.4,3.4,3.2,3.3,3.4,2.5,3.3,3.8],"paint":[19.4,19.1,20.3,20,20,20,19.4,19.7,20.2,20.1,19.6,19.5,19.2,19.4,20.8]}},{"b":6,"v":{"total":[306,307.6,307.4,306.6,306.5,309.1,305.7,306.2,308,305.6,305.6,305.6,305,305.2,305.1],"script":[51.2,52.2,52.3,52.4,52,51.5,51.7,51.3,52.1,51.9,52.3,52.5,51.7,51.7,50.5],"paint":[248,248.9,248.3,247.5,247.7,250.9,248,248.1,249,247.6,246.7,246.4,247,246.6,248]}},{"b":7,"v":{"total":[32.4,32.8,33.6,32,33.3,33.5,33.3,33.4,33.2,32.6,32.1,32.4,32.1,34,32.4],"script":[4,4.1,4.3,4.2,4.2,4.3,4.4,4.4,4.1,4.1,4,4.1,4.1,4.1,4.2],"paint":[27.6,27.9,28.5,27.1,28.2,28.3,28.1,28.2,28.3,27.7,27.3,27.5,27.3,29.1,27.5]}},{"b":8,"v":{"total":[12.1,10.9,12.5,11.3,13.8,12.3,12.8,12.6,12.3,11.8,12.6,12,11.8,12.4,11.8],"script":[10.2,9.4,11.3,9.4,11.6,10.5,10.6,9.8,9.8,10,10.1,10.3,9.7,10.9,9.1],"paint":[0.9,0.6,0.3,1.7,1.1,1,1.9,1.7,2.2,1,1.7,1.1,1.8,0.7,1.5]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[20.9]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[6.6]}},{"b":16,"v":{"DEFAULT":[49.2]}}]},
-{"f":174,"b":[{"b":0,"v":{"total":[27.3,27.1,27.7,27.4,27.3,27.1,27.2,26.8,27,26.5,28.8,27.4,27.1,28.7,29.1],"script":[3.3,3.1,3.2,3.3,3.4,3.2,3.3,3.2,3.3,3.3,3.6,3.3,3.4,3.4,3.8],"paint":[23.6,23.6,24.1,23.7,23.5,23.5,23.6,23.3,23.3,22.9,24.8,23.7,23.3,24.9,24.9]}},{"b":1,"v":{"total":[11.3,11.3,11.8,11.8,11.4,11.5,12.1,11.7,11.7,11.7,11.8,11.7,11.7,11.2,11.7],"script":[1.1,1.1,1.3,1.3,1.1,1.1,1.3,1.2,1.2,1.2,1.2,1.1,1.1,1,1.1],"paint":[9.9,9.9,10.1,10.1,10,10,10.5,10.2,10.2,10.1,10.2,10.2,10.3,9.8,10.2]}},{"b":2,"v":{"total":[12.6,13.6,13.2,13.4,13.1,13.3,15.1,12.8,13.4,12.8,11.8,14.4,13.9,12.8,12.9],"script":[1.1,1.4,1.9,1.7,1.5,1.9,2.1,1.2,1.3,1,1.4,1.5,1.8,1.7,1],"paint":[10.3,11,10.1,10.8,10.6,10.5,11.5,9.8,11,10.5,9.4,11.9,10.8,10.2,10.4]}},{"b":3,"v":{"total":[6,4.2,3.9,2.6,3.4,3,3.8,3.4,4,3.4,3.1,2.9,3.3,3.6,3.4,3.5,3.9,3.6,2.8,2.9,2.9,3.4,4.3,3.5,3.1],"script":[1.7,1.9,1.4,0.9,1.5,1.1,1.4,0.9,1.8,0.9,1,1.5,0.7,1.2,1,1.1,1,1.5,0.7,1,0.8,1.2,1.9,1.3,1.3],"paint":[2.5,2.1,1.6,0.7,1.7,1.1,1.5,2.2,1.4,1.4,1.6,0.7,2.1,1.5,2,1.6,2.6,2,1.5,1.1,1.1,1.2,1.3,2.1,1.7]}},{"b":4,"v":{"total":[9.8,10.6,10.4,10.4,9.9,9.2,9.9,11.8,10.9,9.7,9.4,10.3,10.2,11.1,10],"script":[0.9,2.5,1.5,2,1.6,0.9,1.4,3.4,2,0.9,0.7,1.4,2.2,2.5,1.4],"paint":[7.6,7,7.9,7.8,7.1,6.7,7.6,7.4,7.3,7.7,7.7,7.7,6.9,7,7.4]}},{"b":5,"v":{"total":[23.3,22.9,22.2,23.2,22.6,22.9,23.6,23.8,23.8,22.9,23.7,23.7,23.8,24.4,23.4],"script":[2.7,2.8,1.9,2.6,2.2,2.6,2.7,2.7,2.5,2.7,2.6,2.8,2.6,2.9,2.7],"paint":[19.7,19.2,19.6,19.9,19.8,19.8,20.3,20.2,20.5,19.3,20.3,20.3,20.5,20.8,20]}},{"b":6,"v":{"total":[294.8,298,296.4,296.2,297.5,298.1,298.8,298.6,295.5,296.8,295.1,295.8,298,295.5,297.2],"script":[43.6,43.3,43.4,43.8,43.7,43.8,44.5,44.4,43.2,43.5,42.6,42.7,43.7,43.1,43.2],"paint":[245.3,248.2,247.2,246.1,247.4,247.8,247,247.7,246.2,247.4,245.7,246.8,247.4,245.6,247.3]}},{"b":7,"v":{"total":[32.6,33.3,32.6,32.1,32,32.4,31.8,33,33.4,33.6,33.3,33,32.6,32.7,32.6],"script":[4.4,4.4,4.4,4.3,4.4,4.3,4.3,4.6,4.4,4.4,4.3,4.5,4.4,4.3,4.4],"paint":[27.4,28.1,27.5,27,26.8,27.3,26.8,27.7,28.2,28.3,28.2,27.8,27.4,27.7,27.5]}},{"b":8,"v":{"total":[11,11.8,11.8,11.8,12.9,12.4,12.1,11.6,11.2,11.6,13.5,11.1,11.1,11.1,11.4],"script":[9.2,9.3,9.7,10.2,10.4,10.3,10.4,9.5,9.3,9.1,11.3,8.7,9.8,9.1,9.5],"paint":[1.6,1.9,1.6,0.3,1.8,1.4,1.2,0.2,1,0.5,1.3,1.4,0.3,0.8,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[19.8]}},{"b":14,"v":{"DEFAULT":[9.7]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[51.6]}}]},
-{"f":175,"b":[{"b":0,"v":{"total":[31.3,30.9,31,31.4,30.6,30.9,30.7,30.6,31.2,30.7,31.2,30.6,30.9,30.4,30.8],"script":[6.3,6.2,6.2,6.2,6,6.1,6.3,6.2,6.7,6.1,6.4,6.2,6.2,6.2,6.3],"paint":[24.4,24.1,24.2,24.6,24,24.2,23.8,23.9,23.8,24,24.3,23.9,24.1,23.6,23.9]}},{"b":1,"v":{"total":[19.1,19.1,18.8,19.3,18.3,19,19.2,18.4,19.7,18.7,18.4,19,18.8,18.4,19],"script":[7.1,7,7,7.4,6.8,7,7.1,6.8,7.2,7.1,6.8,7.1,6.9,6.8,7.1],"paint":[11.4,11.5,11.3,11.3,10.9,11.4,11.5,11,11.9,11,11,11.3,11.3,11,11.4]}},{"b":2,"v":{"total":[35.1,32.1,34.2,32.9,36.2,34.1,36.6,33.8,35.7,33.9,33.5,36,34.5,32.1,33.9],"script":[21.2,18.6,19.8,18.9,20.2,18.8,22,18.8,21,19.4,19.7,21,20.6,18.7,20.2],"paint":[12.4,11.3,11.6,13.1,12.3,12.1,11.9,13.2,11.8,12.3,12.5,13.1,11.8,11.8,12.1]}},{"b":3,"v":{"total":[23.2,22.8,21.1,20.6,21.8,20.5,21.2,22.7,21.4,20.7,21.3,21.8,21.8,20.5,20.7,20.8,20.7,21.7,19.9,20.7,20.8,21.8,21.3,20.5,21.7],"script":[19.6,19.1,17.9,17.6,18.7,17.8,18.4,18.6,17.7,17.3,17.6,18.5,18.8,17,17.6,18.5,17.7,18.7,17.3,17.7,18,18.7,17.8,17.6,18.2],"paint":[2.6,1.7,1.5,1.6,2.3,1.1,1.7,2.3,2,1.8,3.1,1.5,1,1.8,2.7,0.4,1.6,1.3,1.2,1.6,1.7,1.5,2.1,1.2,1.9]}},{"b":4,"v":{"total":[28,28.8,29,29.6,28.5,28,28.2,28.5,29.3,27.7,27.9,27.4,26.9,29.7,29.8],"script":[17.4,17.6,18,18.7,17.7,17.1,17.9,18.3,18.4,17.6,17.6,17.1,17.1,17.8,18.6],"paint":[7.9,8.9,9,8.8,8.5,9.2,7.6,7.4,8.9,7.8,7.7,8.3,7.7,8.4,8.7]}},{"b":5,"v":{"total":[36.1,35.8,35,34.6,35,35.1,34.2,35.3,34.9,36.4,35.5,36,35,34.3,36.9],"script":[12,12.5,11.8,12,12,11.6,11.7,12.2,11.9,13.2,12.7,12.1,12.6,11.7,12.9],"paint":[22.8,21.7,21.9,21.3,21.9,21.7,21.1,21.6,21.5,22.1,21.5,22.6,21.2,21.4,22.5]}},{"b":6,"v":{"total":[324.8,323.7,327.3,323.4,322.6,325.3,324.6,322.9,324.4,323,323.8,321.6,320.3,325.6,325.6],"script":[70.6,70.6,71.1,70,69.5,71,69.6,67.9,68.9,70.1,70.2,68.8,69,71,69.9],"paint":[247.8,246.7,249.7,247.2,246.6,247.7,248.3,248.7,249,246.6,247.2,246.2,244.6,247.9,248.3]}},{"b":7,"v":{"total":[42.5,41.9,41.4,42,41.9,41.6,42,43.2,42.3,41.5,42.1,41.8,41.2,42.2,41.9],"script":[12.8,12.8,12.2,12.5,12.4,12.6,12.4,13,12.9,12.5,12.6,12.5,11.7,12.9,12.6],"paint":[28.8,28.1,28.1,28.6,28.5,28,28.6,29.2,28.4,28,28.5,28.3,28.5,28.2,28.3]}},{"b":8,"v":{"total":[14.3,15.9,15.3,15.5,14.6,13.4,15.4,15.5,13.4,16.2,16.8,13.8,13.2,16.1,14.1],"script":[11.8,14.5,12.9,12.8,12.7,11.5,13.3,12.9,11.4,13.6,13.2,11.6,11,14.3,12.3],"paint":[1.8,0.3,1.7,2.2,0.7,1.1,0.3,1.8,0.4,1.3,2.2,1.2,1.2,1.6,1]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[26]}},{"b":14,"v":{"DEFAULT":[8.3]}},{"b":15,"v":{"DEFAULT":[2.9]}},{"b":16,"v":{"DEFAULT":[41.1]}}]},
-{"f":176,"b":[{"b":0,"v":{"total":[37.5,36.4,34.9,34.5,38.3,35.7,38.4,35.5,32.5,32.8,35.1,35.9,35.6,31.2,35.8],"script":[6.2,6.5,6.5,6.3,6.7,6.8,6.2,6.4,6.6,6.4,6.6,6.4,6.4,6.5,6.4],"paint":[23.2,24.2,24.5,24.3,24.2,24.3,24.2,23.9,24.4,24.8,24.4,24.5,24.1,24.4,24.1]}},{"b":1,"v":{"total":[43.6,35.8,44.7,43.2,43.2,36.1,38.5,43.8,43.3,39,39.2,42.8,37.2,37.8,37.6],"script":[11.9,12.1,13.1,12.9,12.9,12.1,12.1,12.9,12.5,12.3,12.4,13.6,12.3,12.7,13.5],"paint":[23.1,23.3,24,23.7,24.3,23.6,24,23.8,23.5,23.4,23.6,23.5,23.4,24.2,23.6]}},{"b":2,"v":{"total":[32.4,30.9,16,31.7,14.3,30.5,32.5,15.1,15.7,14.8,14.9,17.5,15.1,30.6,30.4],"script":[2.6,3.3,2.6,3.6,2.7,2.9,3.5,2.3,2.5,3.1,2.5,3.3,2.9,3.4,2.9],"paint":[13.4,11.4,11.1,11.5,11.4,11.5,12.3,10.9,13,10.8,10.6,12.6,11.2,9.5,10.5]}},{"b":3,"v":{"total":[32.9,24.3,28,22.8,22.5,26,28.1,22.8,30.5,23.7,24,19.6,25.5,23.7,23.9,19.1,24.8,23,23.8,24.6,29.6,27,29.6,23.9,23],"script":[3.1,3,3.4,2.3,3.1,2.8,3.3,2.6,3,2.6,3.2,2.8,2.6,3.4,2.5,2.7,3,2.5,3.3,2.6,2.8,2.6,3.2,2.4,2.5],"paint":[16.3,16,16.2,14.7,15.1,15,14.6,14.7,16,15.2,15.1,15.4,16.2,14.8,15.5,13.7,15.2,13.6,14.4,14.6,17.2,14.4,15.8,13.9,15.2]}},{"b":4,"v":{"total":[131.5,131,150,147.9,144.6,147.5,145.8,145.8,146.5,129.3,146.5,130.7,132.8,131.6,148.1],"script":[31.1,31.6,31.8,31,30.6,30.8,31.4,31.9,31.3,29.8,31,31.7,31.1,29.9,32.3],"paint":[98.9,97.4,101.4,98.8,96.7,99.5,98.2,97.1,97.4,98.2,99,97.4,99.8,99.1,98.8]}},{"b":5,"v":{"total":[16.7,14.8,16.8,21.2,18.8,15.4,14.6,20.6,15.9,16.7,16.3,17.1,17,16.6,14.4],"script":[1.3,1.2,1.2,1.2,1.1,1.2,1.3,1.3,1.5,1.4,1.2,1.4,1,1.3,1.2],"paint":[10.3,11.2,10.5,10.4,11.2,10.5,11.1,11,10.7,10.6,10.7,10.4,10.6,10.2,10.3]}},{"b":6,"v":{"total":[322.4,326.8,323.6,320.7,328,321.7,320.4,327.8,321.7,330.9,322.1,322.8,319,326.4,325.5],"script":[75.5,75.6,75.4,74.5,75.3,74.7,74.9,77.1,75.4,75.3,74,75.3,74.8,75.5,75.3],"paint":[242.6,240.5,242.5,242.4,245.2,239.8,241.2,243,242.4,245.1,241.7,240.7,240.6,239.9,241.4]}},{"b":7,"v":{"total":[41.4,42.7,37.1,43.4,42,41.6,43.2,43.3,42,36.5,40.9,42.7,42.5,42.1,41.7],"script":[8.1,8.3,8.3,8.3,8.4,8.2,8.2,8.2,8.1,8.2,7.9,7.9,8.3,8.1,7.8],"paint":[27.7,28.7,28.3,28.7,27.4,27.8,27.6,28.2,27.8,27.9,27.5,27.8,28.6,27.1,27]}},{"b":8,"v":{"total":[11.2,24.9,25.7,9.2,25.2,26.1,26,26.4,9.6,25.8,10.8,10,10.2,27.3,27.2],"script":[7.3,7.4,8.5,8.1,8.2,8.9,8.9,7.7,7.7,8.3,9,8.2,8.7,9.4,9.8],"paint":[1.7,1.8,1.2,0.3,0.9,1.3,1.1,1.7,1.9,1.2,0.3,0.9,0.7,1.1,0.8]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.9]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[20.8]}},{"b":14,"v":{"DEFAULT":[43.4]}},{"b":15,"v":{"DEFAULT":[7.8]}},{"b":16,"v":{"DEFAULT":[69.6]}}]},
-{"f":177,"b":[{"b":0,"v":{"total":[25.6,25.3,25.3,25.2,25.4,25.3,25.7,25.8,25.6,25.9,24.9,25.3,25.7,25.3,25.6],"script":[1.6,1.5,1.6,1.5,1.6,1.4,1.6,1.6,1.6,1.6,1.5,1.5,1.6,1.6,1.5],"paint":[23.6,23.4,23.4,23.3,23.4,23.5,23.8,23.8,23.6,23.9,23.1,23.5,23.8,23.3,23.8]}},{"b":1,"v":{"total":[10.9,10.8,10.9,11.1,10.9,10.8,11,10.9,11,10.9,10.8,10.8,10.9,11.2,10.9],"script":[0.6,0.6,0.5,0.7,0.7,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[10,9.9,10,10.1,9.9,9.8,10,9.9,10.1,10,9.9,9.9,10,10.3,10]}},{"b":2,"v":{"total":[11.9,11.6,11.1,11.2,11.4,11.5,11,12.1,12.4,10.7,10.7,10.8,12.2,12.5,12.5],"script":[0.5,0.8,0.1,0.6,0.8,0.6,0.3,0.1,0.8,0.1,0.1,0.1,1.2,0.9,0.7],"paint":[10.4,9.3,9.7,9.4,8.8,10,8.9,11.1,10.6,10,8.5,9.5,9.7,10.5,10.7]}},{"b":3,"v":{"total":[1.9,2.1,2.3,2,1.6,2.5,2.1,2.8,2,2.4,1.8,2.2,2.5,1.8,2,2.5,2.4,2.4,2.7,2.3,2.1,2.9,2.5,1.4,2.4],"script":[0.1,0.1,0.6,0.4,0.5,0.7,0.1,0.8,0.1,0.6,0.2,0.1,0.5,0.1,0.1,0.7,0.1,0.5,1,0.1,0.1,0.1,0.1,0.1,0.4],"paint":[1,1.9,1.2,1.5,1,1.6,1.4,1.1,1.8,1.3,1,0.8,1.3,1.6,1.1,1.6,1.4,1.7,1.6,1.2,1,1.1,2.1,0.3,1.6]}},{"b":4,"v":{"total":[8.3,8.8,8.4,7.7,7.9,8.3,8.7,8,8.4,8.8,8,8.5,9.3,8.4,7.8],"script":[0.1,0.1,0.3,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,1,0.1,0.1],"paint":[7.3,6.8,7.1,6.4,7.2,7.6,7.3,7.1,7.2,7.7,5.8,7.2,6.6,7.7,6.3]}},{"b":5,"v":{"total":[10.9,11.6,10.5,10.4,10.3,10.8,10.3,10.8,10.5,10.9,10.3,10.7,10.4,10.3,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.2,0.2,0.1,0.1,0.1,0.2,0.1],"paint":[9.9,10.7,9.9,9.6,9.7,10.1,9.4,9.9,9.4,10.1,9.6,9.8,9.4,9.6,9.7]}},{"b":6,"v":{"total":[268.4,266.7,267.7,269.2,270.6,266.9,268.1,266.3,268.1,267.3,269,267.5,264.3,268,266.7],"script":[17.1,16.8,17.6,17.2,16.5,17.2,17.2,16.6,17.1,17.3,17.4,16.9,16.5,17.8,17.2],"paint":[245.1,244.2,244.4,245.2,247.1,243.7,244.9,244.1,245,244.5,244.9,244.7,242.1,244.3,243.7]}},{"b":7,"v":{"total":[28,28.2,28.2,28.3,29,28.9,28.5,28.7,27.9,28.4,28,28.6,28.1,27.8,28.3],"script":[1.5,1.5,1.5,1.5,1.4,1.5,1.6,1.6,1.5,1.6,1.5,1.5,1.5,1.5,1.5],"paint":[25.8,26,25.9,26.1,26.8,26.7,26.2,26.4,25.8,26.1,25.8,26.3,25.9,25.7,26.1]}},{"b":8,"v":{"total":[8.5,8.8,9.7,8.9,10.5,9.5,8.9,8.1,8.9,8.8,10.6,9.1,9.7,8.8,9.1],"script":[6.7,6.7,7.4,6.8,8.4,8,7,6.7,7,6.5,8.4,7.2,7.8,6.7,7.3],"paint":[0.2,0.6,1.5,0.9,1,0.7,0.9,1.1,0.4,1.2,1.3,0.9,0.8,1.1,1.2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2]}},{"b":11,"v":{"DEFAULT":[2]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[14.2]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[44.5]}}]},
-{"f":178,"b":[{"b":0,"v":{"total":[33.4,33.9,33.6,33.9,34.2,34,33.6,33.4,34,33.6,33.3,33.6,33.5,33.6,33.6],"script":[8.7,8.9,8.7,8.9,8.8,8.6,8.6,8.9,8.9,9.1,8.9,9.1,8.9,8.8,8.7],"paint":[24.1,24.5,24.4,24.4,24.7,24.7,24.5,23.9,24.4,23.9,23.7,24,24,24.2,24.3]}},{"b":1,"v":{"total":[19.8,19.8,19.4,18.9,19,19.1,19.7,19.3,19.5,18.3,19.9,18.3,18.5,19.3,18.7],"script":[8.9,8.9,8.7,8.2,8,8.6,8.8,8.4,8.7,7.9,8.7,7.8,8.1,8.4,8.1],"paint":[10.4,10.3,10.1,10.1,10.5,10,10.4,10.3,10.3,9.9,10.6,9.9,9.9,10.2,10]}},{"b":2,"v":{"total":[11.9,11,10.7,11.5,11.5,11.7,11.3,13.4,12,12.1,11.1,11.4,11.8,11.7,11.1],"script":[1,0.1,0.1,0.1,0.7,0.5,0.8,0.5,0.9,1.1,0.1,0.1,0.9,1.2,0.1],"paint":[9.9,9.7,9.7,9.8,9.9,10.1,9.5,11.6,10.5,10,10,10,10.3,9.3,9.4]}},{"b":3,"v":{"total":[2.3,2.8,2,2.4,8,2.2,5.2,5,4.6,4.2,5.2,8.3,2.4,6.3,8.9,6.1,2,7.2,2.8,3.5,1.9,2.4,6.1,2.2,1.7],"script":[0.4,0.1,0.1,0.4,0.7,0.1,0.1,0,0,0.1,0.1,0.1,0,0.4,0,0.1,0.4,0.1,0,0.1,0,0.9,0.4,0.4,0],"paint":[1.7,0.8,1,1,1.4,1.5,2.9,1.2,0.8,1.7,1.6,1.2,2.2,1.4,2.5,1.9,1.5,2.3,0.8,1,0.9,1,1.6,1.7,1.5]}},{"b":4,"v":{"total":[8.9,9.1,8.7,9,9.4,9.4,8.9,8.8,9.5,9.2,8.3,8.5,8.8,8.9,25.6],"script":[0.2,0.8,0.2,0.5,0.5,0.2,0.9,0.2,1.1,0.6,0.7,1.1,0.5,0.2,0.1],"paint":[7.7,6.3,7.1,7.2,7.7,8.2,6.9,7.8,7.4,7.1,7.4,6.8,7.3,8.1,7.1]}},{"b":5,"v":{"total":[10.4,10.7,10.6,10.3,10.6,10.6,10.4,11,10.9,10.4,10.4,10.7,10.5,10.7,10.9],"script":[0.1,0.3,0.2,0.1,0.2,0.3,0.1,0.1,0.4,0.1,0.4,0.1,0.2,0.3,0.3],"paint":[9.6,9.9,9.9,9.6,9.8,9.6,9.7,10.2,9.6,9.7,9.3,10.1,10,9.7,10.2]}},{"b":6,"v":{"total":[332.2,335.7,334.1,334.1,333.9,335.2,334.5,335.3,334.6,334,331.3,332.8,336.5,333.8,334.4],"script":[84.9,86.1,85.9,85.3,85,86,85,86,85.4,85.3,84.5,85.3,85.8,85.5,84.6],"paint":[241.2,243.4,242.3,242.6,242.4,243.2,243.1,243,243.3,242.7,240.9,241.4,244,242.4,242.7]}},{"b":7,"v":{"total":[35.4,35.5,35.8,36.7,36.5,36.1,35.2,36.5,35.6,35.4,35.5,35.7,35.6,36.8,36.3],"script":[7.8,7.7,8,7.8,8,8,7.7,7.9,7.9,7.8,7.7,7.7,8,8,7.8],"paint":[26.7,26.8,26.9,28.1,27.6,27.2,26.6,27.7,26.8,26.7,26.8,27.2,26.7,28,27.5]}},{"b":8,"v":{"total":[10,9.7,10.4,9.7,10.2,10.9,12.3,10.7,10.3,11.2,11.7,10.1,10.2,10.3,10.4],"script":[8.1,7.6,8.5,7.8,7.8,8.7,10.3,9.1,8,9,9.3,8,8.5,8.4,8.9],"paint":[0.9,1.9,0.7,1.1,1.8,1.5,1.2,0.3,1.7,1.6,0.7,1.5,1,0.9,0.2]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[4]}},{"b":11,"v":{"DEFAULT":[4]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[31]}},{"b":14,"v":{"DEFAULT":[51.2]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[73.1]}}]},
-{"f":179,"b":[{"b":0,"v":{"total":[47.1,44.7,55.8,42.5,49.3,46.5,46.8,50.2,46.9,48,49.5,42.1,50.7,49.3,47.1],"script":[17.8,18.3,17.2,18.2,18.2,17.7,18.2,18.5,17.6,17.8,17.6,18.1,18.1,17.7,19],"paint":[23.5,23.1,20.7,23.8,23,23.4,23.5,23.1,23.3,23.5,24,23.6,23.5,23.2,23.1]}},{"b":1,"v":{"total":[30.1,27.8,27.4,32.1,30.9,32.9,30.2,28.1,29.4,29,32.8,30.3,27.5,29.3,31.9],"script":[15.1,15.2,15.1,15,15.3,15.9,15.6,15.4,15.4,15.4,15.4,15.4,16.1,15.2,15.2],"paint":[10,9.8,9.9,9.7,9.8,10.3,10.1,9.8,9.8,9.8,10,10.1,9.8,10,9.9]}},{"b":2,"v":{"total":[53.9,64.6,68.2,53.6,49,71.2,69.8,68,55.2,63.8,49.8,65.1,48.7,64.9,55.6],"script":[40.1,33.7,38.3,37.9,35.5,42.5,39.8,37.4,41.7,33.1,34.4,35.5,34.5,35.5,41.2],"paint":[12.9,13.8,11.9,13.1,12.4,11.7,13.8,11.9,13.2,13.7,12.6,13.5,13.8,11.6,11.3]}},{"b":3,"v":{"total":[43.3,44.7,41,42.5,39.3,40.8,45.3,43.9,47,41.3,41.8,41.1,45.1,42.5,44.5,44.8,41.8,46.5,42,43.4,44.9,42.1,45.6,43,40.9],"script":[38.6,36.3,34.5,36.9,33.5,35.8,40,37.8,37.1,34.4,35.2,36.1,39.8,37.1,37.3,38.1,36.5,38.5,35.4,33.4,38.6,36.5,40.9,35.6,35.8],"paint":[2,3.5,4.1,3,3.7,3.2,3.5,2.6,3.2,4,3.3,2.9,2.8,4,3.8,4,2.3,2.6,3.4,4.3,2.6,2.6,2.7,2.8,3.5]}},{"b":4,"v":{"total":[64.4,61,63.2,61.1,62.6,61.7,59.9,59.8,59.4,60,48.2,43.3,45.5,45.2,61.4],"script":[36.3,31.8,34.9,32,32.5,31.9,32.5,32.1,31,32,36.8,30.9,32,33.5,34.1],"paint":[10.5,11.6,10.4,11.4,12.4,9.9,8.3,10.5,11,11.1,9.5,11.2,10.3,9,10.9]}},{"b":5,"v":{"total":[43.7,43.8,41,38.3,40.9,45.9,44.5,40.2,39.4,42.3,41.2,45.2,41.4,45.3,43],"script":[18.5,18.1,17.4,17.2,17.2,17.9,17.7,17,17.6,18.1,18.6,17.7,18.5,18,18.1],"paint":[21.8,22.3,21.2,20.4,21.7,21.4,21.1,21.1,20.9,21.6,21.1,20.5,21.7,21.2,21.8]}},{"b":6,"v":{"total":[438.4,432.4,430.3,438.4,431.3,438.6,432.8,436.5,436.1,433.1,433.1,438.9,434.7,432.6,442.6],"script":[188,182,180.9,186.5,182.2,188,185.4,184.3,184,181.1,183.1,185.5,183.7,184.6,188.3],"paint":[239.3,241.3,239.1,242.3,239.8,240.6,238.2,240.8,242.7,241.4,240.9,242.9,240.1,241,243.1]}},{"b":7,"v":{"total":[65.7,65.5,64.7,60.3,59.2,61.8,60.8,60.1,65.2,65.5,60.5,65.2,66.9,55.9,60.7],"script":[26.8,26.6,26.9,27.3,26.2,26.1,27.4,27.3,26.7,27.6,27,26.9,27.1,27.4,27.1],"paint":[28.4,27.6,27.6,27.4,27.5,27.2,27.7,27.3,27.5,28,27.5,27.3,27.5,27.9,28]}},{"b":8,"v":{"total":[42.8,42.3,42.1,40.9,43.9,45.9,42,43.3,40.6,46.4,44.6,42.3,44.6,43.2,40.5],"script":[17.8,17.9,18,18.5,18.8,18.5,17.1,17.6,17.1,18.6,18.7,17.6,17.8,17.7,16.6],"paint":[2,2,2.3,2.5,2.1,2.7,3.1,2.7,2.7,2.8,1.5,3.3,1.4,1.7,2.1]}},{"b":9,"v":{"DEFAULT":[2.6]}},{"b":10,"v":{"DEFAULT":[8.2]}},{"b":11,"v":{"DEFAULT":[8.6]}},{"b":12,"v":{"DEFAULT":[8.2]}},{"b":13,"v":{"DEFAULT":[48.8]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.8]}},{"b":16,"v":{"DEFAULT":[495.4]}}]},
-{"f":180,"b":[{"b":0,"v":{"total":[30.7,30.4,31.5,31.4,30.9,30.3,31.5,30.7,30.9,30.6,30.9,30.5,32.1,30.4,30.4],"script":[6.1,5.9,6.3,6.4,6.2,6,6.7,6,6,6,6,6.2,6.6,6,6],"paint":[24.1,24.1,24.7,24.6,24.3,23.9,24.4,24.3,24.5,24.2,24.4,23.9,25.1,23.9,24]}},{"b":1,"v":{"total":[33.5,33.3,33,33.5,33.4,33.1,33.3,33.7,33.1,33.4,32.9,33.4,33.6,33.5,34.3],"script":[8.6,8.5,8.4,8.6,8.6,8.4,8.5,8.5,8.5,8.5,8.3,8.4,8.9,9.1,8.6],"paint":[24.4,24.4,24.2,24.4,24.3,24.3,24.4,24.8,24.2,24.5,24.1,24.5,24.3,24,25.1]}},{"b":2,"v":{"total":[14.2,15.2,14.1,13.9,14.4,14.8,14.7,14.1,13.6,14.6,13.4,14.4,13.7,14.6,13.8],"script":[2.9,2.7,2.3,3.1,2.9,2.7,2.9,2.9,2.8,3.3,2.7,2.7,3,2.5,2.6],"paint":[8.9,11,9.9,9.9,10.5,9.8,9.4,10.5,10.1,10.6,9.6,10.5,10,10.9,10]}},{"b":3,"v":{"total":[6.3,6.3,6.4,6,6.3,6,6.2,6.6,6.3,6.6,6.4,6.2,6.1,6.5,6.7,6.1,6.4,7.4,5.7,6.1,6.8,6.5,6.2,6.7,6.6],"script":[4.1,4.1,4.7,3.6,4.2,3.9,4.2,4.5,4.6,4.5,4,3.6,4.5,4.7,4.2,3.5,4.7,5.5,3.9,4,4.8,4.4,4.2,4.6,4.7],"paint":[1.1,1.1,1.6,1.6,1.2,1.3,1.2,0.8,1.2,1.5,1.4,2.4,1.5,1.7,1.2,1.9,1.6,1.2,1.1,1,1.9,1.6,1.9,1.5,1.4]}},{"b":4,"v":{"total":[11.7,11.7,12.1,11.6,11.3,11.5,11.5,12.2,12.1,13,11.4,11.5,11.7,11.3,12.2],"script":[3.2,3.2,3.4,3.4,3.6,2.8,3.4,3.2,3.3,3.2,2.8,3.3,3.3,3.4,3.6],"paint":[6.9,7.1,7.8,7.3,6.6,7,6.4,7.9,7.7,8.4,7.1,6.6,6.9,6.7,7.3]}},{"b":5,"v":{"total":[13,12.8,13.3,13,13.6,12.7,12.9,12.8,13.8,13.2,13.8,12.9,12.9,13.1,12.7],"script":[2.4,2.4,2.5,2.4,3.2,2.7,2.4,2.5,3.2,2.5,3.2,2.5,2.4,2.5,2.4],"paint":[9.6,9.8,9.9,9.7,9.8,9.4,10.1,9.7,10,10.1,9.8,10.1,9.9,10,9.6]}},{"b":6,"v":{"total":[390.8,389.1,390.1,391.5,388.5,392.6,392.9,389.7,390.5,390.2,390,395.1,394.1,390.9,388.6],"script":[147.9,147.5,147.7,149.4,147,149,145.8,148.5,149,147.6,148.2,151.3,150.2,148.3,146.2],"paint":[236.6,235.4,236,235.8,235.6,236.7,241.1,234.3,235.4,236.3,235.4,236.8,237.4,236.3,235.9]}},{"b":7,"v":{"total":[48.9,49.4,49.5,50.9,49,48.5,49.5,48.7,49.8,49.4,48.9,49.6,49.5,49,49.4],"script":[20.1,20.6,20,20.4,20,19.6,20.4,19.7,20.4,20,20.1,20.1,20.3,20.2,20.2],"paint":[27.9,28,28.6,29.6,28.2,28.1,28.3,28.1,28.6,28.5,28,28.6,28.4,27.9,28.3]}},{"b":8,"v":{"total":[17.4,18.3,19.1,16.4,17.1,18.4,17.9,18.3,16.8,18.2,17.9,16.2,17.1,16.6,18.3],"script":[16.5,16.9,17.7,15.3,15,17.2,16.4,17.1,15.5,17,16.5,15,16,15.5,16.7],"paint":[0.4,1.3,1.3,0.9,1.4,0.8,1.1,0.3,1.2,0.4,1.3,0.7,0.9,0.9,0.3]}},{"b":9,"v":{"DEFAULT":[2.8]}},{"b":10,"v":{"DEFAULT":[9.8]}},{"b":11,"v":{"DEFAULT":[9.8]}},{"b":12,"v":{"DEFAULT":[10.3]}},{"b":13,"v":{"DEFAULT":[72.5]}},{"b":14,"v":{"DEFAULT":[229.6]}},{"b":15,"v":{"DEFAULT":[65.8]}},{"b":16,"v":{"DEFAULT":[293.8]}}]},
-{"f":181,"b":[{"b":0,"v":{"total":[36.5,37,35,37.1,35.2,35.3,35.7,37.8,37.6,38.3,37.8,37.8,37.6,36.2,35.5],"script":[13.4,12.1,12.9,12.3,12.5,12.7,12.9,12.1,12.1,12.2,12.2,12.3,12.3,13.3,12.9],"paint":[22.7,24.6,21.7,24.5,22.3,22.2,22.4,25.1,25.1,25.7,25.1,25.1,24.8,22.5,22.2]}},{"b":1,"v":{"total":[38.1,37.2,37.5,37.3,37.1,38.2,38.1,37.8,36.7,37,37.4,38.2,38.4,37,37.5],"script":[15.1,14.1,14.6,13.9,14.2,14.9,15.2,15.1,13.9,15,14.8,15,15.1,14.2,14.8],"paint":[22.5,22.6,22.5,23,22.4,22.9,22.6,22.3,22.4,21.7,22.2,22.8,22.9,22.4,22.3]}},{"b":2,"v":{"total":[15.8,16.2,14.3,15.5,53.2,14.8,54.5,53.7,54.5,54.2,54.1,15.6,55.1,16,15.4],"script":[2,1.9,1.7,2.3,1.9,1.9,1.8,1.9,1.6,1.6,1.8,1.9,1.4,1.7,2.2],"paint":[12.9,12.7,9.2,12.2,11.2,11.5,12.2,12.3,11.5,11.3,11.2,12.5,12.9,13.4,11.6]}},{"b":3,"v":{"total":[11.9,6.8,13.7,8.6,15.4,10.8,13.8,12.8,13.9,15,14.7,11.6,14.4,9,14.9,10.3,15.1,6.1,14.5,5.6,8.6,10.9,6,10.2,15.2],"script":[3.6,3.9,3.9,3.4,3.6,3.5,3.6,4.4,4,3.2,2.9,3.7,4,3.3,3.1,3.8,3.1,4.3,3.7,3.4,3.5,3.3,3.1,3.6,3.1],"paint":[1.6,2.2,1.2,1.4,2,2.2,2.2,1.6,2.1,2,2.4,1.7,1.8,2,2.5,1.1,2.2,1.6,1.4,1.2,0.8,2.2,2.4,1.6,2.5]}},{"b":4,"v":{"total":[17.6,16.5,17.7,16.4,16,16,14.7,17.2,15.7,16,16.7,16.5,15.7,15.8,15.8],"script":[0.9,1.3,1,0.6,1.3,0.9,0.7,0.9,0.2,0.2,0.9,0.9,0.9,0.7,0.3],"paint":[16.1,13.6,15.2,15.3,13,13.9,12.8,15.3,14.3,14.7,15.2,13.7,13.8,14,14.7]}},{"b":5,"v":{"total":[12.8,13.5,13.6,13.7,20.6,14.5,12.1,13.5,12.8,13.3,13.5,12.5,18.8,21.2,14.2],"script":[0.3,0.3,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.3,0.4,0.3,0.2],"paint":[11.1,11.1,10.7,11.2,11.3,11.1,11.7,10.9,11.1,11.3,11,11,11.3,11.7,11.2]}},{"b":6,"v":{"total":[],"script":[],"paint":[]}},{"b":7,"v":{"total":[39.6,39.9,39.7,39.6,41.2,41.5,40.4,41.9,39.7,40.5,39.9,40.1,39.5,39.6,40],"script":[12.9,12.9,12.8,12.6,14.7,13.6,12.8,14.7,12.9,12.8,12.8,13.2,12.3,13,12.7],"paint":[26,26.3,26.1,26.3,25.8,27.2,27,26.5,26,26.9,26.4,26.2,26.5,25.9,26.6]}},{"b":8,"v":{"total":[16.5,17.3,17.2,16.2,15.8,16.3,16.7,18.3,15.2,15.4,16.7,16.5,17,17.5,15.4],"script":[15.2,15.7,15.7,14.6,14.8,13.9,15.1,16.5,13.6,14.4,14.9,14.9,15.8,15.7,13.6],"paint":[1.3,1.3,1.3,1,0.3,1.3,1.4,0.9,0.7,0.8,1.7,0.3,0.7,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[5.5]}},{"b":11,"v":{"DEFAULT":[5.5]}},{"b":12,"v":{"DEFAULT":[1.5]}},{"b":13,"v":{"DEFAULT":[46.5]}},{"b":14,"v":{"DEFAULT":[28.8]}},{"b":15,"v":{"DEFAULT":[9.1]}},{"b":16,"v":{"DEFAULT":[67.4]}}]},
-{"f":182,"b":[{"b":0,"v":{"total":[35.5,35.4,37.6,35.8,38,32.6,35.1,33.4,36.5,35.1,37.5,37.3,33.6,33.8,35.3],"script":[26.8,27.4,27.6,28.1,27.1,27.1,27.1,27.5,27.2,27.1,27.4,26.9,27.8,28.5,27.3],"paint":[22.3,22.7,22.9,23.3,22.6,22.5,22.5,23,22.5,22.7,22.4,22.7,23.2,23.8,22.8]}},{"b":1,"v":{"total":[26.8,23.6,24.2,24.5,22.9,25.3,25,25,25.9,23.8,23.4,19.3,24.4,26.4,25.3],"script":[16.7,17.1,16.3,16.5,16.7,17.5,16.5,16.9,16.6,17,16.9,16.6,16.8,16.3,16.7],"paint":[9.7,10,9.8,9.8,9.8,9.7,9.7,9.7,9.7,10.1,10,10,9.8,9.7,9.7]}},{"b":2,"v":{"total":[42.1,58.3,59.6,57.6,41.9,59.3,58.4,42.1,58.5,42,59.5,40.7,58.6,42.9,59],"script":[34.4,35.5,36.3,35.2,35,37,36.4,35.3,35.7,35,36.3,34.8,36.6,35.7,36.1],"paint":[12,13.1,12.7,12.9,12.9,12.7,13.8,11.2,14,13.2,11.5,11.8,10.8,10.8,12.6]}},{"b":3,"v":{"total":[34.2,36.2,34.9,36.3,35.7,36.9,35.1,34,33.6,35.6,34.9,36.4,36.4,34.9,34.7,36.4,35.2,36.6,35.3,38.5,37.9,35.1,34.8,36,34.7],"script":[29.3,29.7,29.5,30.5,30.7,30.4,30.1,28.6,28.5,29.3,29.1,30.2,29.4,29.8,30.3,30,30.1,29.6,29.2,30,29.7,30,30.7,30.6,28.9],"paint":[2.5,3.5,3.1,2.1,2.1,2,2.6,3.4,3.2,2.6,2.7,3.8,2.6,2.1,2.1,4,2,2.9,3,3,3.1,2.8,2.4,2.9,1.3]}},{"b":4,"v":{"total":[63.9,56.7,58.1,41.8,39.8,41.3,56.5,61.1,56.8,41.4,57,58.4,40.3,56.8,55.9],"script":[36,34.6,35.6,34.2,33.3,34.5,33.7,35.7,33.9,35.3,35.2,35.2,33.7,33.9,34.9],"paint":[10.6,12,9.9,9.9,8.2,8.2,9.7,9.8,9.9,9,11,10.9,9.5,9.4,10.3]}},{"b":5,"v":{"total":[40.4,45.4,39.6,43.9,39,43.5,46.5,37.7,38.8,41.6,40.9,41.7,40.3,45.4,39.4],"script":[16.3,16.8,17.6,16.4,17.2,17.1,16.8,16.2,16.7,16.9,16.3,16.2,16.7,16.3,17.5],"paint":[20.2,20.6,20.5,20.5,20.4,20.6,19.8,19.7,20.4,20.6,20,20.2,20.1,20.7,20.4]}},{"b":6,"v":{"total":[318,314.7,317.4,315.5,311.9,313.1,314.7,314.3,311.3,314.2,313.8,313.5,309.6,315.2,314.5],"script":[270.3,271.2,271.9,269.4,269.8,268.8,270.9,269.3,267.2,270.1,270.4,268.9,265.8,270.5,268.1],"paint":[245.6,244.5,244.7,244.5,242.1,244.4,244.8,242.6,241.6,244.7,243.6,242.1,243.2,244.4,242.9]}},{"b":7,"v":{"total":[49.7,46.2,48.4,46.1,40.4,39.9,46.9,46.3,40.3,46.8,40.7,40.3,45.5,46.3,45.8],"script":[34.3,35.6,35.5,35.6,35.3,34.8,34.9,35.7,35,35.5,35.4,35,35,34.9,35.3],"paint":[26.3,27.4,27.3,26.8,26.8,26.5,26.5,27,26.3,26.8,26.9,26.5,26.6,26.1,26.8]}},{"b":8,"v":{"total":[18.2,19,19.4,20.2,19.8,18.6,19.8,19.9,18.6,19.6,19.5,18.3,18.4,17.7,19.5],"script":[15,15.3,15.9,16.6,16.4,14.3,16.7,16.2,14.7,15.9,16,15.1,15.4,14.3,15.9],"paint":[2.7,2.6,2.5,1.1,2,3.3,2.6,1.2,1.8,2.8,1.5,1.2,1.9,2.8,1]}},{"b":9,"v":{"DEFAULT":[3.4]}},{"b":10,"v":{"DEFAULT":[4.9]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[3.7]}},{"b":13,"v":{"DEFAULT":[16.1]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.6]}},{"b":16,"v":{"DEFAULT":[118.6]}}]},
-{"f":183,"b":[{"b":0,"v":{"total":[29.3,29.1,29.2,29.2,28.8,28.9,29.3,30.3,29.2,29.3,30.2,28.7,29.1,28.6,28.7],"script":[4.9,4.8,4.9,5,4.9,4.8,4.8,5.2,4.9,4.9,4.8,4.7,4.9,4.8,4.8],"paint":[24,23.9,24,23.9,23.5,23.7,24.1,24.7,24,24,24.9,23.5,23.8,23.5,23.5]}},{"b":1,"v":{"total":[14.6,14.4,14.8,14.3,14.6,15,15.5,14.4,15.3,14.7,14.4,14.2,15,14.4,15.1],"script":[3.8,3.7,4.2,3.8,4.3,4.1,4.1,3.8,4.2,4,4.1,3.7,4.2,3.9,4.2],"paint":[10.3,10.3,10.1,10,10,10.5,10.9,10.2,10.7,10.3,10,10,10.3,10.1,10.4]}},{"b":2,"v":{"total":[15,14,15.1,15.3,14.9,15.2,14.6,13.5,15,15.4,15.2,15.1,16.1,15.4,14.3],"script":[2.6,2.8,3.1,3.1,3.6,2.5,2.5,1.7,2.9,3.5,3.3,2.9,3,3.2,2.5],"paint":[10.7,10.1,10.4,11.2,10.4,11.6,11.3,10.8,11.5,10.3,10.3,11.2,11.5,10.9,10.5]}},{"b":3,"v":{"total":[3.3,2.8,2.1,2.6,2.8,3,2.5,3.1,2.4,2.9,3,2.7,2.5,3.1,2.8,3.5,3.3,2.7,3,2.9,3.5,2.7,3.3,3,2.9],"script":[1.2,0.6,0.3,0.2,0.5,0.9,0.8,0.6,0.5,0.9,0.2,0.6,0.2,1,0.2,1.2,0.8,0.2,0.7,1,1.4,0.6,1.1,0.6,0.6],"paint":[1.9,0.6,1.2,2.2,2.2,1.3,0.7,2.3,1,0.9,1.4,1.5,2.2,1.9,2.5,1.4,1.5,1.4,1.3,1.5,1.4,1.4,2,1.6,2.1]}},{"b":4,"v":{"total":[9,9.9,10.6,9.9,9.3,9.2,8.9,10.1,9.5,9.4,9.4,9.4,9.7,10.1,10.1],"script":[0.9,1.3,0.9,0.8,0.7,1.1,0.9,1.1,0.6,0.8,1.4,0.6,0.5,1.3,0.9],"paint":[7.1,7.5,8.1,7.5,7.7,7.1,6.4,7.6,7.1,7.8,6.8,7.8,8.1,7.6,7.5]}},{"b":5,"v":{"total":[28.3,28.7,29.5,28.2,29.5,29.1,29.3,28.6,28.6,28.8,28.8,29.5,28.4,30.3,29],"script":[7.6,7.3,7.6,7.6,7.8,7.8,8.1,7.5,7.3,7.3,7.8,8.1,7.7,7.9,7.5],"paint":[19.6,20.3,20.6,19.8,20.4,20.4,19.8,20.3,20.2,20.6,20,19.9,19.8,21.4,20.8]}},{"b":6,"v":{"total":[365.2,364.4,361.6,365.6,363.4,365.9,362.8,363.6,364.9,363.9,366.4,363.9,362.9,366.3,364],"script":[107.2,108.7,108.5,109,109,108.5,109.1,108.2,108.6,108.4,108.9,108.6,108,109.1,109],"paint":[250.9,248.5,246.4,249.8,247.9,250.7,246.7,249,249.8,248.7,249.9,248.8,248.2,249.8,248.5]}},{"b":7,"v":{"total":[44.6,44.3,45.2,45.3,44.6,44.6,45.2,45.1,44.9,45.2,45.1,45.6,45.3,45.2,45],"script":[15.7,15.5,15.6,15.6,15.5,15.7,15.6,16,15.8,15.5,16,15.9,15.6,15.7,15.9],"paint":[27.9,28,28.7,28.7,28.2,28.1,28.5,28.3,28.2,28.6,28.3,28.9,28.8,28.6,28.2]}},{"b":8,"v":{"total":[15.3,14.6,14,14.8,17,14.4,17,14.5,14.3,18,16.6,16.3,14.5,14.4,14.6],"script":[13.5,13.2,13.4,13.3,14.9,12.8,15,13,12.8,16.2,14.4,14.2,12.7,12.4,13.2],"paint":[0.9,1.1,0.3,0.6,1.6,1.4,1.6,1.5,1.1,1.7,1.2,1.4,1.4,0.9,1.2]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[5.2]}},{"b":11,"v":{"DEFAULT":[5.2]}},{"b":12,"v":{"DEFAULT":[4.8]}},{"b":13,"v":{"DEFAULT":[39.1]}},{"b":14,"v":{"DEFAULT":[87.8]}},{"b":15,"v":{"DEFAULT":[21.8]}},{"b":16,"v":{"DEFAULT":[107.7]}}]},
-{"f":184,"b":[{"b":0,"v":{"total":[39.4,40,40.4,40,39.9,39.7,39.9,39.6,40,39.5,39.2,39.3,39.8,40.2,39.1],"script":[16.5,16.7,16.7,16.8,17,16.7,16.7,16.5,16.6,16.4,16.5,16.4,16.6,17.1,16.4],"paint":[22.5,22.8,23.3,22.7,22.6,22.5,22.7,22.7,22.9,22.7,22.2,22.4,22.8,22.6,22.3]}},{"b":1,"v":{"total":[13.6,13.4,13.5,13.3,14.5,13.4,13.5,13.4,13.2,13.7,13.5,13.7,13.1,13,13.4],"script":[2.7,2.7,2.8,2.6,2.8,2.7,2.7,2.7,2.6,2.7,2.7,2.7,2.7,2.4,2.6],"paint":[10.4,10.3,10.3,10.3,11.3,10.3,10.5,10.3,10.1,10.5,10.3,10.6,10.1,10.3,10.3]}},{"b":2,"v":{"total":[13.5,14,13.1,13.8,13.1,13.7,13.4,12.5,14,13.1,13.1,12.8,13.6,13.2,13],"script":[2.6,2.3,1.8,1.4,1.8,2.3,1.7,2.3,2.2,2.2,2.7,2.1,1.8,2,1.6],"paint":[10,10.4,9.9,11.5,10.3,10.8,9.7,9,10.8,9.3,8.7,9.4,10.9,10.2,10.4]}},{"b":3,"v":{"total":[8.2,8.9,7.7,7,7.5,6.6,6.9,6.9,7,7.5,7,6.9,8.4,7.4,7.1,7,7.1,6.4,6.2,7.2,7,6.8,6.4,6.6,6.1],"script":[5.4,6.5,4.8,4.7,5.6,4,4.5,4.9,4.6,4.5,4.8,4.6,4.2,4.9,4.3,4.2,4.2,4.1,4.2,4.8,4.4,4.4,4.3,4.5,3.8],"paint":[2.5,1.5,2.7,2.2,1,1.8,1.8,1,1.4,2,2,1.3,0.5,1.9,1.9,1.7,1.4,2.2,0.7,2.2,2.1,1.1,1.6,1.4,2.1]}},{"b":4,"v":{"total":[9,9.1,8.7,9.5,8.6,9,9.8,9.4,9.8,9.9,9.1,8.6,9.7,8.7,9.4],"script":[0.3,0.8,0.7,0.2,0.2,0.8,0.2,1,0.8,0.6,0.8,0.9,1.1,0.9,0.8],"paint":[8.1,6.9,6.1,8.1,7.3,7.3,8.7,7.4,7.6,8.3,7.3,6.5,7.5,6.2,7.5]}},{"b":5,"v":{"total":[26.6,27.6,26.6,28.2,27.3,28.3,27.8,27.8,28.6,26.4,28.1,26.5,28,26.6,26.4],"script":[4.6,4.8,4.8,4.8,4.8,5.1,4.8,4.4,4.9,4.4,4.8,4.5,4.8,4.3,4.4],"paint":[21.3,21.9,20.5,22.8,21.8,22.2,22.3,22.5,22.8,21.3,22.6,21.3,22.2,21.3,21.2]}},{"b":6,"v":{"total":[403.2,404.9,405,403.2,402.7,404.5,405.2,402.7,406.2,402.3,404.3,402.5,403.5,402.9,405.1],"script":[155.7,157.6,156.2,156,156.9,157.8,157.8,157.6,156.7,157.5,157,156.4,155.6,155.8,157.1],"paint":[241.2,241.1,242.5,241.1,240.3,240.3,241.2,239.5,242.9,239.1,241.3,240.7,242,241.1,242]}},{"b":7,"v":{"total":[45.8,45.8,44.7,44.9,44.7,45.4,45.7,45.8,45.9,45.1,45.7,45.8,45.4,45.7,45.4],"script":[17.2,16.7,16.4,16.3,16.3,16.5,16.5,16.5,17.1,16.9,16.7,16.5,16.7,17,16.5],"paint":[27.8,28.4,27.7,27.8,27.7,28.2,28.3,28.5,28,27.4,28.3,28.5,28,28,28.1]}},{"b":8,"v":{"total":[21,22.1,21.2,19.5,20.8,21.1,22.2,21.6,21.5,21.7,21.3,20.4,20.3,19.9,20.6],"script":[19.7,19.7,18.9,18.1,19.2,19.3,20.1,19.4,19.7,19.9,19.6,18.5,18.4,18.1,18.5],"paint":[0.7,1.2,1.7,1.3,1.3,1.6,1.5,2,1.4,1.7,1.2,0.3,0.6,1,1.1]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.7]}},{"b":11,"v":{"DEFAULT":[8.7]}},{"b":12,"v":{"DEFAULT":[2.2]}},{"b":13,"v":{"DEFAULT":[72.1]}},{"b":14,"v":{"DEFAULT":[227.4]}},{"b":15,"v":{"DEFAULT":[59.7]}},{"b":16,"v":{"DEFAULT":[243.7]}}]},
-{"f":185,"b":[{"b":0,"v":{"total":[35.8,35.3,35.5,36.2,35.3,35,35.1,35,35.6,35.5,35.8,36,36.1,35.8,36],"script":[10.8,10.5,10.4,10.7,10.4,10.8,10.4,10.5,10.5,10.7,10.9,11.2,11.2,10.6,10.8],"paint":[24.5,24.2,24.5,24.9,24.3,23.8,24.1,23.9,24.5,24.2,24.4,24.4,24.3,24.6,24.6]}},{"b":1,"v":{"total":[40.1,39.1,37.9,39.1,39.2,40.1,39.8,39.5,39.7,39.3,38.9,39.6,39.4,39.6,39.7],"script":[14.9,14.2,13.9,14.5,14.4,14.7,14.6,14.7,14.6,14.4,14.2,14.7,14.5,14.3,14.6],"paint":[24.5,24.4,23.6,24,24.3,24.8,24.6,24.2,24.5,24.3,24.4,24.3,24.3,24.7,24.5]}},{"b":2,"v":{"total":[14.4,14.3,15.1,14.8,16.6,15.5,14.6,14.1,14.3,13.9,13.6,14.9,14.6,14.5,13.7],"script":[2.7,2,3,3.3,2.5,3.4,2.3,2.5,3.1,2.8,2.1,3.5,3,2.6,2.7],"paint":[9.9,11.6,11.5,10.2,12.6,10.2,10.2,10.4,10.2,9.3,10.3,10,10.4,10.1,9.8]}},{"b":3,"v":{"total":[3.8,5.1,3.9,3.6,3.4,3.5,3.5,3.5,3.4,3.3,3.7,4,3.8,3.2,3.6,3.3,3.6,3.7,3.7,3.7,3.8,4.1,3.5,3.3,3.4],"script":[1.6,1.7,1.5,1.8,1.3,1.2,1.2,1,1.2,1.4,1,1.8,1.4,1,1.2,1,1.2,1.4,0.9,0.9,1.5,1.5,1.2,1.5,1],"paint":[2.1,3.3,2.1,1,2,1.8,1.1,2.3,2.1,1.1,2.6,2,2,2,2.2,2.2,2.3,2.1,2.1,2.3,2.1,1.1,2.1,1,1.8]}},{"b":4,"v":{"total":[11.5,9.8,10.2,10.5,9.9,10.2,9.5,9.8,10.6,10.8,10.3,10.2,10.2,10.9,11.2],"script":[2.8,1.6,1.8,2.1,1.9,1.6,1.9,1.8,1.7,2.3,1.8,1.4,1.9,1.4,2.5],"paint":[7.5,7.2,7.4,6.9,7.4,5.7,6.4,7,8,7.3,7.6,7.4,6.9,7.6,7.5]}},{"b":5,"v":{"total":[11.9,11.6,11.9,11.6,11.7,11.8,12.7,11.5,11.6,12.4,11.8,11.5,11.9,11.6,11.6],"script":[1,1,1.1,1,0.8,1.2,1.8,0.9,1.1,1.2,1,1,1.1,1,1],"paint":[10.3,10.2,10.1,10,9.9,10,10.3,10,9.6,10.4,10.3,10.1,10.1,9.7,10.2]}},{"b":6,"v":{"total":[343.4,345.2,343.4,343.2,346.2,342.8,345.2,341.9,342.6,344.9,345.3,342,342.9,342.2,343.9],"script":[98.9,99.9,100.7,99.4,100.7,99.4,99.6,99.8,99.1,100.8,100.3,98.1,99.1,99.4,98.8],"paint":[238.7,238,236.5,238,239.7,237.3,239.5,236.1,237.2,238,238.9,238,238.1,236.4,238.1]}},{"b":7,"v":{"total":[38.9,39.1,39.4,39.9,39.5,38.1,38.4,38.2,38.7,38.4,39,39.9,38.3,39.2,38.3],"script":[10.4,10.6,10.4,10.8,10.7,10.3,10.4,10.3,10.4,10.3,10.5,10.6,10.2,10.7,10.2],"paint":[27.5,27.6,27.9,28.3,27.9,27.1,27,26.9,27.3,27.2,27.6,28.4,27.2,27.6,27.2]}},{"b":8,"v":{"total":[19.1,19.5,18.3,18.2,19.5,17.4,17.4,20.9,20,18.5,22,21.2,20.9,19.1,17.4],"script":[16.8,17.8,16.2,15.7,17.1,15.9,15.8,19.2,17.6,16,18.5,19.4,18.6,17.6,15.5],"paint":[1.6,1,1.9,1.6,0.9,1.4,0.2,0.4,1.4,1.4,1,0.3,1.2,0.7,1]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[4.4]}},{"b":11,"v":{"DEFAULT":[4.4]}},{"b":12,"v":{"DEFAULT":[2.7]}},{"b":13,"v":{"DEFAULT":[28.1]}},{"b":14,"v":{"DEFAULT":[134.4]}},{"b":15,"v":{"DEFAULT":[39.5]}},{"b":16,"v":{"DEFAULT":[173.2]}}]},
-{"f":186,"b":[{"b":0,"v":{"total":[32,31.7,33.5,31.3,31.5,31.6,31.4,31.7,31.3,31.2,31.7,31.4,30.6,31.2,30.9],"script":[7.5,7.4,7,7,7.2,7.2,7,7.3,7,7.2,7.1,7.1,6.9,7.3,7],"paint":[23.9,23.7,25.9,23.7,23.8,23.8,23.8,23.6,23.7,23.4,24,23.8,23.2,23.4,23.3]}},{"b":1,"v":{"total":[11.8,11.8,11.7,11.6,11.6,11.8,12,12,11.9,11.8,11.9,11.7,11.6,11.7,11.8],"script":[1.1,1.1,1.1,1.1,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.1,1.1,1.1,1.2],"paint":[10.3,10.3,10.2,10.2,10.1,10.2,10.4,10.5,10.3,10.3,10.3,10.2,10.2,10.3,10.3]}},{"b":2,"v":{"total":[12.8,11.9,13.1,13.1,13,12.3,12.2,13.2,12.7,12.2,12.8,13.4,13.5,14,13.4],"script":[1.6,1,2.1,1.2,1,1,1.1,1.2,1.2,1.2,1.1,1,1,1.7,1.7],"paint":[10,9.6,9.1,10.4,10.6,10.3,9.7,11.1,10.6,10.3,10.4,10.5,10.7,10.8,10.4]}},{"b":3,"v":{"total":[3.6,2.8,3.3,2.7,2.8,2.2,3.2,2.7,2.8,2.8,3.3,3,2.9,3,3,2.6,3.7,3.4,3.1,3,2.9,2.9,2.2,2.5,2.4],"script":[0.8,1,1.3,0.9,0.9,0.8,1.4,0.6,0.6,0.9,1.2,1.5,0.9,0.9,1.2,0.9,1.7,0.9,1,0.7,0.8,0.9,0.6,0.2,0.9],"paint":[1,1.6,1.4,1,1,0.3,1.1,1.9,2,1.7,1.8,1.4,0.8,1.3,1,1.2,1.4,1.3,0.6,2,1.9,1.5,0.7,1.1,0.7]}},{"b":4,"v":{"total":[10.8,9.7,9.8,9.2,9.7,9.9,9.5,9.3,9.9,9.5,9.1,9.1,9,9.4,9.8],"script":[1.2,1,1,0.9,0.6,1.5,0.9,1.2,1,1.1,0.6,1.1,1.1,0.6,1],"paint":[8.4,7.7,7.6,7.2,7.3,7.5,7.5,7.2,7.9,6.6,7.2,6.8,7,7.6,7.3]}},{"b":5,"v":{"total":[22.9,22.9,23.7,23,23.4,23.1,22.6,22.9,23.7,22.7,23,22.5,22.5,23.1,22.8],"script":[2,1.9,2.8,2.1,2,1.9,2,2.2,1.8,1.9,2.1,1.9,2.1,2,2.2],"paint":[20,20.3,19.9,19.9,20.7,20.5,19.9,20,20.3,19.8,20,20,19.7,20.1,19.6]}},{"b":6,"v":{"total":[316.1,320.5,321.2,319.6,320.2,320.9,322.7,321.9,321.3,319.6,321.9,321.3,319.4,317.2,317.9],"script":[69.8,71.5,72.1,71.2,70.6,72.6,73.5,72.4,72.4,72,72.3,73.6,71,70.6,71.1],"paint":[240.5,243.1,242.7,242,243.5,242.4,243,243.3,242.7,242,243.5,241.5,242.1,240.8,240.9]}},{"b":7,"v":{"total":[35.8,36,35.7,36.2,36.4,35.5,35.8,35.6,36.1,35.9,35.9,36.3,37.3,36.7,36.6],"script":[7.8,7.9,7.7,7.9,8,7.7,7.8,8.1,7.9,7.7,7.8,7.6,8,7.9,8],"paint":[27.2,27.3,27.1,27.3,27.4,26.9,27.1,26.7,27.3,27.3,27.2,27.8,28.4,28,27.7]}},{"b":8,"v":{"total":[10.4,9.8,10.2,11.1,10.8,10.4,10.2,11.1,9.7,10.2,11,10.7,10.8,12,10.8],"script":[8.4,8.2,8.3,8.6,8.4,8.7,8.8,8.6,7.6,8.4,8.6,9,8.2,9.2,8.7],"paint":[1.7,0.2,0.3,1,1.5,1,0.3,1.4,1.3,0.4,1.1,0.6,1.8,1.7,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[2.4]}},{"b":13,"v":{"DEFAULT":[19.1]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[42]}}]},
-{"f":187,"b":[{"b":0,"v":{"total":[89.7,91.9,84.9,92,91.4,88.7,88.9,93.7,89.1,88.5,89.7,87.8,93.1,89.6,89],"script":[55.5,56.1,51.4,55.1,54.2,52.7,55.5,56,51.7,56.3,55.1,55.7,56.5,54.5,51.1],"paint":[24,24.6,24.3,24.2,24.4,24.3,24.6,24.5,24.8,24.5,24.2,24.7,24.6,24.5,24.3]}},{"b":1,"v":{"total":[95.7,101.6,102.4,99.8,98.7,106.9,104,96.3,96.8,99.4,94.7,100.2,97.7,99.7,103.3],"script":[66,66.2,68.2,66.1,65.9,69.2,67.2,65.3,66.2,66.6,65.2,67.3,66.1,66.5,66.5],"paint":[24.7,25.1,25.1,24.9,25.1,24.9,25,24.7,25.1,24.7,24.7,25.1,24.8,25.1,25.1]}},{"b":2,"v":{"total":[63.1,91.4,93.8,60.9,61.8,93.2,93.7,62.6,93.1,61.4,62.1,89.9,64.2,63.5,92.4],"script":[36.4,33.8,34.3,34,35.3,36.2,33.9,35.4,34.7,33.7,34.9,33.4,35.7,35.7,34.6],"paint":[25.4,26.1,25.4,25.3,24.8,25,26.1,26.3,25,27,25.6,25.5,27.3,25.3,26.4]}},{"b":3,"v":{"total":[34.6,27.6,27,35.4,36.5,40.2,33.5,38.7,32.4,28.3,33,32.2,33.5,37.5,27.6,30.1,34.5,30.4,33.8,34.6,36.4,32.4,39.1,31.5,29.1],"script":[4.8,3.8,4.5,6.3,6.1,6,5.1,6.1,4.4,5.8,5.9,4.7,5.4,5.1,5.5,6.6,4.9,5.2,4.2,5.3,6.5,5.5,5.5,5.7,4.9],"paint":[18.8,18.7,19.8,19.7,19.7,17.8,18.8,19.2,17.6,17,17.7,17.8,19.6,19.8,17.4,17.5,18.8,17.3,18.3,19.9,17.3,19.9,18.8,18.4,17.8]}},{"b":4,"v":{"total":[56.9,57,54.5,56.9,23.8,59,55.6,56.6,57.2,56.3,56.5,57.6,54.7,54.8,57],"script":[6.8,6.5,5.2,6.1,5.8,6.2,6,6,6.2,6.9,6.1,6.7,5.7,5.7,4.8],"paint":[16.7,17.5,17.2,16.4,17.3,17.2,15.9,16.9,15.9,16.8,17.2,16.8,14.6,16.2,17]}},{"b":5,"v":{"total":[29.2,24.4,30.9,27.1,29.1,26.6,29.9,27.1,28.9,25.9,22.1,26.9,27,33.7,30.2],"script":[1.9,1.9,1.5,2,2.1,2.1,2.1,1.5,2.3,1.7,1.9,1.8,1.4,1.7,1.8],"paint":[12.7,12.6,12.7,12.3,12.6,12.4,12.8,12.8,12.8,13.1,12.1,11.4,12.5,12.2,12.5]}},{"b":6,"v":{"total":[689.4,694.7,680.1,682.4,686.7,687,693.9,681.4,680.7,681.7,676.7,696,679.3,678.1,689.4],"script":[414.1,420,407.3,409.8,415,416.1,418.8,413.1,411.6,414,409.1,425.3,410.5,406.6,418.6],"paint":[260.3,260.5,263.2,260,261.1,260.1,260.4,257.9,259.1,259.2,257.9,261.7,259.8,260.9,259.4]}},{"b":7,"v":{"total":[87,88.3,90.4,88.2,87.5,85.7,86.5,87.2,87.4,89.1,89.9,86.7,89.3,89.6,87.7],"script":[50.8,48.3,50.1,50.3,50.6,49.5,50.5,50.7,49.7,49.8,49.7,50.3,49.6,49.2,49.5],"paint":[28.9,28.7,28.7,29.2,29,29.3,29.1,28.9,28.9,29.8,29,29.3,29.2,29.3,29.3]}},{"b":8,"v":{"total":[101.2,71.8,72.7,71.6,69.3,69.9,71.5,66.5,67.6,67.2,68.8,97.8,70.1,100.6,70.2],"script":[67.1,67.7,69,67.9,65.8,65.4,67,63,63.9,63.4,66,66,67.1,66.3,66.9],"paint":[3.1,2.3,2.6,3.4,1.5,2.8,3.4,2.2,2.1,2.7,2.4,1.9,2.6,4.7,2.2]}},{"b":9,"v":{"DEFAULT":[7.7]}},{"b":10,"v":{"DEFAULT":[21.3]}},{"b":11,"v":{"DEFAULT":[24.7]}},{"b":12,"v":{"DEFAULT":[40.6]}},{"b":13,"v":{"DEFAULT":[127.9]}},{"b":14,"v":{"DEFAULT":[2739.7]}},{"b":15,"v":{"DEFAULT":[264.1]}},{"b":16,"v":{"DEFAULT":[2517.7]}}]},
-{"f":188,"b":[{"b":0,"v":{"total":[28.8,28.3,28.5,28.8,28.5,29,28,28.9,28.3,29,27.6,28.3,28.8,28.2,28.3],"script":[3.4,3,3.1,3.5,3.4,3.4,2.9,3,3,3.2,2.9,3,3.4,2.9,3.1],"paint":[25,24.9,25.1,24.9,24.7,25.1,24.8,25.4,24.9,25.3,24.3,24.9,25,25,24.9]}},{"b":1,"v":{"total":[13,12.9,13.3,12.6,13,12.8,12.5,13.5,12.8,13.1,13,13.1,12.8,12.9,13],"script":[2.2,2.1,2.4,2,2,2,2,2.4,2.2,2.5,2.3,2.1,2,2.1,2.2],"paint":[10.4,10.5,10.5,10.2,10.6,10.5,10.2,10.4,10.2,10.2,10.3,10.6,10.4,10.5,10.4]}},{"b":2,"v":{"total":[13.9,14,14.8,13.8,14.3,14.6,14.7,14.3,14.1,13.8,14.1,13.8,14.4,15.2,14.3],"script":[2.9,2.9,3.1,3.1,3,3.3,3.3,3,3.1,3,2.3,3,3,3.9,3.1],"paint":[9.9,10.1,10.6,9.8,10.4,10,9.8,10.2,9.9,9.2,10.3,9.8,9.3,9.8,10]}},{"b":3,"v":{"total":[4.8,5.1,5.2,4.7,4.9,4.6,4.9,5.7,4.9,4.8,4.9,5.2,5.3,4.8,5.5,4.8,5,5,4.8,4.8,4.8,5.4,4.8,4.6,5.4],"script":[2.3,3.1,3.2,2.1,2.8,2.7,3,3.3,3,3.3,2.6,2.8,2.9,2.7,3,2.8,2.7,3.2,2.4,2.9,3.1,3.4,3.1,2.8,3.5],"paint":[2.4,1.4,0.9,2.1,1.4,1,1.1,1.4,1.1,0.9,1.3,1.5,1.3,1.9,2.3,1.9,2.1,1.6,1.9,1.7,1.5,1.5,1.6,1.5,1.7]}},{"b":4,"v":{"total":[11.7,11,11.7,11.4,11.8,12.7,12.2,12,11.6,11.6,11.6,11.6,11,11.2,10.5],"script":[2.3,2.9,2.7,2.8,3,3.5,3.9,2.7,3.1,2.5,2.8,3.2,2.5,2.5,2.3],"paint":[7.9,6.9,7.4,7.1,7.3,7.9,7,8.3,7.2,8.1,7.3,7.1,7.5,7.8,6.9]}},{"b":5,"v":{"total":[24.7,24.7,24.3,24.7,24.8,24.3,24.7,24.4,23.9,25.6,24.4,24.7,25,24.5,24.9],"script":[3.6,3.9,3.7,3.7,3.7,3.5,3.7,3.6,3.6,3.7,3.6,3.4,3.7,3.5,3.6],"paint":[20.5,20.1,20,20.4,20.4,19.9,20.1,19.4,19.7,21.2,20.1,20.5,20.5,20.3,20.3]}},{"b":6,"v":{"total":[300.3,297.3,295.2,298,297.3,297.9,294.8,298.4,294.9,297.8,297.9,296.6,297,297.6,296.9],"script":[37.2,37.6,36.5,36.8,37.4,37.1,36.2,37.8,37.4,37.9,37.6,36.1,37.2,37.8,39],"paint":[256.4,252.9,251.9,254.5,253.3,254.1,251.9,253.8,250.7,253.1,253.6,253.8,253.1,252.7,251.2]}},{"b":7,"v":{"total":[33,33.2,32.7,33.4,33.5,32.7,32.9,33.1,34,34.3,33.6,33,32.5,33.4,33.1],"script":[4,3.8,3.7,3.9,4,3.8,4.1,3.8,3.7,4.1,4,3.8,3.8,4.1,3.7],"paint":[28.2,28.7,28.2,28.7,28.7,28.1,28.1,28.5,29.6,29.4,28.9,28.4,28,28.5,28.6]}},{"b":8,"v":{"total":[10.2,9.8,10.5,9.3,9.9,11.1,9.6,9.4,9.7,10.2,10.5,9.2,10.6,10.1,10],"script":[8.1,8,8.7,7.5,8,9.1,7.7,7.6,7.9,7.8,8.6,7.6,8.4,8.2,7.8],"paint":[0.6,1,1.1,0.9,1.1,0.8,1.5,0.9,0.7,1.3,0.6,0.6,2,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.1]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[21.3]}},{"b":14,"v":{"DEFAULT":[32.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[71.1]}}]},
-{"f":189,"b":[{"b":0,"v":{"total":[31.5,31.5,31.5,31.4,31.6,31.7,32.7,32.2,32,31.2,31.9,31.6,31.4,31.8,31.9],"script":[7.5,7.6,7.6,7.5,7.7,7.7,8.3,8,7.5,7.6,7.9,7.7,7.7,7.6,7.6],"paint":[23.4,23.4,23.4,23.3,23.4,23.4,23.9,23.7,24,23.1,23.4,23.4,23.2,23.7,23.8]}},{"b":1,"v":{"total":[11.9,12.4,12.8,12.6,12.1,11.8,12.9,12.8,12.8,11.9,12.9,12.7,11.8,13,12.7],"script":[2,2.2,2.2,2.1,1.9,1.8,2.2,2.2,2.2,1.8,2.1,2.2,1.8,2.2,2.2],"paint":[9.6,9.8,10.3,10.1,9.8,9.6,10.3,10.2,10.2,9.7,10.4,10.2,9.6,10.5,10.2]}},{"b":2,"v":{"total":[18.8,17.2,17,15.9,17.9,16.1,16.6,16.2,17.4,16.3,16.4,16.7,16.5,18.3,16.8],"script":[5.6,5.2,4.9,4.1,5.2,4.6,5,4.7,4.9,4.4,4.3,5.1,4.6,5.5,5.1],"paint":[11.9,10.4,10.7,10.9,10.7,10.4,8.9,10.3,11.5,10.9,11,9.3,10.7,11.6,9.7]}},{"b":3,"v":{"total":[6.8,7.9,7.9,8.7,7.2,8.8,7.2,7.7,8.7,7.5,7.4,7.3,7.9,8.3,8.3,6.8,8.1,7.3,6.3,9.8,7.9,8,8.5,7.6,9.2],"script":[4.9,5.8,5.4,5.7,4.9,5.7,4.7,5.8,6,4.7,4.8,5.1,5.2,5.6,6.1,4.7,5.1,5,4.2,6.5,5.6,5.4,5.6,4.7,6.7],"paint":[1.2,1.1,0.9,1.1,2.1,1.4,1.4,1,1.7,1.5,2.5,1.1,1.2,1.8,1.5,1.1,1.6,1.5,1.9,2,0.8,1.2,1.8,1.7,0.8]}},{"b":4,"v":{"total":[14,15.7,15.5,14.3,16.2,13.6,13.7,15.3,15.2,15.3,13,15,14.8,14.6,13.6],"script":[4.6,5.8,6.1,5.1,5.8,4.9,4.9,5.7,5.4,5.9,4.5,5.5,5.7,5.7,4.9],"paint":[8.2,7.4,7.9,6.8,8.3,7.3,8,6.8,8.1,7.6,7.7,7.3,7.1,7.2,7]}},{"b":5,"v":{"total":[24.4,24.3,24.1,23.8,24.4,24.4,24.5,23.7,24.2,24.7,23.9,26.1,26.1,26.8,25.6],"script":[3.7,3.2,3.6,3.3,3.4,3.8,3.6,3.2,4,3.8,3.5,3.4,3.9,3.6,3.5],"paint":[20,20.4,19.9,19.8,20.1,19.8,20.2,19.8,19.2,20.1,19.6,21.8,21.6,22.3,21]}},{"b":6,"v":{"total":[337.2,332.2,332.6,333.8,332.4,333,333.1,335,335.1,334.1,335.6,334.5,334.3,334.5,334],"script":[87.5,87.7,87.4,87.1,87.5,87.9,87.2,87.7,88.2,86.9,87.3,87.1,87.7,88.1,86.9],"paint":[243,237.6,238.4,239.8,238.2,238.1,239.3,240.7,240,239.2,241,240.4,240.2,238.9,239.4]}},{"b":7,"v":{"total":[37.9,37.1,37.4,37.3,37.7,37.1,39.2,37.5,37.6,37.9,37.2,38,37.1,38.8,38.1],"script":[9.3,9.2,9.4,9.4,9.2,9.2,9.4,9.4,9.4,9.5,9.2,9.5,9.1,9.5,9.3],"paint":[27.7,26.9,27.1,27,27.6,26.9,28.8,27.1,27.3,27.5,27.1,27.6,27.1,28.3,27.9]}},{"b":8,"v":{"total":[18.7,17.5,16,15.9,19,15.8,15.7,16.8,16.6,15.8,17,16.1,16.7,16.7,17.8],"script":[16,15.6,14.3,14.1,17.6,13.2,13.4,15.3,14.8,14,15.9,14.2,14.3,14.8,16],"paint":[1.7,1.1,0.2,0.3,0.3,1.3,2.1,0.7,1.6,0.8,0.9,0.9,1.2,0.3,1.2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[30.8]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.4]}},{"b":16,"v":{"DEFAULT":[51.1]}}]},
-{"f":190,"b":[{"b":0,"v":{"total":[29.7,27.5,29.3,29,26.8,28.9,28.1,27,27,27.1,27.2,29.6,27.1,27.4,27.2],"script":[5.2,4.5,5.1,5,4.5,4.9,4.5,4.6,4.5,4.6,4.6,4.9,4.5,4.6,4.6],"paint":[23.9,22.6,23.6,23.7,22,23.6,23.2,22.1,22.1,22.2,22.1,24.2,22.2,22.5,22.3]}},{"b":1,"v":{"total":[11.7,12.2,11.8,11.7,12,12,12,11.9,12,11.7,11.8,11.7,11.8,12,11.7],"script":[1.8,1.8,1.8,1.7,1.8,1.8,1.9,1.8,1.9,1.8,1.7,1.7,1.7,1.8,1.7],"paint":[9.7,10.1,9.7,9.6,9.8,9.8,9.8,9.7,9.7,9.6,9.7,9.7,9.7,9.8,9.6]}},{"b":2,"v":{"total":[12.6,13,12.2,13.6,13.1,12.6,13.1,12.5,15.1,12.5,13,13.1,12.8,12.5,12.6],"script":[1.7,1.6,1.6,2.5,1.8,1.5,1.4,1.5,1.7,1.7,1.6,1.7,1.6,1.7,1.4],"paint":[9.8,9.9,10.2,9.9,10.2,10.1,10.6,9.9,12.1,10.2,10.1,10.8,9.4,9.5,9.9]}},{"b":3,"v":{"total":[5.4,2.4,2.7,3,2.6,2.6,2.4,2.8,2.4,2.7,2.7,3,3.1,2.5,2.5,2.7,2.8,3.3,2,2.5,2.6,2.7,2.4,3,2.9],"script":[1.1,0.6,0.9,0.2,0.2,0.2,0.8,1.3,0.7,0.8,0.9,0.6,0.8,0.2,0.5,0.9,0.2,0.8,0.2,1,0.6,0.6,1,1.1,0.5],"paint":[1.2,1,1.1,2.7,2.3,2,0.7,1.3,1.5,1.1,1.2,1.5,2.2,2.2,1.9,1,2.1,0.9,1.5,1,0.7,1.4,1.4,0.9,1.5]}},{"b":4,"v":{"total":[10.3,8.8,10,9.2,8.7,9,9.2,10,10.3,10.2,9.4,9.2,9.8,8.8,9.5],"script":[0.8,0.7,0.6,0.6,0.2,0.8,0.2,0.6,1.2,1.4,0.2,0.3,1,1,0.8],"paint":[8.1,7.5,8.2,7.2,7.1,7.2,8.1,7,8.1,7.8,7.4,7.8,7.5,7.1,6.9]}},{"b":5,"v":{"total":[24.8,24,23.2,23.3,23.7,23.3,23.5,23.8,23.1,23.6,23.1,23.1,23.7,23.5,23.5],"script":[3.5,3.3,3.1,3.1,3.1,3.3,3.5,3.3,3,3.3,3.1,3.1,3.3,3.2,3.5],"paint":[20.6,19.8,19,19.6,20.1,19.3,19.3,19.8,19.4,19.3,19.1,19.3,19.7,19.5,19.2]}},{"b":6,"v":{"total":[284.7,286.4,284.6,286,284.8,283.9,283.9,285.7,286,286.5,285.4,286.1,281.8,286.7,284.9],"script":[45.3,44.6,45.3,44.8,43.3,43.5,43.9,46,44.7,46.2,45.6,45.6,43.3,46.1,44.3],"paint":[234,236.1,233.8,235.5,235.6,234.9,234.3,233.6,235.4,234.7,234.1,234.6,233,235.1,234.7]}},{"b":7,"v":{"total":[31.7,32,33,32.4,32.8,32.1,34,31.8,32.7,32,31.9,32.5,32.4,31.7,32.4],"script":[4.8,4.7,4.8,4.7,4.8,4.8,4.8,4.7,4.7,4.6,4.8,4.6,4.7,4.5,4.9],"paint":[26.2,26.6,27.5,26.9,27.3,26.6,28.5,26.4,27.2,26.6,26.3,27.2,26.9,26.4,26.7]}},{"b":8,"v":{"total":[13,12.2,12.7,11.7,13.3,12.5,11.9,12.6,12.3,12.6,15.5,13.8,11.9,12.3,11.8],"script":[10.9,10.6,10.7,10.1,11,10.8,9.5,10.1,9.7,10.8,12.6,11.6,10.3,10.1,10.1],"paint":[0.8,0.4,1,0.6,1.4,1,1.7,1.2,1.8,1.6,1.1,1.7,1,1.6,1.3]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.5]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[25.7]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[18.8]}},{"b":16,"v":{"DEFAULT":[95.9]}}]},
-{"f":191,"b":[{"b":0,"v":{"total":[30.5,28.8,28.5,30.7,28.6,29,29.1,28.7,30.7,31,31,31,29,28.6,28.7],"script":[4.9,4.6,4.6,5,4.6,4.7,4.7,4.7,5.2,5.2,5.1,5.3,4.6,4.7,4.7],"paint":[25.1,23.8,23.6,25,23.6,23.9,24,23.6,24.9,25.2,25.3,25.2,23.9,23.6,23.7]}},{"b":1,"v":{"total":[15.3,16.2,16.1,15,15.9,16.9,15,15.6,16.8,14.7,16.8,14.2,15.9,15.4,19.5],"script":[1.5,1.3,1.4,1.3,1.5,1.3,1.5,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.6],"paint":[9.9,9.9,10.2,9.9,10,10,10.2,10,10,10.2,9.8,10,10.3,9.8,10.9]}},{"b":2,"v":{"total":[24.1,23,23.1,23.8,12.8,22.6,23,22.9,23.6,12.6,23.4,23.3,22.8,23.5,12.5],"script":[1.9,0.9,0.2,0.7,1.1,1,0.7,1.2,0.6,1.4,1,0.7,0.2,1.2,0.3],"paint":[11.1,9.9,10.1,10.1,10.5,10.1,11.2,11,11.1,11.1,10.4,11.5,10.2,11,10.8]}},{"b":3,"v":{"total":[4.8,2.5,5.7,2.3,7.4,8,2.4,4.3,4,2.3,3.4,6.7,2.8,4.3,4.6,4.3,7,2.2,2,2.7,5.9,5.6,4,2.3,2.4],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.8,0.2,0.1,1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0.8,0.7,0.1,0.1,0.5],"paint":[1.1,1.2,1.6,1,1.3,1.9,1.9,1,1,0.9,1.7,1,1.7,1.1,1.2,1.2,2,1,1.8,0.9,1.7,1.6,1.8,1.4,1.3]}},{"b":4,"v":{"total":[20.6,8.7,20.3,21.5,19.7,19.9,21.5,19.9,9.3,19.6,8.9,18.8,19.6,9,19.5],"script":[0.1,0.2,0.1,0.3,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[8.9,7.4,8,9.1,8,8.4,8.7,8.3,7.7,8.7,8,7.4,7.8,7.7,8.4]}},{"b":5,"v":{"total":[10.8,10.9,11.1,11.1,11,10.7,10.7,10.7,10.9,11.5,11.1,11,11,11.1,10.7],"script":[0.4,0.4,0.2,0.1,0.4,0.3,0.3,0.1,0.2,0.3,0.2,0.3,0.3,0.2,0.2],"paint":[9.8,10.2,10.1,10.4,10.2,10,9.8,10.1,10.2,10.5,10.1,10.2,9.9,10.3,9.9]}},{"b":6,"v":{"total":[311.7,309.2,311.7,311.2,308.9,309.4,309.4,308.2,310.6,308.7,309.7,311.1,308.2,310.9,309.6],"script":[58.4,56.9,58.1,58,58.1,57.6,57.5,57,57.7,57.3,58,58.1,56.7,58,58.3],"paint":[246.9,245.7,246.7,245.6,244.1,245.3,244.7,244.8,246.2,244.8,244.9,245.7,244.6,246.6,244.3]}},{"b":7,"v":{"total":[33.9,32.5,34.4,33,32.9,33.1,33.5,33.9,32.8,34.8,33.8,33.8,33.2,32.7,34.5],"script":[4.8,4.4,4.6,4.5,4.8,4.9,4.7,4.8,4.8,5.5,4.8,4.9,4.7,4.6,5.2],"paint":[28.3,27.3,28.9,27.7,27.3,27.3,28,28.2,27.3,28.3,28.2,28.1,27.7,27.3,28.4]}},{"b":8,"v":{"total":[9.8,10.1,10.4,9.6,10.7,10,9.6,10.8,9.8,9.6,10.5,10.5,11.1,10.2,9.9],"script":[7.7,8.9,8,8.1,8.1,8,7.6,8.2,7.4,8.1,8.6,8.5,8.9,8.5,8],"paint":[1.4,0.4,1.8,1.3,0.9,0.9,1.2,1.7,1.3,0.9,0.3,1,0.9,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[4.2]}},{"b":11,"v":{"DEFAULT":[4.3]}},{"b":12,"v":{"DEFAULT":[1.4]}},{"b":13,"v":{"DEFAULT":[30.3]}},{"b":14,"v":{"DEFAULT":[258.1]}},{"b":15,"v":{"DEFAULT":[50.8]}},{"b":16,"v":{"DEFAULT":[245.7]}}]},
-{"f":192,"b":[{"b":0,"v":{"total":[39.1,39.3,39.5,40,40.1,38.8,39.2,39.7,40.4,39.9,40.2,40.2,39.7,39.1,39.9],"script":[15.1,15,15.1,15.7,15.7,14.6,14.8,15.2,15.9,15.8,15.5,15.7,15.1,14.9,15],"paint":[23.6,23.9,24,23.9,24,23.8,24,24.1,24,23.7,24.3,24.1,24.2,23.8,24.4]}},{"b":1,"v":{"total":[22.6,22.7,22.3,23.3,23,22.5,22.5,22.7,22.5,23.4,22.6,22.5,23.4,23.3,23.4],"script":[12,12.4,11.9,13,12.3,12.1,12.1,12.4,12.2,13,12.3,12.2,12.5,13,12.9],"paint":[10.1,10,10.1,9.9,10.3,10,10,10,9.9,10.1,9.9,9.9,10.6,9.9,10.1]}},{"b":2,"v":{"total":[54.3,52.2,53.7,53.9,52.5,54.2,53.8,53.8,53.5,51.6,55.3,52.5,55.9,54.2,57],"script":[41.1,40.6,41.1,40.8,40.9,41.8,40.8,41.2,40.9,39.8,41.5,40.5,42.7,41.3,44.9],"paint":[11.3,10.5,11.7,11.8,10.7,11.5,11.3,11.6,11.2,10.5,11.7,10.3,11.6,11.2,10.8]}},{"b":3,"v":{"total":[42,42.2,42.6,43.8,42.4,46,41.8,43.4,42.5,48,47.3,43.5,41.8,42.5,42.6,42.1,42.1,44.6,42.8,43,41.6,47.7,42.3,43.8,42.5],"script":[38.6,38.9,39.6,40.2,39.9,42.4,39.3,40.6,39.8,44.6,44.8,40.5,39.4,38.8,40.1,39.4,39.4,41.1,39.6,40,38,44.8,39.9,39.6,40.1],"paint":[1.4,2.6,2.8,2.4,1.4,2.8,1.6,1.9,2.1,2.4,1.6,2.2,2.1,1.9,1.5,1.9,2.4,1.9,2,1.6,2.4,2,2.2,2.8,1.3]}},{"b":4,"v":{"total":[48.9,49.2,48.3,49.8,47.8,47.9,50.6,48.3,47.6,48.9,48.5,47.8,49.5,49.2,50.5],"script":[39.4,39.8,39.6,39.9,38.8,39,41,39.5,38.8,39.3,39.3,38.9,39.8,39.8,41.2],"paint":[8.3,8.2,7.4,8.1,7,7.3,8,7.2,7.8,8.6,7.4,7.7,8.1,7.8,7.5]}},{"b":5,"v":{"total":[43.2,43.7,43.4,44.6,42.9,44.7,43.9,43,42.8,42.7,43.2,43.9,42.8,43.4,42.8],"script":[22,22.1,21.7,23,21.9,22.7,22.6,22,21.8,21.9,22,22.2,21.8,22.4,21.8],"paint":[20.3,20.6,21,20.2,20,21.2,20.5,20.3,20,20,20.4,20.3,20.3,20.3,20.3]}},{"b":6,"v":{"total":[412.3,414.3,411.3,412.7,411,411.9,411.5,411.9,414.5,416.6,414.4,411.1,415.6,412.5,411.7],"script":[170.5,172.8,169.1,171.7,169.9,170.4,169.7,170.1,172.5,171.1,171.5,169.1,173,172.9,170.2],"paint":[235.8,235.5,236.2,235.1,235,235.4,235.7,235.7,236.1,239.5,236.8,236.1,236.5,233.7,235.6]}},{"b":7,"v":{"total":[56.8,57.4,57.1,56.4,57.4,57.4,57.5,56.9,57.6,58.1,57.1,57.2,57.4,57.2,57.7],"script":[29,29,29.1,28.7,29,29.2,29.2,29,29.5,29.9,29.1,29.2,29.3,28.9,29.3],"paint":[27.1,27.6,27.2,26.9,27.5,27.4,27.6,27.1,27.2,27.3,27.1,27.3,27.3,27.5,27.6]}},{"b":8,"v":{"total":[23.6,21.2,21.1,24.8,22.7,25,21.6,23.6,23.4,22.4,24.1,22.6,22.2,22,21.6],"script":[22.2,20.3,19.5,22.8,20.9,23.5,19.6,21.8,22.5,20.8,23.2,20.7,20.8,20.8,19.6],"paint":[1.3,0.4,1.2,1.9,1,0.5,1.5,1,0.2,0.7,0.3,0.9,1,0.8,0.7]}},{"b":9,"v":{"DEFAULT":[1.9]}},{"b":10,"v":{"DEFAULT":[11]}},{"b":11,"v":{"DEFAULT":[19]}},{"b":12,"v":{"DEFAULT":[10.2]}},{"b":13,"v":{"DEFAULT":[93.1]}},{"b":14,"v":{"DEFAULT":[436.8]}},{"b":15,"v":{"DEFAULT":[128]}},{"b":16,"v":{"DEFAULT":[575.4]}}]},
-{"f":193,"b":[{"b":0,"v":{"total":[29.6,28.8,29.6,29.7,29.2,29.4,28.9,29.8,29.2,29.8,29.3,28.8,29.9,29.7,29.3],"script":[4.4,4.3,4.8,4.6,4.4,4.6,4.4,4.5,4.3,4.5,4.4,4.4,4.4,4.5,4.5],"paint":[24.7,24.2,24.4,24.6,24.4,24.3,24.2,24.9,24.5,24.9,24.5,24,25.1,24.8,24.4]}},{"b":1,"v":{"total":[14.4,14.1,13.9,13.7,13.7,14.1,13.7,13.8,13.8,14,14.2,13.8,13.5,14.2,14.3],"script":[3.5,3.5,3.5,3.4,3.5,3.6,3.4,3.5,3.4,3.5,3.5,3.5,3.4,3.5,3.5],"paint":[10.5,10.2,10.1,9.9,9.9,10.1,10,10,10,10.1,10.3,10,9.8,10.3,10.4]}},{"b":2,"v":{"total":[24.6,23,24.2,23.5,23.6,23.2,23.3,26.9,24.1,25.1,23.9,25,23.3,24.6,24.9],"script":[11.8,10.7,11.2,11.5,11.1,10.6,11.1,11.3,11.5,11.3,11.9,12.1,10.5,11,11.2],"paint":[11.5,10.5,11.1,8.2,10.3,9.4,9.6,12.9,10.7,11.7,9.6,11,10,12.2,10]}},{"b":3,"v":{"total":[12.9,15.5,14.8,13.9,14.8,12.6,14.2,14.1,14.4,13.9,13.3,13.7,14.5,14.1,14.5,13.6,14.4,14.3,15.2,14.1,14.3,14.3,13.4,13.6,13],"script":[9.5,12.1,11.9,10.9,11.7,9.9,11.5,11,11.2,10.6,10.9,11.2,11.3,11.2,11.4,11.1,11.5,10.9,11.6,11,10.9,12.2,10.4,10.9,10.5],"paint":[2.1,1.4,1.3,1.1,0.7,1.1,1.4,2.1,2.1,1.1,1.2,2.1,1.1,1.9,1.2,0.8,2,2.1,2.5,2.3,2.4,1.2,1.1,1.2,1.5]}},{"b":4,"v":{"total":[20.9,21.7,21.3,20.5,20.5,20.6,20.3,20.6,20.4,21.1,21.2,20.4,20.2,20.2,20.1],"script":[10.6,10.7,11.8,10.5,10.4,10.7,10.1,11.2,10.4,11.3,11.2,10.8,11.3,10.2,10.3],"paint":[8.2,9.1,7.8,7.3,7.7,7.8,8.6,7.5,7.5,8.2,7.5,8.1,7.5,8.5,7.8]}},{"b":5,"v":{"total":[29.1,27.3,27.9,27.5,27.8,28.3,29.8,27.5,27.9,28.2,27.6,30.3,27.9,27.8,28.4],"script":[7.1,6.3,6.7,6.7,6.7,6.9,7,6.5,6.6,6.7,6.6,7.3,6.4,6.5,6.6],"paint":[20.6,19.2,19.8,19.6,19.8,20.1,21.5,20,20.2,20.1,19.5,21.4,20.6,19.7,20.2]}},{"b":6,"v":{"total":[298.3,300,297.5,295.9,297.6,296.1,296.6,298.5,296.9,295.5,297,294.9,296.9,299,295.2],"script":[50.6,50.3,49.9,50.1,50.8,49.7,50.3,50.9,50.6,49.6,51,49.6,50.6,49.8,49.2],"paint":[241.6,242.2,241,239.5,240.3,240.8,240,241.3,240.6,239.6,239.7,239,240.4,242.2,239.9]}},{"b":7,"v":{"total":[36.1,37.5,35.7,35.8,36,35.8,35.8,36.6,36.2,35.9,38.2,37.8,36.1,35.4,37.7],"script":[7.7,8.5,7.5,7.6,7.8,7.6,7.5,7.8,7.7,7.6,9.1,8.6,7.6,7.5,8.5],"paint":[27.5,28.1,27.3,27.4,27.2,27.3,27.4,27.9,27.7,27.4,28.2,28.3,27.6,27,28.2]}},{"b":8,"v":{"total":[8.6,9.1,9.6,8.8,8.8,9.9,7.4,9.8,10.4,9.6,9.7,8.7,9.1,9.9,9.1],"script":[7.3,6.9,7.9,6.6,7.3,7.5,5.9,7.7,8.1,7.3,7.3,6.8,7.2,7.8,7],"paint":[0.2,1.5,0.7,1,0.6,1.4,0.2,0.7,1.1,0.9,0.9,1.1,0.6,1,0.8]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2]}},{"b":11,"v":{"DEFAULT":[2.2]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[14.3]}},{"b":14,"v":{"DEFAULT":[3.3]}},{"b":15,"v":{"DEFAULT":[1.2]}},{"b":16,"v":{"DEFAULT":[32.8]}}]},
-{"f":194,"b":[{"b":0,"v":{"total":[26.4,26.8,25.8,25.7,27.2,25.8,26,26,26.1,26,26,25.8,25.8,26.3,26],"script":[1.4,1.2,1.2,1.2,1.4,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.4,1.3,1.2],"paint":[24.6,25.2,24.2,24.1,25.4,24.2,24.4,24.4,24.4,24.4,24.3,24.2,24,24.6,24.4]}},{"b":1,"v":{"total":[11.3,11.9,12,12,11.8,11.5,11.4,11.3,11.5,11.9,12.6,11.8,11.6,11.8,11.6],"script":[1,1.2,1.2,1.1,1.1,1,1,1,1.1,1.2,1.4,1.2,1.1,1.1,1.2],"paint":[9.9,10.4,10.5,10.5,10.3,10.1,10,9.9,10,10.4,10.7,10.2,10.1,10.3,10.1]}},{"b":2,"v":{"total":[14.1,12.8,14.5,13,13.4,13.3,13.4,13.1,13.4,12.8,14.3,12.5,12.2,12.3,12.6],"script":[1.3,1.1,1.9,1.1,1.3,1.5,2,1.2,0.9,1.2,1.9,1.5,1.3,1,1.3],"paint":[11.9,10.4,11.4,11.3,10.4,10.6,10.4,10.4,11.8,10,10.7,10.3,9.5,10.7,9.4]}},{"b":3,"v":{"total":[6.1,2.9,3.4,2.6,3.3,3.1,3.1,3.5,3.1,3.5,3.4,3.8,3.4,3.7,3.2,3,3.4,4.1,3.5,3.3,3.5,3.5,3.4,3.2,3.6],"script":[1.1,1.4,0.6,1,1.4,1,1.4,1.6,1.2,1.6,0.7,1.9,1.2,1.5,0.7,1.4,1.7,1.9,1.5,1.7,1.8,0.9,1.3,1.2,1.8],"paint":[1.8,1.3,2,1.4,1.7,1.5,1.3,1.3,1.1,1.2,2.6,1.8,2,2.1,1.3,0.7,1.6,2,1.2,1.5,1.6,2.4,1.4,1.2,1.1]}},{"b":4,"v":{"total":[9,8.8,9.9,9.5,9.6,9.5,8.8,8.3,9.1,9.4,8.9,10.2,8.6,9.4,9.8],"script":[0.4,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.9,0.1,0.8,0.1],"paint":[7.8,7.5,8.1,7.5,8.2,8.1,7.9,7.3,8.1,7.2,7.3,8.1,6.9,6.5,7.3]}},{"b":5,"v":{"total":[21.9,22.7,22.4,22.4,23.9,22.4,22.3,22.7,22.9,22.5,22.5,24.8,22.9,22.3,22.5],"script":[1.8,2,2,1.9,2,1.8,1.9,1.8,1.8,1.9,1.9,2.2,2.1,1.8,1.8],"paint":[19,20,19.7,19.3,20.9,19.6,19.8,20.2,20.3,19.6,20,21.4,20,19.8,19.9]}},{"b":6,"v":{"total":[432.4,430.2,433.3,433,434.3,431.8,431.8,431.8,433.3,430.2,431.5,433.4,433.9,433.8,431.4],"script":[179.8,177.8,180.5,178.6,180.1,178,179.9,178.3,179.9,177.3,179.4,178.6,179.7,179.4,178.1],"paint":[246.3,245.8,246,247.9,247.8,247.3,245.5,247,246.8,246.8,245.7,248.3,247.6,248,247]}},{"b":7,"v":{"total":[50.4,50.4,51.2,49.9,50.4,50,50.1,50.3,50.2,50.9,50.2,49.7,49.3,50.4,51.3],"script":[21.5,21.5,22.4,21.1,21.3,21.3,21.7,21.3,21.8,22.2,21.7,21.2,21.3,22,22.5],"paint":[28.1,28.1,28,28.1,28.2,28,27.7,28.2,27.5,27.9,27.6,27.7,27.2,27.7,28]}},{"b":8,"v":{"total":[9.5,9.6,10.3,10.5,9.7,9.8,10.5,10.5,11.2,10,11.2,10,9.2,10.4,10.6],"script":[8.3,7.7,9,8.7,8.4,8.1,9.1,8.8,9.7,8.6,9.6,8.2,7.5,8.8,8.8],"paint":[0.8,1.8,1.1,1.7,0.4,0.9,1,1.7,1.1,0.9,1.6,1.7,1.6,1.4,1.2]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[4]}},{"b":11,"v":{"DEFAULT":[4.1]}},{"b":12,"v":{"DEFAULT":[4]}},{"b":13,"v":{"DEFAULT":[33.5]}},{"b":14,"v":{"DEFAULT":[14.4]}},{"b":15,"v":{"DEFAULT":[6]}},{"b":16,"v":{"DEFAULT":[50.5]}}]},
-{"f":195,"b":[{"b":0,"v":{"total":[50.7,49.9,50.8,50.6,50.6,50.1,50.1,50.6,50.4,50.1,50.1,50.7,50.4,50.1,50.8],"script":[24.7,24,24.7,24.4,24.3,24.3,24.2,24.1,24.8,24.3,24.1,24.3,24.3,24.2,24.8],"paint":[25.5,25.4,25.6,25.7,25.8,25.3,25.4,25.9,25.1,25.4,25.6,25.9,25.6,25.4,25.5]}},{"b":1,"v":{"total":[15.2,16.9,15.5,15.6,15.8,15.6,15.8,15.4,15.6,16.5,15.9,15.6,15.1,15.5,15.6],"script":[4.4,5,4.5,4.4,4.7,4.5,4.6,4.5,4.6,4.6,4.5,4.4,4.3,4.4,4.2],"paint":[10.4,11.5,10.4,10.7,10.7,10.6,10.7,10.5,10.5,11.4,10.9,10.7,10.4,10.6,10.9]}},{"b":2,"v":{"total":[14.4,15.6,14.6,15.2,15.4,15.1,15,14.8,16,16.7,15.5,14.9,14.8,14,15.1],"script":[1,1.2,0.6,1,1.7,1.1,1.6,1.4,1.7,1.3,1.6,1.8,1.3,1,2.2],"paint":[11.8,12.5,12.7,12.8,12.1,12.2,11.4,11.7,12.1,13.4,11.9,10.4,12,11.3,11.6]}},{"b":3,"v":{"total":[7.8,8.2,7.1,7.4,7.2,7.4,8.2,7.3,8,7.8,7.8,7.4,7.5,7.7,8.4,7.9,7,6.8,7.3,7.5,7.8,8.4,6.6,7.8,7.3],"script":[4.9,5,4.5,5.2,4.5,4.3,4.6,4.7,5.3,5.5,5.2,4.9,5.3,4.6,5.5,5.2,4.3,4,4.8,5.2,4.7,5.2,4.2,4.9,4.5],"paint":[1.6,1.6,1.7,1.1,0.4,2.5,2,1.6,1.9,1.7,1.3,1.3,1.2,1.3,2.8,1.5,1.7,2.1,1,1.1,1.1,1.9,2.1,2.3,1.3]}},{"b":4,"v":{"total":[12.3,10.7,10.5,11.8,11.3,10.6,11.2,10.6,11,10.6,9.8,10.8,10.8,10.1,9.6],"script":[0.9,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10,9.4,8.3,9.6,9.1,8.5,9.7,9.5,8.4,9.4,8.8,8.3,8.7,8.5,7.7]}},{"b":5,"v":{"total":[27.9,29.3,29.6,29.4,28.2,29.8,31.1,29.1,29.3,28.9,28.9,30.2,29.1,29.7,29.1],"script":[5.3,5.5,5.6,5.5,4.9,5.8,5.8,5.6,5.6,5.4,5.5,5.7,5.4,5.5,5.5],"paint":[21.3,22.7,22.9,22.9,22.5,23.1,24.1,22.3,22.5,22.5,22.3,23.3,22.9,23,22.5]}},{"b":6,"v":{"total":[503,502.1,502.9,505.9,504.3,504.4,505.6,499.5,502.7,504.8,507.2,502.4,501.5,501.8,498.7],"script":[225.9,224.2,224.6,227.4,225.2,224.6,225.3,221.7,225.2,224.8,227.9,224.7,223.5,223.7,222.3],"paint":[268.4,269.6,269.7,269.7,270.2,271.2,271.3,268.9,269.4,271.5,270.7,268.8,269.9,269.7,267.9]}},{"b":7,"v":{"total":[58,57.1,58.7,57.3,57.7,57.2,57.7,57.2,58.1,57.7,57.6,58.4,57.9,58.1,59.2],"script":[27.7,26.7,27.9,26.7,27.2,26.6,27.1,26.8,27.4,26.5,27.2,27.6,26.7,27.4,27.7],"paint":[29.3,29.3,29.8,29.6,29.4,29.5,29.4,29.4,29.6,30.2,29.3,29.6,30.1,29.6,30.5]}},{"b":8,"v":{"total":[26.6,25.4,23.6,25.6,23.5,26.3,23.6,23.7,21.5,23.7,27.2,23.2,26.8,24.7,26.1],"script":[24.8,23.6,22.3,23.8,22,24.3,21.8,22.2,19.9,22.3,25.3,20.9,24.8,22.9,23.9],"paint":[1.2,1.6,0.8,0.7,1.4,1.9,1,1.2,1.4,1.2,0.7,1,2,1.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[9.9]}},{"b":11,"v":{"DEFAULT":[9.9]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[90.9]}},{"b":14,"v":{"DEFAULT":[13.2]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[36.3]}}]},
-{"f":196,"b":[{"b":0,"v":{"total":[34.3,34.3,33.3,34,34,34.2,33.4,34.3,33.9,33.8,33.9,34.3,34,33.4,34.4],"script":[9.3,9.4,8.9,9.4,9.4,9.3,8.8,9.2,9,8.8,9.1,9.3,9.1,8.8,9.4],"paint":[24.5,24.3,23.9,24,24,24.4,24.1,24.6,24.4,24.5,24.2,24.4,24.3,24.1,24.5]}},{"b":1,"v":{"total":[13.6,14.1,13.9,13.6,13.6,13.6,13.6,13.7,13.5,13.6,13.7,13.8,13.7,13.8,13.5],"script":[2.9,3.1,2.9,2.9,2.9,2.9,2.9,2.8,2.9,2.8,2.8,3,2.9,3,2.8],"paint":[10.4,10.6,10.7,10.3,10.4,10.3,10.3,10.6,10.3,10.5,10.5,10.4,10.5,10.4,10.3]}},{"b":2,"v":{"total":[14.3,12.7,12.4,12.6,12.7,12.2,13.1,13.1,13.7,11.8,13.3,13.8,14,13.8,12.7],"script":[1.4,1.4,1.2,1.6,1.5,1.5,1.8,1.8,1.6,1.5,2.2,2.6,2.1,2.1,1.5],"paint":[11,10.1,9.1,9.9,9.9,9.7,10.6,10,11,9.2,9.9,10.6,10.7,10.8,10.4]}},{"b":3,"v":{"total":[4.2,3.3,4.8,3.2,3.7,3.4,4,4.7,4.6,4.8,4.1,4.7,4.2,4.2,3,5.5,4.2,4,4.5,4.2,4.4,4.7,4.6,4.1,3.9],"script":[2.1,1.6,2.7,1.7,1.5,1.6,1.9,2.9,2.6,2.6,1.5,2.4,2.2,1.9,1.9,2.9,2.2,2.2,2.1,2,2.6,2.4,2.6,1.9,1.6],"paint":[1,0.7,0.9,1.2,1.2,1.7,1.8,1.5,1.2,1.4,2.4,1.3,1.9,1.7,1,0.8,1.5,1.7,1.4,1.2,1.7,1.8,1.8,0.4,1.2]}},{"b":4,"v":{"total":[10.7,11.2,12.2,10.2,10.4,11.8,10.9,10.6,12.2,10.2,11.5,10.8,10.1,9.9,10.6],"script":[1,1.9,1.8,1.5,1.3,1.9,1.6,1.4,1.9,2,1,2.2,1.6,1,2.5],"paint":[7.7,7.6,9.1,7.5,7.6,7.6,8.3,8.3,9.1,6.7,9.1,7,7,8,7.2]}},{"b":5,"v":{"total":[27.7,27.3,27.9,28,28.5,28.2,27.8,30.3,28.2,29.2,29,27.5,28.5,27.3,27.2],"script":[6,5.8,5.9,5.7,6.8,6.1,5.9,7,6.6,6.7,6.8,5.8,6.1,6.1,6],"paint":[20.6,20.5,20,21.5,20.3,21.1,20.7,22,20.8,21.2,21.3,20.7,21.3,20.2,20.4]}},{"b":6,"v":{"total":[315.1,314.2,318.9,315.5,315.4,313.4,314.6,315.1,313.6,318,314.7,314.9,315.5,314.7,318.7],"script":[62.8,62.5,62.9,62.6,63,61.7,63,62.8,63,63.7,62.8,63.8,62.6,63.2,64.2],"paint":[246.3,245.4,249.4,246.6,246.4,245.6,245.4,246.3,244.7,248.1,245.7,245.1,246.5,245.3,247.5]}},{"b":7,"v":{"total":[33.7,34.2,34.5,34.1,34.2,33.8,34,34,34.2,34.4,35,34.6,34.3,35.4,34.5],"script":[6.1,6.2,6.2,6.3,6.4,6,6.1,6.2,6.2,6.3,6.1,6.3,6.3,6.1,6.2],"paint":[26.7,27.2,27.4,26.9,27,26.9,27,26.8,27.1,27.2,27.9,27.4,27.1,28.3,27.4]}},{"b":8,"v":{"total":[12.9,13.3,13.1,12.4,13,14.7,12.9,13.5,12.6,12.7,13.6,13.2,12.8,13.6,12.4],"script":[10.7,11.4,11.6,10.4,10.5,12.5,11.1,12,10.5,10.9,11.4,10.9,10.7,11.5,10.1],"paint":[1.2,0.3,0.9,1.8,1.2,1.3,0.9,0.7,1.5,1.4,0.6,1.7,1.5,0.9,0.2]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[2.2]}},{"b":13,"v":{"DEFAULT":[16.6]}},{"b":14,"v":{"DEFAULT":[123.3]}},{"b":15,"v":{"DEFAULT":[33]}},{"b":16,"v":{"DEFAULT":[65.6]}}]},
-{"f":197,"b":[{"b":0,"v":{"total":[26.8,26.6,26.7,26.2,26.4,26.8,26.5,26.7,26.3,26.2,26.5,26.2,26.6,26.2,26.9],"script":[2.8,2.9,3,3,2.9,2.8,2.8,2.9,2.9,2.9,2.9,3,3,2.9,2.8],"paint":[23.5,23.3,23.4,22.9,23.2,23.6,23.3,23.5,23,22.9,23.2,22.9,23.2,22.9,23.7]}},{"b":1,"v":{"total":[10.9,11.4,11.1,11.3,11.9,11.5,11.5,11.2,11.7,11.8,11.7,11.6,11,11.6,11.2],"script":[0.9,0.9,1,0.9,1,0.9,0.9,0.9,1,1.1,1,1,0.8,0.9,0.9],"paint":[9.7,10.2,9.8,10.1,10.5,10.2,10.2,9.9,10.3,10.3,10.3,10.2,9.8,10.4,9.9]}},{"b":2,"v":{"total":[12.2,12.7,12.9,12.1,13.1,12.3,12.2,12.8,12.5,13.6,13,12.2,13,12.6,12.8],"script":[1.3,1.8,2.2,1.5,1.6,1.5,1.6,2.1,1.6,1.4,1.8,1.2,1.6,1.4,1.3],"paint":[9.6,9.7,9.7,9.1,10.3,9.6,9.6,9.2,10.2,10.9,9.8,9.8,10.3,10.1,10.5]}},{"b":3,"v":{"total":[3.1,4.9,3.7,3.4,3.9,2.6,2.3,4.3,3.8,3.1,4.3,3.8,3.7,3.3,3.5,2.8,4.4,3.6,3.2,3.1,2.6,3.2,3.3,2.9,3.5],"script":[1.1,1.2,1,1.5,0.6,1,1,0.9,0.6,1,1.3,0.6,1.2,1,2,1.2,1.1,1.8,1.2,1,0.7,0.9,0.6,0.6,1.5],"paint":[0.4,1.5,1.5,1.4,0.8,1.1,0.7,1.5,1.5,1.6,2,1.5,1.5,2.2,1.4,1.5,2.1,1.6,1.2,1.4,1,2,0.7,2,1.3]}},{"b":4,"v":{"total":[10.4,10,10.8,10.8,10.9,11.5,10.9,12.4,10.4,11,12.3,11.8,10.4,10.5,10.7],"script":[1.8,1.3,1.5,1.5,1.7,1,1.6,1.6,1.7,0.7,0.7,1.6,1,1.7,1.1],"paint":[7.5,7.4,7.8,8,8,8.3,6.9,9.7,7.2,9.4,10.6,9.3,8.1,7.7,7.8]}},{"b":5,"v":{"total":[21.7,21.9,22.6,22.2,23,21.9,22,21.9,21.8,21.5,21.8,22.5,21.6,22.2,22.8],"script":[1.7,1.6,1.5,1.9,1.5,1.8,2,1.8,1.6,1.6,2,1.8,1.6,1.7,1.8],"paint":[19.3,19.3,20.3,19.7,20.2,18.8,19.3,19.1,19.3,19.1,19,20,19.3,19.7,19.7]}},{"b":6,"v":{"total":[288.6,290.7,289.7,286.8,289.2,289.7,287.2,287.4,290,287.8,289.5,288.9,287.5,286.9,288.6],"script":[39.3,40.1,39.9,40.3,40.5,40.2,39.8,39.7,39.7,40,39.9,39.9,39.3,39.5,39.5],"paint":[242.8,244.3,243.6,240.4,242.5,243.1,241,241.5,244,240.7,243.5,242,241.7,241.4,242.7]}},{"b":7,"v":{"total":[30.6,31.6,31.6,32.6,31.4,30.6,31.7,30.8,31.2,31.7,31.2,32.5,30.9,30.6,31.2],"script":[3.5,3.8,3.4,3.7,3.7,3.5,3.5,3.5,3.5,3.8,3.5,3.7,3.5,3.4,3.5],"paint":[26.4,27,27.5,28.2,26.9,26.5,27.4,26.6,26.7,27.2,26.9,28.1,26.7,26.5,26.9]}},{"b":8,"v":{"total":[9.2,9.6,10.1,9.8,10,10.3,11.7,8.8,9.5,9.3,10.7,10.2,10,9.8,10],"script":[7.9,7.6,8.5,7.6,7.9,8.1,9,7.5,8,8.1,8.3,8.1,7.8,7.9,8.1],"paint":[0.2,0.2,0.6,1.2,1.8,1.2,1.9,0.5,0.6,0.3,0.9,1.2,0.2,0.2,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3]}},{"b":12,"v":{"DEFAULT":[1.5]}},{"b":13,"v":{"DEFAULT":[21.7]}},{"b":14,"v":{"DEFAULT":[23]}},{"b":15,"v":{"DEFAULT":[8.3]}},{"b":16,"v":{"DEFAULT":[52.9]}}]},
-{"f":198,"b":[{"b":0,"v":{"total":[29,29.3,29.1,29.2,29.3,28.9,29.1,28.9,29,28.8,29,28.6,28.7,29.5,28.7],"script":[5.5,5.3,5.6,5.4,5.3,5.5,5.4,5.3,5.4,5.4,5.3,5.3,5.2,5.4,5.3],"paint":[23,23.4,23,23.3,23.4,22.9,23.2,23.1,23.1,22.9,23.1,22.8,22.9,23.5,22.9]}},{"b":1,"v":{"total":[14,14,14,14.4,13.6,14,14.8,14.5,13.5,13.7,13.9,14.1,13.7,13.9,14.3],"script":[3.5,3.4,3.3,3.5,3.2,3.2,3.7,3.6,3.2,3.2,3.2,3.4,3.3,3.3,3.5],"paint":[10.2,10.2,10.4,10.5,10.1,10.4,10.7,10.5,10,10.1,10.3,10.3,10.1,10.3,10.4]}},{"b":2,"v":{"total":[12.1,10.8,12.2,11.7,11.8,11.7,12.5,11.9,12.1,12.5,11.5,12.3,12.1,10.8,11],"script":[0.6,0.8,0.8,0.9,0.5,0.2,0.1,0.2,0.7,0.8,0.5,0.8,0.6,0.2,0.6],"paint":[10.3,9.6,10.2,9.6,9.9,10.5,10.9,10.1,10.2,10.6,10,10.1,10.5,9.4,9.4]}},{"b":3,"v":{"total":[2.4,2.6,2.2,2.1,1.7,2.6,2.1,2.1,1.7,2.2,2.9,2.4,2.3,1.5,1.9,1.4,2.3,1.8,2.2,2.3,2.2,1.9,2.1,2.1,2.4],"script":[0,0.8,0,0.4,0.1,0.8,0,0,0,0,0.8,0,0.6,0,0,0,0,0.6,0,0,0,0,0,0,0],"paint":[1.1,1.2,1,1.5,1,1.3,1.5,1.2,1.3,2,1.5,1.3,1.2,1.4,1.1,1.3,2.1,1.1,0.8,2.1,2,1.7,1.5,1.4,1]}},{"b":4,"v":{"total":[18.6,18.5,19.8,18.5,19.4,19.3,18.3,19.1,18.4,19,18.7,17.9,18.7,19.2,19.3],"script":[8.1,8.9,8.5,8.5,8.7,8.7,8.2,7.9,7.6,7.7,8.4,7.7,8.6,8.7,7.6],"paint":[7.9,6.9,9.4,8.4,9.5,8.5,7.7,9.4,9,9.4,7.8,8.6,8.3,8.8,10]}},{"b":5,"v":{"total":[28.1,27.9,29.4,29.4,28.6,29.2,28.4,29.4,28.6,28.5,28,28.2,29.3,28.8,28.6],"script":[6.5,6.3,6.9,6.7,6.4,7.1,6.6,6.3,6.2,6.7,6.6,6.3,7.2,6.7,6.5],"paint":[20.6,20.4,21.3,21.5,20.8,20.7,20.6,21.9,20.9,20.8,20.3,21,20.9,20.7,20.9]}},{"b":6,"v":{"total":[306.6,308.3,305.9,308.9,307,309,306.5,305.3,308.3,306.3,304.5,306.5,306.4,306.4,306],"script":[64.7,64.4,64.6,65,64.9,64.9,63.9,65.3,64.2,65.6,64,63.8,64.5,64.2,64.1],"paint":[235.2,236.8,235,236.6,235.7,236.8,236.6,233.9,237.3,234.5,234.2,235.9,236,235.5,235.2]}},{"b":7,"v":{"total":[37,36.9,37.2,38.1,37.6,38,37.6,36.6,37.5,36.9,39.1,38.2,36.7,37.1,37],"script":[8.3,8.3,8.1,8.2,8.6,8,8.5,8,8.5,8.1,8.6,8.1,7.8,8,8.4],"paint":[27.8,27.7,28.1,29,28.2,29,28.2,27.7,28.1,27.8,29.6,29.1,28,28.2,27.7]}},{"b":8,"v":{"total":[11.2,10.1,9.7,10.3,9.9,10.8,11.7,10,10.6,10,11.1,10.3,10,9.8,10],"script":[9.1,8.7,7.9,8.2,7.6,8.7,8.5,7.8,7.9,8.1,9.2,8.1,8.3,8,7.7],"paint":[1.2,0.2,1,0.6,2.1,1,3,1.5,1.7,1.7,1.1,1.3,1.2,0.4,1.2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.5]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[68.5]}}]},
-{"f":199,"b":[{"b":0,"v":{"total":[27.6,27.3,27.9,28,27.7,28.1,27.4,27.5,27.4,27.3,27.3,27.4,27.7,27.7,27.3],"script":[3.2,3.1,3.1,3.2,3,3.5,3.2,3.2,3.2,3.1,3.2,3.2,3.3,3.2,3.1],"paint":[24,23.9,24.4,24.4,24.2,24.2,23.9,23.9,23.9,23.8,23.8,23.8,24,24.1,23.8]}},{"b":1,"v":{"total":[11.7,11.6,11.7,11.5,12.2,11.6,11.7,11.7,11.6,12,11.6,11.6,11.7,11.7,11.7],"script":[1.1,1.1,1.1,1,1.2,1,1.2,1.1,1.1,1.1,1.1,1.1,1,1.2,1],"paint":[10.3,10.1,10.3,10.1,10.7,10.2,10.2,10.3,10.2,10.6,10.1,10.2,10.3,10.1,10.3]}},{"b":2,"v":{"total":[13.3,12.5,12.3,13,12.3,13.2,13.6,13.5,13.1,13.6,12.8,12.9,12.9,12.6,14.2],"script":[1.2,1.2,1.1,1.8,1,1.4,1.4,1,1.2,1.2,1.1,1.9,1.3,1.2,1.8],"paint":[11.1,10.6,9.5,10.1,9.8,10.7,10.3,11.2,10.3,11.3,10.3,9.6,10.2,10.4,11]}},{"b":3,"v":{"total":[3.3,3.9,3.5,3.2,3.9,3.1,3.3,3.3,3.1,4.5,4.4,2.8,3.5,3.9,2.7,5.1,3.9,3.4,2.9,3.3,3.8,3.3,2.9,5.1,3.6],"script":[0.9,1.9,1.1,0.9,1.5,0.6,0.6,1.2,1.4,2.6,1.8,1.3,1.5,1.7,1.2,2.8,1.7,1,1,1,1.9,0.6,1.2,2.9,1.4],"paint":[1.3,1.8,1.6,0.8,1.5,2.1,2.1,1.6,1.5,1.8,2.4,0.7,1.2,1.1,0.7,1.3,1.4,1.6,1,1,1.2,2.4,0.7,2.1,1.3]}},{"b":4,"v":{"total":[10.7,9.5,12.6,10.6,9.6,11.1,9.5,10.1,10,10.1,9.8,10.9,12.2,9.7,11.5],"script":[1.3,0.9,1.8,1.3,1,2.5,1.8,1.4,1.2,1,0.9,2.5,2.5,1.7,1.7],"paint":[8.1,7.5,9.1,8.5,7.8,7.6,6.4,7.4,7.6,8,7.2,7.4,7.7,7.7,8.5]}},{"b":5,"v":{"total":[22.4,21.9,21.8,23.1,22.4,21.9,22.1,22.4,23.6,22.5,22.4,21.8,22.5,22.7,23],"script":[1.8,1.7,1.7,1.4,1.8,1.5,1.5,1.8,1.8,1.8,1.7,1.7,1.8,1.7,1.6],"paint":[19.9,19.3,18.8,21,19.9,19.8,19.7,19.6,21,19.9,19.8,19.3,20,20,20.7]}},{"b":6,"v":{"total":[290.8,292.1,290.6,289.7,289,287.9,288.7,290.5,288,293.9,290,289.6,288.4,291.2,289.6],"script":[42.8,43.1,42.9,42.7,42.6,42.8,42.6,43,41.5,43.3,43,42.9,43.5,43.1,42.5],"paint":[241,242,241.2,241,240.1,239.1,240,241.1,239.9,244,240.7,240.5,238.4,241.1,240.1]}},{"b":7,"v":{"total":[32.1,32.3,32.4,32.8,33.4,32.3,32.5,32,32.2,32.2,33.1,33.5,32.4,32.3,31.9],"script":[3.5,3.4,3.6,3.4,3.6,3.4,3.3,3.4,3.5,3.4,3.5,3.5,3.5,3.5,3.4],"paint":[27.8,28.1,28,28.6,29,28.1,28.4,27.9,28,28,28.8,29.2,28,28,27.8]}},{"b":8,"v":{"total":[10.2,10.2,9.7,11.5,9.7,10.4,9.7,9.9,9.8,9.8,10.7,9.4,9.8,10.6,9.8],"script":[8.2,7.9,8.5,9.4,8.2,8.4,8.5,8.2,7.7,7.8,8.9,7.3,8.2,8.8,7.7],"paint":[1.1,1.7,0.4,0.8,0.6,0.7,0.3,0.2,1.1,0.6,0.7,1.2,0.7,0.7,1.2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.2]}},{"b":11,"v":{"DEFAULT":[2.2]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[15.5]}},{"b":14,"v":{"DEFAULT":[9.6]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[47.3]}}]},
-{"f":200,"b":[{"b":0,"v":{"total":[30.9,34.4,32.1,33.1,35.7,32.5,33.3,32.9,37.7,32.1,34.6,37.1,32,32.3,33.8],"script":[4.5,5.4,4.8,5,5.2,4.9,5.4,5,5,5.1,5.1,5.1,5.3,5,5.1],"paint":[22.9,24.6,24.5,24.7,24.1,24.4,24.5,24.4,23.9,24.3,24.4,24.2,24.6,24.5,24.2]}},{"b":1,"v":{"total":[16.7,13,12.3,12.2,14.8,14.8,11.9,14.7,12.4,13,12.5,13.3,13.5,12.5,12],"script":[1.5,1.5,1.6,1.6,1.6,1.5,1.5,1.5,1.8,1.6,1.6,1.6,1.7,1.6,1.7],"paint":[9.9,10,10.2,10.4,10.1,10.1,10,10.1,10.5,10.5,10.1,10.2,10.4,10.2,10.2]}},{"b":2,"v":{"total":[13.9,13.5,14.1,29.1,15.6,13.4,13.6,13.2,30.3,14,12.9,14.1,13.8,30.4,15.5],"script":[1.6,1.8,2.3,2.2,2.7,2.3,1.9,2,2.5,1.9,2.3,1.7,2.1,2.3,1.9],"paint":[11.4,9.7,11.2,10.9,11.9,10.4,11.6,11,11.2,11.1,9.9,10.4,10.7,12.1,12.1]}},{"b":3,"v":{"total":[5.3,4.9,4.7,5.8,5.3,5.6,5.8,5.6,5,5.5,5.1,4.5,5.2,7.6,6,5.3,6.9,6,4.3,5,5.4,4.5,5.6,5.1,6.1],"script":[2.2,2.5,2.7,3.6,2.4,3.3,3.3,3.1,2.9,3.4,3.2,2.7,3.1,2.6,4,3.1,2.4,3.7,2,2,3,2.3,3.2,2.6,3.9],"paint":[3,2.3,1.1,0.9,1.5,2.2,2.3,1.1,1.3,1.9,1.1,0.9,2,1.5,1.4,2,2,1.1,1.1,2.4,2,2,2.3,1.8,1.3]}},{"b":4,"v":{"total":[10.8,11.4,13,28.3,27.9,13,11.5,11.8,12.3,27.9,28.9,11.3,11,28.9,11.4],"script":[2.4,2.7,3.6,3.2,3.2,4.9,2.9,3.1,2.8,2.7,3.4,2.5,3.1,3.4,3.2],"paint":[7.4,8.5,9.2,8.6,8.7,7.6,7.3,7,8.2,8.2,9.4,8.7,7.4,8.9,6.8]}},{"b":5,"v":{"total":[29.1,24.8,26.2,23.5,22.6,22.5,24.1,22.6,24.6,27.2,23.4,23.7,23.2,23.1,24.1],"script":[3.4,3.5,3.7,3.9,2.9,2.8,3.6,3.2,3.3,3.1,3.6,3.5,3.8,3.2,3.7],"paint":[20.1,19.3,19.9,19.2,19.3,19.6,20.3,19.1,19.1,21.6,19.7,20,19.3,19.7,19.9]}},{"b":6,"v":{"total":[306.7,307.5,304.6,308.3,302.4,302,301.5,303.6,305.3,304.5,305.9,304.8,305.5,303.6,304.7],"script":[52.6,53.2,53.3,52.6,54,53.8,53.6,54.7,53.4,52.7,53.1,53.6,52.4,54.1,52.8],"paint":[242.4,243.8,244.8,244.1,243.8,244.2,243.3,243.6,243.2,242.9,244.7,243.9,245.3,244.2,242.2]}},{"b":7,"v":{"total":[42,42,42.8,42.7,41.7,41.5,42,41.2,40.8,41.3,42.8,41.8,43.9,41.3,42.7],"script":[5.3,5,4.9,5.5,5.1,5.1,5.1,4.8,5,5.1,4.8,4.9,5,4.8,5],"paint":[26.5,26.5,27,26.9,26.3,26.7,26.7,26.3,25.9,26.3,27.4,26.3,27.8,26.6,26.3]}},{"b":8,"v":{"total":[12.4,11.7,11.2,11.1,11.4,11.5,10.6,11.3,11.3,11.4,28.6,11.1,11.1,12.3,10.9],"script":[9.2,8.3,9.1,9.4,9.8,9.6,8.5,9.1,8.8,10.2,10.4,9,9.9,8.9,9.3],"paint":[1.2,0.9,1.9,0.3,0.7,1.7,1.2,0.8,0.7,0.6,2,0.4,1.2,1.6,1.5]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[21.8]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[91.8]}}]},
-{"f":201,"b":[{"b":0,"v":{"total":[25.5,25.4,25.4,25.6,25.3,25.3,25.6,25.4,25.4,25.5,25.4,25.8,25.3,25.3,25.4],"script":[1.5,1.5,1.6,1.6,1.6,1.5,1.6,1.5,1.6,1.6,1.6,1.5,1.5,1.6,1.5],"paint":[23.6,23.5,23.4,23.7,23.3,23.4,23.7,23.6,23.5,23.6,23.4,23.8,23.4,23.3,23.5]}},{"b":1,"v":{"total":[11.9,11.8,12,11.9,12.4,12,11.9,11.8,12.2,12,11.9,12.2,11.8,12,11.8],"script":[1.1,1.2,1.3,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2],"paint":[10.4,10.2,10.4,10.4,10.7,10.5,10.4,10.3,10.6,10.4,10.3,10.6,10.3,10.4,10.3]}},{"b":2,"v":{"total":[10.8,11.6,11,11.5,11.4,12,12.4,11.6,11.6,11.3,11.7,11.5,12.1,11.3,11.3],"script":[0.1,0.1,0.1,0.1,0.1,1.1,0.6,0.9,0.1,0.1,0.1,0.7,0.9,0.1,0.1],"paint":[10.5,10,9.9,10,10.2,10,10.2,9.9,10.6,9.6,10.1,9.8,9.1,10.3,9.4]}},{"b":3,"v":{"total":[2.1,2.7,2.3,2,2,1.6,1.8,1.8,1.3,2.5,1.8,2.4,1.5,1.9,1.8,2.8,2.2,1.9,2.4,1.8,2.3,1.7,2.3,1.7,1.5],"script":[0,0.8,0.6,0,0,0,0.1,0.4,0,0,0.6,0,0.4,0,0,0,0,0,0.7,0,0.7,0,0.8,0,0],"paint":[2,1.4,1.6,0.8,0.6,1,1.4,1.3,0.7,1.5,0.7,1.4,1,1.7,0.3,1.2,2,1.1,1.6,1.6,1.5,1.6,1,1.5,1]}},{"b":4,"v":{"total":[8.2,9.2,8.8,9,9,8.9,9.9,8.9,9.1,8.7,8.6,8.5,8.4,8.5,8.5],"script":[0.5,0.1,0.1,0.1,0.4,0.4,1,0.1,0.5,0.1,0.3,0.4,0.1,0.4,0.1],"paint":[6.5,7.9,7.8,7.5,7.6,6.7,7.8,7.9,7.3,7.8,7.3,7,7.1,7.2,7.6]}},{"b":5,"v":{"total":[23.1,25.8,23,22.9,23,22.4,23.2,23.1,22.8,23.2,23.1,22.6,23,23.4,22.9],"script":[2.4,2.2,2.3,2.3,2.4,2.2,2.1,2.2,2.3,2.2,2.4,2.2,2.3,2.3,2.3],"paint":[20,22.7,20,19.9,19.7,19.6,20.2,19.7,19.3,20,20,19.6,20,20.1,19.8]}},{"b":6,"v":{"total":[265.6,265,263.4,265.9,263.8,264.6,266.6,266.1,266.1,267.5,266.7,265.2,266,262.4,267.9],"script":[17.8,18.2,18.1,17.9,18.3,18.1,17.3,18.3,17.9,18.5,18.9,18,18.4,18.1,18.4],"paint":[242,240.6,239.2,241.8,239.8,240.5,243.2,242,242.1,242.9,241.7,241,241.4,238.4,242.5]}},{"b":7,"v":{"total":[28.8,28.3,28.5,29.3,28.6,28.5,28,28,28.5,29.4,28.3,28.6,29.4,28.5,28.4],"script":[1.6,1.5,1.6,1.7,1.8,1.6,1.5,1.5,1.6,1.6,1.6,1.5,1.6,1.5,1.5],"paint":[26.5,26.2,26.3,26.9,26.1,26.2,25.9,25.8,26.3,27.1,25.9,26.4,27,26.3,26.2]}},{"b":8,"v":{"total":[10.1,9.2,9.5,9.4,9.6,9,8.7,9.7,9.2,9.3,9.2,8.5,9.1,9.4,9.3],"script":[8.2,7.5,7.5,7.4,7.5,7.7,6.6,7.3,7.4,7.2,6.6,6.6,7.2,7.1,7.3],"paint":[1.4,0.8,1,1,1,1.1,0.9,1.5,1.5,1.3,2.4,1,0.3,0.9,1.8]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[13]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[2.4]}},{"b":16,"v":{"DEFAULT":[43.3]}}]},
-{"f":202,"b":[{"b":0,"v":{"total":[25.7,25.7,25.3,25.7,25.8,25.4,25.4,25.6,25.6,25.5,25.7,25.8,25.6,25.5,25.6],"script":[1.6,1.6,1.6,1.6,1.5,1.6,1.4,1.6,1.6,1.5,1.5,1.6,1.5,1.5,1.6],"paint":[23.7,23.7,23.4,23.8,23.7,23.4,23.6,23.6,23.6,23.6,23.8,23.8,23.7,23.6,23.7]}},{"b":1,"v":{"total":[11.6,11.9,12.2,11.5,11.4,11.9,11.9,12.3,11.8,11.9,11.4,11.6,11.8,11.8,11.6],"script":[1.1,1.1,1.2,1,1,1.1,1.2,1.4,1.1,1.1,1.1,1.1,1.1,1.1,1.2],"paint":[10.1,10.4,10.6,10.2,10,10.5,10.3,10.6,10.3,10.4,10.1,10.2,10.4,10.4,10.1]}},{"b":2,"v":{"total":[11,11.1,10.7,10.9,10.9,12.4,10.8,10.6,11.3,11.4,10.4,10.9,11.4,11.7,10.1],"script":[0.4,0.8,0.1,0.1,0.1,0.8,0.1,0.2,0.5,0.5,0.1,0.1,0.1,0.1,0.1],"paint":[8.8,9.3,10.3,9.9,9.1,10.6,9.9,9.3,9.5,9.8,9.4,9.8,9.6,10.6,8.6]}},{"b":3,"v":{"total":[2.5,2.5,2.2,2.3,2.1,2.8,2.4,2.7,4.4,2.2,1.9,2.2,2.1,1.6,2.1,1.5,1.7,2.1,2.1,2,1.8,2,1.9,1.9,1.9],"script":[0.4,0,0,0,1,0,0,0,0.9,0,0,0,0,0,0,0,0.7,0,0,0.1,0,0.5,0,0,0],"paint":[1.7,2.3,1.1,1.2,1,1.5,1.6,2.1,1.5,1,1.6,1.6,1.2,1.4,1.9,1,0.9,1.1,2,1.7,0.3,1,1,1.7,0.7]}},{"b":4,"v":{"total":[9.6,8.6,9.3,9.1,9.1,8.9,9.4,8.3,9.4,9.3,9.5,9.2,8.7,8.9,8.9],"script":[0.6,0.6,0.1,0.8,0.5,0.1,0.1,0.1,0.9,0.8,0.1,0.7,0.1,0.1,0.5],"paint":[7.8,7.2,7.9,7.2,7.4,7.7,8.3,6.7,7.5,7.3,8.3,7.2,7.6,7.8,7.5]}},{"b":5,"v":{"total":[22.6,22.1,23.4,22.4,22.8,22.2,23.5,22.9,22.9,22.8,22.1,23,22.5,22.1,21.9],"script":[2.1,1.8,2.1,1.8,1.9,1.9,1.9,2.1,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[19.7,19.7,20.4,19.9,20.1,19.6,20.9,20.1,20.2,20.4,19.6,20.2,19.9,19.4,19.4]}},{"b":6,"v":{"total":[266.3,266.7,264.2,262.7,263,266.8,265.4,264.2,262.3,266.5,260.2,264.8,264.4,265.7,263.2],"script":[17.4,17.2,17.2,16.4,16.8,16.9,17,16.7,16.9,16.7,16.4,16.6,16.8,17.1,16.8],"paint":[242.8,243.5,241.2,240.3,239.9,243,242.6,241.4,239.2,243.3,237.9,242.2,241.9,242.7,240.3]}},{"b":7,"v":{"total":[28.5,28.3,29.4,28.3,28.8,28.8,29.4,28.9,28.3,28.4,28.6,28.6,29,28.3,28.4],"script":[1.5,1.5,1.6,1.6,1.6,1.6,1.4,1.5,1.5,1.5,1.7,1.5,1.6,1.5,1.6],"paint":[26.3,26.1,27.2,26.1,26.4,26.4,27.1,26.6,26.1,26.2,26.2,26.4,26.7,26.1,26.1]}},{"b":8,"v":{"total":[10,8.7,9.1,9.6,8.9,9.4,9.2,9.6,8.8,10.1,10.5,9.3,10.1,9.2,9.7],"script":[8,7,7.2,7.9,7,7.7,7.7,7.2,7.3,7.8,8.5,7.5,7.6,7.2,7.6],"paint":[1,0.2,1,0.6,0.8,0.7,0.7,0.9,1,1.1,0.8,1.6,1.5,1.3,1.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.9]}},{"b":14,"v":{"DEFAULT":[10]}},{"b":15,"v":{"DEFAULT":[2.2]}},{"b":16,"v":{"DEFAULT":[47.6]}}]},
-{"f":203,"b":[{"b":0,"v":{"total":[25.1,25,25.1,25.1,25.2,25.1,25.8,25.7,25.9,25.4,25.5,25,25.2,25.4,25.3],"script":[1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.2,1.3,1.3],"paint":[23.5,23.4,23.4,23.5,23.6,23.5,24.1,24.1,24.3,23.7,23.8,23.4,23.6,23.8,23.6]}},{"b":1,"v":{"total":[11.1,11.6,11.2,11.3,11.2,11,11.1,11.2,11.2,11.2,11.2,11.3,11,11.2,11.3],"script":[0.9,0.9,0.8,0.9,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.9],"paint":[9.9,10.4,10.1,10,10.1,9.9,10,10.1,10.1,10.1,10.1,10.2,9.9,10,10]}},{"b":2,"v":{"total":[11.6,10.7,10.6,11.2,11,11.8,10.9,11,11.2,11.2,11.3,11.1,12.5,10.6,11],"script":[0.8,0.1,0.1,0.6,0.3,0.8,0.1,0.1,0.1,0.1,0.1,0.3,1.1,0.1,0.6],"paint":[8.7,10,8.8,9.6,9.5,10.3,9.7,9.6,10.1,9.1,9.7,10.1,9.9,9.4,9.8]}},{"b":3,"v":{"total":[2,1.8,1.8,2,2.3,3.4,2.3,1.8,2.2,2.3,1.9,2.4,2.3,1.9,2.2,4.1,1.6,1.6,1.6,2.2,1.8,2.2,2.6,1.5,2.1],"script":[0,0,0,0,0,0.7,0,0,0,0,0,0.5,0.7,0,0,0,0,0,0,0,0,0,0.9,0,0],"paint":[1.3,1.6,1.2,1.3,2,0.4,2.1,1.2,2,1.8,1.4,1.4,1.5,1.7,2,1.3,1.4,0.7,0.9,2,1.2,2,1.2,1,1.4]}},{"b":4,"v":{"total":[8.9,8.3,8.4,8.7,8.7,9.2,7.9,8,8.5,8.3,8,8.5,8.2,8.8,8.5],"script":[0,0.3,0,0,0.5,0,0,0,0.4,0,0,0.4,0,0.9,0.4],"paint":[7.4,7,7.3,7.1,6.4,7.9,6.2,6.6,7.5,7,7.7,7,7,6.9,7.2]}},{"b":5,"v":{"total":[10.3,10.4,10.4,10.2,10.4,10.6,10,10.6,10.3,10.8,10.5,11.4,10.3,10.3,10.2],"script":[0.1,0.1,0.1,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.8,9.8,9.7,9.5,9.5,9.6,9.3,9.7,9,9.8,10,10.5,9.8,9.6,9.5]}},{"b":6,"v":{"total":[257.7,260.1,260.1,259.1,260.9,262.6,262.8,263.6,259.6,260.9,262.3,260.1,259.7,260.3,261.7],"script":[13.4,13.7,13.9,13.6,13.7,13.6,13.6,13.7,13.5,13.7,14,13.8,13.4,13.6,13.9],"paint":[238.5,240.5,240.1,239.9,241.4,242.9,243.2,243.9,240.5,241.4,241.9,240.4,240.2,240.5,241.8]}},{"b":7,"v":{"total":[28.5,28.4,29.5,28,29,28.8,28,28.3,28.7,27.8,28.2,27.9,28.5,28.1,28.2],"script":[1.3,1.4,1.4,1.3,1.4,1.2,1.2,1.2,1.2,1.3,1.3,1.3,1.4,1.2,1.4],"paint":[26.5,26.1,27.4,25.9,26.8,26.9,26.1,26.3,26.7,25.9,26.2,25.9,26.4,26.2,26.1]}},{"b":8,"v":{"total":[9.3,9,9.2,9,8.8,8.8,9.3,8.9,9.1,8.8,9.3,8.8,9.3,9.2,8.8],"script":[7,7.3,7.3,7.5,6.5,6.7,7.5,6.8,7.3,7,7.7,6.7,7.1,6.9,6.7],"paint":[1.6,1.3,1,0.2,1.5,1.2,0.7,1.2,1.3,0.9,0.7,1.1,2,1.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.8]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.5]}},{"b":14,"v":{"DEFAULT":[7.5]}},{"b":15,"v":{"DEFAULT":[1.7]}},{"b":16,"v":{"DEFAULT":[41.8]}}]},
-{"f":204,"b":[{"b":0,"v":{"total":[30.5,30.1,30.1,30.4,30.5,29.9,30,31.8,30.1,30,29.9,30.6,30.4,30,30.2],"script":[6.7,6.5,6.4,6.4,6.5,6.3,6.7,7,6.2,6.4,6.7,6.8,6.4,6.4,6.4],"paint":[23.3,23,23.2,23.5,23.4,23.1,22.7,24.2,23.3,23,22.7,23.2,23.4,23,23.2]}},{"b":1,"v":{"total":[13.4,14,13.8,13.9,13.8,14,13.7,14.2,13.4,14.6,14.2,14.1,14.3,13.9,14.1],"script":[2.9,3.5,3.5,3.4,3.2,3.5,3.2,3.6,2.9,3.1,3.6,3.1,3.1,3.1,3.2],"paint":[10.2,10.1,10,10.1,10.2,10.1,10.1,10.2,10.2,11,10.2,10.7,10.8,10.4,10.6]}},{"b":2,"v":{"total":[13.5,14.2,14.2,14.3,14,14.7,13.8,13.5,14.7,14.6,13.9,13.5,15.1,12.8,14.2],"script":[2,2.8,2.5,2.4,2.5,2.4,2.2,2.1,2.8,3,2.4,2.2,2.1,2.1,2.7],"paint":[10.8,10.2,9.4,10.5,10.3,11.3,10.6,10.7,11.2,10.4,10.1,9.8,11.8,8.9,10.4]}},{"b":3,"v":{"total":[3.4,3.5,3.5,3.1,3,3.9,3.4,3.4,4.3,4,3.2,4.8,3.5,4.5,3.4,3.7,3.5,3.5,4.2,4,3.6,3.9,3.4,3.7,3.4],"script":[0.6,0.6,0.9,0.6,1.5,1,1.5,1.6,1,1.4,1.1,1.2,1,2.1,1.2,1.5,1,1.1,0.7,1.5,1.7,1.3,1.2,0.9,0.6],"paint":[1.8,2.3,1.5,2,0.7,2.1,1.7,1.7,1.5,1.6,1.7,1.4,1.5,1.3,1.2,1.4,1.6,1.2,1.7,2.2,1.1,2.5,2,1.5,2.6]}},{"b":4,"v":{"total":[10.3,10.8,9.8,10.8,10.9,10.2,10,10.1,10.7,9.7,10.1,9.8,9.9,9.3,10.3],"script":[0.9,1.2,1.4,1.4,1.5,1.4,1.7,1.2,1.8,1,0.7,1.1,1.1,0.2,1.2],"paint":[8.4,8.2,7.3,8.3,7.7,7.7,6.7,7.6,7.7,7.1,7.6,7.2,7.7,8.8,8]}},{"b":5,"v":{"total":[27.6,25.6,26.4,26.6,26.6,26.2,27.9,25.8,27.1,26.3,25.6,25.9,26.1,25.5,26.2],"script":[5.3,4.9,5,4.8,4.7,4.9,5,4.3,5,4.5,4.8,4.9,4.8,4.8,4.9],"paint":[21.2,20,20.7,20.8,20.9,20.4,21.9,20.7,20.8,20.3,20.1,20.2,20.4,19.9,20.5]}},{"b":6,"v":{"total":[307.6,303.6,308.1,307.1,308,308,308.3,307.3,310,310,304.6,307.6,307.2,309,308.5],"script":[65.1,61.4,65.8,64.9,64.6,64.9,63.7,65.1,64.8,66.3,63.6,65.1,64.1,65.1,64.9],"paint":[236.5,236,236.2,236.1,237.5,236.8,238,236.6,238.8,237.5,235.1,236.4,236.8,237.6,237.7]}},{"b":7,"v":{"total":[34,33.8,34.7,34.2,34.1,33.6,33.3,33.8,33.8,35,34.1,34.8,34.4,34.2,33.6],"script":[6.3,6.4,6.4,6.2,6.2,6,5.7,6.2,6.2,6.4,6,6,6.3,6.5,6.3],"paint":[26.9,26.5,27.3,27.1,27,26.7,26.8,26.7,26.7,27.6,27.1,27.8,27.2,26.9,26.4]}},{"b":8,"v":{"total":[11,10.8,11.6,10.7,12,10.4,11.2,10.9,11,10.5,12.7,11.7,11.5,11.6,11.3],"script":[8.7,8.7,9.1,9.2,9.9,8.9,9.6,9,8.3,9,9.9,9.8,9.6,9.5,9.3],"paint":[1.6,0.6,0.4,0.7,1.9,0.6,1.2,1,1.6,0.6,1.1,1.7,1.1,1.5,1.7]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[28.7]}},{"b":14,"v":{"DEFAULT":[61.7]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[89.6]}}]},
-{"f":205,"b":[{"b":0,"v":{"total":[27.9,27.6,27.7,27.9,27.9,27.9,27.9,27.7,27.9,27.8,27.8,27.7,27.9,28,27.8],"script":[4.2,4.3,4.2,4.3,4.2,4.3,4.2,4.2,4.2,4.2,4.2,4.3,4.3,4.3,4.3],"paint":[23.3,22.9,23.1,23.1,23.3,23.3,23.2,23.2,23.3,23.1,23.2,23,23.2,23.4,23.1]}},{"b":1,"v":{"total":[12.2,12.2,12.2,12.2,12.4,12.3,12.3,12.3,12.5,12.5,13.4,12.5,12,12.4,12.5],"script":[2,1.9,1.9,1.9,2.1,2,2.2,2,1.9,2.3,2.3,1.9,1.9,2.1,2.1],"paint":[9.9,9.9,9.9,9.9,9.9,9.9,9.8,9.9,10.2,9.9,10.7,10.2,9.7,10,10]}},{"b":2,"v":{"total":[12.3,12,11.5,11.9,12.3,12.4,12.2,12.2,13.2,12.7,12.4,12.2,13.2,12.7,12.6],"script":[1.2,1.1,1.2,1.1,1.4,0.9,1.2,1.4,1.3,1,1,1,1.5,1,1.4],"paint":[10,9.5,8.8,9,9.5,10,9.8,10.3,10.4,10.5,10,9.6,10.2,10.8,9.9]}},{"b":3,"v":{"total":[3.8,2.8,3.4,3.1,4.7,3.6,3,3.6,3,3,3.1,3.4,3.7,3.9,3.7,3.5,3.3,4.1,3.3,3.6,4,3.4,3.7,3.4,3.4],"script":[1.8,1.3,0.9,1.4,1.7,1.4,0.9,1.3,0.9,1.5,0.9,0.9,1.6,1.1,1.6,1.5,0.9,0.9,1.2,1.7,1.7,0.9,1.3,1.5,1.7],"paint":[1.3,1.2,2.4,1.5,1.4,1.3,0.8,1.6,1.5,1.3,1.1,1.4,2,1.7,2,1.8,1.4,2.2,1,1.1,2.1,1.4,2.3,1.6,0.8]}},{"b":4,"v":{"total":[8.5,9.6,9.2,8.8,10.6,9.7,9.6,8.5,9,9.8,9.5,9.8,8.8,10.6,9.3],"script":[0.7,1.2,0.9,0.8,1.1,1.3,0.9,0.5,0.2,0.7,1,0.9,0.6,1.1,1.1],"paint":[6.3,7.4,7.3,7.1,8.4,6.7,8,7.4,8.1,7.7,7.8,7.8,7.3,7.8,6.7]}},{"b":5,"v":{"total":[28.1,26.1,25.3,26.7,25.2,26.2,26.6,26.6,26,26,26.8,26.8,25.8,25.9,26],"script":[5.1,5.1,5,5.7,5,5.2,5.5,5.2,5.3,5.3,5.6,5.4,5.4,5.3,5.3],"paint":[22,19.6,19.5,19.8,19,19.9,19.6,20.1,19.6,19.5,20,20.2,19.4,19.7,19.5]}},{"b":6,"v":{"total":[304.4,297.7,300.1,303.6,293.8,294.2,296.2,295.8,301.9,301.6,294.1,294.7,303,294.6,294.1],"script":[50.1,46.7,50.9,50.4,47.3,49,47.3,49.5,49.7,49.3,46.5,46.9,49.1,47.6,50.6],"paint":[248.3,244.7,243.7,247.4,240.8,239.5,242.6,240.3,246.2,246.4,241.6,241.3,247.7,241,237.3]}},{"b":7,"v":{"total":[29.9,29.7,29.7,29.9,30.1,29.8,29.5,29.7,30.4,29.1,30.4,29.9,29.7,29.8,29.7],"script":[3.5,3.2,3.3,3.3,3.2,3.3,3.5,3.3,3.3,3.2,3.5,3.5,3.2,3.1,3.3],"paint":[25.7,25.8,25.6,25.9,26.2,25.9,25.3,25.7,26.4,25.2,26.2,25.8,25.7,26,25.8]}},{"b":8,"v":{"total":[11.5,11.1,11.2,11.7,11.8,11.2,12.1,11.3,10.9,11.1,12.5,11.6,11.3,10.7,10.8],"script":[9.4,8.8,8.9,9.7,9.4,8.9,9.4,9.2,8.9,9.1,10.1,9.5,9.2,8.6,9.3],"paint":[1.9,1.3,1.1,1.8,2.2,0.3,1.2,0.6,1.8,1.3,0.7,1.6,0.6,1.1,0.8]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[28]}},{"b":14,"v":{"DEFAULT":[37.5]}},{"b":15,"v":{"DEFAULT":[13.2]}},{"b":16,"v":{"DEFAULT":[64]}}]},
-{"f":206,"b":[{"b":0,"v":{"total":[27.9,27.2,26.5,26.5,26.7,27.2,26.9,27,27,26.6,27,26.7,26.8,26.4,26.4],"script":[3.5,3.1,3.1,3,3.1,3.6,3.1,3.1,3.1,3,3,3,3.1,3.1,3],"paint":[23.9,23.7,23.1,23.2,23.2,23.2,23.4,23.5,23.5,23.2,23.6,23.2,23.3,23,23]}},{"b":1,"v":{"total":[11.4,11.4,11.5,11.7,11.4,11.3,11.2,11.4,11.2,11.3,11.9,11.6,11.5,11.3,11.4],"script":[1.2,1.4,1.3,1.5,1.2,1.2,1.2,1.3,1.2,1.3,1.6,1.6,1.5,1.2,1.2],"paint":[9.8,9.6,9.8,9.8,9.8,9.8,9.6,9.8,9.7,9.8,9.9,9.6,9.7,9.8,9.8]}},{"b":2,"v":{"total":[12.4,11.9,12.5,12.3,12.1,12.7,11.6,11.6,12.5,11.5,13.4,13.4,13.5,12.3,12.9],"script":[1.2,1,1.4,1.1,1,1.1,1.1,1,1.5,1.1,1.7,1.8,1.8,1.4,1.4],"paint":[10.3,10.2,9.2,10.1,9.8,10,8.9,9.4,10.4,9.4,10.7,10.3,10.7,9.7,10.2]}},{"b":3,"v":{"total":[4.2,3.7,4.4,3.2,3.4,4,5.2,4,3.3,4,3.5,3.8,3.9,4.4,3,3.4,3.9,2.7,3.9,3.3,4,3.4,3.9,3.8,3.7],"script":[1.7,1.4,1.7,1,1.1,0.9,3,2,1.4,1.9,1.4,1.5,1.1,1.9,0.7,1.3,1.6,0.9,1.2,1.2,1.3,1.1,1.8,1.2,1.5],"paint":[1.5,1.5,2.6,2,2.2,1.7,1.3,1.9,1.4,1.9,1.4,1.6,2.6,1.5,1.8,2,2.2,1,1.6,1.9,2.6,1.3,2,1.5,1.5]}},{"b":4,"v":{"total":[8.9,10.3,9.2,9.3,9.7,9,8.8,8.9,8.9,9.1,8.9,9.3,9.1,9,9.7],"script":[0.2,1.8,1.1,0.8,0.8,0.8,1,0.8,0.2,0.9,0.2,0.6,0.9,0.6,1],"paint":[7.7,6.8,6.9,7.5,7.5,6.8,6.8,7,7.6,6.7,7.3,7.5,7.2,6.6,7.5]}},{"b":5,"v":{"total":[23,24.1,23.5,23.9,23.4,23.7,22.7,22.5,24.8,24.3,23.6,24.3,23.8,24.1,23.5],"script":[2.3,3.9,3.3,3.4,3.3,3.7,2.3,2.4,4.3,3.7,3.7,3.4,3.4,3.9,3.4],"paint":[19.7,19.5,19.3,19.7,19.3,19.4,19.7,19.5,19.8,19.8,19,20.3,19.7,19.6,19.4]}},{"b":6,"v":{"total":[286.1,275.6,280.4,286.9,287.3,280.1,280.7,277.7,287.8,286.9,278.6,281.3,278.3,280.1,286.2],"script":[32.3,31.5,31.9,32.1,32.6,32,31.9,32.5,32,31.9,32.6,32.1,31.6,32.4,32.5],"paint":[247.6,238.6,241.5,248.6,248.7,241.7,241.9,239.5,249.7,249.3,240.4,242.9,241.1,242.1,248]}},{"b":7,"v":{"total":[30.2,30.5,29.3,29.5,29.6,29.4,30.3,29.6,29.8,29.4,30.3,29.4,30.2,29.4,29.9],"script":[3.3,2.9,3.3,2.9,2.9,3.2,3.3,2.9,3.2,3.2,3,3,3.3,2.9,3.1],"paint":[26.2,26.9,25.4,25.9,25.9,25.5,26.2,26,25.9,25.5,26.5,25.7,26.1,25.7,26]}},{"b":8,"v":{"total":[10,10.5,10.2,9.7,11.1,9.9,9.8,9.9,10.4,10.2,10.1,9.8,10.2,10.3,10.4],"script":[7.9,8.4,8.3,8.1,8.3,8.1,7.8,8.2,8.8,8,7.8,7.6,8,8.2,8.3],"paint":[0.7,0.8,1.1,1.1,1.6,0.7,1.2,1,0.5,0.4,2,0.6,1.9,1,1.8]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3.1]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[21.5]}},{"b":14,"v":{"DEFAULT":[36.4]}},{"b":15,"v":{"DEFAULT":[12.9]}},{"b":16,"v":{"DEFAULT":[69.4]}}]},];
-export const frameworks = [{"name":"alpine-v3.14.7-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"issues":[1139],"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v19.0.3-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-new-nozone-v19.0.3-keyed","dir":"keyed/angular-cf-new-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-nozone-v19.0.3-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-v19.0.3-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-nozone-v19.0.3-keyed","dir":"keyed/angular-cf-signals-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v19.0.3-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"apprun-v3.33.9-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia2-v2.0.0-beta.22-keyed","dir":"keyed/aurelia2","keyed":true,"frameworkHomeURL":""},{"name":"blazor-wasm-v9.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v9.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.29-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.11.2-keyed","dir":"keyed/bobril","keyed":true,"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.1-beta.1-keyed","dir":"keyed/cample","keyed":true,"issues":[1139],"frameworkHomeURL":"https://camplejs.github.io/"},{"name":"crank-v0.6.0-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.4.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"deleight-v5.5.8-keyed","dir":"keyed/deleight","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"destam-dom-v0.10.2-keyed","dir":"keyed/destam-dom","keyed":true,"frameworkHomeURL":"https://github.com/Nefsen402/destam-dom"},{"name":"dioxus-v0.5.1-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-next.1-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-lite-keyed","dir":"keyed/doohtml-lite","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v6.4.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"endr-v0.1.3-keyed","dir":"keyed/endr","keyed":true,"frameworkHomeURL":"https://github.com/caseywebdev/endr"},{"name":"fntags-v0.5.1-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"frei-hooks-v1.2.1-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"goui-v0.1.2-keyed","dir":"keyed/goui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/twharmon/goui"},{"name":"gxt-v0.0.57-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hono-v4.6.13-keyed","dir":"keyed/hono","keyed":true,"frameworkHomeURL":"https://hono.dev/"},{"name":"hydro-js-v1.5.14-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v4.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v3.0.0-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev/"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.17.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev/"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.7.0-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.2.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v1.2.3-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v8.12.0-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"mettle-v0.2.1-keyed","dir":"keyed/mettle","keyed":true,"frameworkHomeURL":"https://maomincoding.github.io/mettle-doc/"},{"name":"michijs-v2.1.4-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://dev.michijs.com/"},{"name":"mikado-v0.8.400-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.400-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.16.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.5.1-keyed","dir":"keyed/owl","keyed":true,"issues":[1139],"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v5.3.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.17.177-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.25.2-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.25.2-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","dir":"keyed/preact-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"preact-signals-v10.25.2 + 1.3.1-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"quel-v0.23.1-keyed","dir":"keyed/quel","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"qwik-v1.11.0-keyed","dir":"keyed/qwik","keyed":true,"issues":[1139],"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.4.4-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"re-frame-v1.4.3-keyed","dir":"keyed/re-frame","keyed":true,"frameworkHomeURL":"https://day8.github.io/re-frame/re-frame/"},{"name":"react-classes-v19.0.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org/"},{"name":"react-compiler-hooks-v19.0.0-keyed","dir":"keyed/react-compiler-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-v19.0.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v19.0.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-kr-observable-v18.3.1 + 1.0.39-keyed","dir":"keyed/react-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v19.0.0 + 6.13.5-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-redux-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v19.0.0 + 0.10.7-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-tagged-state-v19.0.0 + 2.1.0-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v19.0.0 + 2.0.1-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v19.0.0 + 5.0.2-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v4.1.5-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-js-v0.25.3-keyed","dir":"keyed/reflex-js","keyed":true,"frameworkHomeURL":"https://github.com/zouloux/reflex"},{"name":"rendrjs-v0.2.50-keyed","dir":"keyed/rendrjs","keyed":true,"frameworkHomeURL":"https://rendrjs.com/"},{"name":"rendrjs-atoms-v0.2.50-keyed","dir":"keyed/rendrjs-atoms","keyed":true,"frameworkHomeURL":"https://rendrjs.com/"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v9.4.4-keyed","dir":"keyed/riot","keyed":true,"frameworkHomeURL":"https://riot.js.org/"},{"name":"rvjs-v0.3.31-keyed","dir":"keyed/rvjs","keyed":true,"frameworkHomeURL":"https://rvjs.xyz/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.15.1 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.15.1 + 2.2.7-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.61.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"silkenweb-v0.9.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.7.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io/"},{"name":"solid-v1.9.3-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.9.3-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"sonnet-v0.0.33-keyed","dir":"keyed/sonnet","keyed":true,"issues":[772],"frameworkHomeURL":"https://sonnet.js.org/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spheres-v0.12.0-keyed","dir":"keyed/spheres","keyed":true,"frameworkHomeURL":"https://github.com/brian-watkins/spheres"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.23.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"svelte-v5.13.0-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.13.0-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-norandom-v5.13.0-keyed","dir":"keyed/svelte-norandom","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"targetjs-v1.0.142-keyed","dir":"keyed/targetjs","keyed":true,"issues":[772],"frameworkHomeURL":"https://targetjs.io/"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v4.7.0-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"valtio-v18.2.0 + 2.1.2-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-keyed","dir":"keyed/vanillajs-3","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-lite-keyed","dir":"keyed/vanillajs-lite","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-norandom-keyed","dir":"keyed/vanillajs-norandom","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-signals-v0.2.1-keyed","dir":"keyed/vanillajs-signals","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/tc39/proposal-signals"},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.5.2-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"viewfly-v1.2.3-keyed","dir":"keyed/viewfly","keyed":true,"frameworkHomeURL":"https://github.com/viewfly/viewfly"},{"name":"vue-v3.5.13-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.5.13-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.5.13-keyed","dir":"keyed/vue-jsx-vapor","keyed":true,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-pinia-v3.5.13 + 2.3.0-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.5.13-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.3.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"zune-v1.0.8-keyed","dir":"keyed/zune","keyed":true,"frameworkHomeURL":""},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.33.9-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.4.1-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.92.0-non-keyed","dir":"non-keyed/bau","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v23.1.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.9-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"deleight-v5.5.10-non-keyed","dir":"non-keyed/deleight","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-next.1-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v5.2.6-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.1-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.2.1-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.5.14-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.2.1-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v4.0.2-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.400-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.28.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.23.1-non-keyed","dir":"non-keyed/quel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.4.4-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"ravel-v0.3.0-non-keyed","dir":"non-keyed/ravel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/kmicklas/ravel"},{"name":"redom-v4.1.5-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev/"},{"name":"riot-v9.4.4-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.15.1-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.35.26-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"skruv-liten-v0.0.4-non-keyed","dir":"non-keyed/skruv-liten","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/skruv/liten"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"sprae-v11.0.5-non-keyed","dir":"non-keyed/sprae","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"svelte-classic-v5.13.0-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v4.7.0-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[801],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-non-keyed","dir":"non-keyed/vanillajs-3","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vue-v3.5.13-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.5.13-non-keyed","dir":"non-keyed/vue-jsx-vapor","keyed":false,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-vapor-v3.5.13-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}];
+{"f":0,"b":[{"b":0,"v":{"total":[76,79.4,77.2,77.1,76.6,77.6,77.4,75.8,75.1,77,77.9,75.8,75.8,75.9,76.4],"script":[52.4,55.1,53,53.4,52.9,53.7,53.7,52.3,51.6,53.4,54.2,52.2,52.4,52.5,52.9],"paint":[23.1,23.8,23.7,23.1,23.2,23.4,23.3,23,23,23.1,23.2,23.1,23,22.9,23]}},{"b":1,"v":{"total":[95.1,94.7,95.9,100.1,96.6,95.4,96.7,97,97.3,97.2,95.6,96.9,97.1,97.7,95.8],"script":[70,69.5,71,78.8,71.1,70.2,71.6,71.7,72.2,72,70.2,71.5,71.8,72.3,70.8],"paint":[24.6,24.7,24.4,20.8,24.9,24.7,24.5,24.9,24.6,24.7,24.8,24.9,24.7,24.9,24.5]}},{"b":2,"v":{"total":[16.1,15.9,15.7,16,15.5,15.7,16.5,16.2,16.5,15.6,15.6,16.1,15.1,15.6,15.9],"script":[4,3.6,4.1,4.2,4.2,4.1,4.5,4.5,4,3.1,4,3.7,4,4.1,4],"paint":[11,10.9,9.3,10.9,9.9,10,10.8,10.3,10.2,10.9,10,10.6,9.7,10.2,10.6]}},{"b":3,"v":{"total":[29.5,29.5,29.3,28.5,30.1,29.8,29.7,30,29.7,29.7,30.1,29.1,29.5,34.6,28.8,29.8,30,30.2,31.2,29.5,29,30,29.3,30.2,31.4],"script":[25.6,26.2,26.1,25.7,26.6,26.7,25.6,26.1,25.9,26.1,26.6,25.3,26.4,29,25,26.4,25.5,26,27.3,25.7,25.8,26.6,25.8,26.9,28],"paint":[2.9,2.3,2.1,1.7,2.2,1.4,2.9,2,2,1.2,1.3,3.3,2,3.3,2.6,1.9,3,2.3,2.5,3.2,1.9,1.9,2,2.3,2.1]}},{"b":4,"v":{"total":[26.4,26.6,26.8,27.2,26.6,27.4,27.3,26.3,26.9,27.4,27,28,27.2,27.1,26.5],"script":[10.1,9.8,9.8,10.1,10.7,10.8,9.8,10.6,10.2,9.7,9.7,11.1,10.5,11.3,9.6],"paint":[14.8,14.5,15.3,15.3,14.8,14.6,15,14.6,14.7,16.3,15.9,15.8,15.2,14.1,14.6]}},{"b":5,"v":{"total":[18.2,18.4,18.5,18.8,18.3,18.4,18,18.2,18.6,18.2,19,18.2,18,18.1,18.3],"script":[6.6,6.7,7,7.1,6.8,6.7,6.4,6.7,7.1,6.7,7,6.7,6.7,6.7,6.6],"paint":[10.8,10.6,10.5,11.1,10.7,11.1,10.6,10.6,10.7,10.5,11.3,10.8,10.8,10.9,10.6]}},{"b":6,"v":{"total":[653.4,656.9,646.5,661.4,665.2,654.8,658.4,663.3,667.6,657.4,665.9,666.5,658.9,653.6,671.5],"script":[416.4,416,409,425.5,423,418,423.3,424.4,426.5,421.6,425.9,426.8,419.8,415.7,433.4],"paint":[228.1,231.8,228.3,226.9,232.8,227.9,226.4,230.1,231.9,226.9,230.9,230.5,230.2,229.2,229.3]}},{"b":7,"v":{"total":[87,87.7,88,88,87.6,87.8,88.9,88.2,86.5,88.2,88,88.4,87.3,88.3,89],"script":[58.5,59.1,59.2,59.3,58.8,58.9,60,59.2,58.1,59.4,59.3,60,58.6,59.5,60.1],"paint":[27.5,27.5,27.7,27.7,27.7,27.8,27.9,27.9,27.3,27.8,27.6,27.4,27.6,27.7,27.8]}},{"b":8,"v":{"total":[58.9,57.9,60.3,60.4,60.5,59.6,57.5,62,62.1,62,59.7,58.2,58.3,57.1,64.9],"script":[57.4,55.9,58.2,58.7,58.9,57.6,56.1,59.7,60.3,59.6,58.1,56.2,55.9,55.2,62.7],"paint":[0.7,1.6,1.6,0.8,0.8,1.2,0.3,1.7,1.1,1.8,1.2,0.7,2.3,1.4,1.5]}},{"b":9,"v":{"DEFAULT":[0.78]}},{"b":10,"v":{"DEFAULT":[16.67]}},{"b":11,"v":{"DEFAULT":[16.71]}},{"b":12,"v":{"DEFAULT":[1.5]}},{"b":13,"v":{"DEFAULT":[155.93]}},{"b":14,"v":{"DEFAULT":[47.3]}},{"b":15,"v":{"DEFAULT":[14.7]}},{"b":16,"v":{"DEFAULT":[65.8]}}]},
+{"f":1,"b":[{"b":0,"v":{"total":[34.4,35,34.8,34.4,35,34.7,35.6,35.4,34.9,35,35.6,34.7,35.7,34.9,35.5],"script":[12.6,12.8,12.5,12.5,12.9,12.7,13,12.8,12.8,12.7,13.1,12.5,13.1,12.6,13],"paint":[21.3,21.6,21.7,21.3,21.5,21.4,22.1,22.1,21.6,21.7,22,21.6,22,21.8,21.9]}},{"b":1,"v":{"total":[42.1,42.2,42.3,42.9,42.8,42.9,42.4,42.3,42.8,42.9,42.3,42.5,42.2,42.7,42.7],"script":[19.1,19,19,19.6,19.4,19.1,19.4,19.4,19.5,19.5,19.1,19.2,19.1,19.4,19.3],"paint":[22.4,22.5,22.7,22.6,22.8,23.2,22.4,22.3,22.7,22.9,22.6,22.6,22.5,22.7,22.7]}},{"b":2,"v":{"total":[19.9,19.3,18.8,19.9,19.7,20.3,19.5,19,19.3,19.7,20,18.9,20,19.3,20.6],"script":[7.7,7.1,7.1,7.4,7.4,7.4,7.1,6.7,6.8,7.1,7.1,6.7,7.5,7.1,7.9],"paint":[9.9,9.8,9.3,10.7,10.7,10.8,11.2,10.5,10.5,10.2,11.4,10.6,10.9,10.7,10.1]}},{"b":3,"v":{"total":[9,8.8,10.5,9.4,8.6,8.2,9.4,8.8,8.9,8.8,9.6,9.6,9.3,9.1,9.5,9.6,8.8,9.2,9,9.2,8.8,9.1,8.4,9,9.7],"script":[5.8,5.5,7.6,5.3,5.9,5.6,6,6.2,6.3,5.6,6.3,6.6,6.2,6.4,5.9,6.6,6.1,6.2,5.8,6.7,6.3,5.9,5.9,5.4,6.6],"paint":[2,2,2.2,2.8,1.2,1.2,2.1,0.8,1.6,2.3,2.2,2.2,1.9,1.3,3.3,1.2,1.9,2.3,2.5,1.1,0.7,2.3,1.1,2.1,1.3]}},{"b":4,"v":{"total":[22.2,22.8,21.6,22.5,21,21.7,21.1,22.1,21.9,22,22,22.1,21.9,22.1,22.5],"script":[6.4,6.8,6.5,7.1,6.8,6.2,6.2,7.2,7.1,6.4,7,6.6,7.1,7.5,7.5],"paint":[14.3,14.2,13.4,13,13.1,12,13.3,13.1,12.4,13.6,13.9,14.1,12.5,12.6,13.3]}},{"b":5,"v":{"total":[69.8,70.2,70.4,69,70.1,71.3,69.9,71.3,69.8,70.5,70.3,68,70.9,69.9,69.7],"script":[25.5,25.5,25.4,24.6,25.1,24.6,24.9,25.6,25,25.3,25.7,24.5,25,24.7,24.8],"paint":[43,43.5,43.3,43.4,43.6,45.3,43.7,44.4,43.9,43.8,43.2,42.2,44.1,43.8,43.6]}},{"b":6,"v":{"total":[342.8,340.6,339.2,340.4,343.3,340.3,342.6,343.2,343.2,344.4,341.4,339.6,342.4,339.9,340.8],"script":[117.3,116.5,116.3,116.1,120.7,117.8,118.6,120.4,119,116.1,116.4,116.9,118.8,118.1,117.7],"paint":[217.8,216.1,215.2,216.7,214.8,214.9,215.5,215,216.2,220.1,217.3,215.1,215.9,214.2,215.5]}},{"b":7,"v":{"total":[40.9,39.9,40.8,40.3,40.8,40.4,40.8,40.9,40.4,40.6,40.9,40.8,41,40.6,40.7],"script":[14.7,14.4,14.5,14.1,14.8,14.5,14.5,14.4,14.4,14.5,14.7,14.5,14.8,14.6,14.6],"paint":[25.2,24.5,25.3,25.3,25,24.9,25.4,25.5,25.1,25.1,25.2,25.3,25.2,25.1,25.1]}},{"b":8,"v":{"total":[13.8,13.8,13.8,13.1,15.5,13.3,14.4,13.7,14.3,14.1,13.7,14.2,13.8,14.2,14.2],"script":[11,12.3,11.4,11,13.1,11.6,12.2,11.7,12.8,11.9,11.3,11.8,11.3,12.3,12.3],"paint":[1.7,0.7,1.4,1.5,1.7,0.3,1.1,1.1,0.6,0.8,2.2,1,1.5,0.3,1]}},{"b":9,"v":{"DEFAULT":[0.47]}},{"b":10,"v":{"DEFAULT":[6.46]}},{"b":11,"v":{"DEFAULT":[8.27]}},{"b":12,"v":{"DEFAULT":[4.79]}},{"b":13,"v":{"DEFAULT":[46.34]}},{"b":14,"v":{"DEFAULT":[257.1]}},{"b":15,"v":{"DEFAULT":[73.5]}},{"b":16,"v":{"DEFAULT":[37.2]}}]},
+{"f":2,"b":[{"b":0,"v":{"total":[32.9,32.7,32.8,32.5,32.7,32.7,32.8,32.6,32.8,33.4,32.9,32.4,32.6,32.4,32.7],"script":[6.5,6.6,6.4,6.2,6.5,6.3,6.2,6.3,6.5,6.7,6.4,6.3,6.5,6.4,6.5],"paint":[23.1,22.7,23.1,23,22.8,23.1,23.1,22.9,22.8,23.2,23.1,22.8,22.8,22.7,22.9]}},{"b":1,"v":{"total":[39,39.3,39.4,38,38.5,38.2,39.2,38.7,39.1,39.3,39.7,38,38.1,37.5,39],"script":[12.4,12.6,12.5,11.9,12.4,12.2,12.4,12.3,12.3,12.3,12.6,12.1,12.2,12.1,12.5],"paint":[23.3,23.2,23.2,22.7,22.7,22.5,23.3,23,23.3,23.6,23.5,22.6,22.6,22,23.2]}},{"b":2,"v":{"total":[13.2,12.5,13.1,12.6,13.1,16.3,12.3,13.2,13.6,12.3,12.2,12.7,12.3,14.2,13],"script":[1.9,2.5,2.3,2.3,2.7,2.4,2,2.4,2.6,2,1.9,2.1,2,1.8,2.4],"paint":[9.4,8.7,9.3,9.4,8.8,11.8,9.3,9.6,10.2,9.1,9,9.5,9.1,11.2,9.4]}},{"b":3,"v":{"total":[3.3,3.5,4.1,3.6,3.9,3.6,4.3,4.8,4.4,3.1,3.6,4,3.9,4.8,4.6,4.1,3.5,3.2,4.3,4.3,4,4,4.6,4.1,4.5],"script":[0.3,0.7,1.9,0.6,1,0.7,1.4,1.5,2.4,1,0.9,1.2,1,2.2,2.1,1.8,1.6,1.2,2,1.6,1.2,1.9,2.1,1.4,2.4],"paint":[2.9,2.7,1.5,2.8,2.7,2.7,2.8,2.2,1.3,2,2.5,1.7,2.4,2.3,2.4,1.7,1,1.9,2.2,0.9,1.8,1.6,1.7,1.6,1.4]}},{"b":4,"v":{"total":[16.6,16.2,15.4,15.2,15.3,16,14.9,15.4,15.3,15.5,15.7,15.7,15.6,16.9,15.9],"script":[1.6,1.8,1.5,2.6,1.9,1.6,1.2,2,0.7,2.2,1.8,1.6,1,2,1.4],"paint":[12.6,13.4,12.9,11.7,12.5,12.7,12.3,12.2,13.3,12.4,12.3,12,13.1,13.8,13.2]}},{"b":5,"v":{"total":[11.6,11.6,10.9,11.5,11.6,11.9,11.2,11.9,11.3,12.2,11.2,12.3,11,11.6,11.5],"script":[0.8,0.9,0.7,0.7,0.8,0.7,0.8,0.9,1,1.2,0.9,1.2,0.7,0.7,0.9],"paint":[10.4,10.5,9.4,10.3,9.9,10.6,9.5,10,9.6,10.7,9.4,10.2,9.7,10.4,9.9]}},{"b":6,"v":{"total":[350.2,348.7,347.5,348.9,349.1,346.7,356.5,349.6,352.3,347.9,349.9,350.8,351.1,348.6,349.9],"script":[68.3,68.6,68.6,68.8,68.5,68,69.4,68.5,68.3,68.5,69.2,68.7,69.5,68.9,68.8],"paint":[229.5,229.3,227.7,228.9,228.9,228,232.2,230.2,229.9,228,230,230.2,230.7,229.7,230.5]}},{"b":7,"v":{"total":[37.2,37.5,37.8,37.4,36.9,36.6,37.3,38.2,38.3,37.3,36.8,38,37.2,37.7,36.6],"script":[6,6.3,6.2,6.2,6,6,6.1,6.3,6.2,6,6.3,6.1,6.3,6.1,5.9],"paint":[27.2,27.3,27.6,27.3,26.9,26.8,27.3,27.9,28,27.4,26.6,27.9,27.1,27.5,26.9]}},{"b":8,"v":{"total":[19.9,18.4,19.9,20.4,20,21.6,18.3,19,20.7,20.7,20.2,19.6,20.5,19.6,19.2],"script":[17.9,16.4,18,18.9,17.7,19.2,16.4,16.6,18.6,18.1,18.1,18,19,16.8,16.8],"paint":[0.3,0.6,0.3,0.9,2.1,1,0.3,1.3,1,1.1,1.5,1.1,0.7,1.3,1.5]}},{"b":9,"v":{"DEFAULT":[1.51]}},{"b":10,"v":{"DEFAULT":[4.75]}},{"b":11,"v":{"DEFAULT":[4.8]}},{"b":12,"v":{"DEFAULT":[2.07]}},{"b":13,"v":{"DEFAULT":[29.18]}},{"b":14,"v":{"DEFAULT":[142.8]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[166.5]}}]},
+{"f":3,"b":[{"b":0,"v":{"total":[35.3,38.4,39.4,37.8,38.5,38.5,38.7,39.5,38.3,39.4,37.6,38.8,37.9,38.8,38.6],"script":[5.8,5.8,5.8,5.8,5.6,5.7,5.7,5.9,5.8,5.9,5.5,5.9,5.9,5.5,5.7],"paint":[22.7,22.5,22.4,21.9,23.4,22.4,22.7,22.3,22.3,22.2,21.9,22.7,21.8,22,21.6]}},{"b":1,"v":{"total":[40.6,41.6,42.2,40,39.6,36.6,42.3,37.8,37.2,38.3,38.1,40.6,39.5,38.7,39.2],"script":[10.1,10.1,10.1,10.1,9.7,10.1,10.1,10.1,10,10.1,10,10.3,10.1,10.3,9.9],"paint":[22.9,23.6,22.8,23.6,23,23.4,23.1,23.2,23.1,23.2,23.8,22.8,23.2,23.2,23]}},{"b":2,"v":{"total":[12,27.8,12.3,12,11.5,12.8,11.8,14.3,28.1,12.8,28,12.2,12.4,12.3,12.3],"script":[2.4,2.7,2.2,2.1,2.6,2.5,2.5,2.5,2.1,2.6,2.3,2.3,2.4,2,2.7],"paint":[8.8,8.4,8.9,9.8,8.1,10.2,9.3,10.5,9.9,9.9,9,9.1,9.9,9.5,9.2]}},{"b":3,"v":{"total":[5,3.9,4.6,5,4,4.9,3.4,4,4.5,4.6,4,5,3.8,4.6,4.2,3.6,4.5,5,4.8,5,3.9,4.5,4.4,5.3,4.4],"script":[2.2,1.7,2.4,2.6,1.6,2.5,0.9,1.3,2.2,2.2,1.4,2.6,2,2.4,1.3,0.9,1.8,3,2.6,2.1,0.7,2.4,2,2.4,2.2],"paint":[1.9,2.1,1.7,1.7,1.5,2.3,1.3,1.4,2,2.3,2,2.3,1.6,1.7,2.2,2.5,2,1.9,1.6,2.7,2.7,1.7,2.1,2.1,1.3]}},{"b":4,"v":{"total":[31.8,31.2,15.4,31.2,31.3,31.4,14.9,31.1,15,31.9,14.9,14.5,15,30.3,30.6],"script":[2.6,2,2.6,1.9,1.8,1.8,2.6,1,1.7,2.3,1.5,1.8,2.3,1.9,2.2],"paint":[13.1,12.9,11.9,12,13.8,13.5,11.5,14,13.1,13.1,13.3,12.1,11.7,11.2,12]}},{"b":5,"v":{"total":[12.8,14.1,11,14.8,13.4,14.4,10.9,12,10.4,12.8,16,14.7,10.4,14.1,11.5],"script":[1,1.3,1.4,0.7,1.2,0.6,0.7,0.9,1.2,1,1.2,1,0.9,0.9,1.2],"paint":[9.2,9.3,9.3,8.9,8.8,8.9,9.3,9.7,9,9.3,9.1,9.2,9.1,9.4,9.9]}},{"b":6,"v":{"total":[347.8,344.9,348,347.8,345.5,349.6,344.8,344.8,348,349.5,344.5,345.9,345.5,343.7,345.6],"script":[56.7,55.4,57,54.9,56.7,56.5,54,55.3,55.4,56.6,55.8,56.3,55.1,56.2,54.7],"paint":[237.1,234.2,235.5,237.5,237.1,238,235.2,236.9,237.5,238.1,236.6,235.1,236.5,235.6,237]}},{"b":7,"v":{"total":[43.7,41.3,35.5,41.6,41.5,35.9,41.9,41.5,41,40.9,41.6,41.3,41.3,41.3,41.2],"script":[6.1,5.7,5.8,6,6,6,5.9,6,5.7,5.8,5.9,6,5.9,5.9,5.8],"paint":[26.3,26,26.2,26.6,26.4,26.5,26.5,26.3,26.1,26.1,26.6,26.2,26.4,26.4,26.4]}},{"b":8,"v":{"total":[15.9,13.7,31.2,15.6,15.8,13.9,16.3,14.1,13.8,31.8,14.3,13.9,13.4,15.1,13.5],"script":[14.1,11.8,13.3,13.3,14,12.5,14.5,12.2,12.1,13.7,12.9,11.5,11.8,12.1,11.6],"paint":[1,1,0.9,2,1.5,0.3,0.3,1.3,1.4,0.8,1.3,1.2,0.2,1,1.1]}},{"b":9,"v":{"DEFAULT":[1.13]}},{"b":10,"v":{"DEFAULT":[3.69]}},{"b":11,"v":{"DEFAULT":[3.74]}},{"b":12,"v":{"DEFAULT":[1.72]}},{"b":13,"v":{"DEFAULT":[22.68]}},{"b":14,"v":{"DEFAULT":[109.2]}},{"b":15,"v":{"DEFAULT":[33.2]}},{"b":16,"v":{"DEFAULT":[120.5]}}]},
+{"f":4,"b":[{"b":0,"v":{"total":[31.2,30.8,31.3,31.1,31.1,31.5,31.3,30.7,31,31.7,32,31.8,31.6,31.4,31.9],"script":[5.4,5.3,5.5,5.3,5.3,5.5,5.5,5.1,5.4,5.3,5.7,5.5,5.4,5.5,5.5],"paint":[22.5,22.3,22.4,22.5,22.4,22.7,22.6,22.2,22.3,23.1,22.9,22.9,22.9,22.6,23]}},{"b":1,"v":{"total":[37.7,36.6,36.3,36.2,36.7,36.1,36.2,36.7,36.5,36.2,36.8,37.5,36.6,36.4,37.3],"script":[10.7,10.2,10.2,10.1,10.1,10.1,10,10.5,10.2,10.1,10.5,10.3,10.2,10.2,10.6],"paint":[23.6,23,22.7,22.7,23.1,22.7,22.8,22.8,22.9,22.7,23,23.5,23,22.9,23.4]}},{"b":2,"v":{"total":[13.4,12.5,12.6,12.3,11.5,12,11.4,12.7,12.2,12.7,13.2,12,12.5,13.1,12.2],"script":[2.5,2.4,2.2,2.3,1,2.1,0.9,2.3,2.5,1.8,2.5,2.2,2.7,2.3,2.4],"paint":[9.8,9.1,9.5,8.5,9.5,8.9,9,9.1,8.7,9.7,8.4,8.8,8.8,9.7,9.6]}},{"b":3,"v":{"total":[4.4,4.4,4.1,4,3.9,4.3,3.8,4.2,4.1,4.2,3.7,3.4,3.8,4.5,4.5,4.1,3.4,3.1,4.1,3.7,4.1,4.5,4.6,4.1,4.2],"script":[1.6,1.5,1.1,1.8,1.2,1.9,1.8,1.5,1.8,1.9,1.6,0.6,1.4,1.9,1.3,1.7,0.6,0.6,2.1,1.7,2.1,1.3,1.9,1.7,1.8],"paint":[2,1.7,2.4,1.7,1.8,1.7,1.9,2.6,1.9,1.4,2,2.3,1.3,2.3,2.6,1.3,2.1,1.9,1.2,1.3,1,2.6,2.5,2.3,1.7]}},{"b":4,"v":{"total":[15.7,15.8,14.9,15.6,16.1,16.1,16.6,15.1,15.9,16.2,16.9,16,16.5,14.7,14.8],"script":[2.4,2.5,1.3,2,2.3,1.7,1.6,1.2,1.8,2.1,2,1,2.2,0.6,2.1],"paint":[11.7,12.5,12.6,12.4,12.7,13.4,12.9,12.8,12.1,13,13,13.1,13.6,13,11]}},{"b":5,"v":{"total":[11.7,11.5,11.5,11.4,11.5,11.4,11.7,12.4,11,11.5,11.2,11.9,11.6,12,11.4],"script":[1.1,0.7,0.7,0.7,0.9,1,1,1.3,0.6,0.7,0.8,1,1,1.4,0.7],"paint":[9.9,9.9,10.2,9.8,10.2,9.5,10.2,10.4,9.9,10.2,9.4,10.5,9.9,10.1,10.3]}},{"b":6,"v":{"total":[341.7,342.3,343.8,341.1,340.8,343.6,339.6,342.4,343.3,342.8,340.5,339.6,343.3,341.9,342.9],"script":[54.5,55.9,55.2,54.5,55,56.6,55.8,55.6,53.9,56.1,55.6,53.8,56.2,55.7,56.2],"paint":[235.6,235.7,233.8,235.6,235.1,235.5,232.8,235.7,238.3,235.7,234.7,234.6,235.2,235.1,235.6]}},{"b":7,"v":{"total":[36.6,36.4,35.8,35.4,35.7,35.4,35.3,36,35.3,35.7,36.1,35.5,35.3,36.2,35.3],"script":[5.8,6,5.7,5.8,5.9,5.9,5.8,5.9,5.8,5.9,5.9,5.6,5.9,5.9,5.5],"paint":[26.7,26.3,26.1,25.7,25.9,25.7,25.7,26.2,25.8,26,26.3,26.1,25.6,26.4,26]}},{"b":8,"v":{"total":[16.1,14.3,15.9,15.4,14.4,14.6,14.8,18.4,15.3,15.5,16.2,15.1,14.7,15.1,14.9],"script":[13.9,12.3,14,12.8,12.5,12.6,11.9,16.3,12.8,13.4,13.8,13.3,12.2,12.8,13],"paint":[1.3,1,0.4,1.6,1.1,1.5,1.6,0.9,1.9,1.2,1,0.4,1.5,1.4,0.7]}},{"b":9,"v":{"DEFAULT":[1.13]}},{"b":10,"v":{"DEFAULT":[3.66]}},{"b":11,"v":{"DEFAULT":[3.72]}},{"b":12,"v":{"DEFAULT":[1.7]}},{"b":13,"v":{"DEFAULT":[22.66]}},{"b":14,"v":{"DEFAULT":[109.3]}},{"b":15,"v":{"DEFAULT":[33.2]}},{"b":16,"v":{"DEFAULT":[116.7]}}]},
+{"f":5,"b":[{"b":0,"v":{"total":[32.9,32.7,33.2,33.1,33.4,32.9,33.5,33.5,32.5,33.4,33.7,32.4,33,32.8,33.1],"script":[6.3,6.5,6.6,6.7,6.7,6.3,6.6,6.6,6.5,6.6,6.3,6.3,6.6,6.3,6.7],"paint":[23.3,22.9,23.2,23.1,23.3,23.2,23.5,23.5,22.7,23.5,24,22.8,23,23.2,23.1]}},{"b":1,"v":{"total":[39.5,38.7,38.4,38.4,38.3,39.6,38.1,37.9,39.6,38.6,38.9,39.1,39.1,39.1,38.9],"script":[12.4,12.4,12.3,12.3,12.1,12.6,12,12,12.5,12.3,12.5,12.4,12.4,12.2,12.4],"paint":[23.5,23,22.6,22.7,22.8,23.4,22.7,22.4,23.5,23,23.1,23.3,23.2,23.5,23.1]}},{"b":2,"v":{"total":[13,12.6,13.7,13.1,13.6,12.9,13.7,13.8,14,14,13.1,12.8,12.9,13.5,13.3],"script":[2.3,2.4,2.5,2.8,2.5,3,2.2,2.5,3.4,3.2,2.7,2.5,2.5,3.1,2.5],"paint":[9.7,9.1,9.7,9.4,10.1,8.8,10.3,10,9.5,9.5,9.5,9.2,8.9,9,8.3]}},{"b":3,"v":{"total":[4.4,4,5.5,4.4,4.4,4.4,4.3,5.4,4,4.9,4.9,4.4,5.2,4.3,4.3,4.3,4.3,4.4,4.7,4,4.7,4.8,4.9,4.8,4.5],"script":[1.8,1.3,2.8,2,1.7,1.9,2.4,2.1,1.9,2.8,1.8,2,3,2.3,1.7,1.2,1.2,1.5,2.2,1,2.1,1.6,2.4,2.3,1.9],"paint":[1.3,2.6,1.9,1.5,2.4,1.5,1.1,3.2,1.1,2,2.2,1.8,1.4,1.9,2.1,2.1,2.1,2.8,1.5,2.2,1.8,2.8,2.3,2.3,2.2]}},{"b":4,"v":{"total":[15.6,16.1,16.4,15.8,16.9,17.3,15.5,15.7,15,14.9,16.1,17.1,16,14.8,14.8],"script":[2.5,2.2,2.5,1,2.5,2.4,2.4,1.9,1.4,2.2,1.6,1.9,2.4,1.9,1.9],"paint":[11.3,12.4,12.5,12.8,12.8,13.8,11.7,12.7,12.2,11.7,14.2,13.9,12.1,11.9,11.8]}},{"b":5,"v":{"total":[13.4,13.9,13.6,13.5,13.8,13.6,13.6,13.7,13.3,13.2,13.4,13.4,13.4,13.5,13.2],"script":[1.5,1.5,1.3,1.4,1.4,1.5,1.3,1.5,1.5,1.3,1.3,1.3,1.3,1.4,1.5],"paint":[11,11.1,11.2,10.9,11.3,11.1,11.2,11.2,10.6,10.8,11,11.2,10.9,11.6,10.6]}},{"b":6,"v":{"total":[348,352.5,349.3,351.1,351.4,351.3,351.9,349.2,356.3,349.5,352.8,351.6,355.6,348.3,349],"script":[68.2,68.7,68.6,68.2,68.8,70,70.2,70.1,68.9,69.9,69.3,69.9,69,69.5,69.3],"paint":[228.8,229.2,229.2,230.3,231.4,230.4,230.7,228.2,232.5,228.9,232.5,230.4,231.8,227.8,228.9]}},{"b":7,"v":{"total":[37.5,37.6,37.1,37,37.7,37,38,38.3,37.5,37.5,37.6,38.1,38.2,38.2,38],"script":[6.2,6.4,6.2,6.2,6.2,6.3,6.5,6.3,6.4,6.1,6.2,6.3,6.2,6.5,6.3],"paint":[27.5,27.3,27,26.9,27.5,26.7,27.4,27.9,27.2,27.6,27.5,27.7,27.8,27.8,27.8]}},{"b":8,"v":{"total":[19,19.7,20.2,21.2,21.1,19.4,20.9,18.9,20.6,18.6,20.2,19.6,19.4,20.7,20.3],"script":[17.3,17.5,18.3,19,18.7,17.4,19.1,17.4,18.8,16.5,17.9,17,17.3,18.3,18.4],"paint":[1.1,0.5,0.3,1.5,1.4,1.1,1,0.3,0.3,1.1,1.2,1.7,1.8,1.6,1.7]}},{"b":9,"v":{"DEFAULT":[1.52]}},{"b":10,"v":{"DEFAULT":[4.79]}},{"b":11,"v":{"DEFAULT":[4.86]}},{"b":12,"v":{"DEFAULT":[2.12]}},{"b":13,"v":{"DEFAULT":[29.35]}},{"b":14,"v":{"DEFAULT":[144.2]}},{"b":15,"v":{"DEFAULT":[44.7]}},{"b":16,"v":{"DEFAULT":[148.9]}}]},
+{"f":6,"b":[{"b":0,"v":{"total":[36.5,38,38.2,37.9,39.2,39,37.8,36.6,38.1,37.2,38.8,38.5,39.3,39.2,38.8],"script":[5.7,5.8,6,5.7,5.8,5.9,5.8,5.9,5.8,5.9,5.8,5.8,5.8,5.8,5.6],"paint":[22.2,22,21.7,21.9,22.2,21.7,21.7,21.9,22.1,21.9,21.8,22.4,22.2,22.1,21.9]}},{"b":1,"v":{"total":[42.8,37.8,39.1,38.9,36.9,44.8,40.7,40.3,37.9,38.9,37.9,41.9,38.6,38.3,40.8],"script":[10.2,10.1,10.1,10.2,10.4,10.3,10.3,10.4,10.6,10.4,10.6,9.9,10.1,10.2,10.2],"paint":[22.9,22.8,23.1,22.9,23.2,23.4,23.5,22.8,23.2,22.8,23.1,22.7,23,23,22.8]}},{"b":2,"v":{"total":[12.5,13.3,13,30,13.8,12.2,13.3,12,28.2,13.6,13.3,11.9,27.7,12.3,12.6],"script":[3.2,3,3.2,2.7,3.3,3.1,3.4,2.2,2.6,3.1,3.6,2.9,2.2,2.8,2.5],"paint":[9.2,9.6,9.4,11.7,9.1,8.2,9.7,8.8,8,9.4,8.7,8.5,9.7,9.4,10]}},{"b":3,"v":{"total":[4.8,5.1,4.2,4,4.8,4.5,4.1,4.6,4.6,3.9,4.5,4.7,4.6,3.9,4.8,5.9,5.2,4.9,4.6,4,4.3,4,5,4.6,5],"script":[2.7,2.7,2,2.2,1.9,2.6,2.2,2.4,2.3,1.9,1.9,2.3,2.4,1.3,2.2,2.9,2.3,2.4,2.3,2,2.4,0.9,2.8,2.2,2.7],"paint":[2,2.2,2.2,1.7,2.7,1.7,1.3,1.6,2.2,1.1,1.1,2.3,1.6,2.5,1.1,2,2,1.6,2.1,1.1,1.8,1.9,1.1,1.8,2.2]}},{"b":4,"v":{"total":[15.9,14.9,14.9,31.5,14.6,15,14.4,15.6,15.3,14.4,14.8,31.9,30.6,14.4,30.5],"script":[2.2,2.2,1.7,1.8,1.9,2.5,2.3,2,1.3,1.7,2.5,2.5,1.7,1.4,1.7],"paint":[13.6,11.9,12.6,13.5,11.6,12.4,11.9,12.4,11.3,12.6,12,12.6,13.6,12.8,12.5]}},{"b":5,"v":{"total":[13.3,14.9,15.6,12.3,11.2,15.3,13.9,14.8,12.7,15.3,15.6,13.7,11.6,15.3,13.2],"script":[1.8,1.3,1.9,1.4,0.9,1.8,1.3,1.1,1.4,1.1,1.7,1.4,1.6,1,1.3],"paint":[9.6,10,10.1,9.9,9.8,9.8,10,10,9.7,10.1,9.8,10.1,9.8,10.8,10.3]}},{"b":6,"v":{"total":[346.9,349.2,344.2,349.2,345.4,344.8,343.6,346.9,346.9,347.4,346.9,343.1,344.3,345,346.3],"script":[56.7,56.7,56.3,56.9,56.6,55.5,56.5,57.5,57.4,57.5,57.2,55,57.3,56.6,56.6],"paint":[237.9,235.9,236.3,236.7,235.6,236.3,234.9,236.5,235.6,236.9,236.3,236.4,236,236.3,235.4]}},{"b":7,"v":{"total":[42.1,41.4,41.7,42.6,42.8,41.7,42,41.3,43.7,41.8,41.3,41,41.5,43.8,41.9],"script":[6.3,6.1,6.1,6.2,6.3,6.1,6.2,6,6.2,6.1,6,5.8,6.2,6.1,6.2],"paint":[26.6,26.2,26.6,26.5,26.4,26.6,26.5,25.9,26.3,26.3,26.2,26.4,26.3,26.5,26.8]}},{"b":8,"v":{"total":[15.1,16.1,13.9,15.5,16,14.1,32.9,13.6,16.6,31.2,17,14.7,14.5,14.1,13.2],"script":[13.4,14.2,12.3,12.4,13.9,11.2,14.5,12.4,14.7,13.6,15,12.5,12.9,11.9,12.5],"paint":[0.5,1.1,0.7,2.3,1.3,1.3,1.5,0.3,1.2,1.3,1.4,1.8,0.9,2,0.7]}},{"b":9,"v":{"DEFAULT":[1.13]}},{"b":10,"v":{"DEFAULT":[3.72]}},{"b":11,"v":{"DEFAULT":[3.79]}},{"b":12,"v":{"DEFAULT":[1.77]}},{"b":13,"v":{"DEFAULT":[22.88]}},{"b":14,"v":{"DEFAULT":[110.6]}},{"b":15,"v":{"DEFAULT":[33.7]}},{"b":16,"v":{"DEFAULT":[118.5]}}]},
+{"f":7,"b":[{"b":0,"v":{"total":[32.6,32.5,33.1,33,32.7,32.5,32.5,32.5,32.2,33.7,32.4,33.3,32.4,33.3,33.4],"script":[6.6,6.5,6.4,6.6,6.6,6.7,6.7,6.6,6.6,6.6,6.4,6.8,6.4,6.9,6.7],"paint":[22.6,22.7,23.4,23.1,22.8,22.6,22.5,22.5,22.3,23.7,22.6,23.1,22.6,23.1,23.3]}},{"b":1,"v":{"total":[38.9,38.3,39.2,38.4,38.8,37.6,38.5,38.5,37.9,39,38.2,38.4,38.4,38.2,39.2],"script":[12.2,11.9,12.3,12.1,11.9,11.8,11.9,11.8,12,11.9,11.9,11.8,12.1,11.8,12.2],"paint":[23,23,23.4,23,23.4,22.5,23.2,23.1,22.6,23.4,22.9,23.1,23,23,23.6]}},{"b":2,"v":{"total":[12.1,12.6,11.7,12.8,12.6,12,12.6,12.6,13.1,12.5,12.9,12.8,12.1,12.5,13.2],"script":[2.3,2.4,1.9,2.5,2.3,0.9,2.6,2.1,2.7,2.1,2.7,2.3,2.5,2.3,2.6],"paint":[8.7,9.5,8.7,7.9,9.2,10.3,9.4,9.3,9.7,9.5,9.3,8.7,8.1,9.2,9.6]}},{"b":3,"v":{"total":[4.5,4.2,4.4,3.8,3.8,4.3,4.4,3.9,3.9,4.6,5.1,4.5,4.2,4.9,4.4,4.5,4,3.4,4.9,4.1,3.6,4.4,4.5,4.4,3.5],"script":[2.1,1.6,1.8,1.4,1.8,1.9,1.6,1.2,1.8,1.6,2.7,1.9,2,2.1,1.8,2,1,0.3,2.3,1.9,1.4,1.3,1.5,1.6,0.7],"paint":[1.4,2,1.8,2,1.3,1.9,1.9,2.6,2,2.9,1.9,1.8,1.3,1.6,2.4,1.7,2.9,2.6,1.8,1.6,1.6,2.5,1.9,1.9,2.7]}},{"b":4,"v":{"total":[123.5,123.8,119.3,122,121.7,125,130.3,123.6,122.8,123,125.3,120.1,123,125.4,123.9],"script":[21.9,21.9,21.8,22.5,21.5,21.6,25.2,23.8,22.3,21.3,23.1,21.4,23,22.7,22.8],"paint":[86.4,86.9,83.3,85.6,85.4,89.8,90.6,84.5,85.6,86.5,86.7,83.8,86.5,88.3,88]}},{"b":5,"v":{"total":[11.9,11.6,11.7,11.5,11.7,11.2,11.8,11.6,11.3,11.9,11.1,11.4,11.6,11.9,11.6],"script":[0.9,1,1.1,0.7,1.2,0.7,1.2,0.7,0.7,1.2,0.7,1.1,1.2,1.2,1.2],"paint":[10,9.9,9.9,10.2,9.7,9.5,9.9,10.5,10.2,10.4,9.2,9.4,9.6,10.1,9.8]}},{"b":6,"v":{"total":[352.5,353.9,354.1,353.9,355.3,359,352.1,354.3,355.4,354.1,350.9,352,354.4,356.1,355.4],"script":[71.3,72,72.8,71.8,72.4,73.7,71.4,72.3,71.9,71.8,71.8,71.3,72.3,71.5,72],"paint":[230.8,230.6,231,231.3,232,233.9,230,231.4,232.3,231.8,228.2,230.2,230.7,232.8,232.4]}},{"b":7,"v":{"total":[37.9,38.2,38.1,37.8,38.1,38,37.8,38.5,37.7,39.1,38.5,37.9,37.4,37.7,37.9],"script":[6.5,6.5,6.7,6.6,6.7,6.7,6.5,6.6,6.7,6.6,6.6,6.7,6.7,6.5,6.7],"paint":[27.5,27.7,27.4,27.4,27.4,27.4,27.6,27.9,27.2,28.3,27.8,27.3,26.8,27.3,27.2]}},{"b":8,"v":{"total":[21.5,21.2,22.1,22.7,22.4,21.6,21.9,22.5,21.3,23.5,22.2,22.1,20.6,20.5,21.2],"script":[19.6,19.4,20.2,20.6,19.8,18.9,20,20.4,19.2,21.7,20.3,20,18.9,18,19.2],"paint":[0.3,0.3,1.2,1.2,2.1,1.7,1.1,1,0.6,1.2,0.5,0.5,0.3,1.7,1.6]}},{"b":9,"v":{"DEFAULT":[1.57]}},{"b":10,"v":{"DEFAULT":[4.96]}},{"b":11,"v":{"DEFAULT":[5.02]}},{"b":12,"v":{"DEFAULT":[2.35]}},{"b":13,"v":{"DEFAULT":[30.68]}},{"b":14,"v":{"DEFAULT":[151.4]}},{"b":15,"v":{"DEFAULT":[46.3]}},{"b":16,"v":{"DEFAULT":[166.9]}}]},
+{"f":8,"b":[{"b":0,"v":{"total":[30.6,30.1,31.3,32.4,31.6,31.3,31,30.9,30.7,31.2,31.2,31,30.9,30.9,31.7],"script":[7.7,7.6,8.6,8.9,8.8,8.7,8.5,8.5,8.4,8.7,8.6,8.4,8.6,8.4,8.7],"paint":[22.3,21.9,22.1,22.8,22.2,22,21.9,21.8,21.7,21.9,22,22,21.8,21.9,22.5]}},{"b":1,"v":{"total":[36.2,35.4,36.5,36.6,35.5,36.2,36,37.2,36.6,36.1,36.5,36.8,36.2,35.8,36],"script":[12.5,12.5,13.3,13.4,12.8,13,13.3,13.4,13.5,13.4,13.3,13.4,13.2,13.4,13.5],"paint":[23.1,22.3,22.5,22.6,22.1,22.6,22.1,23.2,22.5,22,22.5,22.8,22.3,21.8,21.9]}},{"b":2,"v":{"total":[40,40.1,39.9,39.5,39.7,39.7,39.4,42.1,39,40.7,38.5,39.9,40.8,39.3,39.8],"script":[28.5,27.2,27.7,27.3,27.2,28.1,27.7,28.5,27.2,28.2,26.9,28.8,29.1,27.1,27.2],"paint":[9.7,11.5,10.6,10.6,10.4,9.7,9.3,11.1,10.5,10.7,9.2,8.9,9.7,10.5,10.7]}},{"b":3,"v":{"total":[30.1,32,29.3,29.9,29.7,30.4,29.9,31.4,31,29.8,30.2,29.6,32.4,29.6,33.4,30.7,30.8,30.7,30.1,31.7,30.4,30.3,30.6,30.6,30.4],"script":[26.3,28.5,25.6,26.4,26.1,27.2,26.5,27.9,27.6,26.6,27,26.3,28.2,25.7,29.2,27.6,27.1,27.4,27.3,28.1,27.5,27.1,26.7,27.2,27.1],"paint":[2.4,1.8,2.1,1.8,2.2,2,1.9,1.8,2.6,1.1,1.9,2.3,1.2,2.1,2.9,1.1,2.3,2,1.2,1.6,1.6,1.7,2.4,1.6,2.2]}},{"b":4,"v":{"total":[42,42.3,42.9,41.1,42,41.7,41.3,42.5,42.7,46.5,40.8,44.1,41.9,43.4,42.7],"script":[27.5,26.9,27.5,26,26.8,26.9,26.6,27.2,27.2,28.6,26.3,28.5,26.7,27.7,28.1],"paint":[12.3,13.1,13.9,13.1,13,11.8,13.2,13.1,13.9,14.4,12.6,13,14,14.2,12.7]}},{"b":5,"v":{"total":[91.6,95.2,89.8,90.2,91.6,90.5,88.7,90,90.2,89.9,90.6,90.3,90.8,89.9,90.8],"script":[46.1,50.2,45.7,45.7,47.5,45.4,44.6,45.5,45.9,46.2,45.7,46,47.2,45.2,46.4],"paint":[43.5,43.4,42.6,43.2,42.8,43.6,42.9,43.2,42.7,42.6,43.4,43,42.5,43.4,43.1]}},{"b":6,"v":{"total":[310,303.4,312.5,317.8,314.8,313.9,314,315,316.6,314.8,311.5,316.2,318.2,317.7,313.4],"script":[80.8,76.3,87.9,90.8,87.9,87.9,87.1,87.6,88.9,87.7,87.1,88.4,90.3,87.8,87],"paint":[221.2,219.3,217.1,219.5,219.2,218.5,219.1,219.7,220.1,219.4,216.8,219.9,220.4,221.7,218.7]}},{"b":7,"v":{"total":[42.7,41.5,42.4,43.1,41.9,42.4,42.7,42.7,42,42.8,43.1,43.2,42.9,42.3,43.5],"script":[15.3,14.9,15.2,15.8,15.1,15.3,15.5,15.6,15.1,15.4,15.8,16,15.8,15.6,16],"paint":[26.3,25.6,26.1,26.1,25.8,26.1,26.2,26.1,25.8,26.3,26.3,26.1,26,25.6,26.4]}},{"b":8,"v":{"total":[13.2,12.5,12.6,13,13.1,13.5,14.8,12.3,13.1,13.7,13,13.3,12,13.4,12.8],"script":[11.1,11,10.5,10.9,11.2,11.8,12.7,10.9,10.9,12.2,10.9,11.4,10.8,11.4,10.1],"paint":[1.8,0.7,1.4,1.4,0.7,0.3,0.5,0.3,0.8,0.9,1.2,0.9,1,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[2.49]}},{"b":11,"v":{"DEFAULT":[2.55]}},{"b":12,"v":{"DEFAULT":[8.4]}},{"b":13,"v":{"DEFAULT":[17.94]}},{"b":14,"v":{"DEFAULT":[19]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[42.7]}}]},
+{"f":9,"b":[{"b":0,"v":{"total":[67.8,67.8,65.7,67,66.7,67.9,68,64.4,66.9,69.9,64.2,68.4,66.2,70.4,68],"script":[37.1,36.8,36.2,37.2,37.1,37.3,37.5,37.3,36.6,36.8,36.5,36.8,36.6,37.7,38.2],"paint":[24.4,23.9,24,24.5,23.8,23.7,24.2,24,24.4,24,23.8,24.5,24.1,24.6,24.2]}},{"b":1,"v":{"total":[70.7,72.9,69,70.6,69,71.3,70.5,72,71,71.5,69,70.7,69.6,71.3,70.2],"script":[41.2,42.4,41.6,41.5,40.9,41.3,40.3,41.7,40.8,41.6,40.9,41.6,40.7,42.3,41.4],"paint":[23.7,23.8,24,23.8,23.6,23.8,24,23.9,23.7,24,23.7,24.2,23.9,23.9,24]}},{"b":2,"v":{"total":[38.9,39.5,55,38.7,54.4,38.6,40.7,38.1,38.8,40.2,54.1,54.8,38.4,39.5,38.7],"script":[24.4,24.1,24.2,23.1,23.5,23.9,24.7,22.8,22.9,23.5,22.8,23.4,22.9,24.1,24],"paint":[13.2,13.7,13.9,13.9,14.2,13.6,13.4,14.3,14.2,15.2,12.4,13.9,14.5,13.2,14.1]}},{"b":3,"v":{"total":[11.8,12.2,12,13.3,11.4,11.3,12.3,12.1,12,11.3,10.9,11.6,11.5,13.9,15.4,11.8,11.8,12.4,12,10.2,10.6,11.9,11.5,12,11.6],"script":[7.4,6.8,6.3,6.7,6.7,6.2,6.3,6.9,6.6,6.3,6.1,7.2,6.7,7.3,6,6.9,7.1,6.6,7,6.2,6.2,6.5,7.3,6.2,7],"paint":[3.1,3.3,5,3,3.6,3.8,4.1,4.1,5,2.6,2.4,3.2,3.6,4.6,4.3,3.4,3.2,3.6,3.4,3.1,3.6,4.3,3,3,3.7]}},{"b":4,"v":{"total":[44.1,42.9,44.6,43.2,45.3,43.3,57.9,58.1,61.4,42.8,43.7,42.7,59,60.4,60.2],"script":[23.7,22.9,24.2,25.1,25.7,25,23.9,24.3,26,24.8,23.6,23.5,23.6,24.9,25.1],"paint":[17.1,16.3,17.3,16.4,17.3,16.7,15.7,16.4,18.3,16.5,17.4,16.1,17.3,17.5,17.4]}},{"b":5,"v":{"total":[68.4,69.8,71.7,69.5,69.8,69.4,68.8,69.5,68.9,69.5,69.1,69,69.5,68.9,68.9],"script":[18.5,19.2,17.7,19.3,19.2,19.2,18.9,19.1,18.8,19.4,18,19.2,19.6,19.2,18.9],"paint":[48.3,49.2,47.5,48.6,49,48.8,48.5,48.3,49,48.4,45.9,48,48.3,48.7,48.6]}},{"b":6,"v":{"total":[537.7,542.2,541.8,542.6,543.2,543.1,547,542.7,539.5,541.1,543.9,536.5,549.5,546.8,543.6],"script":[288.2,289.2,290.6,292.9,294.1,291.7,299.1,292.5,290.4,292.6,293.1,289.9,295.2,289.1,294.2],"paint":[244.2,248,245.8,244.8,244.2,246.2,242.8,245.2,243.7,243.4,245.3,241.5,249.1,252.6,244.2]}},{"b":7,"v":{"total":[82.5,78.3,79.1,79,79.6,79.5,81.4,79.2,82.2,80.7,80.1,79.2,84.4,81.1,79.5],"script":[45.7,44.7,45.8,45.8,46,46.2,45,46.1,45,45.8,46,46.1,45.6,45.9,45.7],"paint":[28.3,28.5,28.3,28.2,28.2,28.3,28.1,27.2,29,28.9,28.8,27.9,29.3,28.9,28.5]}},{"b":8,"v":{"total":[24.3,20.9,22.7,23.2,21.3,21.8,23.3,42.3,24,42.9,22.1,23.4,42.9,22.7,23],"script":[19,17.4,18.6,18.6,17.9,18.1,19.9,18.9,18.9,17.5,18.5,19.5,17.1,18.2,18],"paint":[3.4,2.3,1.8,3.6,2.9,3.5,2.3,1.7,2.8,3,2.6,2.1,3.2,2.6,3.4]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[10.92]}},{"b":11,"v":{"DEFAULT":[10.99]}},{"b":12,"v":{"DEFAULT":[50.8]}},{"b":13,"v":{"DEFAULT":[103.83]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[50.4]}}]},
+{"f":10,"b":[{"b":0,"v":{"total":[31.8,39.4,33.3,33.4,33.9,40,33.7,39.8,31.9,32.3,31,37.8,31.8,34.2,33.1],"script":[5.4,5.6,5.9,6.1,5.9,5.7,5.6,5.7,5.8,5.5,5.5,5.7,5.3,5.8,5.7],"paint":[21.2,21.6,21.9,21.9,22.8,22.8,22.4,22.1,21.4,22.3,21.9,22.2,21.6,23.1,22.7]}},{"b":1,"v":{"total":[36.9,35.7,38.5,35.3,36.6,37.6,38.1,37.4,38.7,33.6,37.9,34.3,39.3,38.1,35],"script":[8.7,8.6,8.2,8.4,8.5,8.8,8.7,8.6,8.6,8.9,8.6,8.6,8.6,8.6,8.6],"paint":[22.8,22.6,22.5,22.5,21.9,22.9,22.1,22.6,22.4,22.6,22.1,22.1,22.4,22.7,22.7]}},{"b":2,"v":{"total":[36.4,17.8,34,34.7,18.4,18.9,20,36.8,16.7,17.1,34.4,17.1,33.6,35.2,17.8],"script":[5.8,5,5.1,4.6,5.3,4.8,5.5,6.3,4.5,4,4.7,4.2,4.9,5.2,5.1],"paint":[10.5,12.2,11.7,11.9,12.2,11.2,13.2,14.5,11,11.6,12.2,11.2,12.3,11.8,12]}},{"b":3,"v":{"total":[12.1,5.7,5.7,6.3,5.5,12.1,7.6,8,8.6,12.1,9.7,8.3,11.2,5,12.2,13.8,13.3,5.2,12.3,5,11.2,8.1,12.2,12,6.3],"script":[3.1,1.8,2.4,2.2,1,1.3,2.3,1.4,2,1.5,2.6,1.1,2.7,1.9,2.2,1.7,2.6,1.6,1.9,1.7,3.2,2.4,1.5,1.7,3],"paint":[3.3,2.3,3.1,2.9,3.4,2.3,3,1.8,2.6,3.1,3.7,2.4,3.9,2.9,3.4,3,3.7,2.7,2.8,2.6,3.1,3.4,3.1,3.3,3]}},{"b":4,"v":{"total":[34.3,32,32.4,33.6,33.3,32.9,33.7,32.8,33.7,32.3,33.7,33,33.1,32.9,32.7],"script":[1.8,2.1,1.9,1.6,1.5,1.4,1.8,1.9,2.6,2.3,2.1,1.9,1.2,2.3,2.3],"paint":[14.8,14.7,15.4,15.7,16.7,15.6,15.3,15.1,14.8,13.2,15.1,14.9,16,15.6,14.6]}},{"b":5,"v":{"total":[13.5,13.4,13.6,16.9,18.2,17,13.3,15.9,13.2,12.8,16.4,13.3,18.6,15.2,13.4],"script":[1,0.9,1,1.3,1.4,0.8,0.8,0.8,1,0.8,1,1.3,1.8,0.9,0.9],"paint":[11.5,11,11.3,11,10.8,11.6,11.2,11.2,11,10.6,11.8,10.6,11.4,11.2,11.1]}},{"b":6,"v":{"total":[286,289.1,291.3,288,289.7,286.8,290.9,287.8,293,285.3,288.9,290.6,287.8,290,287.8],"script":[69.8,71,67.4,70,66.9,67,66.9,68.4,66.3,67.1,70,70.2,72.2,68.5,68.6],"paint":[212.8,211.6,214.5,213.4,214.4,215.9,214.6,212.1,216.8,214.4,211.7,213,211.8,213.9,214.9]}},{"b":7,"v":{"total":[39.8,40.2,40,53.1,41,40.8,41.1,40.9,40,39.9,34.4,39.4,39.3,41.9,40.4],"script":[7,7.2,7.2,7.5,7.3,7.3,7.3,7,7.2,7.2,7.3,7.2,7.1,7.2,7.2],"paint":[26.9,26.9,26.7,26,27.9,27.6,26.3,25.8,26.8,26.7,26.6,26.4,26.3,27.6,27.3]}},{"b":8,"v":{"total":[12.7,12.3,12.9,11.7,11.9,11.7,11.7,32.3,13.8,12.2,11.4,12.7,11,32.4,13.8],"script":[8.6,7.8,9.1,7.9,8.5,8.7,8.1,8.4,9.3,9.4,8.3,8.8,7.9,7.6,9.4],"paint":[1.6,3,2.2,3.6,2.7,1.7,2.4,2,2.5,1.9,2.6,3.4,2.3,2,2.1]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.82]}},{"b":11,"v":{"DEFAULT":[3.86]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[31.57]}},{"b":14,"v":{"DEFAULT":[14.3]}},{"b":15,"v":{"DEFAULT":[4.6]}},{"b":16,"v":{"DEFAULT":[43.9]}}]},
+{"f":11,"b":[{"b":0,"v":{"total":[32.7,32.1,33.3,32.6,32.6,32.5,32.2,31.9,33.2,31.7,32.3,32.2,33,32.3,31.8],"script":[9.9,9.4,9.6,9.7,9.8,9.6,9.9,9.4,10,9.4,9.9,9.7,10.3,9.7,9.6],"paint":[22.2,22.1,23.1,22.3,22.2,22.3,21.7,21.9,22.6,21.8,21.9,21.9,22.1,22.1,21.7]}},{"b":1,"v":{"total":[39.3,39.2,39.3,39.2,39.5,39.3,39.6,39.4,39.6,38.6,39.3,39.3,39.1,39.1,39.1],"script":[14.9,15.3,15.2,15.2,15.5,15.2,15.7,15.3,15.4,14.5,15.4,15.1,15.3,14.8,15],"paint":[23.9,23.3,23.5,23.4,23.5,23.5,23.3,23.5,23.6,23.6,23.3,23.7,23.2,23.7,23.5]}},{"b":2,"v":{"total":[12.2,24.1,14.8,12.9,12.6,11.4,22.7,26,12.4,24.9,13.5,24.4,11.9,13.9,22.7],"script":[1.1,2.2,2.1,1.9,1.4,1.3,1,1.2,1.8,0.9,1.9,1.8,1.2,1.2,2.1],"paint":[10.2,10,11.2,10.4,10.3,9.9,9.4,12.2,10.4,12.1,10.8,10.3,8.4,11.7,9.2]}},{"b":3,"v":{"total":[7.3,7,6.7,7.2,6.9,7.6,6.6,7.8,6.5,9.4,6.2,6.5,7,8.1,7.9,7.4,7.1,7.1,6.2,6.3,7.8,7.5,7.2,6.4,6.5],"script":[4.4,4.2,3.9,4.8,3.1,3.8,3.5,4,3.8,3.6,4,4.5,3.9,4,3.8,4.3,4.8,4.3,4.3,4.3,4,4.9,4.9,4.5,4.1],"paint":[1.3,2.6,2.6,1.7,2.7,2.3,1.5,1.8,2.5,2.6,1.6,1.8,2,2.2,2.2,1.6,1.5,2,1.7,0.8,1.4,1.7,1.7,1.8,1.8]}},{"b":4,"v":{"total":[15.8,16.3,17.4,15.9,16,18,16.7,15.3,17.4,17.3,16.6,17.5,18.4,18.9,15.5],"script":[1.6,2.2,2.9,1.9,2.3,3.5,3.6,2.2,3.7,3.4,2.4,3.7,4,3.4,1.9],"paint":[13.2,13.2,13.4,13.4,12.7,13.2,11.6,12,13.4,12.5,13,12.5,13.4,14,12.7]}},{"b":5,"v":{"total":[11.7,11.7,12,11.9,11.9,11.6,11.6,12.4,12.5,11.6,11.8,11.5,12.4,11.6,11.5],"script":[1.2,0.9,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2],"paint":[9.5,10.2,10.6,10.2,10.4,9.4,9.8,10.2,10.4,9.9,9.7,9.8,10.5,9.8,9.4]}},{"b":6,"v":{"total":[342.6,343.6,346,344.1,340.3,341.7,345.1,345,344.1,343.9,344.7,346.4,342.9,343.8,342.7],"script":[110.1,109,109,110,107.5,108.6,108.9,109.2,108.5,109.9,109.8,109.1,108.4,108.1,108.2],"paint":[224.1,226.6,228.8,226.2,224.9,225.1,227.9,227.2,227.5,226.1,227,229.1,226.1,227.6,226.2]}},{"b":7,"v":{"total":[39.9,39.4,38.3,38.4,38.7,38.5,39.8,38.9,39.8,38.9,38.9,39.3,39.2,39.3,39.9],"script":[10.9,10.7,10.7,10.9,10.9,10.9,10.9,10.8,10.8,10.5,11,11,10.9,11,10.8],"paint":[27.9,27.6,26.5,26.5,26.8,26.5,27.9,27,27.9,27.4,26.7,27.2,27.3,27.3,28]}},{"b":8,"v":{"total":[22.3,22.6,23.7,22.4,22.3,23,22.8,24.8,22.5,24,23.6,22.8,22.3,23,22.4],"script":[20.4,20.4,21,20.5,20.4,21.2,20.4,22.3,20.1,21.9,21.3,20.4,20.6,20.8,20.7],"paint":[1,1.2,2,1.2,1,1.3,1.5,1.6,1.4,0.6,1.2,0.7,1.1,1.2,1]}},{"b":9,"v":{"DEFAULT":[1.97]}},{"b":10,"v":{"DEFAULT":[6.93]}},{"b":11,"v":{"DEFAULT":[6.96]}},{"b":12,"v":{"DEFAULT":[6.96]}},{"b":13,"v":{"DEFAULT":[47.92]}},{"b":14,"v":{"DEFAULT":[203.9]}},{"b":15,"v":{"DEFAULT":[56.3]}},{"b":16,"v":{"DEFAULT":[216]}}]},
+{"f":12,"b":[{"b":0,"v":{"total":[81.8,84.2,83.1,84.1,83.8,85.1,84.3,82.8,82.9,84.1,83.2,85.2,85.4,82.7,84],"script":[52.2,53.9,53.4,53.7,53.6,54.8,53.5,52.5,52.8,53.6,53,55,55.1,52.6,53.1],"paint":[26.3,27,26.5,27.1,27,27,27.5,27.1,26.9,27.3,27.1,26.9,27.1,26.9,27.7]}},{"b":1,"v":{"total":[98.2,105.1,97.4,99,98.8,98.9,98.9,98.6,97.7,99.1,98.3,98.6,98.2,98.2,97.5],"script":[67,72.1,67.1,68.2,67.8,67.8,67.5,67.7,67.1,67.3,67,67.6,67.3,67.4,67],"paint":[27.6,28.9,26.9,27.5,27.6,27.6,27.9,27.5,27.3,28.3,27.9,27.4,27.4,27.4,27.2]}},{"b":2,"v":{"total":[94.8,94.6,95.2,95.9,94.8,94.4,95.4,93,93.5,94.5,94.2,94.1,95.2,94.8,95.7],"script":[50,50.3,50.1,50.8,50.8,50.5,50.3,49.8,50.1,50.9,50.9,50.3,51,50.6,49.6],"paint":[13.1,11.8,13.2,12.3,13.4,12.7,10.9,11.7,12.5,12.4,12.4,12.3,12.5,11.8,12.8]}},{"b":3,"v":{"total":[88.7,83,81.4,81.3,85.5,83.6,83.9,79.9,82.4,80.8,79.9,81.8,80.6,84.3,84.5,84.2,82.4,81.2,82.2,82.6,83.2,83,82.9,83.3,83.8],"script":[43.4,44.8,42.9,42.6,42.9,43,43.2,43,43.8,44.5,44.6,44.8,44,45.4,43.5,43.6,43,43.8,44.5,45.2,46.1,43.5,44.8,44.4,44.4],"paint":[2.9,3.1,2.6,2.1,2.2,2.6,2.7,3,3.1,2.4,2.9,2.9,2.3,3,2.1,2.6,1.6,2.2,2,2.1,2.8,2.2,2.2,2.6,2.4]}},{"b":4,"v":{"total":[95.1,88.1,83.6,86.6,86.5,85.2,84.7,88.4,81.5,95,84.2,86.1,82.4,88.6,94.5],"script":[40.1,41.2,40.1,39.8,40.3,41.1,40.3,42.3,40,40.7,40.3,40,40.6,40.3,39.2],"paint":[17,14.6,16.1,14.2,14.6,15.1,14.6,15.1,16,14.3,15.2,14.6,14.6,15.2,14.9]}},{"b":5,"v":{"total":[93.4,35.4,34.6,36.7,34.4,34,36.3,35.3,36.4,34.4,36.8,35,35.4,36.9,39.5],"script":[21.6,20.2,20.7,20.2,21.7,21.1,21,20.2,21.5,21.8,21,21,20,21.7,21.5],"paint":[11.3,10.6,11.2,11.3,10.9,10.8,11,11.3,11.2,11.4,11,10.9,11.4,12.2,11.3]}},{"b":6,"v":{"total":[752.2,776.6,768.9,760.1,769.3,760.9,766.9,749.6,758,761,765.5,770.9,762.8,770.6,767.6],"script":[436.2,430.2,429.3,437.4,425.5,424.7,428.5,435.8,444.8,441.5,441.5,427,440.6,428.7,432],"paint":[257.8,292.3,286.5,265.1,288.6,283.2,284.9,256.2,256.9,263.9,267.9,287.5,265.9,286.7,281.8]}},{"b":7,"v":{"total":[117.2,115.8,111.7,119.3,112.3,111,111.9,114.4,114.1,111.5,111.1,116.9,117.5,114.7,111.3],"script":[65.1,65.1,65.6,65.5,66.3,65.8,65.3,65.6,65.3,65.2,64.8,65.6,65.2,66.1,65.3],"paint":[26.3,25.9,26.6,25.9,26.4,26.2,26.1,26,26.6,26.4,26.1,26.3,27.1,25.8,26.7]}},{"b":8,"v":{"total":[45.1,41.8,42.5,42.4,44.4,43.8,44.1,42.2,42.2,43.3,41.5,41.7,41.1,41.8,42.1],"script":[43.2,39.7,40.5,40.8,42.2,41.1,42.4,40.3,40.5,40.8,39.8,40,40,39.7,40.4],"paint":[1.8,1.9,1.1,0.7,1,2.6,0.7,0.9,0.7,1.9,1.7,1.2,0.4,1,1.6]}},{"b":9,"v":{"DEFAULT":[41.08]}},{"b":10,"v":{"DEFAULT":[52.7]}},{"b":11,"v":{"DEFAULT":[52.88]}},{"b":12,"v":{"DEFAULT":[49.38]}},{"b":13,"v":{"DEFAULT":[134.1]}},{"b":14,"v":{"DEFAULT":[4208.3]}},{"b":15,"v":{"DEFAULT":[1377]}},{"b":16,"v":{"DEFAULT":[67.5]}}]},
+{"f":13,"b":[{"b":0,"v":{"total":[77.8,80.6,81,85.3,79.2,81.5,85.1,82.3,86.4,79.6,84.7,81.3,80,79.7,85.6],"script":[47.8,50.1,50.6,50.3,49.5,50.3,49.6,50.8,51,49.7,48.9,50.7,49.9,49.4,50.3],"paint":[26.6,27.3,27.3,27.1,26.5,27.7,27.5,27.2,27.7,26.6,28.2,27.1,26.8,27,27.2]}},{"b":1,"v":{"total":[82.1,91,91.5,92.3,91.8,91.9,91.4,90,90.6,89.8,90.8,90.4,90.7,91.6,90.7],"script":[56.2,58.5,59.7,59.5,59.6,59.5,59.1,57.9,59.1,58.1,58.2,58.1,58.9,59.3,58.9],"paint":[22.2,29,28.4,29.2,28.6,28.9,28.8,28.4,28,28.2,29.1,28.8,28.4,28.8,28.2]}},{"b":2,"v":{"total":[94.7,94.8,95.7,94.4,94.7,94,94.6,95.1,88.3,93.9,94.6,94.4,94.1,94.4,95],"script":[40.2,40.8,40.7,40,39.8,40.3,39.6,39.5,40.1,39.7,40.4,40,39,39.6,40.8],"paint":[12.6,12.2,12.6,12.1,12.6,13.5,11.8,12.2,11.5,11.4,14.1,11.8,13.1,12,12]}},{"b":3,"v":{"total":[88,81.8,79.6,87.2,87.3,88.3,87.8,88.1,88,88.2,89.1,87.7,87.1,82.1,79.6,87.4,88.1,83.3,88.2,80.5,87.4,87.9,89,87,88.8],"script":[38.1,38.4,38.4,35.8,38.1,39,37.9,37.3,36.4,38.1,37.9,38,37.8,35.7,36.3,38.2,36.4,37.3,38.4,37,37.3,37.3,37.5,38.8,37.4],"paint":[1.9,1.9,2.4,3.2,3.6,3.1,2.3,2.7,1.9,2.3,3.2,2.1,2.1,1.7,2.3,2,2.2,1.7,1.3,2.1,2.5,2.7,2.5,3,2.3]}},{"b":4,"v":{"total":[88.8,85.3,87.9,86.6,93.9,87.7,94.8,83.1,94.4,94.6,94.5,89.9,88.6,89.9,88.4],"script":[32.8,32.1,33.4,33.1,33.3,32.4,32.1,31.5,32.8,32.3,33,32.2,32.6,32.8,32.6],"paint":[16.3,15.4,15.6,13.4,14.3,15.2,15.7,15.4,14.9,14.1,14.7,14.2,14.2,15.3,14.2]}},{"b":5,"v":{"total":[84.8,87.2,90.5,91.4,86.9,87.8,91,89.8,87.8,90.4,85.5,90.8,90.6,88.8,89.9],"script":[18.3,19,18.1,18.6,17.8,18.8,17.5,18.2,17.6,19.5,18.6,17.9,18.9,18.3,18],"paint":[11.5,11.5,11.2,12.1,11.6,11.8,11.4,11.3,11,11.4,11.4,11.5,11.4,11.3,11]}},{"b":6,"v":{"total":[731.9,735.3,734.3,733,732.1,739.4,741.7,741.3,732.8,738.5,738.5,736.3,738.3,736.7,743.6],"script":[396,399.3,404.6,402.2,402.2,400.4,409.6,407.7,404.8,409.1,405.5,402.8,402.9,402.3,413.3],"paint":[281.9,280.4,276.4,274.8,275.9,283.1,278.4,279.2,274.7,275.9,276.5,279.9,281.8,280.5,276.4]}},{"b":7,"v":{"total":[117.9,108.9,107.8,110.7,107.2,110.9,115,112.6,112.6,110.2,112.9,111,111.7,113.8,111.8],"script":[55.2,54.5,53.7,54.6,54.5,54.3,54.3,54,54.7,54.9,54.4,54,54.1,54.3,55.7],"paint":[31.4,32.7,32.4,32.4,31.9,32,32.5,32.5,32.4,32.6,32.5,32.7,32.7,33.2,32.3]}},{"b":8,"v":{"total":[43.3,43.5,42.8,45,45.8,43.8,43.6,44.1,42.9,43.9,42.9,41.6,42.8,42.2,42.9],"script":[41.8,41.4,41.3,43.4,43.7,42,42.3,42.6,41.6,41.7,41.2,40.6,41.2,41,41.2],"paint":[1.3,1.8,0.6,1.5,1.4,1,1.2,0.3,1.1,2.1,1.2,0.9,1.5,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[51.82]}},{"b":10,"v":{"DEFAULT":[64.8]}},{"b":11,"v":{"DEFAULT":[64.82]}},{"b":12,"v":{"DEFAULT":[61.36]}},{"b":13,"v":{"DEFAULT":[136.91]}},{"b":14,"v":{"DEFAULT":[12639]}},{"b":15,"v":{"DEFAULT":[2951.5]}},{"b":16,"v":{"DEFAULT":[68.7]}}]},
+{"f":14,"b":[{"b":0,"v":{"total":[24,24,24,24.3,24.2,24.4,24.2,23.9,24.3,24.3,23.9,24.1,24.3,24.2,24.6],"script":[2.4,2.4,2.3,2.3,2.4,2.4,2.4,2.3,2.4,2.4,2.3,2.3,2.4,2.4,2.4],"paint":[21.2,21.3,21.4,21.6,21.5,21.7,21.4,21.2,21.6,21.5,21.2,21.4,21.6,21.4,21.8]}},{"b":1,"v":{"total":[27.5,27.7,27.2,27.1,27,27.3,27.5,27.3,27.3,27.4,27.3,27.3,27.5,27.2,27.6],"script":[4.8,4.8,4.7,4.7,4.6,4.8,4.7,4.9,4.7,4.7,4.8,4.9,4.8,4.8,4.8],"paint":[22.3,22.5,22.1,22,22,22.1,22.4,22.1,22.2,22.3,22.1,22,22.2,22,22.3]}},{"b":2,"v":{"total":[10.8,10.9,10.5,11.3,11.9,10.2,10.6,11.2,10.6,11.3,10.3,10.4,10.9,10.2,11.1],"script":[0.7,0.8,0.6,1.2,0.7,0.2,1.3,0.9,0.9,0.9,0.5,1,0.6,0.2,1.2],"paint":[8.9,8.8,8.5,9.2,10.3,9.4,7.8,8.2,8.6,8.9,8.2,7.7,8.2,8.4,8.9]}},{"b":3,"v":{"total":[2.7,2.8,2.9,2.2,2.3,2.7,2.7,2.5,2.5,2.4,2.7,3.1,2.3,2.6,2.4,2.5,2.9,2.1,2.2,2.2,2.6,2.5,3.2,2.9,2.8],"script":[0.6,0.9,1,0.7,0.1,0.8,0.8,0.1,0.6,0.1,0.5,0.8,0.1,0.1,0.5,0.9,0.8,0.6,0.5,0.1,0.3,0.5,1,0.5,0.1],"paint":[1.6,1.3,1.8,1.3,1.3,1.8,1.1,1.5,1.1,1.8,2.1,2.2,1,2.4,1.8,1,2,1,1.6,1.2,2.2,1.3,1.4,2.2,1.5]}},{"b":4,"v":{"total":[13.2,13.6,13.7,14,13.5,13.6,13.4,12.9,13.2,13.7,13,13,13.5,13.4,13],"script":[0.1,1,1,1,0.1,0.8,0.6,0.5,0.7,0.8,0.6,0.6,0.8,1.2,0.1],"paint":[12.1,10.1,12.1,12.3,12.1,11.5,11.7,11.4,11.9,11.6,11,11.5,11.5,11.2,11.7]}},{"b":5,"v":{"total":[10.3,10.1,10.5,10.2,10.6,10.4,10.4,10.4,10.4,10.3,10.4,10.4,10.4,10.1,10.4],"script":[0.5,0.5,0.3,0.3,0.4,0.1,0.1,0.5,0.4,0.5,0.3,0.3,0.3,0.2,0.5],"paint":[8.9,9.1,9.3,9.2,9.5,9.6,9.6,8.9,9.1,8.9,9.5,9.5,9.5,9.3,9]}},{"b":6,"v":{"total":[262.1,259.5,262.5,260.1,258.8,259,260.1,258.4,257.8,257.9,259.1,258.8,258.6,258.9,258.1],"script":[28.3,27.1,27.6,27.1,27,27.8,27.5,27.3,27.6,27.6,27.5,27,27.3,28,27.3],"paint":[225.8,225.3,227.5,225.6,224.7,224,225.5,223.9,222.7,223.1,224.4,224.5,224.2,223.6,223.6]}},{"b":7,"v":{"total":[28.6,27.1,27.7,28,27.9,28.1,27.4,29.1,27.3,27.8,27.4,27.9,27.4,27.4,27.1],"script":[2.2,2.1,2.1,2.1,2,2,2.1,2,2,2,2,2,2.1,2,2],"paint":[25.7,24.3,24.9,25.2,25.1,25.3,24.6,26.2,24.5,25,24.6,25.1,24.6,24.7,24.3]}},{"b":8,"v":{"total":[9.4,9.4,8.8,9.3,8.7,9,10.1,8.8,8.4,9.5,9.6,9,8.9,8.6,8.6],"script":[7.6,7.1,6.5,7.4,6.9,7.3,8.4,6.7,7,7.7,7.7,6.7,7.5,6.8,6.8],"paint":[0.9,1.1,2.1,0.6,1,0.7,1,1.1,0.2,0.9,0.7,1.1,0.2,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[2.52]}},{"b":11,"v":{"DEFAULT":[2.53]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[18.25]}},{"b":14,"v":{"DEFAULT":[17]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[49.2]}}]},
+{"f":15,"b":[{"b":0,"v":{"total":[36.2,28,29.5,34.6,29.6,29.5,29.8,36.1,34.4,28.8,32.7,33.2,35,28.9,29.6],"script":[5.8,6.2,6.1,6,6,6.4,6.2,6.1,5.9,6.2,6,5.9,6.1,6.5,6.1],"paint":[20.8,21.5,21.4,21.5,21.1,21.6,21.6,21.5,21.3,21.5,22.9,20.9,21.2,21.5,21.6]}},{"b":1,"v":{"total":[33.8,33.6,38.2,39.5,33.2,38.5,40.4,38.5,38.2,32.9,33.6,39.8,33.6,33,33.2],"script":[11.1,10.4,10.5,10.6,10.8,10.6,10.5,10.4,10.6,10.8,11.2,10.7,10.9,10.5,10.7],"paint":[22.2,22,21.9,22.2,22,21.5,22.5,21.6,21.9,21.8,22.1,21.7,22.4,21.9,22.1]}},{"b":2,"v":{"total":[13.6,12.9,13.7,13.1,13.1,29.6,29.3,15.1,14.2,12.8,13.5,14.3,12.8,14,12.4],"script":[3.3,2.5,2.9,3.1,3,3.4,2.2,3.4,3.6,2.5,2.5,3.1,2.6,3.8,2.7],"paint":[10.2,9.5,10.4,8.9,9.2,10.1,10.7,10.9,10.4,9.6,10.2,10.1,9.3,9.7,9.2]}},{"b":3,"v":{"total":[3.9,4,4,3.6,3.5,3.4,4.7,3.7,4.2,3.5,3.4,3.9,3.4,3.8,3.8,3.9,4.3,3.9,3.9,3.2,3.3,3.6,4.2,3.8,3.9],"script":[1,1.8,2,1.5,1.6,1.2,2.3,1.6,1.7,1.4,1.7,1.3,1,1.9,1.3,1.4,2.2,1.6,1.7,1.3,1.5,1.5,1.5,1.6,1.6],"paint":[2,1.8,1.8,2,1.3,1.4,2.2,1.8,2,2,1.3,2.5,1.9,1.5,1.6,1.6,2.1,1.6,1.2,1.1,1.6,1.5,2.1,1.8,2.3]}},{"b":4,"v":{"total":[14.7,14,13.9,13.9,13.5,13.4,29.2,14.9,29.9,13.6,12.7,13.6,14.9,29.7,13.8],"script":[2.2,1.5,0.7,1.7,1,1.4,0.9,1.9,0.8,1.1,1,1,1.7,1.7,0.9],"paint":[11.5,11.7,12.1,12.1,11.6,11.4,12.7,12.1,13.2,12.5,11.1,11.5,11,11.7,12.7]}},{"b":5,"v":{"total":[10.8,10.9,9.6,9.8,10,10.3,9.6,9.3,10.1,10.3,9.3,9.8,9.3,9.8,9.6],"script":[0.9,1,0.4,0.4,0.9,1,0.6,0.7,0.9,0.4,0.6,0.8,0.7,0.4,0.5],"paint":[8.6,8.9,9.1,8.9,9,8.9,8.9,8.6,9.1,9.5,8.5,8.7,8.4,8.9,8.6]}},{"b":6,"v":{"total":[300.6,298.5,296.8,296.1,294.8,294.5,294.9,296.7,292.5,292.9,294.4,296.8,295.3,296.1,294.9],"script":[68.8,71.4,69.9,71.1,71.5,70.9,68.8,69.6,70.6,72.7,70.8,70.6,69.6,70,70],"paint":[221.9,218.4,218.7,217.4,216.3,218.2,217.8,222,218.2,216.2,218.6,218.5,217.8,217.6,217.6]}},{"b":7,"v":{"total":[37.5,36.8,37.5,36.9,36.7,32.9,31.6,31.5,32.9,32.1,32.4,36.5,31.9,32.1,32.6],"script":[6.7,6.7,6.8,6.9,6.8,7,6.8,6.8,6.8,6.7,6.9,6.7,6.8,6.9,6.9],"paint":[24.8,24.6,25,24.4,24.2,25.3,24.3,24.3,25.3,24.8,25,24.5,24.2,24.7,25.2]}},{"b":8,"v":{"total":[10.7,11.6,11,11.3,28.4,11.6,11.2,27.1,11,11,11,11.2,11.3,11.2,11.9],"script":[8.9,10.1,8.6,9.7,10.2,9.7,9.2,9.3,8.8,8.8,9.8,9,9.7,9.4,9.2],"paint":[0.6,0.3,0.9,1,1.5,0.9,1.7,1.3,1.5,1,0.3,1.6,1.1,0.9,0.6]}},{"b":9,"v":{"DEFAULT":[0.71]}},{"b":10,"v":{"DEFAULT":[3.65]}},{"b":11,"v":{"DEFAULT":[3.83]}},{"b":12,"v":{"DEFAULT":[1.54]}},{"b":13,"v":{"DEFAULT":[28.03]}},{"b":14,"v":{"DEFAULT":[48.3]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[69.2]}}]},
+{"f":16,"b":[{"b":0,"v":{"total":[23.3,23.4,23.5,23.8,23,23.4,23.2,23.4,23.3,23.3,23.6,23.6,23.6,23.7,23.2],"script":[1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.9,1.8,1.9,1.9,2,1.9,1.9],"paint":[21,21.2,21.3,21.5,20.8,21.2,21,21.2,21,21.1,21.3,21.4,21.3,21.5,21]}},{"b":1,"v":{"total":[26.3,26.2,27.5,26.4,26.4,26.5,26.5,26.6,26.9,26.4,26.6,26.6,26.3,26.5,26.7],"script":[4.2,4.1,4.4,4.1,4,4.2,4.1,4.3,4.2,4.2,4.1,4.5,4.1,4.2,4.3],"paint":[21.7,21.7,22.7,21.8,21.9,22,22,21.9,22.2,21.8,22.1,21.6,21.7,21.9,22]}},{"b":2,"v":{"total":[10.6,10.8,11.2,10.9,11.2,10.3,11,10.9,10.8,12.2,11,10.1,10.1,11.2,12.3],"script":[0.2,0.6,0.6,0.8,0.6,0.5,0.8,1,1,0.9,0.9,0.8,0.9,0.6,1],"paint":[9.2,8.8,8.9,9.4,9.2,8.4,9.3,9,8.8,9.5,8.4,8.3,8,9.5,9.9]}},{"b":3,"v":{"total":[5.3,2.4,2.2,2.4,2.7,2.6,2.6,2.3,2.1,2.3,2.9,2.4,2.2,3.3,2.8,2.3,2.3,2,2.4,2,2.3,2.5,2,2.6,2.2],"script":[0,0.1,0,0,0,0.6,0.7,0.6,0,0.4,0.7,0,0,0,0,0,0,0.1,0.4,0,0,0.1,0,0,0],"paint":[1.3,0.6,1.3,1.4,1.7,1.6,1.8,1.4,1.6,1.8,2.1,2.3,1.3,1.9,2.6,2.1,1.4,1.8,1.8,1.3,1.4,1.2,1,2.5,2]}},{"b":4,"v":{"total":[13.1,12.6,13.3,12.6,13.3,15.1,14.2,13.8,13.3,13.5,12.4,13.9,13.6,12.3,12.3],"script":[0.9,0.1,1,0.1,0.1,0.6,0.1,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1],"paint":[11.2,11.8,11.4,11.5,11.9,13.7,12.6,12.4,11.9,12.2,10.2,12.8,11.8,11.3,11.3]}},{"b":5,"v":{"total":[10.4,10.4,10.7,10.3,10.7,10.5,10.4,10.7,10.6,10.3,10.4,10.4,10.6,10.4,10.4],"script":[0.5,0.4,0.3,0.5,0.4,0.2,0.3,0.3,0.2,0.4,0.2,0.5,0.5,0.4,0.4],"paint":[9.4,9.2,9.8,8.9,9.6,9.9,9.5,9.7,9.2,9.3,9.7,9.5,9.5,9.4,9.6]}},{"b":6,"v":{"total":[259.7,257.4,259.3,257.7,257.6,258.6,258.1,257,256.6,257.5,258,255.8,257.3,259.2,255.6],"script":[25.9,26.7,26.2,26.2,25.7,26.5,25.9,26.2,26.2,26.5,26.4,26.1,26.7,26.2,26.5],"paint":[225.8,223.5,225.8,224.4,224.6,225.1,225,223.8,223.3,223.7,224.4,222.5,223,225.8,221.9]}},{"b":7,"v":{"total":[27.2,27.3,27.7,27.4,27.4,27.5,27.2,27.1,27.7,27.2,27.5,27,27,27.4,26.7],"script":[2,2.1,2.1,2.1,2,2,2,2,2.1,2,2,2,2,2.3,2],"paint":[24.5,24.5,24.8,24.5,24.7,24.8,24.4,24.3,24.8,24.4,24.7,24.2,24.3,24.3,24]}},{"b":8,"v":{"total":[9,9.4,8.6,9.3,9.5,9,9.2,9.3,9.6,9,9.4,9.6,9.9,9.6,9],"script":[7.4,7.2,7.1,7.3,7.6,7.3,6.8,7,8,6.7,7.7,7.8,7.9,7.8,7.4],"paint":[0.2,2,0.5,0.8,0.7,0.6,2.2,2,0.3,2,0.6,1.7,1.5,1.6,0.2]}},{"b":9,"v":{"DEFAULT":[0.87]}},{"b":10,"v":{"DEFAULT":[2.73]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[18.59]}},{"b":14,"v":{"DEFAULT":[66]}},{"b":15,"v":{"DEFAULT":[16.5]}},{"b":16,"v":{"DEFAULT":[83.4]}}]},
+{"f":17,"b":[{"b":0,"v":{"total":[32.6,31.8,32.3,32.2,32.8,32.4,31.6,32,32.3,32.1,32.5,32,32.5,32.4,32.1],"script":[10.5,9.8,10.3,10.2,10.7,10.4,10,10.1,10.3,10.2,10.4,10.1,10.5,10.4,10.1],"paint":[21.6,21.5,21.5,21.4,21.6,21.4,21.1,21.4,21.5,21.4,21.6,21.3,21.5,21.5,21.4]}},{"b":1,"v":{"total":[35.4,35.9,36,35.8,35.7,35.8,35.6,36,35.6,36.3,35.7,36.5,35.6,35.7,35.6],"script":[12.7,13.2,13.5,13.1,13.2,13.2,13.1,13.6,13.2,13.3,13.1,13.5,13,13.2,13.2],"paint":[22.1,22.1,21.9,22.2,22,22.1,21.9,21.9,21.9,22.4,22.1,22.4,22.1,21.9,21.8]}},{"b":2,"v":{"total":[22,21.9,23.3,22.7,22.2,22.2,22.6,22.1,22,21.8,22.3,22.4,22.8,23,22.7],"script":[9.7,9.7,10.5,10.4,9.9,10.1,10.1,9.7,10,9,10.3,10.9,10.4,9.5,10.2],"paint":[10.1,10.1,10.8,9.2,11.1,9.9,10.7,11,10.1,11.8,10.6,9.7,11.4,10.7,10.8]}},{"b":3,"v":{"total":[8.8,9.2,9.1,9.2,9.2,8.5,9.1,9,9.2,9.1,8.6,8.8,8.4,8.4,9.5,9.4,9,9.7,8.9,9.6,8.9,9,9.1,9.1,9.6],"script":[6.2,5.8,6.6,6.1,6.7,5.6,6,5.5,6.7,6.1,5.6,5.8,5.7,5.4,6,6.1,5.9,6.2,6,6.3,6.3,5.8,6.3,5.9,6.3],"paint":[0.8,1.5,0.8,1.7,1.1,2.7,1.5,1.9,1.4,1.1,1.2,2,1.1,2.1,1.8,2.1,2.4,1.7,1.1,1.5,1.2,2.3,1.4,2.2,2.2]}},{"b":4,"v":{"total":[20.9,21,20.6,22,20.8,20.9,21.2,20.5,21,22.2,21.3,21.2,21.1,19.8,20.6],"script":[6.3,6.8,7.2,7,7.2,7,7.2,6.9,6.3,7.1,7.2,7.1,7,7.1,7],"paint":[12.9,12.3,11,12.9,11.7,12.6,12.7,11.6,12.5,12.9,10.9,12.4,13.1,11,12.2]}},{"b":5,"v":{"total":[14.4,14.4,13.9,13.7,13.8,14,14.3,14.3,14.3,13.9,14.3,14,14.6,14,13.7],"script":[3.7,3.8,3.5,3.4,3.4,3.6,3.7,3.6,3.6,3.5,3.6,3.6,3.7,3.6,3.4],"paint":[10.4,9.8,9.5,9.8,9.8,9.4,9.8,10.2,9.4,9.8,9.9,9.5,10.2,9.8,9.8]}},{"b":6,"v":{"total":[321,320.1,325.4,324.9,324.4,324.9,325.7,324,325.1,325.9,326,326.5,322.8,328.3,323.8],"script":[98.3,97.9,101.5,102.5,102.3,101.8,103.1,101.5,101.8,102.2,104,103.8,101.2,101.8,102.6],"paint":[215.4,215.2,216.4,215.4,215,216.1,215.7,215.6,216.3,216,215,215.9,214.7,218.9,214.3]}},{"b":7,"v":{"total":[38,38.7,40,39.5,38.9,39.7,38.7,39.4,39.1,39.6,39.3,39.1,39,39.4,38.9],"script":[12.3,12.4,13,13.4,12.7,13.3,12.6,13.3,13,13.1,12.9,12.9,13.1,13.2,12.8],"paint":[24.8,25.5,26,25.2,25.3,25.5,25.1,25.3,25.2,25.5,25.5,25.3,25.1,25.3,25.2]}},{"b":8,"v":{"total":[12.5,11.7,12.7,13,12,10.9,10.9,11.8,11.6,12.1,12.6,12.1,12.4,12,12.3],"script":[10.1,9.1,11,10.6,9.6,9.6,8.7,9.7,9.5,10,10.3,9.9,10.2,10,10.1],"paint":[1.8,2.4,1.1,1.2,1,1,1.1,1,1.5,0.2,1.6,1,0.2,1.1,0.7]}},{"b":9,"v":{"DEFAULT":[0.67]}},{"b":10,"v":{"DEFAULT":[3.66]}},{"b":11,"v":{"DEFAULT":[3.76]}},{"b":12,"v":{"DEFAULT":[0.98]}},{"b":13,"v":{"DEFAULT":[28.61]}},{"b":14,"v":{"DEFAULT":[25.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[51.7]}}]},
+{"f":18,"b":[{"b":0,"v":{"total":[33.1,31.1,31.4,32.4,31.4,31.9,31.1,31.1,33.4,31.4,32,31.3,31.9,31.1,31.7],"script":[10.2,9.3,9.5,9.9,9.6,9.5,9.4,9.2,10.3,9.9,9.8,9.6,9.8,9.4,9.9],"paint":[22.3,21.4,21.5,22,21.4,22,21.3,21.5,22.5,21.2,21.8,21.3,21.7,21.3,21.4]}},{"b":1,"v":{"total":[37.3,36.8,37.3,37.8,38,38.1,37.7,37.3,37.4,37.1,37.1,37.2,36.8,37.1,36.8],"script":[13.8,13.6,13.9,14.3,14,13.6,14.2,13.5,13.4,13.3,13.9,13.8,13.7,13.7,13.6],"paint":[22.9,22.7,22.8,22.9,23.4,23.9,22.9,23.1,23.4,23.1,22.6,22.8,22.5,22.8,22.6]}},{"b":2,"v":{"total":[12.5,12.3,14,13.2,12.7,12.1,15.3,13.6,12.3,12.4,12.2,12.5,13.2,12.5,12.6],"script":[2.3,1.6,2.4,1.9,1.6,2,2.2,1.6,2,2.3,2.3,2.4,2.5,2.2,2.2],"paint":[8.4,9.2,10.1,9.2,9.5,9.5,11.7,11.1,8.8,9,8.1,8.5,9.5,9.1,8.4]}},{"b":3,"v":{"total":[3.1,8.2,3.3,2.8,4.3,4.8,5.5,3,4.8,2.3,3.2,5.2,3.1,3,2.3,2.9,8.6,2.8,3.3,2.6,3.4,2.8,5.6,3.4,2.8],"script":[1.1,0.1,1.1,0.6,0.5,0.2,0.9,0.9,0.1,0.1,0.8,1.2,1.2,0.9,0.1,0.2,0.8,0.1,0.8,0.1,0.9,0.1,0.1,0.6,0.8],"paint":[1,2.9,1.4,2,1,1.5,1.6,1.4,1.4,2,2.3,1.8,1.3,1.5,1.1,2.5,1.4,1.8,2.3,1.7,1.5,1.5,1.9,1.5,1.1]}},{"b":4,"v":{"total":[16.5,16.1,16.1,15.9,16.6,18.3,16.4,17.3,16.3,17.4,16.8,18.6,16.5,16.2,16.4],"script":[2.9,2.8,2.9,3,2.7,3.1,2.8,3,2.7,3.7,2.9,3.3,3.1,3,2.8],"paint":[12.2,12.3,12.5,11.4,12.6,13.3,12.1,12.7,11.1,12.1,12.5,13.9,12.7,12.2,12.9]}},{"b":5,"v":{"total":[12.5,11.7,12.3,12.4,12.8,11.9,12.6,12.4,11.8,12.1,12.4,12.4,12.1,11.8,12.2],"script":[1.6,1.5,1.4,1.7,1.7,1.5,1.7,1.6,1.4,1.6,1.5,1.8,1.6,1.5,1.7],"paint":[10.2,9.5,9.9,9.8,10.1,9.8,10.3,10.2,9.4,9.2,10,9.9,9.8,9.3,9.8]}},{"b":6,"v":{"total":[320.6,317.2,319.4,318.6,317.5,319,319,319.3,321.3,318,319.2,318.9,319.6,319.2,319],"script":[96.8,94.5,96.4,95.5,96.3,96.3,96.1,98.5,97.2,95.9,95.5,95.4,94.6,97.1,95.5],"paint":[215.7,214.7,214.8,215.2,213.2,214.6,214.3,213,215.6,214,215.4,215.4,217.2,214.2,215.6]}},{"b":7,"v":{"total":[38.4,38.8,40,39.8,39,39.2,39.6,39.8,39.3,39.5,39.6,39.3,39.4,39.3,39.8],"script":[11.2,11.3,11.8,11.7,11.4,11.6,11.5,11.4,11.4,11.7,11.9,11.6,11.5,11.7,12],"paint":[26.1,26.5,27.2,27,26.6,26.5,27,27.3,26.8,26.8,26.7,26.7,26.9,26.6,26.7]}},{"b":8,"v":{"total":[12.3,11.3,12.7,13.9,12.1,13.7,11.7,12.5,11.9,12.8,12.3,12.4,12.6,11.9,13.5],"script":[10.2,9.1,10.8,11.8,9.7,11.3,9.5,10.2,9.8,10.5,9.9,10.1,10.6,9.8,11.1],"paint":[1.4,0.3,1.3,1.2,1.8,1.2,1.8,2,1.8,0.9,2.1,0.3,0.8,1,2.2]}},{"b":9,"v":{"DEFAULT":[0.72]}},{"b":10,"v":{"DEFAULT":[4.55]}},{"b":11,"v":{"DEFAULT":[4.56]}},{"b":12,"v":{"DEFAULT":[1.25]}},{"b":13,"v":{"DEFAULT":[36.47]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[12.3]}},{"b":16,"v":{"DEFAULT":[58.4]}}]},
+{"f":19,"b":[{"b":0,"v":{"total":[23.3,23.3,23.2,23.3,23.2,23.3,23.3,23.6,23.1,24.1,23.3,23.3,23.4,23.3,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.6,21.5,21.6,21.5,21.6,21.6,21.9,21.5,22.4,21.6,21.6,21.7,21.6,21.5]}},{"b":1,"v":{"total":[25.9,25.7,25.8,25.7,25.8,25.7,26,25.7,25.6,26,26.7,25.8,26,25.9,25.7],"script":[3.2,3.2,3.2,2.9,3.2,3.1,3.4,3.2,2.9,3.2,3.2,3.3,3.3,3.2,3.2],"paint":[22.3,22.1,22.2,22.4,22.3,22.2,22.2,22.1,22.3,22.4,23,22.1,22.3,22.2,22.2]}},{"b":2,"v":{"total":[10.1,9.3,9.6,9.8,10.5,10.2,10.7,10.2,10.2,10.2,9.9,10.1,10.3,10.4,10],"script":[0.8,0.1,0.1,0.6,0.8,0.1,0.9,0.7,0.1,0.1,0.1,0.6,1,0.8,0.6],"paint":[8.3,8.2,8.8,8,9.5,9.2,8.8,8.3,8.6,9.1,8.9,8,8.4,8.1,8]}},{"b":3,"v":{"total":[1.9,1.9,2.7,2.5,2,2.3,2.1,2.5,2.3,1.8,2.8,2.1,1.8,3,2.2,2.9,2.1,1.6,2.2,2.5,2.5,3.6,2.2,2.6,2.2],"script":[0,0,0,0,0,0,0,0,0,0,0.7,0,0,0.7,0,1,0,0,0,0,0.5,0.4,0,0.6,0],"paint":[1.3,1,2.5,1.7,1.8,1.5,1.6,1.5,1.8,1.6,1.9,1.8,1.3,2.1,2,1.7,1.8,1.2,1.1,2.3,1.5,2.1,1.3,1.8,1.5]}},{"b":4,"v":{"total":[12.8,13.3,11.9,13.4,12.8,13.4,12.3,12.3,12.8,13.3,12.4,11.9,12.7,12.7,11.9],"script":[0.1,0.9,0.1,0.2,0.1,0.6,0.1,0.1,1,0.7,0.1,0.1,0.5,0.4,0.6],"paint":[11.2,11.4,10.8,11.9,12,11.4,11,11,11,10.8,11.2,10.7,11.1,11,10.4]}},{"b":5,"v":{"total":[10.3,10.1,10.2,10.1,10.4,10.2,10,10.2,10.1,10.2,10,10.3,10.1,10.9,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.4,0.3,0.3,0.3],"paint":[9.1,9.5,9.3,9.6,9.5,9.6,8.9,9.4,9.4,9.5,9,9.2,9.4,9.8,9.6]}},{"b":6,"v":{"total":[246.9,246.6,246.2,245.4,245.5,245.2,247.4,246.9,245.7,245,247.8,245.4,246.1,246.6,244.4],"script":[15.2,15,14.9,15,15.1,15.1,15.2,15,15,14.7,14.9,15,15.1,15.4,15],"paint":[224.7,224.5,224.2,223.3,223.2,223,225.2,224.6,223.6,223.2,226,223.4,223.8,223.8,222.5]}},{"b":7,"v":{"total":[26.9,27.2,27.2,26.8,27.2,27.1,27.1,26.9,26.8,27,27.4,27.2,27.2,27.1,27.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.4,1.3],"paint":[24.9,25.1,25.2,24.7,25.2,25,25,24.9,24.8,24.9,25.3,25.2,25.1,25,25.3]}},{"b":8,"v":{"total":[8.9,9.1,8.9,9.3,9.1,9.2,9.6,9.2,9.3,9.2,9.8,8.7,9.4,9.7,9.2],"script":[7,7.8,6.7,7.4,7.3,7.1,7.5,7.3,7.1,7,7.9,7,6.8,7.7,7.6],"paint":[1.1,1.1,1.2,0.7,1.6,1.9,1,0.6,1.2,1.2,0.6,1.5,1.6,1.8,0.8]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[1.85]}},{"b":11,"v":{"DEFAULT":[1.87]}},{"b":12,"v":{"DEFAULT":[0.63]}},{"b":13,"v":{"DEFAULT":[12.65]}},{"b":14,"v":{"DEFAULT":[9.9]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[34.2]}}]},
+{"f":20,"b":[{"b":0,"v":{"total":[25.6,25.8,25.5,25.5,26.5,25.6,25.5,25.8,25.6,25.8,25.5,25.6,25.8,25.6,25.7],"script":[3.9,3.9,3.9,4,4,4,3.9,3.9,3.9,4,4,3.9,4.2,3.9,4],"paint":[21.4,21.5,21.2,21.1,22.2,21.3,21.2,21.5,21.3,21.4,21.1,21.3,21.3,21.3,21.3]}},{"b":1,"v":{"total":[28.6,29.4,28.6,29.1,28.6,28.7,28.8,28.7,29.2,28.4,28.4,28.8,28.6,28.7,28.9],"script":[5.8,5.8,5.9,6.1,5.8,5.5,6,5.8,6.2,5.7,5.7,5.9,6,5.9,6.1],"paint":[22.3,23,22.1,22.4,22.2,22.7,22.3,22.3,22.4,22.1,22.1,22.3,22,22.2,22.3]}},{"b":2,"v":{"total":[11.6,11.7,11.7,10.9,11.4,11,11.6,11,11.9,11.9,14.2,11.1,11.6,11.6,11.2],"script":[1.5,1,1,1.2,0.7,0.9,0.9,0.9,1.4,1.2,1.2,0.8,0.9,1,0.9],"paint":[8.4,9.8,9.1,7.7,9.7,8.8,9.5,9.2,9.8,9.5,12,9.4,9.7,9.9,8.9]}},{"b":3,"v":{"total":[2.7,3.1,2.6,1.9,3.2,2.6,2.1,2.9,2.2,2.9,2,3,2.8,2.2,2.3,2.6,2.7,2.2,2.7,2.4,2.7,2.5,2,2.5,2.4],"script":[0.1,0.1,0.1,0.2,0.7,0.1,0.3,0.7,0.1,0.1,0.1,0.8,0.7,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.1,0.1,0.1],"paint":[2.3,2.9,1.8,1.1,1.3,2.5,1.4,2.1,2,2.6,1,1.6,2,1.2,1.1,2.4,1.8,1.6,2.5,1.8,1.2,2.3,1.1,1.7,2.2]}},{"b":4,"v":{"total":[13.6,13.1,13.2,12.9,12.4,13.1,13.5,12.9,13.3,13.1,13.6,13,13,12.9,12.6],"script":[0.1,0.1,0.1,0.1,0.1,0.5,0.8,0.1,0.1,0.1,1.1,0.6,0.9,0.1,0.5],"paint":[12.2,11.2,12.6,12.3,11.6,11.1,11.6,11.5,12,11.6,11.5,11.1,10.4,11.6,11.1]}},{"b":5,"v":{"total":[10.3,10.2,10.3,10.2,10.4,10.7,10.5,10.4,10.6,10.3,10.3,10.4,10.5,10.1,10.3],"script":[0.3,0.3,0.1,0.3,0.2,0.3,0.1,0.1,0.4,0.4,0.4,0.2,0.3,0.2,0.2],"paint":[9.1,9,9.7,9.1,9.7,9.8,9.6,9.9,9.6,8.7,8.9,9.7,9.7,9.2,9.4]}},{"b":6,"v":{"total":[270.1,268.8,272.3,271.5,272.8,273.5,271.7,271.3,271.1,272.5,270.4,271.9,270.9,273.3,270.6],"script":[40.9,41.3,42.2,41.5,42.3,42.5,41.7,41.8,41.3,42.2,41.9,42.6,42.5,42.8,41.5],"paint":[222.2,220.5,223.1,222.5,223.4,223.7,222.8,222.3,222.6,223,221.4,222.1,221.3,223.4,222]}},{"b":7,"v":{"total":[31.2,31.4,31.9,31,30.6,31,31.4,31.9,30.7,31.4,32.2,32.1,31.4,32.1,32.2],"script":[4.3,4.3,4.4,4.3,4.3,4.3,4.3,4.3,4.2,4.3,4.4,4.4,4.3,4.4,4.4],"paint":[26.1,26.4,26.7,26,25.6,26,26.3,26.8,25.8,26.3,27,26.9,26.4,26.9,27]}},{"b":8,"v":{"total":[10.4,10.7,10.7,10.8,10,10.5,11.7,11.1,11.9,10.7,9.8,10.6,10.3,10.4,10],"script":[7.9,9.2,8.5,8.6,7.9,8.6,9.2,8.6,9.9,8.3,7.5,8.8,8,8.8,7.9],"paint":[1.2,0.2,1.9,1.2,1.2,0.2,0.4,1.3,1.1,1.3,1.5,1.1,0.7,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.72]}},{"b":11,"v":{"DEFAULT":[2.72]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[19.8]}},{"b":14,"v":{"DEFAULT":[17.4]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[48.6]}}]},
+{"f":21,"b":[{"b":0,"v":{"total":[28.6,27.9,28,30.8,28.2,27.8,28,27.9,28.2,28.3,28,28,28.6,29.4,28.6],"script":[6,5.8,5.8,6.3,5.8,5.8,5.8,5.8,5.9,5.8,5.8,5.8,6,6,5.9],"paint":[22.1,21.5,21.6,23.9,21.8,21.4,21.6,21.5,21.8,21.9,21.6,21.5,22,22.8,22.1]}},{"b":1,"v":{"total":[31.2,31.5,32.1,31.2,31.4,31.6,31.4,31.6,31.7,31.4,31.4,31.4,31.7,31.3,31.7],"script":[8.7,8.8,8.8,8.8,8.7,8.7,8.7,8.8,8.9,8.7,8.7,8.7,8.9,8.7,8.7],"paint":[21.9,22.1,22.7,21.8,22.1,22.2,22.1,22.2,22.2,22.1,22.1,22.1,22.2,22.1,22.4]}},{"b":2,"v":{"total":[19.3,18.9,18.8,18,18.4,18.2,20.2,18.5,18.6,18.4,18.6,17.9,18,18.7,18.2],"script":[7.5,6.3,6.8,6.4,6.6,6.3,7,6.2,6.6,6.2,6.6,6.7,6.3,6.6,6.1],"paint":[10.7,9.3,10.2,9.8,10.3,10,10.7,9,10.2,10,10.3,9.8,9.8,9.7,10.3]}},{"b":3,"v":{"total":[10.9,11,10.7,10.5,10.8,10.6,10.3,10,10.7,11.5,10.7,10.3,11.2,11,11.3,11,10.9,10.4,10.9,10.6,10.8,10.7,11,9.9,10.7],"script":[8.3,8.4,7.9,8,8,7.2,7.5,7.6,8.3,8.5,7.8,7.8,8.2,7.8,7.9,8.1,7.5,7.9,7.7,7.8,8.2,8.2,8.3,7.2,8.5],"paint":[1.2,1.7,0.7,2,1.2,2.9,1.1,1.4,1,1.9,1.4,2.1,1.5,2.2,2.6,1.7,2.7,0.9,1.8,1.8,1.3,1.9,1.5,1.8,0.8]}},{"b":4,"v":{"total":[22.3,22.5,22.3,23,24.9,23,23.5,22.5,22.6,23.3,23,23.2,23.3,22.2,22.7],"script":[7.9,8.2,7.3,8.2,8.3,8.3,8.6,7.9,8.1,7.6,8.1,8.4,8.6,7.8,8.2],"paint":[12.9,12.3,13.9,12.3,14.6,13.6,13.2,11.9,11.8,14.1,12.6,13.3,12.4,12.2,12.8]}},{"b":5,"v":{"total":[15,16.2,14.8,14.8,14.7,14.6,14.6,14.3,14.6,14.7,14.6,14.6,14.6,16.2,14.2],"script":[4.2,4.4,4.2,4,4.2,4.2,4.2,4,4,4.2,4.2,4,4.1,5.2,4],"paint":[10,10.9,10,10,9.9,9.8,9.6,9.7,9.8,9.7,9.8,10,9.8,9.9,9.4]}},{"b":6,"v":{"total":[275.4,272.9,274.6,273.4,274.1,276.2,277.6,274.3,274.6,276.5,275.8,274.1,278.1,273.1,273.2],"script":[42.7,41.8,41.7,41.5,41.6,42.1,41.5,41.2,41.8,41.1,41.5,41,42.3,41.3,41.6],"paint":[225,223.5,225.5,224.4,224.9,226.5,228.6,225.6,225.1,227.9,226.8,225.7,228.2,224.1,224]}},{"b":7,"v":{"total":[33.6,32.5,33.2,33.7,33.6,33.2,34,34.1,34,33.3,34.2,34,33.4,33.9,33.8],"script":[6.6,6.4,6.5,6.6,6.7,6.7,6.4,6.8,7,6.5,6.6,6.5,6.5,6.7,6.6],"paint":[26.1,25.2,25.7,26.1,26,25.6,26.6,26.3,26.1,25.8,26.6,26.5,25.9,26.2,26.2]}},{"b":8,"v":{"total":[24.6,23.2,23.4,23.6,22.7,22.5,23.6,24.1,22.5,24.9,22.9,22.2,22.6,25,23.4],"script":[22.5,21,21.3,21.3,20.8,20.5,21.9,22.5,20.3,22.8,20.6,20.5,21,22.5,21.4],"paint":[0.3,0.8,0.3,1.6,0.9,1.2,0.3,0.7,1.3,1.9,2.1,1.1,0.5,1.5,0.3]}},{"b":9,"v":{"DEFAULT":[1.86]}},{"b":10,"v":{"DEFAULT":[5.35]}},{"b":11,"v":{"DEFAULT":[5.4]}},{"b":12,"v":{"DEFAULT":[5.59]}},{"b":13,"v":{"DEFAULT":[37.67]}},{"b":14,"v":{"DEFAULT":[276.7]}},{"b":15,"v":{"DEFAULT":[78.2]}},{"b":16,"v":{"DEFAULT":[343.7]}}]},
+{"f":22,"b":[{"b":0,"v":{"total":[24.6,24.3,24.5,24.5,25,24.6,25.3,24.5,24.4,24.8,24.5,24.3,24.7,24.4,25],"script":[2.6,2.3,2.3,2.4,2.4,2.5,2.6,2.4,2.3,2.6,2.3,2.4,2.3,2.4,2.6],"paint":[21.6,21.7,21.7,21.7,22.2,21.8,22.3,21.7,21.7,21.8,21.8,21.5,22,21.7,22]}},{"b":1,"v":{"total":[29.6,28.8,29.2,29.1,29.4,29.9,29.6,29.9,29.5,29.6,29.5,29.8,29.3,28.8,29.6],"script":[6.4,5.9,6.1,6,6.2,6.2,6.3,6.2,6.2,6.3,6.2,6.5,6,6,6.4],"paint":[22.6,22.3,22.6,22.6,22.7,23,22.8,23.2,22.6,22.7,22.7,22.8,22.8,22.3,22.7]}},{"b":2,"v":{"total":[11.4,11.6,10.8,10.2,11.6,13.2,11.4,12.2,11.8,11.5,11,11.6,13.1,10.6,10.9],"script":[1.3,1.3,0.6,0.9,0.9,1.8,1.3,1.1,1.4,1.2,0.7,1.2,1.5,0.7,1.2],"paint":[8,9.5,9.3,8.3,9.6,10.3,8.8,10.4,8.9,8.8,9.7,9.2,9.7,9.3,8.1]}},{"b":3,"v":{"total":[2.2,2.4,2.3,3.1,2.5,2.4,2.2,2.6,2.8,2.5,1.8,2.4,1.8,2.6,2.4,2.7,3.8,2.1,2.5,2,2.4,1.9,3,2.4,2.5],"script":[0.3,1.1,0.1,1.1,0.1,0.1,0.4,0.1,0.8,0.1,0.1,0.6,0.1,0.8,0.1,0.8,0.7,0.6,0.1,0.1,0.1,0.1,1.1,0.7,0.5],"paint":[1.8,0.7,2.1,1.9,1.5,1.3,1.6,2.3,1.8,2,1.5,1.4,1.7,1.8,2.2,1.2,1.8,1,1.8,0.9,2,1,1.1,1.6,1.9]}},{"b":4,"v":{"total":[16.8,15.3,15.5,15.7,16.6,15.9,15.9,15.9,16,15.9,15.7,15.3,16,16.3,15.7],"script":[3.2,2.3,1.9,2.5,2.7,1.9,2.3,2.2,2.2,2.5,2.6,2.7,2.3,1.9,2],"paint":[12.2,11.9,12.2,12.1,12.7,12.1,12.3,12.2,12.8,12.7,12.1,11.4,12.3,13.6,12.6]}},{"b":5,"v":{"total":[10.8,11.3,11.6,11.3,11.3,11,11.2,12,11.5,10.9,11.1,11.5,10.9,11.9,11],"script":[0.8,1.2,1,1,1.1,0.9,1.1,1.1,1.1,1.1,1.2,1.1,1.1,1,0.8],"paint":[9.5,9.6,9.3,9.8,9.7,9.6,9.8,10.2,9.5,9.2,9.4,9.4,9.2,10.5,9.5]}},{"b":6,"v":{"total":[258.8,256.8,256.8,258.6,256.1,257.5,258.4,258.9,256.7,256.8,256.7,257.2,256,260.4,257.5],"script":[26.8,26.8,26.4,26.6,26.7,27.1,26.5,27.5,26.4,26.6,27.1,26.6,26,27.2,26.7],"paint":[224.1,223,223.4,224.8,222.3,223.5,224.8,224.3,223,223.2,222.6,223.5,223.1,226.1,223.7]}},{"b":7,"v":{"total":[30.2,30.3,29.9,30.3,30.5,30,30.1,30.8,30,30.1,30,29.9,30.2,29.6,30.1],"script":[3.6,3.7,3.6,3.6,3.8,3.7,3.7,4,3.6,3.6,3.7,3.6,3.7,3.5,3.6],"paint":[25.8,25.9,25.5,25.9,26,25.5,25.7,26.1,25.7,25.7,25.5,25.6,25.7,25.3,25.7]}},{"b":8,"v":{"total":[9.6,9.2,9.1,9.2,9.1,9.6,9.2,9.3,9.4,9.5,10.4,9.2,9.5,9.2,8.9],"script":[7.7,7.7,7.2,7.2,7.3,7.4,7.6,7.4,8,7.5,8.4,7.4,7.4,7.3,7.6],"paint":[0.3,0.6,0.9,0.7,0.2,2,0.7,1.6,0.2,1.8,0.3,1.6,1,1.3,0.2]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[2.23]}},{"b":11,"v":{"DEFAULT":[2.2]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[15.95]}},{"b":14,"v":{"DEFAULT":[18.2]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[47.9]}}]},
+{"f":23,"b":[{"b":0,"v":{"total":[46.9,45.8,43.9,44.5,45.3,45.3,47.2,44.8,50.7,44.8,44.9,43.1,44.8,45.5,44.9],"script":[21.3,21.4,20.1,20,20.4,20.4,20.2,20.2,20.2,19.8,20.2,19.7,19.8,20.2,20],"paint":[21.5,21.7,22.1,21.7,22.1,21.8,21.7,22,22.1,21.9,22.2,21.9,22,22,22]}},{"b":1,"v":{"total":[55.7,53.6,46.9,46.6,47.6,48.5,47.6,47.2,53.6,46.4,46.4,53.8,47.3,47.5,55],"script":[23.4,23.7,22.4,22.8,23.1,23.4,22.7,23.3,23,23.1,22.9,23.7,23.2,22.9,25],"paint":[22.8,23.2,23,23,23.2,23,23,22.9,22.7,22.9,23,22.6,23,23,23.3]}},{"b":2,"v":{"total":[18.9,34.6,36.3,18.7,36.4,35.7,34.9,34.8,20.7,35.2,35,34.6,19.5,36,34.8],"script":[8.1,7.8,9.1,7.4,8.6,8.3,8,8.5,7.9,8.3,8,7.8,7.6,7.5,7.9],"paint":[10,10.3,10.8,10.2,11.1,10.8,11.3,9.7,12.6,10.6,11.2,10.7,11,12.3,10.8]}},{"b":3,"v":{"total":[6,2.5,4,3,2.1,3.5,5.4,4,3,3.3,6.3,2.8,2.9,3.5,2.7,3.2,3.4,3.1,4.5,5.7,2.9,6.2,2.9,2.4,2.8],"script":[0.4,0.5,0.4,0.9,0.4,0.3,0.8,0.6,0.8,0.6,0.9,0.7,0.8,1,0.9,0.8,0.1,0.9,0.2,0.3,1,0.8,0.2,0.2,0.9],"paint":[2.3,1.1,1.7,1.4,1.4,1.7,2,1.1,2.1,1.7,1.7,2,1.9,1.9,1.3,1.7,2.2,1.6,1.6,1.1,1.8,2.4,1.5,2,1.8]}},{"b":4,"v":{"total":[39.2,37,42,23.7,39.9,38.8,39.6,38.8,24.1,39.6,39.3,23.3,41.2,24.4,24.6],"script":[8.7,8.3,11.4,8.8,10,9.8,9,9.8,9.8,10.5,9.8,8.6,10.6,9.3,10],"paint":[14.1,11.5,13.9,14.3,13.6,12.4,14,12.9,12.3,12.7,13.4,13.4,13.8,14.1,12.9]}},{"b":5,"v":{"total":[21.1,15,12.1,11.4,13.9,12.6,14.9,15.3,14.5,14.6,11.8,11.4,13,12.8,15.6],"script":[0.4,0.2,0.5,0.2,0.5,0.2,0.2,0.2,0.4,0.3,0.3,0.3,0.2,0.2,0.2],"paint":[10.7,11.2,10.6,10.2,10.2,10.4,10,10.8,10.6,10.6,10.8,10.5,10.7,10.1,10.4]}},{"b":6,"v":{"total":[398.6,399.4,400.4,402.7,400.2,402.8,401.2,401.6,403.2,398.7,401.3,402.2,400.6,402,403],"script":[179.9,181.4,181.7,181.9,180.3,181.3,182.6,182.7,183.2,181.5,181.8,183.2,180.7,182.2,181.8],"paint":[211.8,212.9,212.9,215.8,213.8,217,213.8,212.7,214.4,212.9,214.1,215.8,214.2,214.7,215.5]}},{"b":7,"v":{"total":[56.5,48.5,49.7,49.5,54.3,50.1,55.3,54.1,49.3,55.4,49.2,56.6,58,49.1,53.9],"script":[20.4,20.8,21.2,21.3,20.7,21.7,21.2,20.9,21.3,21.3,21.1,21.1,21.4,21.2,20.9],"paint":[27.9,27.4,28.2,27.9,28.2,28,28,27.5,27.6,27.8,27.7,27.8,28.9,27.6,27.3]}},{"b":8,"v":{"total":[18.2,19.4,39.7,19,19.5,18.6,41,18,19.1,39.2,18.4,38.2,39.9,38.9,40.3],"script":[16.3,16.9,17.5,16.3,18.5,16.8,18.2,17,17.1,16.9,16.5,15.9,17.5,17.3,18.4],"paint":[1.6,0.3,1.1,0.9,0.9,0.4,0.3,0.9,1.6,1,1.5,1.4,0.9,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[7.16]}},{"b":11,"v":{"DEFAULT":[7.32]}},{"b":12,"v":{"DEFAULT":[1.38]}},{"b":13,"v":{"DEFAULT":[63.34]}},{"b":14,"v":{"DEFAULT":[43.7]}},{"b":15,"v":{"DEFAULT":[13.5]}},{"b":16,"v":{"DEFAULT":[65]}}]},
+{"f":24,"b":[{"b":0,"v":{"total":[30.1,29.7,30.1,30.6,30.2,30.7,30.2,30.2,29.9,30.5,30.4,30.4,30.3,30.6,30.3],"script":[7.3,7.1,7.6,7.5,7.5,7.7,7.5,7.5,7.4,7.6,7.4,7.6,7.6,7.6,7.5],"paint":[22.3,22,21.9,22.5,22.2,22.4,22.1,22.2,21.9,22.4,22.5,22.3,22.2,22.5,22.3]}},{"b":1,"v":{"total":[32.5,32.9,33.6,33.9,33.5,34.1,33.6,33.2,33,33.5,33.8,33.8,33.9,34,33.9],"script":[9.5,9.7,10.1,10.3,10.3,10.1,10.3,9.9,10.1,10.3,10.1,10.5,10.4,10.4,10.5],"paint":[22.4,22.6,23,23,22.6,23.4,22.7,22.6,22.4,22.6,23.1,22.8,22.9,23.1,22.9]}},{"b":2,"v":{"total":[14,12.5,12.6,15.1,12.5,13.2,12.5,13.6,12.3,13.7,12.8,12.5,14.4,13,13],"script":[2.7,2.3,2.1,2.8,1.9,2.8,2.1,2.9,1.4,2.4,2.1,2.4,2.6,2.5,2.7],"paint":[10.2,9.2,9.8,10.5,9.2,9.5,9,9.8,9.4,10.7,9.8,8.7,10.6,9.5,9.4]}},{"b":3,"v":{"total":[2.8,2.9,3.3,3.4,3.1,3,3.4,2.9,2.8,2.6,3.3,3.1,3.3,2.8,3,2.8,2.9,2.8,3.7,3.3,3.4,2.7,3,3.5,2.8],"script":[0.6,0.2,0.8,1,1,0.9,0.8,0.6,0.8,0.8,0.8,0.9,0.6,0.2,0.6,0.6,0.6,0.9,0.9,1,0.8,1,0.9,1.1,0.2],"paint":[1.3,2.5,2.3,1.7,2,1.6,1.7,2.1,1.9,1.6,0.8,1.5,2,1.5,1.6,1.2,1.4,1.1,1.9,1.8,1.5,1.5,1.2,2.2,2.3]}},{"b":4,"v":{"total":[14.7,16.1,14.6,14.6,14.6,15.2,15.1,14.5,14.7,15,15.2,14.6,14.8,15.2,13.9],"script":[2.1,1.6,2.2,1.6,1.8,1.5,2.7,1.7,1.6,1.5,1.8,2.6,1.8,2.5,2.2],"paint":[11.6,13.3,11.1,11.2,11.4,12.5,10.8,11.5,12.2,12.3,12.4,11.2,12.1,11.5,10.4]}},{"b":5,"v":{"total":[11.7,11.8,11.7,11.5,11.6,11.5,11.4,11.3,11.6,11.5,11.5,11.7,11.7,11.7,11.4],"script":[1.3,1.5,1.3,1.5,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.5,1.5,1.3,1.3],"paint":[9.7,9.6,9.7,9.6,9.9,9.6,9.3,9.3,9.3,9.7,9.6,9.7,9.7,9.6,9.5]}},{"b":6,"v":{"total":[303.9,302.6,304.1,304.7,308,304.2,306.9,304.4,305.7,304.5,304,308.8,306.9,305.9,303.6],"script":[73,73.2,73.8,74.4,76.7,73.2,73.9,73.7,74,73.5,74.1,74.2,74.8,76.1,74.2],"paint":[223.5,221.8,222.6,222.7,223.7,223.6,225.5,223.1,224.3,223.4,222.6,226.8,224.2,222.1,222]}},{"b":7,"v":{"total":[36.1,34.8,35,35.8,34.8,35,34.6,34.9,34.7,35.8,34.7,34.5,34.6,35.4,34.7],"script":[7.7,7.5,7.8,7.9,7.8,7.7,7.8,7.8,7.5,7.7,7.6,7.8,7.8,7.8,7.7],"paint":[27.4,26.3,26.2,26.9,26,26.3,25.9,26.1,26.2,27,26.1,25.7,25.8,26.6,26]}},{"b":8,"v":{"total":[14.2,13.3,14.2,13.9,13.9,14.1,14.3,13.7,12.7,13.6,14.4,12.6,14,14,14],"script":[12.1,11.7,12.2,11.9,11.4,12.2,12.6,11.5,10.7,11.6,12.1,10.5,11.6,11.8,11.9],"paint":[0.6,0.6,1.8,1.7,1.2,0.5,0.8,1.4,1.2,0.7,1.6,0.8,1.6,2,1.9]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.97]}},{"b":11,"v":{"DEFAULT":[3.96]}},{"b":12,"v":{"DEFAULT":[2.64]}},{"b":13,"v":{"DEFAULT":[24.02]}},{"b":14,"v":{"DEFAULT":[135.4]}},{"b":15,"v":{"DEFAULT":[40.1]}},{"b":16,"v":{"DEFAULT":[169.3]}}]},
+{"f":25,"b":[{"b":0,"v":{"total":[24,24.2,24.3,24.2,24,24.1,24,23.9,24.1,24.3,23.7,23.9,24,24.1,24.2],"script":[1.8,1.8,1.8,1.8,1.8,1.9,1.8,1.9,1.8,1.8,1.8,1.8,1.9,1.8,1.9],"paint":[21.8,22,22.1,22,21.8,21.9,21.8,21.7,21.9,22.1,21.5,21.7,21.8,21.9,22]}},{"b":1,"v":{"total":[26.7,26.8,26.5,27.4,27.2,28.9,28.7,26.8,27,26.8,27.3,27.2,27.6,26.9,27.9],"script":[3.9,3.8,3.7,3.9,3.9,4,4.1,3.8,3.8,3.9,3.9,3.8,4.3,3.9,4],"paint":[22.4,22.6,22.4,23.1,22.9,24.5,24.1,22.5,22.8,22.6,23,22.9,22.8,22.5,23.5]}},{"b":2,"v":{"total":[10.1,9.8,10.2,10.4,10.6,9.8,10.1,10.5,10.2,10,10.3,10.1,10.1,9.9,10.2],"script":[0.1,0.3,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.9,0.5,0.1,0.2,0.1],"paint":[9,8.4,9.1,9,8.9,8.3,8.5,8.9,9,8.9,8.2,8.6,9.3,9.1,9.5]}},{"b":3,"v":{"total":[4.5,2.2,2.1,2.1,2.1,2,2.1,2.5,1.7,2.1,2.1,2.2,2.2,1.6,2.6,2.5,1.9,1.8,2.6,2.5,2,1.9,2.2,2.4,1.7],"script":[0,0,0,0,0.1,0,0,0,0,0.1,0.2,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0],"paint":[1.3,1.5,2,2,1.8,1.7,1.5,1.7,1.6,1.9,1.2,1.2,2,1.5,1.6,1.5,1.8,1.4,2.4,1.5,1.9,1.1,1.2,1.5,1.6]}},{"b":4,"v":{"total":[13.6,13.5,13.8,11.9,12.5,13,12.7,12.4,13.2,13.4,12.4,12.9,13.7,13.1,12.5],"script":[0.1,0.1,0.1,0,1,0.1,0,0,0.1,0.9,0,0.1,0.9,1,0],"paint":[12.7,12.3,13,10.9,10.6,11.8,11.8,11.5,11.9,11.1,10.8,12,11.3,10.6,11.4]}},{"b":5,"v":{"total":[10.2,10.4,10.2,10.2,10.1,10.3,10.2,10.3,10.1,9.9,10.4,10.3,10.2,10.5,10.2],"script":[0.1,0.3,0.1,0.3,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3],"paint":[9.5,9.6,9.5,9.1,9.6,9.4,8.7,9.6,9.5,9.4,9.8,9.7,9.6,10,8.8]}},{"b":6,"v":{"total":[252.8,249.8,251.7,250,250.1,253.2,249.9,251.5,250.2,251.7,250.1,251.3,251.9,251.8,250.6],"script":[18,17.6,17.7,17.5,17.4,17.4,17.7,17.8,17.8,17.7,17.6,17.6,17.7,17.7,17.6],"paint":[227.4,225.1,226.9,225.4,225.6,228.7,225.1,226.5,225.3,226.8,225.4,226.2,226.3,227,225.8]}},{"b":7,"v":{"total":[27.3,27.8,27.6,27.9,27.8,27.8,27.9,28.3,29.1,28.4,27.8,27.8,27.9,28.1,27.8],"script":[1.8,1.8,1.8,2.1,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[24.8,25.3,25.1,25.1,25.2,25.2,25.3,25.7,26.5,25.9,25.2,25.2,25.4,25.6,25.2]}},{"b":8,"v":{"total":[10.1,10.2,9.2,8.8,9.4,9.6,10,9.8,9.3,10,9.9,9.8,9.8,9.7,9.7],"script":[7.6,8,7.6,7.2,7.4,7.9,7.4,7.6,7.3,8.2,7.8,8,7.9,7.9,7.8],"paint":[1.6,1.2,1.4,0.6,0.9,0.3,1.5,1,0.9,0.7,0.7,1.5,1.7,1.4,1.1]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[1.94]}},{"b":11,"v":{"DEFAULT":[1.92]}},{"b":12,"v":{"DEFAULT":[0.67]}},{"b":13,"v":{"DEFAULT":[13.03]}},{"b":14,"v":{"DEFAULT":[16.4]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[47.3]}}]},
+{"f":26,"b":[{"b":0,"v":{"total":[23.5,24,23.8,23.7,23.9,23.9,23.8,23.7,23.9,23.9,24.1,24.1,23.7,23.8,24.1],"script":[1.8,1.9,1.8,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[21.3,21.8,21.6,21.5,21.6,21.6,21.6,21.5,21.5,21.5,21.9,21.7,21.5,21.6,21.8]}},{"b":1,"v":{"total":[26.6,26,26.4,26.6,26,26.1,26.2,26.7,26.4,26.7,26.7,26.3,26.7,26.3,26.1],"script":[3.7,3.8,3.7,3.9,3.7,3.7,3.7,3.8,3.6,3.7,3.8,3.8,3.9,3.7,3.7],"paint":[22.5,21.8,22.3,22.3,21.8,22,22.1,22.4,22.4,22.6,22.5,22.1,22.4,22.2,21.9]}},{"b":2,"v":{"total":[10.5,10.4,9.9,9.6,11.3,10.2,9.8,10,10.7,10.3,10.5,10.2,10.7,9.8,10],"script":[1.2,0.5,0.1,0.1,0.1,0.6,0.1,0.1,0.9,0.4,0.8,0.9,1.1,0.1,0.1],"paint":[8.3,8.3,8.8,8.3,9.6,8.2,8.8,8.3,8,8.9,8.5,8.2,8.2,8.6,8.9]}},{"b":3,"v":{"total":[2.7,2.6,2.5,1.9,1.6,2.1,1.5,2.3,2.7,2.6,1.6,2.1,2.7,2.3,2.2,2.5,2,2.8,3.3,3.1,2.4,2,2.1,2.4,1.9],"script":[0,0.9,0,0,0,0.6,0,0.4,0,0,0,0,0,0.4,0,0,0,0,0.7,0.7,0,0,0,0.4,0],"paint":[2.5,1.6,1.3,0.9,1,1.4,1.3,1.8,2.4,2.5,1.4,1.9,2.5,1.8,2,1.4,1.8,1.8,1.4,2,2.1,1.9,2,1.9,1.1]}},{"b":4,"v":{"total":[12.3,12.4,12.8,12.4,12.1,12.7,12.7,12.7,12.4,11.5,13.2,12.3,12.9,12.1,13.2],"script":[0.2,0.3,0,0,0,0.1,0.9,0,0.1,0.1,0.6,0,0.1,0.1,0.1],"paint":[11.4,10.7,11.7,10.9,11,10.9,11,11.7,11.3,10.3,12,11.6,11.6,11,12]}},{"b":5,"v":{"total":[10.3,10.9,10.3,10.3,9.9,10.1,10.1,10.3,10.1,10.2,10.2,10.3,10.3,10.1,9.8],"script":[0.2,0.1,0.3,0.1,0,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1,0.1,0.1],"paint":[9.3,10,9.4,9.7,9.3,9.6,9.7,9,9.3,9.6,9.6,9.1,9.5,9.5,9.5]}},{"b":6,"v":{"total":[247.5,249,247.4,247.2,249.6,247.7,247.3,248.8,249.3,248.9,249.5,249,250.2,248.5,248.7],"script":[17.8,17.9,17.9,17.8,18.3,17.4,17.9,18.4,18.6,17.8,18.4,17.9,18.3,18.5,18.2],"paint":[222.5,224,222.2,222.3,224.1,222.9,222.3,222.9,223.6,223.9,223.9,223.9,224.8,222.9,223.4]}},{"b":7,"v":{"total":[27.7,27.3,27,27.8,27.6,28.8,28,30.5,27.4,27.4,27.3,27.9,27.3,27.8,27.8],"script":[1.9,1.8,1.8,1.8,1.8,1.8,1.8,2.2,1.8,1.8,1.8,1.8,1.8,1.9,1.9],"paint":[25.1,24.8,24.5,25.3,25.1,26.3,25.4,27.5,24.8,24.8,24.8,25.3,24.8,25.2,25.2]}},{"b":8,"v":{"total":[9.2,8.8,8.8,8.6,8.6,9.4,9.1,9.7,8.9,9.2,8.6,8.4,9.1,9.3,9.3],"script":[6.8,7,7.3,6.7,7,7,8,7.1,7.2,7.2,7.1,6.5,6.9,7.4,7.3],"paint":[1.3,0.9,0.7,0.2,1,0.9,0.9,1.5,1,1.2,0.7,0.3,1.1,0.9,0.9]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[1.89]}},{"b":11,"v":{"DEFAULT":[1.92]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[16.4]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[48.4]}}]},
+{"f":27,"b":[{"b":0,"v":{"total":[24,23.6,23.6,23.4,23.3,23.5,23.8,23.4,23.8,23.4,23.7,23.5,23.7,23.9,23.7],"script":[1.6,1.6,1.6,1.6,1.6,1.7,1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[22,21.6,21.6,21.5,21.3,21.5,21.8,21.4,21.8,21.4,21.7,21.5,21.7,21.8,21.7]}},{"b":1,"v":{"total":[26.1,26.3,25.8,26.1,26.1,26.4,26.8,26.4,26.2,26.6,26.2,26.2,26.1,26.5,25.9],"script":[3.4,3.5,3.4,3.4,3.4,3.5,3.6,3.5,3.4,3.6,3.5,3.4,3.5,3.6,3.4],"paint":[22.3,22.4,22,22.2,22.3,22.5,22.8,22.5,22.4,22.6,22.3,22.4,22.2,22.5,22]}},{"b":2,"v":{"total":[10.4,10.8,10.3,10.8,10.5,10.6,11.6,10.9,11.4,10.4,10.7,10.7,10.6,10.3,9.6],"script":[0.5,0.9,0.1,0.5,0.5,0.6,0.5,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.1,8.7,9,9.3,9,9,9.4,8.6,9.4,8,9.7,8.2,8.9,9.1,8.5]}},{"b":3,"v":{"total":[2.2,2.1,2.1,2.8,2.7,2.2,1.5,2.6,2.5,2.6,1.5,2.4,2.2,1.8,3.4,2.6,1.9,1.9,1.9,1.9,2.6,3,2.3,2.6,2.9],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0.7,1],"paint":[1.6,1.1,1.9,1.8,2.1,2,1.3,1.7,1.4,1.6,0.9,1.5,1.5,0.9,1.3,2.1,1,1.1,1.1,1.5,1.8,0.4,1.7,1.8,1]}},{"b":4,"v":{"total":[12.7,12.9,13.4,12.6,13.1,12.1,12.5,12.5,12.3,13.4,12.7,12.5,12.3,12.7,12.8],"script":[0.1,0.1,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[11.5,11.7,11.4,11.4,11.2,11.1,11.4,11.5,10.7,11.2,11.7,11,11.2,11.4,12.1]}},{"b":5,"v":{"total":[10.2,10.4,10.4,9.9,10.3,9.9,10.3,10.3,10.2,10.1,10.1,10,9.9,10.6,10.2],"script":[0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0,0.1,0.2,0.1],"paint":[9.6,9.7,9.7,9.2,9.3,9.5,9.6,9.5,9.6,9.3,9.4,9.1,8.8,9.8,9.5]}},{"b":6,"v":{"total":[246.8,248.5,250.1,247.1,246.2,247.6,247.3,247.6,247.3,247.3,244.8,247.7,247.1,250.4,247.8],"script":[16,16.5,16.4,16.2,16.4,16.4,16.5,16.1,16.6,16.3,16.3,16.6,16.2,16.5,16.3],"paint":[223.4,223.9,226.2,223.6,222.7,223.9,223.6,224,222.8,223.9,221.3,223.7,223.7,226.3,224.3]}},{"b":7,"v":{"total":[27.4,27.5,27.4,27.7,27.4,27.4,27.4,26.9,28.1,27.2,27.7,27.6,27.8,27.9,27.6],"script":[1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[25.1,25.1,25,25.3,25,25,25,24.6,25.7,24.8,25.3,25.2,25.4,25.6,25.3]}},{"b":8,"v":{"total":[8.8,9.1,8.8,9.2,9.6,9.1,9.1,9.2,8.7,8.8,9.4,9.6,9.6,9.5,9.5],"script":[6.7,6.7,6.8,7.3,7.7,7,7.4,7.4,6.7,7.2,7.5,7.5,7.3,7.6,7.5],"paint":[1.3,1.8,0.9,1.5,0.6,1.9,1.2,0.6,1.4,0.3,0.3,1,2.1,0.8,1.8]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2]}},{"b":11,"v":{"DEFAULT":[2.04]}},{"b":12,"v":{"DEFAULT":[0.68]}},{"b":13,"v":{"DEFAULT":[14.51]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[3.7]}},{"b":16,"v":{"DEFAULT":[41.6]}}]},
+{"f":28,"b":[{"b":0,"v":{"total":[33,33.9,33.6,33.9,34,33,32.8,32.9,33.6,33.4,34.3,33.7,33.7,33.2,33.7],"script":[10.7,11.1,10,11.5,11.5,10.2,10.4,10.1,11.2,10.6,11.7,9.9,10.2,10.3,10],"paint":[21.8,22.3,23.1,21.8,22,22.2,21.8,22.2,21.8,22.2,22,23.2,23,22.3,23.2]}},{"b":1,"v":{"total":[36.3,37.1,36.5,36.2,36.8,36.8,37.1,36.9,36.8,36.7,37.5,36.6,36.9,36.4,36.7],"script":[13.1,13.6,13.1,13,13.6,13.3,13.4,13.5,13.4,13.2,13.7,13.2,13.3,13.3,13.3],"paint":[22.6,22.9,22.8,22.6,22.7,22.9,23.2,22.9,22.8,22.9,23.2,22.8,23.1,22.5,22.8]}},{"b":2,"v":{"total":[11.2,11,11,10.7,11.6,10.4,9.7,11.1,10.8,11.3,11.8,10.7,10.8,10.4,10.7],"script":[0.8,0.7,0.1,0.6,0.2,0.9,0.6,0.6,0.7,0.8,0.8,0.8,0.6,1,0.6],"paint":[8.2,9.1,9.4,9.2,10.5,8.5,8.2,8.9,9.1,9.3,10,9.3,9.3,8,9.2]}},{"b":3,"v":{"total":[2.6,2.2,2.2,1.8,2.4,2.8,2,1.7,2.5,2.1,3.1,2.1,1.9,2.6,2.2,2.4,2.3,2.3,2.5,2.2,2.2,2.4,2.7,2.5,2.2],"script":[0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,1,0.1,0.1,0.1,0.1,0.5,0.1,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[2.1,1.9,1.4,1.6,1.7,2.6,1,1.5,2.3,1.6,2,2,1,1.7,2.1,1,1.1,1.2,0.8,1.1,0.9,2,1.3,1.2,2]}},{"b":4,"v":{"total":[13.2,13.1,14.2,12.7,14.2,13.9,12.3,13.1,13,13.2,13.6,12.7,13.3,13.1,12.9],"script":[0.6,0.9,0.8,0.5,0.1,0.1,0.1,0.9,0.1,0.3,0.8,0.1,0.1,0.1,0.1],"paint":[11.8,11.3,12.5,10.6,11.7,12.9,10.7,11.2,11.8,11.8,10.9,12.3,11.7,12,11.2]}},{"b":5,"v":{"total":[10.2,10.2,10.7,10.4,10.4,10.3,10.2,9.9,10.2,10.7,10.2,10.3,10.4,10.2,10.5],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3,0.1],"paint":[9.4,9.6,10.1,9.5,9.4,9.4,9.6,9.1,9.6,9.8,9.6,9.2,9.5,8.8,9.4]}},{"b":6,"v":{"total":[328.2,325.8,325,327.1,328.5,325,325.7,325.9,329.9,326.8,329.2,327.1,325.7,328.9,327.6],"script":[103.5,101.2,101.9,101.8,104.5,101.2,102.6,101.7,100.5,101,100.4,100.4,100.6,100.9,101.7],"paint":[217,217.4,215.7,217.9,216.8,216.5,215.9,217,222.1,218.6,221.5,219.5,217.9,220.7,218.6]}},{"b":7,"v":{"total":[37.6,36.7,38,37.8,36.7,37.3,36.6,37.7,37.2,37.2,37.5,37.3,37.3,37.7,37.6],"script":[10.3,9.8,10.4,10.2,9.4,10,9.7,10.3,10,10,10.3,10,10,9.8,10.1],"paint":[26.3,25.9,26.6,26.6,26.2,26.4,25.9,26.4,26.2,26.3,26.2,26.3,26.3,26.8,26.6]}},{"b":8,"v":{"total":[13,13.4,14.4,13.5,14.2,12.9,14.1,13,13.9,14.5,14.6,14,12.9,13.9,13.6],"script":[11.1,11,12.6,11.5,12.1,11.6,11.3,11.4,11.7,12.4,12.8,12.1,11,11.7,11.2],"paint":[1.7,1.2,0.8,1.6,0.9,0.8,1.3,0.3,0.7,1.3,1,0.5,1.3,1.4,0.9]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[4.69]}},{"b":11,"v":{"DEFAULT":[4.68]}},{"b":12,"v":{"DEFAULT":[0.91]}},{"b":13,"v":{"DEFAULT":[38.76]}},{"b":14,"v":{"DEFAULT":[24.7]}},{"b":15,"v":{"DEFAULT":[8.1]}},{"b":16,"v":{"DEFAULT":[54]}}]},
+{"f":29,"b":[{"b":0,"v":{"total":[32.8,31.6,32.4,31,32.4,34.4,30.4,32.3,31.1,31.9,32.9,30.5,34,35,32.9],"script":[5.6,6.1,5.7,6,5.6,5.9,6.1,6,6.1,5.7,6,5.9,5.8,6,6.1],"paint":[21.2,21.5,21.5,21.9,21.6,21.4,21.7,21.4,21.5,22,21.4,22.2,21.4,21.5,21.5]}},{"b":1,"v":{"total":[35.6,36.4,31.5,36.9,37,37.7,36.2,35.8,38.5,38.5,37.7,31.4,36.1,31.1,36.3],"script":[8,7.8,8.3,8.3,8.2,8.3,7.8,7.7,8.3,8.2,8.3,8,8,8.2,8.4],"paint":[22.5,22.2,22.6,22,22.3,22.1,22.3,22.1,22.1,22,22.2,22,21.9,22.4,22.5]}},{"b":2,"v":{"total":[28.8,12.5,14.9,13.2,28.6,29.4,13.4,14.8,31.4,14.3,15.8,13.2,31.4,13.1,13.4],"script":[2.3,2.4,1.8,2.9,2.5,2.9,2.7,2.8,4,2.5,3.3,2.2,2.4,2.3,2.4],"paint":[10.3,8.7,9.7,9.6,9.4,10.6,9.8,9.2,10.1,9.2,11,10.7,12.5,9,9.1]}},{"b":3,"v":{"total":[9,5.3,8.3,9.9,3.4,6.7,6.7,5.1,9,6.7,7.7,5.2,6.8,7.1,5.5,8.2,11.8,9,8.9,3.6,7.7,6.7,7.7,3.1,4.7],"script":[0.7,0.9,1.4,1.9,1.1,0.8,0.3,1.5,1.4,0.3,0.6,1,0.3,0.9,1.2,0.3,0.4,1.4,0.4,1,1.5,1.1,1.9,0.9,1.1],"paint":[2.4,1.7,1.5,1.5,1.9,1.9,1.3,1.8,1.6,2.1,2,1.2,1.4,2.7,1.5,2.6,1.9,1.3,2.5,2.5,2.2,1.8,1.8,2,2.1]}},{"b":4,"v":{"total":[30.4,15.3,14.9,15.7,15.9,30.7,15,30.1,14.9,15.1,14.6,13.8,30,16.6,29.3],"script":[1.5,0.9,1.3,1,1.2,1.1,0.3,1.5,0.9,1,1.3,1.3,1.9,1.6,1],"paint":[13.4,11.1,11.6,12.1,13.1,12.5,12.6,11.5,12.2,12,10.7,11.9,12.1,13,13]}},{"b":5,"v":{"total":[11.9,15.9,12.3,15.3,12.5,11.5,13.3,11.6,13.4,17.5,11.7,13,11.7,14,15.1],"script":[0.6,0.6,0.6,0.4,1.3,0.9,0.6,0.6,0.6,0.5,0.6,0.6,0.3,0.7,0.6],"paint":[10.4,10,10.3,10.6,10.8,10.2,10.3,10.3,10.5,10.5,10.2,10.5,10.5,10,10.2]}},{"b":6,"v":{"total":[720.8,290.6,285.3,284.5,730.2,717.4,294.5,290.4,718.4,718.8,284.3,292.4,717.3,284.2,285.2],"script":[62.4,61.7,62.7,63.1,61.7,64,63.8,61.4,63.1,61.4,61.4,63.6,60.6,61.8,63.1],"paint":[219.8,214.2,214.6,213.3,222.4,221.1,217.7,216.2,222.9,221.3,214.5,219.1,219.5,214.3,213.5]}},{"b":7,"v":{"total":[37.6,33.4,37.4,32.4,38.1,37.8,33.3,33.3,38.8,37.6,33.3,38.1,37.6,37.8,33.5],"script":[6.4,6.5,6.2,6.2,6.5,6.6,6.6,6.6,6.5,6.5,6.5,6.5,6.3,6.4,6.6],"paint":[25.3,26,25.2,25.3,25.5,25.2,25.8,25.8,24.9,25.1,25.9,25.7,25.3,25.5,25.9]}},{"b":8,"v":{"total":[31,31.2,30.7,31.4,30.8,34.1,10.5,30.9,31.6,32.1,11.3,12,10.2,10.4,32.4],"script":[8.6,8.9,8.2,8.2,7.8,10.6,8.4,8.2,8.3,8.6,8.2,8.5,8.5,8.5,9.5],"paint":[1.5,1.6,0.3,0.3,2.2,2.2,0.7,0.8,2.3,1.3,0.3,1.2,0.3,1,0.3]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[3.67]}},{"b":11,"v":{"DEFAULT":[3.69]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[29.14]}},{"b":14,"v":{"DEFAULT":[22.5]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[58.6]}}]},
+{"f":30,"b":[{"b":0,"v":{"total":[48.2,47.1,48.9,47.2,48.1,49.2,48.7,48.7,48.4,48.2,48.1,48.9,48.7,47.7,48.2],"script":[25.8,25.4,26.8,25.4,26.3,27.1,26.5,26.4,26.2,26.6,26.1,26.7,26.6,25.8,26.3],"paint":[21.9,21.3,21.7,21.4,21.3,21.7,21.8,21.8,21.9,21.2,21.6,21.8,21.8,21.5,21.6]}},{"b":1,"v":{"total":[64.9,65,64.7,63.8,65.5,65.1,65.5,65.1,65.2,65,64.1,65.6,65,65.1,64.9],"script":[41.4,41.6,41.1,40.1,41.8,41.2,41.7,41.2,41.8,41.4,40.6,41.6,41.5,41.6,41.5],"paint":[23.1,22.9,23.2,23.3,23.2,23.4,23.4,23.5,23,23.1,23,23.5,23,23,22.9]}},{"b":2,"v":{"total":[19.6,20.4,20.2,22.5,20.7,19.5,20.1,19.1,20.6,19.3,20.3,20.7,20.4,21.5,20.1],"script":[8.4,8,7.6,8.9,8.3,9,8.7,7.7,9.1,8.5,8.5,8,8.6,8.8,8.3],"paint":[10.2,10.9,11.9,12,11.4,9.1,9.4,9.9,10.4,9.1,10.2,11.7,10.2,11.5,10.3]}},{"b":3,"v":{"total":[15.5,16.5,14.3,15.1,15.5,16.4,14.1,15.4,14.9,15.6,15.7,15.8,16.3,15,15,15.4,15.3,15.2,14.9,14.5,15.2,15.3,15.4,15.9,15.5],"script":[12.5,14,11.8,12,12.5,12.8,12,12.2,12.4,12.1,12.6,12.8,13.1,12.4,12.2,11.9,12.7,12.2,12,12.1,12,11.9,12,12.6,11.6],"paint":[1.7,2.2,1.9,2.3,2.2,2.6,1.1,2.4,1.7,2.8,1.6,2,2,1.3,2.1,3.3,1.6,2.8,1.8,1.2,2.3,2.9,2.9,2.6,3.1]}},{"b":4,"v":{"total":[23.9,24.7,24.2,24.7,23.7,24.3,22.1,26.7,24.4,22.8,23.7,23.8,23.6,25,24.4],"script":[8.7,9,8.9,8.8,7.6,9,8.8,9.1,8.3,7.9,8.3,8.6,8.3,8.6,8.8],"paint":[13.2,14.7,13.4,14.9,14.5,14.5,12.1,16.3,14.3,13.8,14.3,13.9,13.6,15.7,14.4]}},{"b":5,"v":{"total":[16.9,16.3,16.3,15.8,15.8,16.4,16.6,16.2,16.4,16.4,17,17,16.3,15.9,16.4],"script":[5.4,5.4,5.1,5.4,5.4,5,5.4,5.2,5.5,5.4,5.5,5.5,5.4,5.3,5.4],"paint":[10.8,10.6,10.6,9.5,9.5,10.1,10.5,10.1,10.4,10.3,10.7,10.6,10.4,9.6,10.3]}},{"b":6,"v":{"total":[427.8,426.3,427,427.7,426.4,428.4,428.4,427,428.1,428.6,431.8,427.9,427.3,430.9,425.5],"script":[196.7,195.2,195.9,196.9,194.2,197,197.1,195.3,196.6,197.9,201.6,196.6,195.1,198.1,194.1],"paint":[224,223.9,223.9,223.5,224.9,224.2,224.3,224.7,224.2,223.6,223.2,224,225.1,225.5,224.4]}},{"b":7,"v":{"total":[60.9,60.2,60.7,60.2,61.2,61.7,60.7,60,60.5,60.7,60.8,60.7,60.4,60,60],"script":[33.9,33.4,33.5,33.1,34.1,34.1,33.5,33.2,33.4,34,33.9,33.9,33.5,33.1,33.2],"paint":[26.1,25.9,26.3,26.2,26.2,26.7,26.2,26,26.2,25.9,26,26,26.1,26,26]}},{"b":8,"v":{"total":[22.2,22.3,24.8,22,22.5,21.9,22.7,23.3,22,23.2,22,21.9,23.1,22.4,22.1],"script":[20.9,20,23.2,20.7,21.3,20.2,20.7,21.6,20.1,21.9,20.9,20,21,20.6,20.4],"paint":[1.2,2,0.7,1.2,0.3,1.6,1.5,1.6,1.7,0.6,0.4,1.1,1.6,0.6,1.7]}},{"b":9,"v":{"DEFAULT":[8.27]}},{"b":10,"v":{"DEFAULT":[14.21]}},{"b":11,"v":{"DEFAULT":[14.17]}},{"b":12,"v":{"DEFAULT":[9.09]}},{"b":13,"v":{"DEFAULT":[63.91]}},{"b":14,"v":{"DEFAULT":[1109.4]}},{"b":15,"v":{"DEFAULT":[223.3]}},{"b":16,"v":{"DEFAULT":[992.4]}}]},
+{"f":31,"b":[{"b":0,"v":{"total":[29,29.3,29.1,29.5,28.5,29,29,29,28.9,29.2,29.4,29.2,28.9,31.5,29],"script":[6.3,6.3,6.5,6.5,6.3,6.4,6.5,6.4,6.4,6.5,6.7,6.6,6.5,6.6,6.5],"paint":[22.1,22.4,22.1,22.4,21.6,22,22,22.1,21.9,22.2,22.1,22.1,21.9,24.3,21.9]}},{"b":1,"v":{"total":[31.5,31.4,31.7,31.9,31.5,32,31.8,31.6,31.8,31.4,31.9,33.1,32.2,31.5,32.1],"script":[8.5,8.4,8.7,8.7,8.7,8.8,8.7,8.9,8.7,8.7,8.7,9.1,8.8,8.7,8.7],"paint":[22.4,22.4,22.4,22.7,22.2,22.6,22.6,22.1,22.5,22.1,22.6,23.4,22.8,22.2,22.8]}},{"b":2,"v":{"total":[13.9,13.9,12.6,13.9,13.2,14.2,18.2,13.9,13.7,13.9,13.8,13.5,14.3,13.5,13.1],"script":[2.5,3.3,2.4,2.8,3,3.1,3.3,3,3.6,3,3.2,2.8,3.5,2.6,2.9],"paint":[10.3,9.6,9,10.1,8.9,10.2,12.8,9.5,8.3,9.6,8.7,9.4,9.1,10,8.8]}},{"b":3,"v":{"total":[4.7,4,3.6,3.4,3.5,3.8,3.3,3.1,3.7,4.3,3.4,3.1,4.3,3.9,3.6,3.9,3.3,3.3,3.5,3.4,3.7,3.9,3.7,3.3,3.7],"script":[1.9,1.4,1.5,0.9,1.4,1,1,1,1.5,1.8,1,0.7,1.9,2.2,1.3,1.7,1.5,0.7,1.4,1.6,1.2,1.4,1.7,0.7,0.9],"paint":[1.7,2,1.5,1.4,1.4,2.2,1.8,1.3,2,2.3,1.6,1.8,2.2,1.6,2.1,1.5,1.3,1,1.2,1.3,1.4,1.6,1.2,2.5,1.8]}},{"b":4,"v":{"total":[14.7,16.7,13.8,14.2,13.5,14.2,14.2,14.6,13.4,15.2,15.8,14.1,14.9,14.9,14.5],"script":[0.7,1,0.9,1.1,0.9,0.9,1.1,1.1,0.9,1.3,0.3,0.6,0.9,1.1,1.2],"paint":[12.2,14.7,11.8,11.9,11.7,12.1,11.4,12.9,11.6,12.2,14.3,12,12.6,12.4,12]}},{"b":5,"v":{"total":[11,10.9,11.9,11,11.3,11.4,10.9,10.9,10.8,11.6,10.6,10.9,10.8,11,11],"script":[0.6,0.6,0.6,0.7,0.7,1,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6],"paint":[9.5,9.1,10.6,9.7,9.5,9.6,9.6,9.3,9.3,10.3,9.3,9.4,9.7,9.5,9.9]}},{"b":6,"v":{"total":[295.1,297.3,298.1,301,298.2,299,300.2,299.6,299.6,300.1,297.6,299.7,302.6,302.7,300.1],"script":[68.3,68.6,69.3,70.2,69.6,69.8,70.1,69.7,71,70.4,68.9,69.6,70,71.2,69.4],"paint":[218.7,220.7,220.5,222.5,220.6,221,221.8,221.7,220.4,221.3,220.5,222,224.4,222.8,222.7]}},{"b":7,"v":{"total":[33.8,34.9,34.3,33.6,33.9,33.7,33.5,34.4,34,34.2,34,33.2,34.1,33.9,33.9],"script":[7.1,7.1,7.1,6.7,6.9,6.5,6.9,7.4,7.1,6.8,6.9,6.5,6.7,6.9,6.7],"paint":[25.8,26.8,26.3,25.9,26.1,26.2,25.7,26.1,26,26.4,26.2,25.8,26.4,26.2,26.3]}},{"b":8,"v":{"total":[13.7,11.9,12.8,12.5,11.9,12,12.8,12.8,10.3,12.5,14.3,12.2,11.5,11.5,11.6],"script":[11.3,9.7,10.9,10.5,10.3,10.6,10.4,10.5,8.6,10.3,11.8,10.3,9.7,9.8,10.1],"paint":[1.4,0.7,1.4,1.8,0.7,0.9,1.4,1.1,0.7,1.5,1.6,1,0.4,1.1,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.4]}},{"b":11,"v":{"DEFAULT":[3.45]}},{"b":12,"v":{"DEFAULT":[0.68]}},{"b":13,"v":{"DEFAULT":[27.97]}},{"b":14,"v":{"DEFAULT":[7.5]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[37.9]}}]},
+{"f":32,"b":[{"b":0,"v":{"total":[29.6,30,29.9,29.9,30.1,30,30.5,30.1,29.7,29.5,30.2,30.2,29.9,30.5,30.8],"script":[6.7,6.8,6.7,6.8,6.9,6.8,7,7,6.7,6.7,6.8,7.1,6.7,6.8,6.8],"paint":[22.4,22.6,22.6,22.6,22.7,22.6,23,22.6,22.4,22.3,22.8,22.6,22.6,23.1,23.4]}},{"b":1,"v":{"total":[33.9,34.4,34.9,34.5,34.9,35.7,34.2,34.7,35.2,35.3,35.2,35.2,34.4,35.6,34.7],"script":[10.5,10.4,10.6,10.4,10.7,10.9,10.2,10.7,10.8,10.9,10.7,10.7,10.6,10.8,10.7],"paint":[22.9,23.4,23.7,23.5,23.7,24.1,23.4,23.4,23.8,23.8,23.9,24,23.4,24.2,23.4]}},{"b":2,"v":{"total":[12.3,11.5,11.9,12.2,11.6,11.1,13,11.7,11.6,11.6,12,12.4,11.9,12.5,11.5],"script":[1.1,1.3,0.2,1.2,0.6,0.2,1,0.8,0.9,0.2,0.9,1.3,0.6,1.1,0.6],"paint":[10.4,8.7,10.7,9.5,9.1,9.6,10.9,9.7,9.4,9.9,9.4,9.8,10.3,9.7,9.9]}},{"b":3,"v":{"total":[5.2,1.7,2.7,2.5,2.6,2.2,1.8,2.3,2.2,2.8,2.5,2.3,2.6,1.9,2.5,2.7,2.4,2.4,2.7,2.2,2.3,2.7,2.6,2.3,2.6],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.9,0,0,0],"paint":[1.8,0.7,2.5,2.3,1.6,2,1.3,2.2,1.1,2.1,1.7,1.4,2,1,1.7,2.2,1,1.7,1.6,2,1.1,1.3,2.5,1.3,1.5]}},{"b":4,"v":{"total":[15.8,15.1,14.7,14.9,14.7,15.5,14.3,15.2,14.8,15,14.5,14.9,15.3,14.9,15.5],"script":[1.5,0.6,0.7,1.3,0.9,1.8,0.9,1.4,1.1,0.9,0.7,1.2,0.9,1.3,1.4],"paint":[13.3,13.5,13,11.8,12.6,12.4,12.2,12.4,12.7,12.8,12.5,11.8,12.1,12.1,12.9]}},{"b":5,"v":{"total":[11.4,11.2,11.5,10.9,11,11.2,11.5,11.4,11.2,10.9,11.2,11,11.3,12.1,11],"script":[0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.6],"paint":[10.5,9.9,10.3,9.5,10,10.1,10.4,10.3,10.3,10,9.8,9.2,10.2,10.6,9.8]}},{"b":6,"v":{"total":[316.6,316,315.9,317.9,315.5,313.6,315.6,317.9,315.1,316.9,314,321.3,315.3,318.8,315.8],"script":[78.3,78,78.1,78.4,78,77.4,78.6,78.3,78,77.6,77.8,77.3,79.1,78.2,78.3],"paint":[230.3,229.9,229.9,231.3,229.7,228.3,229.1,231.2,229.1,231.5,228.4,235.2,228.4,231.9,229.6]}},{"b":7,"v":{"total":[37,37.6,36.3,36,36.6,36.3,36.3,37.1,36.7,36.3,36.8,36.3,36.6,38.1,36.6],"script":[7.4,7.4,7,7,7,7.1,7.1,7.5,7.5,7,7.1,7,7.1,7.5,7.1],"paint":[28.6,29.1,28.3,28.1,28.6,28.3,28.2,28.7,28.2,28.3,28.6,28.3,28.5,29.6,28.5]}},{"b":8,"v":{"total":[8.9,9.5,9.8,9.5,9.8,10.7,9.6,9.9,9.8,9.4,9.4,9.8,9.4,9.3,9.4],"script":[7.3,7.5,7.9,7.7,7,8.2,7.4,7.5,7.5,6.9,7.4,8,7.5,7.7,7.9],"paint":[1,1.8,0.3,0.6,2.5,1.3,1.9,1.4,1.3,2.2,1.2,0.4,0.2,0.7,0.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.1]}},{"b":12,"v":{"DEFAULT":[0.74]}},{"b":13,"v":{"DEFAULT":[23.77]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[48.4]}}]},
+{"f":33,"b":[{"b":0,"v":{"total":[37.6,34.9,44.7,30.9,32.1,31.8,35.7,33.1,32.6,37.6,30.8,30.4,35.5,30.6,37],"script":[8.1,8.4,8.2,8,8.1,8.2,8.1,8.4,8.3,8.3,8.4,8.4,8.3,8.1,8.2],"paint":[21.3,21.4,21.1,21.5,21.8,21.7,21.6,21.3,21.6,21.3,21.4,21.7,21,21.6,21.7]}},{"b":1,"v":{"total":[41.4,35.5,35.4,35.7,35.4,35.7,36.2,36.4,38.5,37.8,40.5,38.9,36.9,36.8,37],"script":[12.5,12.7,12.7,12.6,12.6,12.4,12.7,12.6,12.4,12.7,12.3,12.8,12.5,12.5,12.5],"paint":[22.4,22.3,22.2,22.4,22.2,22.7,22.4,22.2,22.1,22.5,22.9,22.3,22.3,22.1,22]}},{"b":2,"v":{"total":[47.8,49.2,46.5,17.3,17.3,47.7,18.7,16.9,46.3,48.8,46.8,49.5,17.6,17.2,17.5],"script":[4.4,4.2,4.1,4.4,4.4,4.4,4.8,3.6,5,4.1,4.4,6.3,4.6,4.3,3.8],"paint":[12,13,11.2,11.2,11.5,10.7,12.3,11.4,10.5,12.1,11.1,12.2,10.6,12.7,11.8]}},{"b":3,"v":{"total":[6.6,12,9.3,6.3,12,7.4,6.5,9.4,11.3,5.7,10.6,6.8,7.2,10.4,12.1,8,8.7,10.8,8.5,12.5,8.7,6.7,6.8,7.2,7.3],"script":[2.5,2.8,2.2,2.5,2.4,3.2,3.6,2.9,2.4,2,2.3,2.4,2.6,2.6,1.9,2.6,2.4,3,2.7,3.3,2.7,3.4,3.1,3.4,2.6],"paint":[2.9,3.8,3.4,3.3,3.5,2.4,3.2,3,3.6,1.7,2.9,2.4,3.7,3.9,3.5,2.6,1.8,3.6,3.3,1.8,3.1,2.4,2.7,2.9,2.6]}},{"b":4,"v":{"total":[48.9,49.3,52.9,48.6,50,48,19,50.2,48.8,50.8,17.1,49,50.2,48.5,18.5],"script":[2.8,2,2.7,2.1,2.5,2,2.5,3.2,2,2.6,1.9,2.1,2.5,2.5,2.3],"paint":[14.4,15.4,16.2,15,14.7,14.8,15.4,14.8,13.4,14.8,13.3,14,15,12.7,14.6]}},{"b":5,"v":{"total":[12.8,17.5,17.5,15.2,13.9,15.1,14.6,16,16.1,16.4,16.4,13.9,12.2,13.5,14.4],"script":[5.2,5.1,5.2,5.5,5.5,5.1,5.4,5.1,5.4,5.9,5.5,5.5,5,5.5,5.4],"paint":[10.4,10.2,10.9,10.8,11.2,11.2,11,11.3,10.8,11.4,11.4,11.3,10,11.5,11.2]}},{"b":6,"v":{"total":[300,297.9,301.4,295.3,301.5,295.6,298.8,304.9,297.8,296.3,293.7,299.6,297.1,297.3,294.2],"script":[84.9,84.5,86.2,87,82.8,84.9,83.8,84.1,84.2,87,85.5,85.8,88,82.3,83.9],"paint":[201.7,206.3,205.5,203,205.6,204.3,205.3,209.5,202.5,203.9,203.1,203.1,203.2,207,205.2]}},{"b":7,"v":{"total":[44,36.6,43.2,36.5,36.1,44.4,44.4,44.5,44,36.1,36.6,45.2,44.4,44.3,36.6],"script":[9.5,9.8,9.2,9.7,9.8,9.1,9.5,9.4,9.4,9.8,9.8,9.7,9.4,9.3,9.6],"paint":[25.5,26.3,25,26.3,25.8,25.3,25.8,25.8,25.6,25.8,26.3,26,25.8,25.9,26.6]}},{"b":8,"v":{"total":[12.1,13.2,12.3,12,12.7,12.8,11.6,11.3,12.3,13.3,12.2,12.2,11.3,45.9,12.2],"script":[8.5,8.7,9,9,8.1,8.6,8.5,7.1,9,8.5,8.3,8,8.1,9.2,9],"paint":[1.8,1.6,3,2,2.5,1.4,2.4,1.6,2,2.3,2.7,2.7,2.9,2.1,2.2]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.63]}},{"b":11,"v":{"DEFAULT":[5.65]}},{"b":12,"v":{"DEFAULT":[0.94]}},{"b":13,"v":{"DEFAULT":[48.45]}},{"b":14,"v":{"DEFAULT":[16.8]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[49.4]}}]},
+{"f":34,"b":[{"b":0,"v":{"total":[57,53,54.3,55.6,53.6,52.6,56.6,55.8,52.7,55.6,55.7,54.2,55,57.4,56],"script":[30.1,30.2,30.3,30.7,29.9,30.1,30.6,30,29.6,30.4,30.9,30.6,30.2,30.7,30.6],"paint":[22,21.8,21.6,22.2,22,21.5,22.1,22.3,21.8,21.6,21.7,21.6,22.5,21.6,21.9]}},{"b":1,"v":{"total":[70.7,66.1,65.9,64.1,65.1,63.4,64.8,66.7,69.2,67.1,66.6,67.8,65.4,65.1,66.2],"script":[39.9,40.1,39.7,40.5,39.4,39.7,39.9,39.6,40.3,40.8,39.4,39.9,40.5,40.3,39.7],"paint":[23,23.2,23.3,23.1,23.6,23.4,23.5,23.6,23.3,23.3,23.1,23.1,23.1,23.5,23.2]}},{"b":2,"v":{"total":[34.4,34.9,35.2,34.5,35.4,18.1,36.6,36.5,34.5,37.9,36.3,36.7,35.9,35.1,36],"script":[4.5,4.7,4.8,4.5,4.5,5.2,5.8,4.1,4.3,4.3,4.7,5.1,4.8,5.3,3.6],"paint":[13.1,12.5,11.9,13.4,13.1,12.1,12.2,13.6,11.8,11.5,13.7,13,13.3,12.4,14.2]}},{"b":3,"v":{"total":[22,19.5,20,17.4,20.1,16.7,20.8,17.3,18.8,19.8,19.1,16.9,16.9,18.6,18,17.1,21.1,20,17.5,19.4,19.9,17.7,22.7,17.4,18.9],"script":[13.7,13.1,13.6,12.9,12.5,12.2,13,13.5,12.6,13.3,13.5,12.4,13,13.3,12.9,12.8,12.9,12.2,12.3,12.6,12.9,13.1,13.6,13.8,13.4],"paint":[2.9,3,4,2.7,3.3,3.2,3.4,2.5,3.8,2.8,4,2.7,2.9,4.2,3.6,3.3,3.5,3.3,2.7,2.9,3,2.9,2.8,2.9,3]}},{"b":4,"v":{"total":[39,40.1,38.9,37.9,37,22.4,36.8,40,40.8,38.7,38.9,38.9,19.5,37.9,37.2],"script":[5.2,4.3,4.4,4.6,4.3,4.8,4.7,4.7,4.6,4.4,4.3,4.7,4.9,4.7,4.5],"paint":[15.7,14.4,15.5,15.2,15,14.5,15,15.2,14.9,16.2,15.3,15.9,13.6,14.5,15.2]}},{"b":5,"v":{"total":[20.7,21.7,20.4,20.4,20.3,21.4,23.1,22,22,22.5,20.1,19.9,20,19.9,23.1],"script":[7.9,7.9,8,7.7,8.3,7.8,8,7.9,7.9,7.9,7.7,7.5,7.7,7.7,8.1],"paint":[10.9,11.2,11.3,11.7,11.5,11.8,11.4,11.4,11.7,11.6,11.8,11.6,11.5,11.3,12.2]}},{"b":6,"v":{"total":[426,424.4,424.8,421.6,423.4,423.2,425.7,423.9,428.6,425.2,423.3,440.8,425.6,426.6,425.1],"script":[198.4,197.6,197.9,195.6,196.2,196.5,198,196.9,198.9,195.8,197.2,211.4,199.5,198.6,197.6],"paint":[224.3,223.4,223.2,222.4,223.3,223.4,224.4,223.3,223.4,225.9,222.1,222.1,222.8,224.4,224]}},{"b":7,"v":{"total":[75.1,64.5,69.5,66,68.7,62.8,68,62.5,69.5,67.5,66.3,63.1,62.9,65.6,66.1],"script":[36,36.3,35.2,34.2,36.4,35.3,35.7,34.8,36.3,35.6,34.7,35.3,35.6,34.2,34.8],"paint":[26.9,27.7,26.6,26.9,27.3,27,27.3,27.3,27.3,27.1,26.9,27.4,26.8,26.7,26.5]}},{"b":8,"v":{"total":[23.1,23.6,22,21.7,22.1,43.9,23,23.2,46.4,24.2,46.8,22.7,20.7,25.3,23.2],"script":[19.7,19.4,18.8,18.3,19.5,21.1,19.5,19.1,23,19.8,21.4,19.3,18,22,19.2],"paint":[3.2,2.9,1.4,2.3,1.9,3.3,2.9,2,3.1,3.1,3.7,1.8,2.2,2.5,2]}},{"b":9,"v":{"DEFAULT":[5.3]}},{"b":10,"v":{"DEFAULT":[11.19]}},{"b":11,"v":{"DEFAULT":[11.21]}},{"b":12,"v":{"DEFAULT":[6.25]}},{"b":13,"v":{"DEFAULT":[61.14]}},{"b":14,"v":{"DEFAULT":[111.9]}},{"b":15,"v":{"DEFAULT":[28.9]}},{"b":16,"v":{"DEFAULT":[116.4]}}]},
+{"f":35,"b":[{"b":0,"v":{"total":[32.8,32.7,33.1,32.3,32.6,31.7,33,32.2,33.2,32.6,32.5,32.8,32.1,32.1,31.9],"script":[9.9,9.6,10.1,9.6,9.6,9.4,10.1,9.7,10,9.8,9.6,9.8,9.6,9.7,9.7],"paint":[22.3,22.6,22.4,22.2,22.4,21.7,22.4,22,22.7,22.2,22.3,22.5,22,21.9,21.6]}},{"b":1,"v":{"total":[33.5,34.1,33.6,34.1,33.9,33.6,34.4,33.3,34,34.1,34.3,34.9,34,34,34.5],"script":[11.3,11.3,11.1,11.2,11.2,11.1,11.5,11,11.4,11.1,11.4,11.7,11.3,11.3,11.2],"paint":[21.7,22.2,21.9,22.4,22.1,21.9,22.3,21.7,22.1,22.4,22.3,22.6,22.1,22.1,22.7]}},{"b":2,"v":{"total":[11.6,11.8,12.4,12.4,12.4,11.7,12.4,12.4,12.7,13.3,11.7,12.5,13.8,12.5,13.5],"script":[1.3,1.3,1.5,1.5,0.7,1.5,1.2,1.5,2.3,2,1.2,1,1.5,1.4,1.8],"paint":[9.7,9.5,9.9,9.8,10.4,9.4,9.9,9.9,9,10.2,9.7,10.5,10.9,10.5,9.9]}},{"b":3,"v":{"total":[4,4.5,4.2,4.8,4.1,4.4,4.5,4.5,4.5,3.6,4.3,3.6,4.6,4.4,4.3,4.3,4.5,4,4.3,4,4.6,4.4,4,4.8,4.6],"script":[2.1,1.8,2.1,2.7,2.4,2.3,1.9,2.1,2.1,1.6,2.4,2,2,2.1,1.9,2.8,1.8,1.6,1.4,2.1,1.9,2.3,2.4,2.4,2.2],"paint":[1,2.5,1.9,2.1,1.6,2,2.5,2.2,1.5,0.9,1.3,1.1,2.2,2.2,2.3,1.3,1.7,2,2.5,1.2,2.6,0.5,1,2,1.6]}},{"b":4,"v":{"total":[15.1,14.9,14.3,14.2,14,14,14.5,14.2,14.4,15.2,15.5,14.5,15.4,15.1,13.9],"script":[1.4,1.4,1.1,1,1.3,0.7,1.7,1.3,1.3,0.9,0.3,0.8,1.2,1.5,1],"paint":[12.4,11.9,12,11.8,12.4,12.2,11.6,11.5,12.2,13.3,14.9,12.1,13.2,12.1,12.3]}},{"b":5,"v":{"total":[10.9,10.9,11.1,10.9,10.9,10.5,11.5,10.9,11,10.4,11,10.5,10.8,10.8,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,9.4,9.3,9.7,9.6,9.3,10.2,9.6,9.4,9.5,9.9,9.6,9.6,9.3,9.7]}},{"b":6,"v":{"total":[319.9,320.2,319,320.7,320.7,320.1,314.6,320.7,322,320,319.1,318.3,318.3,320,321.2],"script":[94.5,94.9,95.1,95.8,94.8,95.2,89.2,95.7,95.3,95,94.7,95.8,94.7,94.9,94.8],"paint":[217.6,218.1,216.4,217.4,218.5,217.5,218.3,217.4,219.3,217.6,217.2,215.3,216.3,217.9,218.5]}},{"b":7,"v":{"total":[36.6,36.6,37.1,37.2,36.9,37.5,37.3,36.6,36.5,37.1,36.5,36.5,36.9,36.9,36.9],"script":[9.6,9.4,9.6,9.6,9.5,9.6,9.5,9.4,9.3,9.5,9.5,9.6,9.6,9.5,9.3],"paint":[26,26.2,26.5,26.6,26.4,27,26.8,26.3,26.3,26.6,26.1,26,26.4,26.4,26.6]}},{"b":8,"v":{"total":[13.4,12.8,15.3,13.7,13.4,13,13.7,13,12.9,14.1,13.1,13.1,12.5,13.3,13.4],"script":[11.2,11.5,13.1,11.8,11.3,10.8,11.8,10.5,11.1,12.2,11.3,10.9,10.9,11.9,11.8],"paint":[1,0.6,0.7,1,1.9,1.9,0.6,1.4,1.2,1.7,1,1.5,0.2,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.15]}},{"b":11,"v":{"DEFAULT":[4.2]}},{"b":12,"v":{"DEFAULT":[1.07]}},{"b":13,"v":{"DEFAULT":[34.03]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[41.1]}}]},
+{"f":36,"b":[{"b":0,"v":{"total":[32.6,32.4,32.6,32.2,32.3,32.5,32.2,32.1,32.2,32,33.3,32.6,32.3,32,32.3],"script":[9.9,9.7,9.6,9.6,9.6,9.9,9.7,9.5,9.7,9.4,10,9.9,9.6,9.6,9.4],"paint":[22.2,22.1,22.4,22.1,22.2,22.1,21.9,22.2,22,22,22.7,22.1,22.1,21.8,22.4]}},{"b":1,"v":{"total":[38.5,37.2,37.9,37.4,37.3,37.8,37.4,38.5,37.5,38.2,37.5,38,37.3,37.4,38.1],"script":[14.3,13.7,14.3,14.4,14.1,14.3,14.2,14.4,14.1,14.3,14.5,14.5,14,14.4,14.6],"paint":[23.5,22.9,22.9,22.5,22.7,23,22.7,23.6,22.8,23.3,22.4,22.9,22.7,22.4,22.9]}},{"b":2,"v":{"total":[19.3,19.5,22,18.9,18.8,19.5,20.9,20.7,20,19.4,19.5,20.1,19.8,18.5,22.2],"script":[7.4,7.9,9.1,7.5,7.3,7.3,9.1,8.2,8.7,7.3,6.6,8.4,8.5,6.9,9.4],"paint":[10,9.3,11.7,9.4,9.7,10.8,10.4,9.9,9.9,10.6,10.9,10.5,9.3,10.8,10.5]}},{"b":3,"v":{"total":[8.5,7.2,7.6,7.8,7.8,7.5,9.1,8.4,8.2,9.1,8.7,6.8,8.7,8,7.3,8,7.7,9.7,7.7,7,8.3,7.6,7.7,8.6,7.6],"script":[5.1,4.7,5,4.6,5,4.6,5.6,5.2,5.7,5.6,5.9,4.1,5.9,4.9,4.3,4.9,4.6,6.4,5,4.7,5.3,4.6,4.7,5.5,4.9],"paint":[1.1,1.4,1.8,2.9,1.4,2.1,2.1,2.2,1.2,2.5,1.1,1.4,1.3,2.4,2.8,2.5,1.9,2.1,1.8,1.3,1.5,2.3,2.4,2.4,2]}},{"b":4,"v":{"total":[20,22.1,18.1,18.5,19,18.6,20.2,18.1,19,18.5,18.5,18,20.9,20.4,20.4],"script":[5.1,6.1,4.8,4.6,4.8,4.9,5.1,4.4,4.6,4.5,4.4,4.6,5.2,5.7,5.6],"paint":[13,13.5,12.1,12.5,13,12.1,13.1,12.3,12.7,12.5,13.4,12,13.8,12.9,12.7]}},{"b":5,"v":{"total":[14.5,14.5,15,14.7,15,14.7,14.6,14.9,15,14.9,15.2,14.9,15.2,15,14.9],"script":[4.2,4.2,4.3,4.3,4.3,4.2,4.3,4.5,4.3,4.2,4.2,4.4,4.3,4.4,4.2],"paint":[9.4,9.7,10,9.5,10.1,9.8,9.4,9.7,10,10,10.1,9.8,10,9.8,9.8]}},{"b":6,"v":{"total":[332.8,328.4,332.4,331.3,328.3,328.3,329.5,327.1,328.5,330.8,327.3,352.3,330.6,328.1,329.5],"script":[98.8,98.2,98,97.5,99,99.4,98.5,97,98.2,99.2,99.1,99.4,98,97.8,98.7],"paint":[226.3,222.4,226.4,225.9,221,221.3,223.4,222.4,222.5,223.1,220.6,245.1,224.1,222.9,222.9]}},{"b":7,"v":{"total":[40.4,40,39.9,39.7,40.1,39.5,39.6,39.8,39.9,40,39.9,40.2,40.6,39.4,40.6],"script":[12.5,12.8,12.9,12.5,12.7,12.6,12.7,12.7,12.6,12.8,12.8,12.8,13,12.6,12.7],"paint":[26.9,26.3,26,26.2,26.5,25.9,25.9,26,26.3,26.2,26.1,26.3,26.5,25.8,26.9]}},{"b":8,"v":{"total":[16.1,16.2,16.2,16.1,16.4,16.1,18.3,16.4,15.7,16.7,16.4,15.7,16.5,15.9,15.8],"script":[14.6,14.2,14.4,14,15,14.2,15.7,14.4,13.3,14.9,14,13.8,14.4,13.6,14.1],"paint":[0.3,1.8,1.6,1,0.3,1,1.9,1,1.5,0.3,2.2,1,0.7,1.4,0.6]}},{"b":9,"v":{"DEFAULT":[0.74]}},{"b":10,"v":{"DEFAULT":[3.85]}},{"b":11,"v":{"DEFAULT":[4.23]}},{"b":12,"v":{"DEFAULT":[2.27]}},{"b":13,"v":{"DEFAULT":[30.98]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[78.2]}}]},
+{"f":37,"b":[{"b":0,"v":{"total":[30.2,29.8,29.9,30.3,30.4,30.3,29.9,31,30.1,30.3,31.2,29.7,30.4,29.8,29.7],"script":[8.8,8.6,8.8,9,9.1,9.1,8.8,9,9,9.3,9.5,8.8,9.1,9,8.7],"paint":[20.9,20.7,20.6,20.8,20.8,20.6,20.6,21.4,20.6,20.5,21.2,20.3,20.8,20.3,20.5]}},{"b":1,"v":{"total":[33.3,32.4,33.4,33.9,32.8,33.7,33.2,32.7,33.3,33.3,33.3,33.3,33.9,32.7,33.4],"script":[11,10.7,11,11.2,10.8,11.1,10.9,11,11,11.2,11.3,11.3,11.3,10.9,11.2],"paint":[21.7,21.2,21.9,22.1,21.4,22.1,21.7,21.2,21.7,21.6,21.5,21.4,22,21.3,21.6]}},{"b":2,"v":{"total":[19.2,18.9,20.1,19.3,18.2,18.8,18.5,21,19.2,19.7,18.9,18.3,18.7,18.2,18.3],"script":[7.1,7.2,8.2,6.8,7,6.7,7.2,7.1,6.3,7.4,7.1,7.2,6.9,7.5,6.9],"paint":[9.6,9.1,10.5,10.2,9.7,8.5,9.4,11.8,11.6,10.2,10.4,9.3,10.6,8.8,10]}},{"b":3,"v":{"total":[5.8,5.5,4.7,5.7,5.6,4.8,4.8,4.9,5.9,5.6,5.5,5.1,5.4,5.1,5.5,5.7,7.4,5.1,4.5,5.2,5.4,5.4,5.7,4.7,5.5],"script":[2.7,2.8,2.8,3.2,2.8,2.9,2.5,3.3,3.3,2.9,2.8,2.7,3,3.2,3,3.5,3.5,3.2,2.6,2.4,2.9,3,3.5,2.7,2.6],"paint":[1.7,2.2,1,2.3,2.6,1.8,2.2,1.1,2.5,2.3,1.1,1.3,2.2,1.8,1.5,2.1,2.1,1.1,1,2.1,1.6,0.8,2.1,1.6,2.8]}},{"b":4,"v":{"total":[108.7,106.7,108.5,108.8,107,109.7,109.9,108.5,108.4,107.4,107.6,108.1,109.1,107.4,108],"script":[21.2,20.5,23.6,22,20.8,22.8,23.1,21.3,22,21.3,22.8,21.9,21.5,21.2,20.9],"paint":[84.7,84.5,82.6,83.5,83.6,83.6,84.8,84.4,83.5,83.1,81.8,84.8,85,84,85.1]}},{"b":5,"v":{"total":[13,12.1,12.5,12.2,12.7,12.5,12.1,12.1,12.2,12.8,12.7,12.2,12.2,11.8,12.1],"script":[2.2,1.9,2.2,2.2,2.2,2.1,2.2,1.9,2.2,2.1,2.2,1.9,2.1,1.9,1.9],"paint":[10,9.6,9.6,9.7,9.9,9.8,9.3,9,9.4,9.8,9.3,9.5,9.1,9.6,9.5]}},{"b":6,"v":{"total":[400.1,401.6,409.9,399.9,405.5,400.8,401.1,406.9,404.1,403.3,400.8,402.7,405.8,407.9,406.6],"script":[178.1,178.6,182.8,177.2,181.3,174.4,176.4,182.1,180.8,180.3,175.3,179.1,182,183.7,181.5],"paint":[214.7,215.7,219.9,215.4,217,219.2,217.3,217.5,216.1,215.4,218,216.2,216.4,216.9,217.7]}},{"b":7,"v":{"total":[35.6,35.9,36.5,36.8,36.1,36.1,36.3,36.4,36.1,36.5,36.3,36.4,36.1,36.3,36.3],"script":[9.6,9.7,9.8,9.6,9.6,9.5,9.7,9.7,9.7,9.9,9.5,9.7,9.8,9.6,9.9],"paint":[25.1,25.2,25.8,26.3,25.6,25.6,25.6,25.8,25.5,25.6,25.8,25.8,25.4,25.8,25.4]}},{"b":8,"v":{"total":[12.6,13.7,12.8,11.8,11.8,12.1,12.4,12.8,12.7,13.2,11.7,12.1,11.9,12.3,13],"script":[10.1,11.3,10.7,10,10.1,10.5,10.2,10.8,10.2,10.8,9.9,10.3,9.7,9.8,10.7],"paint":[1.1,1,0.3,0.2,0.3,1,1.8,0.9,1.5,1.2,1,0.4,1,2.3,1]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[4.73]}},{"b":11,"v":{"DEFAULT":[5.29]}},{"b":12,"v":{"DEFAULT":[2.1]}},{"b":13,"v":{"DEFAULT":[32.24]}},{"b":14,"v":{"DEFAULT":[257.9]}},{"b":15,"v":{"DEFAULT":[58.9]}},{"b":16,"v":{"DEFAULT":[264.7]}}]},
+{"f":38,"b":[{"b":0,"v":{"total":[32,31,30.4,31.1,31,31.3,31.3,30.3,31.3,31.1,31.3,31,31.3,31,31.5],"script":[9.2,8.9,8.4,8.6,8.6,8.9,8.7,8.5,8.8,8.7,8.6,8.4,8.7,8.5,8.6],"paint":[22.2,21.5,21.3,21.9,21.8,21.8,22,21.3,22,21.7,22.1,22,22,21.9,22.3]}},{"b":1,"v":{"total":[35.4,35.7,35.9,36.9,35.7,35.5,35.9,36.5,35.4,35.4,35.3,36.4,35.9,36.7,35],"script":[12.3,12.5,12.2,12.6,12.4,12.3,12.5,12.9,12.3,12.2,12.4,13.1,12.5,13,12.3],"paint":[22.4,22.6,23,23.6,22.7,22.6,22.7,23,22.5,22.6,22.3,22.6,22.8,23.1,22.1]}},{"b":2,"v":{"total":[12.6,13.3,12.9,12.4,12.8,15.1,14.3,14.2,15.4,13.2,12.6,14.6,12.6,12.4,13.7],"script":[1.9,2.1,2,1.7,1.6,2.1,2.3,3,3.2,2.3,1.5,2.4,1.6,1.9,1.8],"paint":[9.5,10.1,9.9,9.6,9.9,11.8,10.9,9.8,10.7,9.6,9.8,10.6,9.8,9.4,11]}},{"b":3,"v":{"total":[4.5,3.4,4,3.5,3.4,3.9,3.8,3.4,3.6,3.5,3.4,3.7,4.2,4,3.6,3.4,3.9,4.1,3.1,4.1,3.5,4.4,3.1,3.8,3.9],"script":[1.5,1.4,2.4,1.3,1,2.1,1.8,1,1.3,1.5,1.6,1.7,1.5,1.4,1.2,1,1.3,1.8,0.9,2.1,1,2.3,1,1.2,2.1],"paint":[2,1,1,2.1,1.6,1.2,1.8,1.3,2.1,1.9,1.6,1.7,1.8,2.1,2.3,1.4,2.4,2.2,2,1,1.5,1.3,1.2,2.4,1.2]}},{"b":4,"v":{"total":[18.3,17.3,16.7,16.7,17,17.1,18.3,17,17.5,19.9,17,17.9,24.5,17.4,18.1],"script":[4.3,4.4,3.6,3.9,3.8,4.3,4.2,4.4,4.7,5,3.5,4.2,5.2,4,4.5],"paint":[12.7,11.4,11.9,10.9,11.1,11.6,12.8,11.3,12.2,13,12.4,13.1,16.8,12.7,12.2]}},{"b":5,"v":{"total":[12.2,13.5,12.8,12.4,12.5,13,12.7,13,12.9,13.4,12.9,13.2,12.8,12.7,12.5],"script":[2,2.3,2,2.1,1.9,2.3,2.2,2.3,2,2.1,2.2,2.2,2.3,2.3,2.1],"paint":[9.7,10.3,10.2,9.4,10.1,10.1,10,10.1,10.2,10.5,10.3,10.3,9.5,9.8,9.9]}},{"b":6,"v":{"total":[326.9,325.5,328.8,328.4,325.7,327.2,322.4,321.8,322.3,326.7,324.8,321.9,321.6,322.8,328.6],"script":[91.8,90.4,91.9,90.8,94,94.1,90.2,90.7,91.2,95.5,90.4,89.7,89.3,89.8,95.2],"paint":[226.7,226.5,228.3,228.6,223.7,224.7,224.5,223.2,223.3,223.4,226.2,224.2,224,225.1,225.6]}},{"b":7,"v":{"total":[38.3,36.7,37.9,39.7,38.1,37.9,37.8,37.6,37.6,37.9,37.8,38.8,38.1,36.6,38.3],"script":[10.4,9.8,9.9,10.3,10.2,9.8,9.9,9.8,9.7,10.1,10.1,10,10,9.2,10.3],"paint":[26.9,25.9,26.9,28.3,26.8,27.1,26.8,26.8,26.8,26.7,26.6,27.5,27,26.3,27]}},{"b":8,"v":{"total":[13.5,17.1,15.3,14.1,13.4,12.6,13.3,14.3,14.1,13.6,14.4,13.4,15.5,15.5,13.4],"script":[10.9,14.7,12.4,12,11.3,10.3,11.1,12.5,11.8,11.6,12,11.3,13.1,13.2,11.6],"paint":[1.8,1.4,1.6,1.5,1.2,1.8,0.8,0.9,1.2,1,1.2,1.1,1.4,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.64]}},{"b":11,"v":{"DEFAULT":[3.69]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[30]}},{"b":14,"v":{"DEFAULT":[9.3]}},{"b":15,"v":{"DEFAULT":[3.9]}},{"b":16,"v":{"DEFAULT":[42.9]}}]},
+{"f":39,"b":[{"b":0,"v":{"total":[30.5,30.1,30.5,31.9,30.5,30.4,30.1,30.1,30.4,30.7,30.2,30.3,30.2,30.5,29.9],"script":[8.6,8,8.3,8.8,8.1,8.3,7.8,8.1,8.2,7.9,8.1,8.2,7.9,8.2,8],"paint":[21.3,21.6,21.7,22.5,21.8,21.6,21.7,21.6,21.8,22.2,21.7,21.7,21.9,21.9,21.6]}},{"b":1,"v":{"total":[44.4,43.1,44.5,43.4,43.5,43.8,43.7,43.1,43,43.5,43.7,44,43.8,43.9,44.2],"script":[20.2,19.4,20.2,19.7,19.9,20,19.9,19.6,19.3,19.4,19.7,19.7,19.8,19.8,20.1],"paint":[23.6,23.1,23.7,23.1,23,23.3,23.2,22.9,23.1,23.5,23.5,23.7,23.4,23.5,23.5]}},{"b":2,"v":{"total":[18.9,18.6,18.5,17.7,17.7,17.9,17.6,18.8,17.2,17.6,17.5,17.3,17.3,17.9,18],"script":[6.7,7,6.6,5.7,6.3,6.3,6.5,6.5,6.1,6.7,6.3,6.3,6.4,6.7,6.4],"paint":[10.2,9.6,10,11.2,9.1,9.5,9.3,10,9.2,8.9,9.6,8.9,9.2,10.1,9.9]}},{"b":3,"v":{"total":[6.6,6.5,5.7,5.3,5.3,5.9,5.8,5.5,5.7,5.7,5.8,5.5,5.5,5.8,5.7,5.4,5.7,5.8,5.5,5.4,6.1,6.3,5.6,5.9,5.6],"script":[3.4,3.8,3.6,2.9,3.6,3.2,3.7,3.5,3.1,3.6,3.7,3.4,3.4,3.9,3.3,3.1,3,3.1,3.3,3.3,3.8,4.3,3.9,3.6,3.1],"paint":[1.5,1.6,1.5,2.3,0.7,2.1,1.7,1.1,2.3,2,1.2,1.8,2,1.1,1.6,2.2,2.3,1.8,1.3,2,2.1,1.8,1.6,2.2,1.6]}},{"b":4,"v":{"total":[17.4,16.3,16.5,16.6,17.6,17.7,16.4,16.5,15.8,17.1,17.4,16.7,17.3,16.2,17.5],"script":[3.6,3.1,3.7,3.5,4,3.5,3.3,3.4,3,3.7,3.1,3.7,3.8,3.7,3.9],"paint":[12.8,12,11.9,11.3,12.1,12.7,12.1,12,11.2,11.5,13.4,11.8,11.5,11.1,12.1]}},{"b":5,"v":{"total":[12.5,12.1,12.5,11.9,13.3,12.2,12.2,12.8,11.9,12.2,11.9,12.3,12,12.2,11.9],"script":[1.6,1.8,1.7,1.5,1.8,1.8,1.5,1.9,1.5,1.4,1.6,1.8,1.7,1.8,1.6],"paint":[10.1,9.8,10.3,10,10.3,9.5,10.4,9.8,9.9,9.9,9.5,10,9.7,10,9.7]}},{"b":6,"v":{"total":[319.7,318.2,316.9,314.2,318.5,321.7,313.7,316.5,314.6,321.1,314.1,314.4,314.4,315.9,316.4],"script":[92.8,92.7,92.1,90.8,92.1,93.8,90.2,90.4,90.3,92.6,90,90.5,89.6,90.1,90],"paint":[219.2,218.4,217.6,216.3,219.1,220.3,216.8,218.8,217,221,217.2,216.9,217.9,218.1,219.3]}},{"b":7,"v":{"total":[35.6,35.7,36.3,35.5,35.9,35.9,35.9,36.8,35,36.4,35.6,35.1,36,36.5,35.7],"script":[8.9,9,9,8.8,9,9,9.2,9,8.8,9,8.7,8.7,9.1,9.4,8.8],"paint":[25.7,25.7,26.4,25.8,25.9,25.9,25.8,26.8,25.3,26.5,26,25.5,25.9,26.1,26]}},{"b":8,"v":{"total":[27.8,28,28.7,28.2,28.8,29.4,29.2,31.4,29.9,30.3,29.7,30.3,29,27.9,31.1],"script":[25.1,26.2,26.8,26.3,26.6,27.6,26.8,28.9,27.8,28.2,27,27.8,26.9,25.3,28.4],"paint":[1.5,1,1.2,1.1,0.9,0.3,1.3,2.1,1.5,0.9,0.4,0.9,0.3,1.7,1.7]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[4.25]}},{"b":11,"v":{"DEFAULT":[4.88]}},{"b":12,"v":{"DEFAULT":[0.89]}},{"b":13,"v":{"DEFAULT":[35.33]}},{"b":14,"v":{"DEFAULT":[22.3]}},{"b":15,"v":{"DEFAULT":[8.6]}},{"b":16,"v":{"DEFAULT":[57.9]}}]},
+{"f":40,"b":[{"b":0,"v":{"total":[36.9,37.3,37.3,37,37.3,38.5,37.1,37.4,37.5,37.6,38.4,37.8,37,37.2,37.5],"script":[14.8,14.9,15,14.9,15,16.3,15,15,15.1,15.4,15.9,15.4,14.9,14.9,15.1],"paint":[21.5,22,21.8,21.6,22,21.7,21.6,21.9,21.9,21.7,22.2,22,21.6,21.8,21.9]}},{"b":1,"v":{"total":[41.6,42.2,41.6,43.4,41.1,42.9,42.6,43.5,42.3,42,41.5,42.9,41.5,41.8,41.8],"script":[18.1,18.8,18.3,19.3,18,18.8,18.5,19.2,18.2,18.3,18.1,18.9,18.3,18.1,18.6],"paint":[22.9,23.1,22.7,23.5,22.7,23.5,23.5,23.9,23.6,23.2,23,23.4,22.6,23.3,22.8]}},{"b":2,"v":{"total":[11.7,12.3,11.6,12,11.5,12.6,13,12.1,12.6,11.8,12,11.4,11.5,12.3,11.4],"script":[1.5,1.5,1,1.7,1.4,1.9,2,1.7,1.6,1.8,1.2,1.5,1.3,1.5,1.3],"paint":[8.7,8.6,9.7,8.9,8.9,9.7,10.3,9,10,8.8,8.5,8.8,8.8,9.8,9.1]}},{"b":3,"v":{"total":[3,3.6,3.5,3.9,3.4,3.2,3.4,3.6,3.4,3.7,3.8,3.7,3.6,3.8,3.6,3.9,3.4,3.3,3.3,3.3,3.8,3,3.7,3.7,3.6],"script":[0.9,1.4,1.1,1.5,1.5,1.3,0.7,1.3,0.7,1.7,1.7,1.7,1.6,1.6,1.4,1.7,1.2,1.4,1.1,1.4,1.6,1.2,1.8,1.8,1.3],"paint":[2,2.1,2.3,1.5,1,1.8,2.6,2.1,2.3,1.7,1.7,1.8,1.7,2.1,1.9,1.4,1.3,1.6,1.5,1,2,1,1.1,1.1,2.2]}},{"b":4,"v":{"total":[12.9,12.9,13.8,13.2,12.8,14.2,15.4,13.2,13.1,13.6,13.1,12.7,13,12.6,12.8],"script":[0.1,0.1,0.1,0.1,0.6,1.1,0.5,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[11.6,11.9,12.2,12.2,11,11,13.8,10.9,12.4,11.8,11.5,11.9,12.1,11.6,11.5]}},{"b":5,"v":{"total":[10.5,10.4,10.3,10.4,10.4,10.6,10,10.2,10.2,10.3,10.3,10.4,10.2,11.4,10.3],"script":[0.2,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.3],"paint":[9.4,9.8,9.6,9.1,9.8,10.3,9.6,9.5,9.5,9.8,9.4,9.1,9.1,10.7,9.5]}},{"b":6,"v":{"total":[384.4,382.6,381.6,385.3,383.8,383.8,383.5,388.6,383.8,385.7,384.7,384.3,385.6,382.5,383.5],"script":[151.9,151.3,150.1,151.5,152.3,151.7,151.7,153.1,151.9,152.1,151.4,151.8,152.7,151.4,150],"paint":[225.1,224.2,224.1,226.1,224.4,224.7,224.8,227.6,224.6,226.4,226.2,225.1,225.8,224,226.2]}},{"b":7,"v":{"total":[46.2,45.4,46.4,46.6,47.2,45.7,45.8,46.4,46.8,46.4,48,45.3,46.1,46.1,46.2],"script":[19.1,19.2,19.4,18.8,18.7,18.6,18.8,19.3,19.6,19.6,18.6,18.9,19,19.1,18.8],"paint":[26.1,25.4,26.2,26.9,27.5,26.2,26.2,26.2,26.3,25.9,28.5,25.6,26.3,26.2,26.6]}},{"b":8,"v":{"total":[10.9,10.4,10,11.5,11.6,10.8,11.6,10.7,10.9,10.2,10.4,10.2,10.5,10.3,9.9],"script":[8.9,8.5,8.6,9.7,9.8,9.3,9.6,8.6,8.9,9.3,8.9,8.2,8.7,9.1,8.4],"paint":[1.1,1.1,0.6,0.7,1.4,1.3,1.9,1.4,0.8,0.8,1.4,1.7,1.7,0.3,1.4]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.04]}},{"b":11,"v":{"DEFAULT":[4.07]}},{"b":12,"v":{"DEFAULT":[1.16]}},{"b":13,"v":{"DEFAULT":[32.13]}},{"b":14,"v":{"DEFAULT":[16.1]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[44.2]}}]},
+{"f":41,"b":[{"b":0,"v":{"total":[33.2,29.1,34.1,30.2,32.8,33.2,34,29.2,30.6,29.8,32.2,30.7,28.2,30.9,28.3],"script":[4.6,4.6,4.8,4.8,4.8,4.7,4.8,4.8,4.7,4.7,4.6,4.9,5.2,4.7,5.4],"paint":[21.6,22,22.2,22.4,22,22.4,22.5,22.3,22.2,22,21.9,22.4,22.7,21.8,22.5]}},{"b":1,"v":{"total":[31.6,37.3,36.2,36.6,35.3,36.1,35.6,35.4,35.9,35.7,37.1,35.6,36.5,31.2,32.3],"script":[8,7.5,7.7,7.2,7.3,7.6,7.7,7.3,7.3,7.4,7.2,7.6,7.2,7.8,7.6],"paint":[23.2,22.1,22.5,22.4,22.3,22.2,22.3,22.5,22.3,22.3,22.1,22.3,21.7,23,22.5]}},{"b":2,"v":{"total":[29.2,12.6,12.9,13.9,27.9,30.3,28.7,28.6,13.6,12.1,12.5,12.7,28.6,28.8,29.7],"script":[2.3,2.6,2.3,2.7,2.8,3.4,2.7,2.7,3.6,2.2,3.2,3.3,2.9,2.6,3.8],"paint":[10.8,9.1,8.3,9,9.2,10.1,9.2,9.4,8.4,9.4,9.1,9.3,9.1,10.2,9.8]}},{"b":3,"v":{"total":[5.2,3.7,3.9,3.4,3.7,3.4,7.8,3.6,3.9,3.8,3.7,4.3,3.6,3.2,3.3,4.2,4.9,4.2,3.4,3.8,4,4.1,3.5,3.7,3.4],"script":[1.4,1,2,1.6,1.6,1.5,0.8,1.5,1.6,1.5,2.1,1.7,1.2,0.3,1.1,1.8,1.1,2.4,1.5,1.7,1.8,1.4,1.6,1.3,1.8],"paint":[1.8,2.3,1.4,1.7,1.8,1.1,2.1,2,1.5,1.6,1.4,1.7,1.5,1.2,2.1,2.3,1.7,1.7,1.1,1.5,2,2.6,1.1,2.3,1.4]}},{"b":4,"v":{"total":[14.9,33.9,29.1,30.9,31.1,30.3,14.5,13.7,14.2,13.8,14.4,32.8,29.8,13.9,14.6],"script":[0.9,2,1.7,2,1,1.5,1.6,1.8,1.3,1,1.6,1.8,1.3,1.6,1.6],"paint":[12.7,15.4,11.4,12.5,12.8,12.2,12.4,11.8,12.2,11.5,11.3,14.9,12.5,11.6,12]}},{"b":5,"v":{"total":[9.8,13.2,10,10.1,9.7,11.3,9.8,12.1,9.7,9.7,9.8,9.9,9.7,10,9.4],"script":[0.9,1,0.7,0.9,0.7,0.7,0.7,0.7,0.8,1,0.9,0.7,0.8,0.9,0.7],"paint":[8.6,9,9,8.6,8.6,8.8,8.8,9,8.7,8.2,8.6,8.7,8.7,9,8.6]}},{"b":6,"v":{"total":[285.1,288.8,292.6,289.9,288.2,286.4,287.8,284.3,289.9,288.5,293.2,290.9,288.8,288.4,289.5],"script":[54.2,54.7,54.9,55.4,55.1,56.3,55.7,55.6,54.9,54.9,54.7,54.8,56.6,55.1,55.8],"paint":[227.3,227.9,227.1,226.2,227.8,226.6,226.5,225.3,225.7,227.5,228.9,227.2,227.5,227.5,228.2]}},{"b":7,"v":{"total":[36.9,36.3,31.8,36.1,36.5,36.5,36.3,36.3,36.1,35.8,33,36.6,37,36.3,36.1],"script":[5,5.1,5.2,5,5.2,5.3,5.1,5.1,5.2,5.2,5.2,5.4,5.1,5.1,5.1],"paint":[26.3,26.3,26.2,26.2,26.5,26.5,26.4,26.5,26.1,25.9,27.3,26.2,26.3,26.1,26.5]}},{"b":8,"v":{"total":[9.5,10.2,9.9,26.8,27.1,10.8,25.9,10,27,10,10,26.1,9.5,9.9,26.5],"script":[7.9,8,7.5,9,9.5,7.9,8.2,7.5,9.3,8.3,7.7,8.4,7.8,7.8,8.6],"paint":[0.3,1.9,1.6,1.5,0.3,1.4,1.8,1.6,0.7,1.2,1.6,1,1.6,1,0.9]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.97]}},{"b":11,"v":{"DEFAULT":[3.08]}},{"b":12,"v":{"DEFAULT":[0.63]}},{"b":13,"v":{"DEFAULT":[23.89]}},{"b":14,"v":{"DEFAULT":[6.3]}},{"b":15,"v":{"DEFAULT":[2.6]}},{"b":16,"v":{"DEFAULT":[37.6]}}]},
+{"f":42,"b":[{"b":0,"v":{"total":[32,33.4,32.4,30.8,34.3,31.2,30.7,30.3,33.8,32.9,33.9,35.7,34.6,35,33.9],"script":[6.3,6.2,5.7,5.8,5.8,6.1,6,6,6,5.9,5.6,5.7,5.6,5.7,5.7],"paint":[21.7,22,21.6,22,21.8,22.1,21.9,21.8,22.1,22.2,21.7,21.5,21.7,21.9,21.6]}},{"b":1,"v":{"total":[35.2,35,33.4,31.6,33.1,33,32.7,32.4,32.2,31.8,31.5,35,34.4,37.5,31.9],"script":[8.9,8.5,8.7,8.6,8.8,8.8,8.8,9,8.7,8.7,8.4,8.8,8.8,8.4,8.4],"paint":[23,22.4,22.8,22.7,23.1,22,22.7,22.7,22.7,22.7,22.8,23.2,22.2,22.2,22.6]}},{"b":2,"v":{"total":[27.2,27.7,10.6,26.9,11.2,12.6,27.8,27.5,11.3,26.7,12,11.2,27.7,11.8,11.1],"script":[1,1.6,1.1,1.5,1.2,0.4,1.1,1.4,1,2.4,1,1.3,0.9,0.8,1.1],"paint":[9.3,10.3,9.4,9.8,9.7,11.2,10.3,10,10,8.5,10.4,8.8,10.9,8.8,9.8]}},{"b":3,"v":{"total":[3.3,3.6,3.3,3.7,6.4,2.8,6.9,3.8,3.4,3,2.8,3.4,3.4,3.4,2.6,3.7,3.2,3.4,3.3,3.4,8,3.6,5.2,3.6,3],"script":[1.6,1.2,1.1,1.1,0.6,1.2,0.6,1.5,0.5,0.8,0.8,1.1,1.1,1.2,0.9,0.6,1.1,1.1,0.8,1.2,1.4,1.5,0.9,1.1,1.1],"paint":[1.6,1.8,1.3,2.4,1.7,1.3,1.3,1.8,1.1,2,1.1,1.6,1.2,1.1,1.1,2.1,1.3,1.3,2.1,2.1,2.4,1.3,1.7,1.1,1]}},{"b":4,"v":{"total":[15.7,29.7,32.8,30.5,30.4,14,30.3,29.5,30.6,13.7,13.8,29.5,15.5,30.9,30.6],"script":[1.7,0.9,2.2,0.9,1.2,1,1.4,1,0.3,0.3,0.3,1.9,1.7,1,1.2],"paint":[13.4,12.6,13.7,13.5,13.8,11.7,14.1,13.3,14.9,12.5,12.3,13,13.1,14.6,13.7]}},{"b":5,"v":{"total":[12.4,9.2,11,9.8,11.6,12.7,14.2,10.1,12,12.2,9.5,12.1,11,9.8,10.4],"script":[0.3,0.6,0.6,0.5,0.3,0.5,0.6,0.6,0.9,0.3,0.4,0.4,0.5,0.6,0.7],"paint":[9,8.3,8.8,9.1,8.6,9,8.4,8.8,9,8.9,9,8.5,8.8,9.1,8.7]}},{"b":6,"v":{"total":[290.8,296.7,293.1,297.5,290.9,293.4,293.8,291.8,291.9,289.8,297.7,291.8,292.6,291.9,293.6],"script":[69.3,71.5,70.9,69.1,69.2,71.6,71.8,71.5,69.9,70.7,70.2,71,70.6,71,70.4],"paint":[218.1,217.5,218.7,218.2,216.5,218.3,218.5,216.7,218.4,215.3,218.6,217.2,218.4,217.3,218.3]}},{"b":7,"v":{"total":[66.5,62.1,61.1,66.3,61.8,67.8,62.1,65.7,61.7,61.9,65.1,67.3,60.8,66.6,68],"script":[15,14.9,14.6,14.7,14.5,14.7,15.1,14.4,15,14.6,14.2,14.9,14.7,14.3,14.3],"paint":[46.3,46.7,46,46.5,46.8,47.5,46.5,46.4,46.2,46.8,46,46.6,45.6,46.8,46.4]}},{"b":8,"v":{"total":[28.5,11.5,27.4,11.2,27,26.6,10.2,10.2,11.7,27.1,27,27.3,11,10.4,27.2],"script":[10.9,8.1,9.4,8.2,9.6,8.6,8.7,8,9.8,9.1,9.5,9.8,9.4,8.4,9.4],"paint":[0.7,1.9,1.4,1.9,0.5,1.1,1,0.3,1.7,1.9,0.6,2,0.3,0.2,1]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.64]}},{"b":11,"v":{"DEFAULT":[3.62]}},{"b":12,"v":{"DEFAULT":[1.06]}},{"b":13,"v":{"DEFAULT":[26.99]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[76.7]}}]},
+{"f":43,"b":[{"b":0,"v":{"total":[29.9,29.5,29.8,30.3,30,29.9,30.3,30,30.6,29.6,30.2,29.9,30.5,30.3,29.9],"script":[7.5,7.5,7.7,7.9,7.7,7.8,7.9,7.8,8.5,7.4,7.7,7.7,7.9,8.1,7.8],"paint":[21.9,21.4,21.5,21.8,21.8,21.5,21.9,21.6,21.6,21.6,21.9,21.7,22,21.6,21.6]}},{"b":1,"v":{"total":[61.5,61.7,61.5,61.4,62.2,61.5,61.7,61.6,61.2,61.8,61.4,62.4,61.2,61.2,60.8],"script":[39.7,39.9,39.9,39.6,40.1,39.4,40.1,39.9,39.2,39.7,39.7,39.8,39.4,39.8,39.1],"paint":[21.4,21.3,21.2,21.3,21.6,21.7,21.2,21.3,21.6,21.6,21.3,22.1,21.3,21,21.2]}},{"b":2,"v":{"total":[19.5,20,21.2,19.8,20.1,20.7,21.3,20.1,20.7,22.5,20.7,20,20.4,19.7,20.5],"script":[8.8,9.1,8.3,8.9,8.9,9.1,9.1,8.8,9.3,9.1,9.2,9.6,8.9,8.2,9.2],"paint":[9.6,7.9,11.1,8,8.3,8.8,10.1,9.4,9.6,10.2,9.4,9.3,9.7,9.6,9.8]}},{"b":3,"v":{"total":[11.8,12.4,11.3,13.1,11.9,11.7,11.6,12.1,12.1,11.4,12.4,12.3,12.9,12.1,11.9,11.5,11.5,12.4,12.5,12.2,11.6,11.9,11.6,12.2,12],"script":[8.4,9.7,8.4,9.7,8.9,8.8,8.5,9.2,8.9,8.4,9.5,9.4,9.9,8.8,9,8.6,8.8,9.1,9,9.7,8.7,8.8,8.5,8.9,8.6],"paint":[2.4,1.2,1,3,1.8,1.2,1.3,2.2,2.1,1.3,1.9,0.8,2.8,2.3,2.3,2,1.5,2.2,2.5,1.2,1.9,1.1,2.8,1.7,2.4]}},{"b":4,"v":{"total":[108.4,110.3,109.2,105.8,109,108.2,108.8,109.3,106.8,108.3,107.6,109,106,106.9,108.4],"script":[20.9,21.4,21,20,21.4,21.1,22.4,21.2,20.8,22.4,20.5,21.2,21.6,21.3,21.1],"paint":[84.8,87.4,86,82.6,86.4,85.9,83.8,85.8,83.3,82.6,83.9,86.2,82.8,82.8,85.5]}},{"b":5,"v":{"total":[58.1,57.2,58.3,58.2,59.5,57.9,57.6,57.8,57.2,57.4,58.1,58.6,57.6,57.8,57.3],"script":[13.1,13.3,13,13.4,13.9,12.9,13.2,13.8,12.4,12.9,13.7,13.2,12.7,12.8,13],"paint":[43.3,42,43.5,43.7,44.2,43.5,43,42.3,43.4,42.8,42.4,43.7,43.3,43.8,42.9]}},{"b":6,"v":{"total":[296.4,297.9,300.8,297.2,296.9,300,297,296.8,298.4,296.8,296.9,298,298,300.9,301],"script":[76.8,76,76.4,75.8,75.1,77.3,76.3,76,77.8,75.2,76.4,76.7,75.8,75.8,77.5],"paint":[212.5,215,217.3,214.4,214.8,215.8,213.5,213.8,213.6,214.3,213.6,214.3,215.3,216.4,216.3]}},{"b":7,"v":{"total":[36.3,35.9,36.2,36.6,36.6,36.7,36.3,36.1,36.4,36.2,36.6,36.1,36.6,36.6,36.1],"script":[9.4,9.1,9.4,9.4,9.6,9.4,9.3,9.4,9.2,9.3,9.5,9.1,9.4,9.5,9.2],"paint":[26,25.9,25.9,26.3,26.1,26.3,26.1,25.8,26.3,25.9,26.2,26,26.3,26.1,26]}},{"b":8,"v":{"total":[12.3,12.2,12.5,13.9,13.2,12.9,12.4,13.1,12.5,12,11.9,12.6,12.8,12.5,13.1],"script":[10.2,10.8,10.7,11.9,11.1,10.8,10.8,11,9.9,10,9.6,10.4,10.1,10.5,11.5],"paint":[1,0.2,0.4,0.9,0.5,1.1,1.1,1.1,1.5,1.1,0.9,2,2.3,1.6,1]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.98]}},{"b":11,"v":{"DEFAULT":[3]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[22.29]}},{"b":14,"v":{"DEFAULT":[12.8]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[42]}}]},
+{"f":44,"b":[{"b":0,"v":{"total":[24.8,24.4,24.5,24.5,24.5,24.9,24.9,24.5,24.8,24.5,24.5,24.5,24.7,24.8,24.6],"script":[2.9,2.9,2.9,2.8,2.9,2.9,3.1,2.9,3,3,2.9,2.9,3,2.9,3],"paint":[21.5,21.1,21.3,21.3,21.2,21.7,21.5,21.1,21.4,21.1,21.3,21.3,21.3,21.5,21.3]}},{"b":1,"v":{"total":[27.6,27.5,28.8,27.7,27.9,28,27.6,28.3,26.8,27.2,27.2,28.1,27.5,27,27.1],"script":[5,4.9,4.9,5,5,5,5.2,5,4.8,4.8,4.9,5.3,4.9,4.9,4.9],"paint":[22.3,22.1,23.5,22.3,22.5,22.5,21.9,22.4,21.6,22,21.9,22.2,22.2,21.7,21.7]}},{"b":2,"v":{"total":[11.9,11.9,11.7,11.7,12.2,11.3,11.9,13.3,11.3,11.1,11.6,13.4,11,11.3,10.4],"script":[1.6,1,1.3,1.2,1.3,0.6,1.3,0.9,1.2,1.2,1.1,1.8,1.2,1,0.6],"paint":[9.4,9.8,9.4,9,9.8,9.5,9.7,11,9.4,8.9,9.5,10.4,8.8,9.1,8.8]}},{"b":3,"v":{"total":[2.6,2.8,3.1,2.2,2.8,2.5,2.5,3,2.2,3,2.7,3.1,2.8,3.9,2,3,2.3,2.8,3,3.2,3.3,2.8,2.5,2.8,2.8],"script":[0.1,0.6,0.8,0.1,0.9,0.9,0.9,0.8,0.1,0.8,0.8,1.1,0.8,0.8,0.1,0.1,0.1,0.5,0.1,1.1,1,0.7,0.7,0.1,0.8],"paint":[1.4,1.5,1.1,1.9,1.1,1,1.1,1.3,1.5,2,1.8,1.8,1.2,3,1.7,1.9,1.3,1.4,2.6,2,1.8,1.7,1.5,1.6,1.9]}},{"b":4,"v":{"total":[13.4,12.8,14.4,13.5,13,13.4,13.6,12.9,14.3,15.7,13.2,13.8,13.7,13.1,13.5],"script":[1,0.8,1.1,1,0.6,0.9,0.9,1,0.6,1.6,0.2,1,0.9,1.1,0.2],"paint":[10.4,10.9,12.1,11.4,10.9,11,11.8,11,12.7,12.5,11.2,11.7,11.7,9.7,12.2]}},{"b":5,"v":{"total":[10.6,10.4,9.9,11,10.6,10,10.7,10.3,10.4,10.8,10.4,10,10.4,10.4,10.5],"script":[0.5,0.4,0.1,0.4,0.3,0.1,0.4,0.4,0.3,0.5,0.1,0.2,0.3,0.3,0.3],"paint":[9.7,9.5,9.2,10.3,9.6,9.3,9.7,8.6,9.7,9.7,9.2,9,9.7,9.4,9.5]}},{"b":6,"v":{"total":[258.9,261.2,260.7,259.1,260.8,262,260.7,262.2,263.1,260.8,263.2,261.9,260.9,263.7,260.4],"script":[32.9,32.9,32.8,32.2,32.7,33,32.9,32.4,32.9,32.4,33.5,32.3,32.4,32.8,32.4],"paint":[219,221.1,220.7,219.7,221.1,221.4,220.2,222.2,223,221.3,222.4,222.2,221.4,223.4,220.8]}},{"b":7,"v":{"total":[29.1,29.5,29.6,29.3,28.9,30.2,30.2,29.6,29.5,29.1,29.4,29.5,33,29.5,29.7],"script":[3.3,3.4,3.6,3.7,3.4,3.6,3.6,3.7,3.7,3.7,3.5,3.8,3.3,3.4,3.6],"paint":[25.1,25.3,25.2,24.8,24.6,25.9,25.8,25.2,25,24.6,25.1,25,28.9,25.4,25.3]}},{"b":8,"v":{"total":[9.5,10.5,9.1,10.8,11.1,9.5,9,9.7,9.9,10.2,10,12,9.8,9.5,9.2],"script":[8.1,8.5,7.8,8.6,8.7,7.2,7.5,7.5,7.5,7.9,8,10.4,7.4,7.6,7.7],"paint":[0.3,1.3,0.3,1,1,1.7,0.8,1.3,0.7,1.2,1.8,0.6,1.2,1.7,0.6]}},{"b":9,"v":{"DEFAULT":[0.54]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.85]}},{"b":12,"v":{"DEFAULT":[0.79]}},{"b":13,"v":{"DEFAULT":[21.11]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[54.1]}}]},
+{"f":45,"b":[{"b":0,"v":{"total":[23.8,23.7,23.7,23.6,24.1,23.8,23.4,23.6,23.4,23.8,24,23.8,23.6,23.8,23.9],"script":[1.9,1.9,1.8,1.8,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.9],"paint":[21.5,21.4,21.4,21.4,21.9,21.5,21.1,21.4,21.2,21.5,21.7,21.5,21.4,21.5,21.7]}},{"b":1,"v":{"total":[26.6,27.4,26.4,26.3,27.1,26.8,27.1,26.9,26.9,27,27,27.2,27.2,27.2,27],"script":[3.8,4,3.9,3.9,4,4,4.1,4.1,4.1,4.1,4,4.3,4.1,4.2,4.1],"paint":[22.4,22.9,22,22,22.7,22.4,22.6,22.5,22.4,22.5,22.6,22.6,22.6,22.5,22.5]}},{"b":2,"v":{"total":[11.3,11.7,11,10.5,10.1,10.8,11.6,12.4,11.3,10.4,10.4,10.9,10.8,10.9,11.3],"script":[1.7,1.2,1,1.1,1.1,1.2,0.9,1.4,0.9,0.9,1,0.9,0.9,0.9,0.8],"paint":[8.7,9.2,9,8.1,7.8,8.8,9.8,10.1,9.5,8,7.8,8.8,8.9,8.9,9.5]}},{"b":3,"v":{"total":[3,2.9,2.7,2.6,2.5,2.7,2.8,2.6,3.3,3,2.8,2.5,3.3,2.6,2,2.6,3.2,2.7,2.7,2.8,3.5,3.2,3,3.1,2.5],"script":[1.2,0.3,0.9,0.2,0.9,0.8,0.2,0.2,0.8,0.2,0.9,0.6,0.9,0.2,0.1,0.2,0.9,0.8,0.9,0.2,1.4,0.9,0.2,0.9,0.6],"paint":[1,2.5,1.7,2,1.1,1.2,2.5,2.3,1.6,2.7,1.8,1.9,2.2,1.5,1,2.3,2.1,0.9,1.2,1.4,1.4,1.6,2.7,1.3,1.3]}},{"b":4,"v":{"total":[13.5,13.3,13.6,13.5,13.4,13.8,13.8,13.3,13.8,14.2,13,14.1,13.4,13.9,13.6],"script":[0.7,1.3,1.2,0.6,0.7,0.9,1.1,0.3,1.1,0.6,0.2,1.3,0.8,1.2,0.7],"paint":[11.7,10.6,11.1,11.6,11.4,11.8,11.9,12.4,11.1,11.6,11.6,11.7,11.3,11.7,11.3]}},{"b":5,"v":{"total":[10.9,10.4,9.9,10,10.7,10.6,10.8,10.5,10.7,10.6,10.8,10.6,10.7,10.4,10.6],"script":[0.5,0.2,0.2,0.3,0.4,0.3,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.2,0.3],"paint":[9.7,9.5,9.2,9.4,9.7,9.6,9.7,9.3,9.7,9.4,9.6,9.2,9.4,9.3,9.3]}},{"b":6,"v":{"total":[262,259.9,258.6,262,260.7,260.3,260.7,259.4,260.3,261.5,260.8,260.9,259.7,261.7,259.4],"script":[26.6,26.7,26.3,27,26.8,26.6,27,27.2,27.2,26.4,26.7,26.5,26.4,26.4,26.9],"paint":[228.1,225.8,224.9,227.7,226.5,226.3,226.2,224.8,225.9,227.5,226.8,227.1,225.8,228.1,225.1]}},{"b":7,"v":{"total":[28.7,28.5,28.4,28.5,28.9,29.1,28.1,29.5,28.7,28.6,29,28.8,28.9,28.5,28.8],"script":[2.1,2.1,2.1,2,2.1,2.2,2,2,2.1,2.1,2.1,2.1,2,2.1,2.1],"paint":[25.8,25.7,25.5,25.7,26,26.1,25.3,26.6,25.8,25.8,26.1,25.9,26.1,25.7,26]}},{"b":8,"v":{"total":[9.7,10.4,9.8,9.4,9.8,10.7,9.7,9.5,10.7,10.1,10.1,10.2,9.6,9.9,9.7],"script":[7.7,8.4,7.9,7.9,7.9,8.4,7.7,8,8.8,8.1,8.2,8.2,8.2,7.9,7.7],"paint":[1.1,1.1,0.3,0.9,0.2,1.3,0.8,0.7,1.7,1.6,1.7,0.9,0.3,0.9,1.4]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.29]}},{"b":11,"v":{"DEFAULT":[2.3]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[16.61]}},{"b":14,"v":{"DEFAULT":[9.6]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[40.5]}}]},
+{"f":46,"b":[{"b":0,"v":{"total":[31.8,32.7,32.6,32.3,32.3,31.7,32.7,32.5,32.1,31.8,32.7,32,31.9,31.9,32.4],"script":[9.8,10.2,9.9,10,10,9.6,10.1,10.3,10.1,9.8,10.2,9.9,9.9,9.9,10.1],"paint":[21.5,22,22.2,21.7,21.7,21.5,22.1,21.6,21.5,21.5,22,21.6,21.5,21.5,21.8]}},{"b":1,"v":{"total":[38.3,39.1,38.5,38.7,38.6,38.1,38.7,39,38.5,38.4,38.3,39,38.6,38.6,38.1],"script":[14.8,15,14.9,14.8,14.7,14.7,14.9,15,14.8,14.9,14.8,14.8,14.7,15,14.7],"paint":[22.9,23.5,23,23.4,23.4,22.9,23.2,23.5,23.2,23,23,23.6,23.3,23,22.8]}},{"b":2,"v":{"total":[11,10.3,10.9,11,10.6,11.4,11,11.3,12.5,11,10.9,11.5,11,12.2,11.2],"script":[0.5,0.3,0.5,0.9,0.5,0.9,0.8,0.9,0.7,0.9,0.6,0.2,0.2,0.6,0.9],"paint":[9.2,8.9,9.4,9.2,9.1,8.9,9,9.5,10.8,9.1,9.7,9.5,9.8,10.4,9.2]}},{"b":3,"v":{"total":[2.6,2.6,3.2,2.8,2.8,2.5,2,2.7,2.1,3,2.3,2.8,2.5,3.1,2.5,2.5,2.4,3,2.2,2.5,2.1,2.4,2.1,1.9,2.8],"script":[0.7,0.4,0.9,0.1,0.8,0.1,0.1,0.7,0.1,0.1,0.5,0.1,0.1,0.8,0.6,0.1,0.1,0.7,0.1,0.1,0.4,0.6,0.3,0.1,0.8],"paint":[1.8,2.1,1.8,2.6,1.9,2.3,0.9,1.9,1.9,2.8,1.4,2.6,2.1,2.2,1.4,2.3,2.1,2.1,1.7,1.2,1.6,1.3,1.7,1,1.9]}},{"b":4,"v":{"total":[14.7,15.6,16.1,15.4,15,14.9,15.8,15.7,14.5,17.5,15.9,15.3,15.2,15.9,14.9],"script":[2.2,2.2,2.5,1.4,1.9,2.1,2.7,1.5,1.7,2.7,2.6,2.5,2.4,1.8,1.9],"paint":[11.6,12,12.7,12.7,12.1,11.5,12.1,12.7,11.7,13.8,12.4,11.4,11.6,12.9,12]}},{"b":5,"v":{"total":[11.8,11.6,11.5,11.6,11.6,11.6,11.5,11.9,12.1,11.9,11.5,11.7,11.6,12.2,11.6],"script":[1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.5,1.3,1.3,1.3,1.3],"paint":[9.5,9.4,9.5,9.4,9.7,9,9.6,9.8,10,10,9.5,9.2,9.8,10.3,9.1]}},{"b":6,"v":{"total":[337.8,337.9,341.3,339.8,338.9,341.1,339,340.3,339.7,337.9,337.8,336.6,336.9,337.1,337.6],"script":[110.6,110.5,111.5,112.5,111.1,110.6,111.8,112.1,111,109.8,109.5,109.8,110,109.6,109.2],"paint":[220.2,220,222.4,220.1,220.9,222.9,220.2,221.3,221.7,220.8,221.2,219.9,220,220.5,221.5]}},{"b":7,"v":{"total":[38.7,37.8,38.1,38.3,38.6,38.4,38,38.8,38.4,38.7,38.7,38.4,38.3,38.2,38.8],"script":[11.5,11,11.2,11.3,11.6,11.5,11.4,11.3,11.3,11.5,11.5,11.4,11.4,11.7,11.7],"paint":[26.3,25.8,26,26.1,26,25.9,25.7,26.5,26.2,26.3,26.3,26.1,26,25.6,26.3]}},{"b":8,"v":{"total":[18.4,18.7,18.4,18,18.2,19.1,17.8,18.9,18.5,18,18.6,18.8,18.9,18.2,18],"script":[16.1,16.9,16.7,16.6,16.4,17.1,16.7,17.2,16.7,16.1,17.2,16.9,16.9,16.4,16.2],"paint":[1.3,0.6,0.6,0.2,0.9,1,0.9,0.9,0.7,1.1,1.2,1.6,0.2,0.9,0.8]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[4.45]}},{"b":11,"v":{"DEFAULT":[4.48]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[38.12]}},{"b":14,"v":{"DEFAULT":[18.4]}},{"b":15,"v":{"DEFAULT":[8]}},{"b":16,"v":{"DEFAULT":[50.3]}}]},
+{"f":47,"b":[{"b":0,"v":{"total":[53.2,52.4,53.8,53.1,53.1,53.2,53,53,52.8,53.6,54.1,53.7,53.4,52.5,53.9],"script":[29.6,28.7,30,29.5,29.2,29.5,29.1,29.5,29.1,29.8,29.6,29.9,29.8,29.1,30],"paint":[23.1,23.3,23.3,23.2,23.4,23.3,23.4,23,23.3,23.4,24.1,23.2,23.1,22.9,23.4]}},{"b":1,"v":{"total":[67.4,67,69.9,69.9,68.7,68.7,69.2,68.4,67.8,68.1,67.4,68.2,67.9,67.6,67.2],"script":[43.5,42.9,45.2,45.6,44.3,44.7,44.7,44.4,44,43.7,43.3,44.1,43.6,43.5,43.3],"paint":[23.4,23.6,24.3,23.8,23.9,23.5,24,23.5,23.3,23.9,23.6,23.7,23.8,23.6,23.4]}},{"b":2,"v":{"total":[14,13.9,12.8,13.8,13.5,12.8,13.3,13.2,13.4,12.6,13.6,12.9,13.8,12.9,13.7],"script":[2.1,1.9,1.5,1.5,1.4,1.6,1,2.1,2.4,1.4,1.8,1.8,1.5,1.7,1.2],"paint":[11,9.4,10.3,11.6,10.6,9.5,10.9,9.7,9.4,9.2,10.4,9.6,10.9,9.8,11]}},{"b":3,"v":{"total":[11.7,11.4,11.1,10.9,10.6,11.6,11.1,11,10.7,10.9,11.1,11.2,11,11.7,11.2,11.3,12,10.6,10.6,10.8,11.6,11.9,10.4,10.7,11.7],"script":[8.2,8.4,7.9,7.3,7.6,8.1,7.9,8.2,7.6,7.5,8,8.4,8.2,8.3,8.3,8.1,8.3,7.5,7.1,7.3,8.5,8.4,8,7.8,8.7],"paint":[2.6,1.2,1.9,2.6,2.5,2.1,2.3,1.7,2.5,2.1,2.1,1.9,1.8,2.3,1.2,1.5,2.6,2.8,2.6,2.3,2,2,1.1,1.4,2.1]}},{"b":4,"v":{"total":[106.7,111.1,108.1,114.9,106.6,112.4,111.8,112.4,111,111.5,107.6,109.3,113.5,111.1,108.8],"script":[18.8,19.8,20.1,21.6,19.7,20.1,21.1,21.9,19.9,20.4,18.3,19.5,20.7,21.2,20.6],"paint":[86.2,90,86.6,91.8,85.4,90.3,88.5,88.8,89.2,89.7,87.3,88.5,91.4,88.4,85.9]}},{"b":5,"v":{"total":[12.9,13.4,13.1,13.3,13.3,12.8,12.6,12.8,13.4,13.1,12.9,12.9,13.1,13.1,12.8],"script":[1.4,1.5,1.6,1.8,1.6,1.5,1.4,1.5,1.8,1.6,1.5,1.5,1.5,1.6,1.4],"paint":[10.7,11.2,10.4,10.9,11.2,10.6,10.9,10.4,10.7,10.8,10.4,11.1,10.9,10.9,11.1]}},{"b":6,"v":{"total":[480.4,481.8,479.8,478.9,480.8,480.5,485.6,481.1,477.8,482.5,481.5,480.8,484.1,482.1,480.1],"script":[233,232.3,233.2,235,233.6,234.2,234.9,232.7,231.7,233.9,234.1,234.2,235,235.4,233.3],"paint":[238.7,241.3,238.3,235.3,238.8,238.1,242.2,240.2,237.8,240.3,239,238.4,240.4,238.5,238.4]}},{"b":7,"v":{"total":[58.6,59.7,60.9,59.1,59.6,60.5,59.9,59.9,59.6,60.1,60.7,59.5,59.5,60.8,59.8],"script":[30.1,31.8,33.1,31.6,31,31.9,32.1,30.8,31.3,31.7,31.1,30.6,30.9,32.3,31.4],"paint":[27.5,27,26.9,26.6,27.6,27.6,26.8,28.1,27.4,27.5,28.5,27.9,27.6,27.5,27.4]}},{"b":8,"v":{"total":[40.3,46.9,40.2,42.8,38.8,43.5,41.4,38.7,39.5,41.1,43.2,40.3,38,39.2,37.6],"script":[38.5,45.5,38.2,40.8,37.3,42,39.9,37.6,38.5,39.4,41.3,38.7,36.8,37.9,36],"paint":[1,1.2,1.9,1.3,1.4,1,1.4,1,0.9,1.6,1.8,0.6,1.2,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[12.58]}},{"b":11,"v":{"DEFAULT":[12.61]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[75.31]}},{"b":14,"v":{"DEFAULT":[70.4]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[83.8]}}]},
+{"f":48,"b":[{"b":0,"v":{"total":[25.3,25.7,25.2,25.1,25.1,25.1,25.1,25.3,25.4,25.3,26.2,25.2,25.2,25.1,25],"script":[3.9,4.2,3.9,3.9,3.8,3.9,3.8,3.8,3.9,3.8,4,3.9,3.8,3.9,3.8],"paint":[21,21.1,20.9,20.9,20.9,20.8,20.9,21.1,21.2,21.1,21.8,21,20.9,20.8,20.8]}},{"b":1,"v":{"total":[28.2,29,28.2,29.1,28.8,28.2,28.7,29.6,28.3,28.5,29,28.9,29.4,28.6,28.4],"script":[6.1,6.4,6.1,6.2,6.2,6.1,6.3,6.2,6.2,6.3,6.3,6.3,6.5,6.3,6.2],"paint":[21.5,22.1,21.5,22.3,22,21.6,21.8,22.8,21.6,21.6,22.1,22,22.3,21.7,21.7]}},{"b":2,"v":{"total":[12,11.9,14.9,13.8,11.5,11.6,12,12,11.6,11.9,11,11.9,11.5,11.9,11.7],"script":[1.8,2.1,1.8,2.7,1.5,1.5,1.1,1.8,1.4,1.8,1.5,1.7,1.7,1.8,1.3],"paint":[9,8.1,10.7,9.2,9.1,9.1,10.2,9.3,9,8.2,9.2,9.3,9.6,8.6,9.2]}},{"b":3,"v":{"total":[2.9,2.7,3,4.5,2.2,3.4,2.2,2.7,2.8,2.3,2.6,2.2,2,2.5,2.4,2.4,2.7,3,2.7,2.7,2.4,2.7,2.2,2.4,3],"script":[0.1,0.5,0.8,0.9,0.6,0.4,0.1,0.8,0.6,0.1,0.5,0.1,0.1,0.3,0.6,0.1,0.5,0.9,0.9,0.1,0.2,0.6,0.1,0.1,1.1],"paint":[2.7,2.1,1.4,1.7,1,1.6,2,1,2.1,2,1.4,2,1.1,0.4,1.5,2.2,0.6,1.9,1.4,1.2,1.5,1.8,2,1.4,1.3]}},{"b":4,"v":{"total":[14,14.4,13.8,14.2,13.6,13.7,14,13.4,14,15,14,14.1,14.4,14,15.4],"script":[1.3,1,0.9,1.8,1.2,0.7,1,0.6,1.2,1.5,1.1,1.2,1.3,0.9,1.3],"paint":[12.4,11.8,12,10.8,11.3,12.4,11.6,11.5,11.7,11.7,11.1,11.2,11.1,12.1,13.1]}},{"b":5,"v":{"total":[10.3,10.6,10.4,10.8,11,10.4,10.3,10.3,10.4,10.4,10.4,10.4,10.7,10.8,10.4],"script":[0.4,0.3,0.3,0.5,0.3,0.3,0.5,0.5,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9.3,9.3,9.6,9.7,10.2,9.6,9.4,9,9.5,9.5,9.6,9.7,9.5,9.7,9.4]}},{"b":6,"v":{"total":[265.6,265.5,266.1,263.3,265,263.5,264.8,263.8,265.3,264.1,265.1,265.1,265.2,267.9,266],"script":[44.8,44.3,44.7,44.2,44.3,44.2,43.9,44.5,44.7,44.3,44.2,44.4,44.9,44.7,44.6],"paint":[213.8,214.3,214.4,212.3,213.9,212.4,213.8,212.3,213.6,213,214,213.4,213.4,216.2,214.5]}},{"b":7,"v":{"total":[31.3,30,29.6,29.5,29.8,28.5,29.9,30.1,29.2,29.7,29.5,29.9,28.5,28.5,29.6],"script":[4.1,3.7,3.8,3.8,3.8,3.6,3.6,4.1,3.6,3.7,3.8,3.8,3.6,3.6,3.8],"paint":[26.5,25.5,25,24.9,25.1,24.2,25.6,25.2,24.8,25.2,24.9,25.4,24.1,24.2,25]}},{"b":8,"v":{"total":[10.6,10.5,10.8,11.4,10.7,11.2,11.2,11.2,10.4,11,11,10.5,11.8,10.7,11.4],"script":[9.1,8.5,8,9.2,8.5,9.3,8.8,9,8.2,8.6,8.3,8.6,9.9,8.5,9.4],"paint":[0.3,1.1,1.9,1.5,1,0.7,1.4,1.2,1.2,0.7,1.7,0.7,0.8,0.4,0.9]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[5.19]}},{"b":11,"v":{"DEFAULT":[5.15]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[30.11]}},{"b":14,"v":{"DEFAULT":[75]}},{"b":15,"v":{"DEFAULT":[24.6]}},{"b":16,"v":{"DEFAULT":[91.1]}}]},
+{"f":49,"b":[{"b":0,"v":{"total":[60,60,60.5,60.2,59.7,60.3,59.6,59.9,60.1,59.9,60.6,60.6,59.6,59.7,60.3],"script":[37.4,37.1,37.1,37.4,37,37.1,36.9,37,37,37.1,37.3,37.6,36.6,36.6,37.2],"paint":[22.1,22.4,22.9,22.4,22.2,22.7,22.3,22.4,22.7,22.3,22.8,22.5,22.6,22.7,22.6]}},{"b":1,"v":{"total":[88.5,87.3,88.2,87,89,87.4,89,88.4,87,88,88.8,88.6,89,89,89.3],"script":[64.3,67.3,67.8,62.9,64.6,67,64.6,64.2,67.2,68.1,68.5,63.9,64.3,64.5,65],"paint":[23.6,19.5,19.9,23.6,24,19.9,23.8,23.7,19.4,19.4,19.9,24.2,24.2,24,23.8]}},{"b":2,"v":{"total":[15.8,14.5,15.5,17.2,15.1,17,16.4,16.1,15.7,15.6,15.2,16.1,16.6,15.7,15.6],"script":[3.9,3.8,4,5,4.1,4.2,4.4,4.7,4.4,3.9,4.1,4.1,4.3,4.2,3.4],"paint":[10.3,9.3,10.3,10.9,9.6,11.7,10.7,10.8,10.1,10.4,10.4,10.6,10.6,11.3,11.5]}},{"b":3,"v":{"total":[8.1,6.7,7.4,6.8,7.4,7.8,7.9,7.9,8.1,7.2,6.9,9.2,7.9,7.6,7.2,7.4,7.1,7,7.2,7.1,8.2,6.8,7.3,7,8.4],"script":[4.7,4.6,4.6,4.6,5,4.6,4.9,5.2,5.1,4.8,4.6,6,5.6,5.1,5.1,4.6,4.6,4.3,4.6,4.9,5.3,5.3,5,4.8,5.8],"paint":[3.2,2,2.6,1.1,1.9,2.6,2.8,2.1,1.8,1.8,2.2,2,2.2,1.5,1.6,1.8,2.3,2.6,1.7,1.2,1.9,1.3,2.1,1.6,2.4]}},{"b":4,"v":{"total":[106.6,105.7,111.1,106,106.4,105.9,111.9,106,107,108,105.9,108.5,104.7,106.2,107.3],"script":[15.8,15.6,17.2,15.8,15.8,15.4,17.5,15.5,16.7,17,16.4,16.3,15.5,16.1,16.1],"paint":[88.1,87.4,91.7,87.8,87.9,88.1,92.7,88.3,88.9,88.4,88.1,90.4,86.4,87.1,88.9]}},{"b":5,"v":{"total":[12.6,12.8,13.5,12.4,13.1,12.7,12.2,12.7,12.7,12.5,12.8,12.7,12.8,13.4,12.7],"script":[2.2,1.8,1.9,1.9,1.9,1.8,1.9,1.8,1.8,2,1.9,1.9,2.1,2.2,1.9],"paint":[9.8,10.1,10.9,9.9,10.6,10,9.5,10.2,10.2,10,10.2,10,10,10.1,10.2]}},{"b":6,"v":{"total":[483.7,482.1,484.1,484.1,483.2,480.5,489.4,478.4,484.6,482.2,485.7,483.8,486.5,483.5,485.6],"script":[241.3,239.8,240.5,239.9,240.9,238.5,244.2,237.9,239.5,240,241.1,239.8,244.3,240.8,241.8],"paint":[234.5,234.7,235.7,235.5,234.4,234.4,237.2,232.9,237.2,234.4,236.5,236.3,234.6,234.9,236.1]}},{"b":7,"v":{"total":[63.5,62.9,62.4,63.2,63.2,62.9,63.9,63,63.7,63.6,63.2,62.4,63.7,62.8,63.1],"script":[36.1,35.9,35.3,36,35.8,35.8,36.4,36.1,36.2,36.6,36.5,35.5,36.3,35.3,36],"paint":[26.5,26.1,26.3,26.2,26.5,26.3,26.6,26,26.7,26.2,25.8,26,26.5,26.6,26.2]}},{"b":8,"v":{"total":[34,34.2,33.1,32.5,34.3,32.5,33.3,33.5,33.1,33.9,34.3,32.7,32.9,32.7,36.1],"script":[32.3,32.7,31.9,31.2,32.8,30.2,32,32.3,31.6,32.2,32.5,31.7,31.1,31.2,34.3],"paint":[1.6,1.3,0.9,0.3,1.4,2.2,1.2,0.3,1.5,1.7,1.7,0.3,1,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[3.35]}},{"b":10,"v":{"DEFAULT":[15.24]}},{"b":11,"v":{"DEFAULT":[15.31]}},{"b":12,"v":{"DEFAULT":[4.1]}},{"b":13,"v":{"DEFAULT":[114.91]}},{"b":14,"v":{"DEFAULT":[720.4]}},{"b":15,"v":{"DEFAULT":[80.1]}},{"b":16,"v":{"DEFAULT":[634.5]}}]},
+{"f":50,"b":[{"b":0,"v":{"total":[31.8,32.2,33,32.8,33.5,33.9,33.2,33.7,32.1,33.4,32.7,33.1,33.7,33.7,33],"script":[10.5,10.6,11.2,11.3,11.1,11.8,11,12.1,10.8,11.6,11.3,11.5,11.6,11.7,11.5],"paint":[20.8,21.1,21.3,21,21.8,21.5,21.7,21,20.8,21.3,20.9,21.1,21.5,21.4,21]}},{"b":1,"v":{"total":[36.6,36.7,37.9,37.4,37.4,37.6,37.4,37.6,37,36.8,37.1,37,37.2,37.8,36.8],"script":[13.9,13.6,14.9,14.7,14.8,14.8,14.4,14.8,14.2,14.4,14.6,14.5,14.5,14.8,14.4],"paint":[22.1,22.5,22.5,22.2,22.1,22.2,22.4,22.2,22.2,21.9,22,22,22.1,22.3,21.9]}},{"b":2,"v":{"total":[17.4,17.1,17,17.4,17.6,17.2,17.5,18.1,17.5,16.5,17.5,17.2,17,17.8,18.4],"script":[5.9,5.7,5.7,5.7,6.1,5.8,5.8,6.4,6,5.8,6.2,6,5.7,6,5.9],"paint":[9.3,9.6,9.2,9.3,9.7,9.2,9.8,9.9,9.4,9.8,9.7,9.8,9.2,10.1,10.8]}},{"b":3,"v":{"total":[4.7,4.6,5.3,4.6,5.2,4.9,4.3,5.1,4.2,5.2,4.9,4.6,4.9,4.2,4.9,4.4,4.7,4.3,4.3,4.2,4.8,4.4,5,4.3,4.5],"script":[2.3,2.2,2.3,2.3,2.5,2.3,2.3,2.4,2,2.7,2.3,2.3,1.7,2.3,2.2,2.4,2.5,2.4,1.9,2.1,2.3,2.1,2.4,1.4,2],"paint":[2.3,2.1,1.7,1.5,2.6,1.9,1,2.5,1.2,1.5,1.6,1.8,2.2,1.2,1.8,1.6,1.7,1.3,1.5,2,2.3,0.9,1.8,2,1.5]}},{"b":4,"v":{"total":[107.6,108.7,106.1,108,105.3,107.7,109.3,112,105.4,111.8,108,108.4,108.1,106.9,108.3],"script":[20.3,20.5,21,20.6,20,21.4,20.9,23.5,21.2,23.7,20.6,21.5,20.7,20.9,21.4],"paint":[84.6,86.2,82.4,84.9,82.6,83.8,86.1,86.9,82.5,86.2,84.7,83.6,85.9,82.6,84.7]}},{"b":5,"v":{"total":[13.2,13,13.4,13.4,13.8,13.3,13.4,13.9,13,14,12.9,13.4,13.4,13.7,13],"script":[2.4,2.6,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5],"paint":[10.1,9.9,10.2,10.2,10.3,9.5,9.9,10.5,9.2,10.8,9.7,10.2,10.2,10.7,9.6]}},{"b":6,"v":{"total":[410.9,408.3,409.3,411.3,411.6,413.1,409.8,413.1,406.9,416.4,413,415.9,412.2,414.5,408.5],"script":[185.1,185.2,185,185.6,187,185.7,187.2,188.7,184.2,188.7,187.8,188.2,187,189,183.4],"paint":[217.8,215.7,217,218.3,217.4,219.5,215.5,216.9,215.6,219.8,217.4,219.6,218.1,218.4,217.8]}},{"b":7,"v":{"total":[36.8,36.4,37.3,37.2,37.2,36.9,37.3,37.6,36.9,37.3,37.2,37.4,37.2,37.3,37.1],"script":[10,10,11,10.8,10.6,10.8,10.9,11,10.7,10.8,10.9,11,10.7,10.7,10.7],"paint":[25.8,25.5,25.4,25.4,25.7,25.1,25.4,25.7,25.3,25.5,25.4,25.4,25.6,25.6,25.5]}},{"b":8,"v":{"total":[13.7,13.4,13.9,11.9,12.9,16.6,12.1,13.6,14.1,13.4,13.7,13,12.8,12.9,12.9],"script":[11.5,11.4,11.5,10,10.8,14.1,9.4,11.3,11.8,11.6,11.2,10.7,11,10.8,10.4],"paint":[1.9,1.6,1,0.6,0.7,2.1,0.7,1.4,1.2,0.6,1.3,1.2,0.8,0.6,1.3]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[5.76]}},{"b":11,"v":{"DEFAULT":[6.27]}},{"b":12,"v":{"DEFAULT":[4.69]}},{"b":13,"v":{"DEFAULT":[43.59]}},{"b":14,"v":{"DEFAULT":[157.1]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[176.3]}}]},
+{"f":51,"b":[{"b":0,"v":{"total":[28.5,29.6,30.1,29.6,29.8,29.6,29.3,29.4,29.4,29.7,29.5,29.9,29.4,29.5,30.3],"script":[6.6,7.1,7.5,7.1,7.4,6.9,6.8,7,6.9,7.1,6.9,7,7.1,6.8,7.5],"paint":[21.4,22,22,22,21.8,22.2,21.9,21.8,22,22.1,22,22.4,21.7,22.1,22.2]}},{"b":1,"v":{"total":[34.8,34.4,34.9,35.4,34.4,34.8,35.2,36.2,34.9,34.5,34.7,34.4,35.2,34.6,34.7],"script":[11.3,11.2,11.3,12,11.2,11.3,11.4,11.9,11.4,11.2,11.6,11.3,11.5,11.2,11.3],"paint":[23,22.6,23,22.8,22.6,22.9,23.3,23.7,22.8,22.8,22.5,22.5,23.1,22.8,22.9]}},{"b":2,"v":{"total":[15.4,15.3,14.5,14.5,16.1,20.4,18.3,14.8,16.1,15.5,15.1,16.4,15,15.9,14.8],"script":[4,3.7,3.5,3.7,3.7,4.3,4.5,3.7,4.4,3.6,3.8,4.6,3.3,4.5,3.5],"paint":[9.7,10.1,9.8,9.5,11.3,13.9,12.4,9.4,10.5,10,9.7,10.5,10.5,10.7,9.7]}},{"b":3,"v":{"total":[6.2,5.8,5.6,6,5.2,5.3,5.7,5.8,6.2,6.1,5.9,5.3,5.9,5.4,5.5,5.4,5.9,5,6.1,7.1,5.3,6.2,5.7,5.2,5.4],"script":[3.7,3.1,3.2,3.2,3.4,2.8,3.2,3,3.9,3.1,3.7,3.1,3.4,3,3.4,3.3,3.4,2.9,3.7,5,3.5,3.4,3.1,3.5,3.2],"paint":[1.9,2.6,1.2,2.7,1.2,2.1,1.4,2.7,1.8,2.4,1.6,1.3,2.3,2.1,2,0.9,2.4,2,1.8,2,1.3,2.4,1.7,1,1.8]}},{"b":4,"v":{"total":[16.7,16,16.3,15.9,16.2,15.7,17.6,16,16.6,16.3,16.1,16.3,16.5,17.2,15.6],"script":[3.6,2.9,3,3.4,2.8,3.2,3.1,3.5,3.1,3.2,3.5,3.1,2.9,3.6,3.5],"paint":[11.8,12.1,12.3,10.8,12.2,10.7,13.4,11.2,12.3,11.5,11.5,12.3,12.6,12,10.4]}},{"b":5,"v":{"total":[12.7,12.7,12.8,12.5,13,12.6,12.6,12.6,13.1,13.9,12.4,12.6,12.7,12.5,12.6],"script":[2.4,2.4,2.4,2.4,2.4,2.2,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[9.4,9.8,9.6,9.6,10.2,9.8,9.4,9.7,10.1,10.6,9.4,9.7,9.7,9.6,9.6]}},{"b":6,"v":{"total":[301.1,298.4,299.8,300,302.2,302.3,298.5,300.7,300.5,299.5,300.9,301.5,300.1,300.4,301.7],"script":[66.7,65.8,66.6,66.1,66.6,66.4,65.6,68,67,66.1,66.1,65.1,66.6,66.4,66.7],"paint":[226.8,225.1,225.8,226.5,228.2,228.6,225.4,225.2,226,225.9,227,228.5,225.9,225.9,227.5]}},{"b":7,"v":{"total":[34.8,34.1,35.4,34.9,34.8,34.3,34.3,34.9,34.5,33.8,34.1,33.6,34.2,35,34.3],"script":[7,6.8,7.1,6.7,7.1,7,6.9,7,7,6.7,6.9,6.8,6.8,7.2,7],"paint":[26.9,26.3,27.4,27.3,26.8,26.4,26.4,27,26.6,26.2,26.3,25.8,26.5,27,26.4]}},{"b":8,"v":{"total":[17.6,17.7,18.4,18.2,18,18.2,17.7,18.4,17.9,18.9,18.8,17.8,16.2,18.1,18.2],"script":[15.7,15.3,16.2,16.2,15.6,15.8,15.8,16.3,15.4,17.1,16.8,15.7,14.3,15.5,15.8],"paint":[0.3,1.8,0.9,0.8,2.1,1.2,1.1,1.6,2.1,1.2,1,1.3,0.5,1.8,1.4]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[5.47]}},{"b":11,"v":{"DEFAULT":[5.53]}},{"b":12,"v":{"DEFAULT":[4.55]}},{"b":13,"v":{"DEFAULT":[37.15]}},{"b":14,"v":{"DEFAULT":[189.6]}},{"b":15,"v":{"DEFAULT":[48.8]}},{"b":16,"v":{"DEFAULT":[224.2]}}]},
+{"f":52,"b":[{"b":0,"v":{"total":[26.7,26.3,26.4,27,27.3,26.5,26.5,26.3,26.7,26.6,27.7,29.4,26.5,26.4,26.1],"script":[4.4,4.4,4.4,4.6,4.5,4.4,4.3,4.4,4.4,4.3,4.8,5.2,4.5,4.4,4.3],"paint":[21.8,21.5,21.6,21.9,22.4,21.7,21.7,21.5,21.9,21.9,22.4,23.6,21.6,21.6,21.4]}},{"b":1,"v":{"total":[29.9,29.3,30.6,30.1,31.1,30.3,29.8,30,30,30.1,30.5,30.5,29.9,30.2,29.9],"script":[6.7,6.6,7.1,6.6,6.9,6.8,6.7,6.9,6.9,6.7,7,6.9,6.7,6.9,6.7],"paint":[22.6,22.2,22.9,22.9,23.6,22.9,22.4,22.6,22.6,22.9,22.9,23,22.7,22.8,22.6]}},{"b":2,"v":{"total":[13.3,12.9,11.8,12.4,13.1,13.2,12.1,12.8,13.1,12.3,12.7,13.1,12.4,12.5,12.3],"script":[2.4,1.8,1.5,2.4,2,2.6,2.5,2.1,2.2,2,1.5,2.1,1.9,1.4,1.7],"paint":[9.9,10.2,9.4,9.1,9.8,8.8,8.6,9.6,9.9,9.1,10,10,8.3,8.9,9.1]}},{"b":3,"v":{"total":[4,4.3,4.5,4.5,3.7,4.5,4.5,3.7,4,4.5,4.2,3.9,3.4,4.1,3.8,3.7,4.3,4.1,4.3,3.9,4.6,4.6,4.1,4.3,4],"script":[1.4,1.7,1.9,1.8,1.6,2.1,2,1.5,1.8,1.7,1.5,1.5,1.6,1.3,1.7,1.2,1.4,1.9,1.5,2,1.9,2.2,1.7,1,1.5],"paint":[1.4,1.6,2.5,1.9,1.9,1.9,1.5,2,1.5,1.8,1.5,1.5,1.7,2.7,1.6,1.4,2.4,1.2,2.6,1.1,2.6,2.1,1.7,3.1,2.4]}},{"b":4,"v":{"total":[15.2,14.9,15.5,15.7,16,16.2,15.7,15.6,15.3,15.6,16,16.2,15.5,15.4,14.1],"script":[1.8,1.6,2.4,1.8,2.1,2,1.8,1.3,1.9,2.5,1.5,1.8,1.5,1.6,1.3],"paint":[12.5,11.8,11.6,12.9,12,13.1,12.4,13.4,12.8,12.1,13,12.4,13,12.1,11.9]}},{"b":5,"v":{"total":[11.6,11.5,11.7,11.8,11.8,11.6,11.9,11.6,11.8,11.3,11.9,11.6,12.2,11.8,11.7],"script":[1,0.9,0.8,1.1,0.9,1.2,1,1.1,0.9,1,1.2,1.1,1,1.1,1.1],"paint":[10.1,9.7,10.2,10.2,9.9,9.5,10.3,9.7,10.3,9.7,10.2,9.2,10.6,10,9.8]}},{"b":6,"v":{"total":[280.9,279.7,282.2,276.2,278.4,279.2,281.2,280,280.5,279.7,280.2,278.3,281,280.1,279.1],"script":[44.4,44.6,44.4,43.6,44.5,44.4,44.5,44.5,44.7,44.3,44.1,44.3,46.6,44.8,44.6],"paint":[228.7,227.3,229.8,225,226.3,227,228.6,227.9,228,227.6,228.2,226.4,225.9,227.5,226.8]}},{"b":7,"v":{"total":[31.8,31.5,32.8,31.7,31.3,31.7,33.1,32.6,32.4,31.9,32.3,32.2,31.4,33,32.4],"script":[4.9,4.8,5.2,5,4.8,4.8,5,5,5.1,5.1,5.1,5,4.9,5,5.1],"paint":[26,25.9,26.5,25.8,25.7,26.1,27.1,26.6,26.3,25.9,26.2,26.4,25.7,27.2,26.3]}},{"b":8,"v":{"total":[11.4,11.6,11.7,11.2,11.2,11.8,12.5,11.9,13.6,12.3,11.8,11.6,10.5,13.7,11],"script":[9.9,10.1,9.6,9.7,9.4,9.8,10.4,10.6,10.1,10.2,10,9.7,9.1,10.4,9.9],"paint":[0.7,0.6,1.5,0.7,1.1,0.8,0.7,0.3,1.3,1,0.9,1,1.2,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.68]}},{"b":10,"v":{"DEFAULT":[2.87]}},{"b":11,"v":{"DEFAULT":[2.87]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[21.11]}},{"b":14,"v":{"DEFAULT":[22.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[54.6]}}]},
+{"f":53,"b":[{"b":0,"v":{"total":[26.9,26.7,26.1,25.8,26,26.2,26.5,26,26.6,25.7,25.7,26.3,26.6,26.1,26.2],"script":[3.9,3.8,3.6,3.6,3.8,3.7,3.8,3.8,3.7,3.5,3.5,3.5,3.8,3.5,3.7],"paint":[22.6,22.5,22.2,21.7,21.8,22.1,22.4,21.8,22.4,21.8,21.8,22.4,22.4,22.2,22.1]}},{"b":1,"v":{"total":[28.8,29.4,29.7,29.3,29.2,29.3,29.6,29.3,29.1,29.4,29.5,29.8,29.1,29.7,29.2],"script":[6.2,6,6.3,6.3,6.3,6.4,6.3,6.4,6.2,6.3,6.4,6.2,6,6.5,6.2],"paint":[22,22.9,22.7,22.4,22.4,22.4,22.8,22.4,22.3,22.5,22.6,23.1,22.5,22.7,22.5]}},{"b":2,"v":{"total":[11.8,11.1,11.5,11,11,11.8,11.4,12.1,11.6,10.9,11.4,12.4,11.5,11.2,12.1],"script":[1.5,1.3,1,1,1.6,1.5,1.4,1.5,1,1.4,1.1,1.1,1.5,1.7,1.5],"paint":[9.1,8,8.8,9,8.5,10,8.3,9.5,9.9,8.6,9.4,10.2,8.8,8.6,9.3]}},{"b":3,"v":{"total":[6.5,3.7,3.4,4.2,4,3.6,4,3.8,3.3,3.8,3.7,3.2,2.9,4,3.4,3.6,3.4,3.5,3.9,4.4,3.5,3.7,3.6,3.6,3.9],"script":[1.1,1.3,1,1.5,1.4,1.5,1.7,1.1,1.1,1.2,1,1,1,1,1.1,1.5,1,1.4,1.7,2.1,1.3,1.5,0.6,1.3,1.5],"paint":[1.8,1.9,1.7,2.5,2.1,1.8,2.2,2.1,1.3,1.6,2.2,2.2,1.1,2.1,2.2,1.4,2.3,1.4,2.1,1.7,1.4,1.7,2.2,2.2,2]}},{"b":4,"v":{"total":[14.6,14.3,15.3,13.8,13.6,14.2,14.7,14,14.5,14.7,13.7,14.1,14.1,14.5,14.3],"script":[0.9,0.6,1.2,1.2,1,1.5,1.1,0.9,1.6,1.3,1,1.3,1.1,1.3,1.8],"paint":[12.3,12.2,12.7,11,11.1,11.5,12.5,11.2,11.4,12.3,11.5,11.6,11.8,12.6,11.4]}},{"b":5,"v":{"total":[12.6,11.3,11.4,11,11.5,11.5,11.4,11.1,11.2,11.1,11.8,11.3,11.3,11,11.3],"script":[1,0.6,1,0.7,0.9,1,0.7,0.8,0.8,0.7,0.9,0.8,1,0.8,0.8],"paint":[10.9,10,9.8,9.7,9.7,9.8,10.4,9.2,9.7,9.6,10.4,9.6,9.7,9.7,9.6]}},{"b":6,"v":{"total":[269.1,270,269.8,268.6,269,269.8,269.8,269.1,269.7,268.4,272.9,271.8,269,272,270],"script":[37,37.5,37.1,36.4,37.7,37.6,37.1,37.5,37.5,37,37.6,37.6,37.6,37.2,37.1],"paint":[224.8,224.9,225.3,224.8,224,224.7,225.2,224,224.6,223.5,227.4,226.4,223.9,226.9,225.5]}},{"b":7,"v":{"total":[32.4,31.6,32,31.8,32.1,31.4,31.9,31.6,31.5,31.9,31.8,31.2,31.7,32,31.9],"script":[4.2,4.4,4.2,4.4,4.4,4.2,4.3,4.1,4.2,4.4,4.1,4,4,4.1,4.1],"paint":[27.4,26.5,27,26.6,26.9,26.4,26.7,26.6,26.6,26.7,26.9,26.4,26.9,27.1,27]}},{"b":8,"v":{"total":[12.7,13,11.8,11.8,12.6,12.4,11.6,11.4,11.6,11,12,11.7,12.3,11.9,12.5],"script":[10.7,11,10,10.2,10.5,10.3,10,9.1,9.4,9.4,10.3,9.7,11.2,10.5,9.7],"paint":[0.9,1.1,1.7,0.6,1.9,1.6,0.7,2.1,1.4,1.1,1.5,0.9,0.9,1.2,1.8]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[2.64]}},{"b":11,"v":{"DEFAULT":[2.66]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.03]}},{"b":14,"v":{"DEFAULT":[12.1]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[45.7]}}]},
+{"f":54,"b":[{"b":0,"v":{"total":[28.9,28.5,29,28.5,28.8,28.5,28.5,28.6,28.4,28.6,28.4,28.8,28.4,28.5,28.7],"script":[6.2,6,6.4,6,6.2,6.1,6,6,6,6,6,6.1,6,6,6],"paint":[22.1,21.9,22.1,22,22,21.8,22,22.1,21.8,22.2,21.9,22.1,21.8,22,22.1]}},{"b":1,"v":{"total":[32.6,32.3,32.7,32.3,33.1,32.5,32,32.4,32.6,32.8,32.2,32.4,32.3,32.4,32.4],"script":[8.8,8.8,8.9,8.9,9.2,8.9,8.7,9,8.8,8.9,8.6,8.8,8.8,8.9,8.9],"paint":[23.3,22.9,23.3,22.8,23.4,23,22.7,22.9,23.2,23.2,23,23.1,23,23,23]}},{"b":2,"v":{"total":[14.6,14.3,14.9,14.2,14.8,14.5,14.6,14.5,14.9,14.5,14.4,14.2,14.3,14.7,16.4],"script":[3.5,3.4,3.8,3.1,3.6,3.4,3.4,3.9,3.5,3.5,3.3,3.4,3.2,4,3.7],"paint":[10,9.6,9.3,10.2,10.3,9.9,10,9.5,9.7,9.5,9.5,9.9,9,9.4,11.6]}},{"b":3,"v":{"total":[10,9.1,9.1,11.2,9.4,9,9.4,9.2,9.4,8.9,9.4,9.5,9,9,8.7,9.1,8.8,8.9,9.4,10.3,9.1,9.7,9.8,9.9,9.4],"script":[6.6,6.4,6.2,6.9,6.2,5.8,6,6.2,5.8,5.9,6.1,6.2,6.2,5.8,5.4,5.6,5.6,5.9,5.9,6.9,6.1,6.4,6.6,6.7,6.5],"paint":[2.4,1.3,1.8,1.8,1.3,2.2,1.8,1.5,2.8,1.4,2.3,2.3,0.9,1.5,1.9,3.1,2.3,2,2.3,2.2,2,2.1,2.2,2.4,1]}},{"b":4,"v":{"total":[100.4,102.2,100.6,101.6,101.9,101.5,100.9,100.7,101.6,101.1,100.1,102.5,102.9,101,101.8],"script":[11.3,12.7,11.4,12.5,12.5,11.5,12.1,11.6,11.8,12.9,12.4,12.2,11.8,11.4,12],"paint":[86.7,87.7,86.8,86.4,87.4,87.6,86.5,86.5,87,84.8,85.2,87.6,88.7,86.8,87.7]}},{"b":5,"v":{"total":[11.3,11.1,11.1,11.2,11.6,11.4,11.3,11.5,11.5,10.9,11.4,11,13,11.2,11],"script":[0.5,0.5,0.5,0.5,0.4,0.5,0.3,0.4,0.5,0.3,0.5,0.5,0.5,0.5,0.5],"paint":[10.1,10,10,9.8,10.7,10,10.2,10.4,10.2,10,10.5,9.7,11.8,10.1,10.1]}},{"b":6,"v":{"total":[279.6,282.4,280.5,283.6,289.4,280.8,280.4,279.6,282.9,281,280.9,283,281.4,280.3,282.1],"script":[57.4,59.2,58.3,58.4,57.4,58.5,58.6,58.3,57.8,58.4,58,59.2,58.6,58.4,59],"paint":[215,216,215,218,222.1,215.1,214.7,214.2,218,215.3,215.7,216.6,215.5,214.8,215.9]}},{"b":7,"v":{"total":[33.4,33.5,34.2,33.5,33.5,34.1,34.1,34.5,33.4,34.7,33.9,33.6,34.1,34.1,33.7],"script":[5.9,5.8,6.2,5.9,5.9,6,6,6.3,5.8,6.3,6.3,5.8,6,6.3,5.9],"paint":[26.5,26.8,27.1,26.7,26.7,27.2,27.2,27.3,26.7,27.4,26.6,26.8,27.2,26.8,26.9]}},{"b":8,"v":{"total":[11,11.8,10.9,11.1,11.6,11.7,11.9,11,11.6,11.8,11.6,10.8,11.1,11.4,11.8],"script":[9.1,9.8,9.4,8.8,9.6,9.3,9.8,9.2,9.6,9.6,9.5,9,9.6,9.4,9.7],"paint":[1.1,0.4,0.3,1.2,1.2,1.7,1.5,1,1.8,1.4,1.1,0.2,0.9,0.7,1.8]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.88]}},{"b":11,"v":{"DEFAULT":[3.97]}},{"b":12,"v":{"DEFAULT":[0.71]}},{"b":13,"v":{"DEFAULT":[32.76]}},{"b":14,"v":{"DEFAULT":[7.4]}},{"b":15,"v":{"DEFAULT":[3.5]}},{"b":16,"v":{"DEFAULT":[36.6]}}]},
+{"f":55,"b":[{"b":0,"v":{"total":[28.5,28.7,28.4,28.2,28.6,28.9,28.9,28.5,28.7,28.2,28.4,28.3,28.7,28.7,28.7],"script":[6,6,6,6,6,6,6.4,6,6.1,5.9,6.1,5.9,6,6,6.3],"paint":[22,22.1,21.8,21.7,22,22.4,22,21.9,22,21.8,21.8,21.9,22.1,22.2,21.9]}},{"b":1,"v":{"total":[32.6,32.5,32.5,33.1,32.7,32.3,33.1,32.5,32.3,32.5,33.1,32.1,32.6,32.6,32.1],"script":[8.8,8.8,8.9,9,8.8,8.9,9.2,8.9,8.9,9,9.2,8.8,9,9.2,8.7],"paint":[23.2,23.1,23,23.5,23.2,22.8,23.4,23,22.7,23,23.3,22.8,23,22.8,22.9]}},{"b":2,"v":{"total":[14.7,14.1,14.4,14.1,14.7,14.4,15.6,15,15,14,14.9,14.7,14.3,14.1,14.4],"script":[3.3,3.4,3.6,3.4,3.8,3.5,4.3,4,3.9,3.4,3.5,4.1,3.6,3.8,3.6],"paint":[9.6,9.4,9.9,9.5,9.2,9.8,10.2,10,9.6,9.5,9.4,9.6,9.6,9.3,9.9]}},{"b":3,"v":{"total":[10.1,9.7,10.1,9.6,9.7,9.9,9.6,9.9,10.3,9.7,8.9,9.5,9.5,9.6,9.8,9.9,9.9,9.4,8.8,10.1,9.8,9.6,9.2,9.1,9.5],"script":[6.7,6.8,6.8,6.5,6.4,6.7,6.5,7.2,7.2,6.1,5.9,6.5,6.3,6.5,6.7,6.5,7,5.7,6.1,7,6.8,6.3,6.4,6,6.8],"paint":[1.5,1.3,1.9,1.7,2.6,1.5,2.3,1.9,2,3.2,1.4,2.7,1.9,1.6,0.7,1.7,1.9,2.2,1.2,1.8,1.7,1.7,1.3,2.1,1]}},{"b":4,"v":{"total":[101.4,100.3,102.2,101.7,102.8,102.2,104.4,100.5,103.2,99.3,101.8,102.1,101,101.5,102.1],"script":[12,11.8,12.8,12.6,11.8,12,13.4,11.5,11.7,12.3,12.7,11.9,12.4,12.5,11.8],"paint":[86.9,86.9,87,87,89.3,87.7,88.1,87.1,89.2,84.8,86.7,87.7,86.6,86.8,87.8]}},{"b":5,"v":{"total":[11.1,11.4,11.7,11.4,11.3,10.9,10.6,11.2,10.7,10.8,11,12.2,11.4,10.8,11],"script":[0.5,0.5,0.4,0.5,0.7,0.5,0.4,0.4,0.3,0.4,0.7,0.6,0.6,0.5,0.6],"paint":[9.7,10.1,10,10.3,10.1,9.7,9.1,10.2,9.6,10,9.9,10.4,10.2,9.5,9.5]}},{"b":6,"v":{"total":[285.7,283.2,283.4,281.3,281.2,285.5,282.8,284.1,282,283.6,282,285.8,282.4,284.3,282.2],"script":[58.9,58.7,57,57.3,57.6,57.7,58.1,57.9,57.4,57.8,57.5,60.7,57.1,58.6,57.7],"paint":[219,216.8,218.5,216.4,216,220,217.1,218.2,217.4,218.3,217.2,217.9,218.2,218.3,217.2]}},{"b":7,"v":{"total":[33.5,32.8,34.3,36.5,33.7,34,33.5,33.6,34.3,33.6,34,34.1,35,33.8,34.1],"script":[5.9,5.9,6,6.4,5.9,6,5.8,5.8,6.2,5.9,6,5.9,6,6,5.9],"paint":[26.7,26.1,27.4,28.9,26.8,27,26.8,26.9,27.1,26.7,27.1,27.2,28,26.9,27.3]}},{"b":8,"v":{"total":[12,11.9,12.1,11.4,11.9,11.4,10.5,12.4,11.3,11.4,11.3,10.9,12,11.7,11.5],"script":[10,9.5,9.8,9.4,9.5,9.5,8.9,10.2,9.6,9.7,9,9.5,9.5,9.6,8.9],"paint":[0.9,2.1,1.6,0.3,1.8,1.7,0.2,1.2,0.7,0.3,1.3,0.3,2.2,0.9,1.6]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.93]}},{"b":11,"v":{"DEFAULT":[3.93]}},{"b":12,"v":{"DEFAULT":[0.68]}},{"b":13,"v":{"DEFAULT":[32.75]}},{"b":14,"v":{"DEFAULT":[7.6]}},{"b":15,"v":{"DEFAULT":[3.5]}},{"b":16,"v":{"DEFAULT":[45]}}]},
+{"f":56,"b":[{"b":0,"v":{"total":[26.8,26.8,26.9,27.1,29.3,26.7,27.3,26.8,26.8,27.8,26.8,27.1,26.9,27.1,26.9],"script":[4.9,4.8,4.8,4.7,5.2,4.7,5,4.7,4.7,5.1,4.7,4.9,4.7,4.8,4.8],"paint":[21.6,21.6,21.7,21.9,23.5,21.6,21.9,21.7,21.7,22.1,21.8,21.8,21.8,21.9,21.8]}},{"b":1,"v":{"total":[30.7,31.4,30.4,31.1,31.4,31.1,31.2,30.9,31.1,31.3,31.7,31.6,31.7,30.7,30.7],"script":[7.9,8.4,7.9,8.1,8.2,8,7.9,8,7.9,7.8,8,8.2,8.1,7.8,8],"paint":[22.2,22.4,22,22.5,22.6,22.5,22.7,22.3,22.6,22.9,23.1,22.9,23,22.3,22.1]}},{"b":2,"v":{"total":[15.6,15.5,15.7,15.9,16.7,17,16.5,16.1,16.6,16.5,14.7,16.7,15.3,15.5,16.2],"script":[5,5.1,4.4,5.1,5,5.5,4.5,4.9,5.5,5,4.9,5.6,4.6,4.7,5.6],"paint":[9.5,8.3,9.9,9,9.4,9.2,10.1,9.6,9.3,9.9,8.6,8.9,9.5,9.6,9.1]}},{"b":3,"v":{"total":[6.7,7,7.4,6.5,6.4,6.4,6.7,6.7,8.8,8,6.7,8.4,6.8,7.3,7.3,6.9,6.7,6.4,6.4,6.3,7,7.1,7.6,6.9,6.8],"script":[4.7,4.5,5.1,4.6,4.2,4.5,4.9,4.8,5.6,4.8,4.6,5.5,4.3,4.3,4.8,3.9,4.5,4.4,4.3,3.9,4.4,4.9,4.6,4.7,4.4],"paint":[1,2.3,1.7,1,1.2,1.7,1.3,1.7,2.9,2.3,1.7,1,1.4,2.8,1.5,2.4,0.5,1.9,1.4,1.9,1.9,2,2.7,2.1,1.6]}},{"b":4,"v":{"total":[18.2,17.9,17.4,17.3,19.1,18.3,20.1,17.7,17.7,18.4,18,17.7,18.7,17.5,17.1],"script":[4.6,4.8,4.5,4.9,5,4.8,6.1,4.8,4.1,5,4.8,4.7,5,4.9,4.6],"paint":[12.9,11.1,12,10.7,11.6,12.4,12.6,11.9,12.6,12.2,11.8,11.9,11.3,11.6,11.5]}},{"b":5,"v":{"total":[13.2,13.7,14,12.7,13.8,14.3,13.5,13.8,13.6,13.5,15,15,13.5,14,14.1],"script":[3.1,3.4,3.6,2.5,3.5,3.6,3.3,3.4,3.3,3.1,4.1,3.9,3.1,3.6,3.4],"paint":[9.9,9.4,9.5,9.6,9.7,10.1,9.7,10,9.8,9.7,10.3,10.2,9.7,9.4,10.1]}},{"b":6,"v":{"total":[273.9,268.3,271.1,271.1,271.2,272,270.2,273.1,271,271.2,271.9,273.2,271.9,271,274.3],"script":[41.4,41.1,41.4,41.1,40.5,41.5,41.7,40.5,40,40.5,41.2,41.6,40.9,39.7,40.7],"paint":[225.4,219.9,222.3,222.8,223.3,223.4,221.2,225,223.5,222.9,223.6,224.3,223.6,223.9,226.2]}},{"b":7,"v":{"total":[34.8,33.7,33.6,34.1,33.6,33.8,33.3,33.4,33.3,33.4,33.5,33.4,33.9,33.2,33.5],"script":[6.8,6.7,6.6,6.7,6.6,6.4,6.6,6.7,6.4,6.5,6.7,6.4,6.6,6.3,6.6],"paint":[27,26.1,26.1,26.4,26.1,26.5,25.8,25.7,26.1,26,25.9,26.1,26.4,26,25.9]}},{"b":8,"v":{"total":[12.9,11.6,10.8,11.9,11.5,11.3,11.1,11.6,11.3,12.5,12.1,11,11.8,11.4,11.6],"script":[10.6,9.6,8.7,9.5,9.6,9.3,8.9,9.4,9.6,10,9.4,9.5,9.7,9.7,9],"paint":[0.8,0.6,1.9,1.5,0.3,1.1,1.3,1.3,1.1,2.3,2.3,0.7,1,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[3.33]}},{"b":11,"v":{"DEFAULT":[3.35]}},{"b":12,"v":{"DEFAULT":[1.38]}},{"b":13,"v":{"DEFAULT":[23.85]}},{"b":14,"v":{"DEFAULT":[58.4]}},{"b":15,"v":{"DEFAULT":[17.6]}},{"b":16,"v":{"DEFAULT":[74.6]}}]},
+{"f":57,"b":[{"b":0,"v":{"total":[24.9,24.8,24.6,25,25.1,24.9,24.8,24.8,24.6,24.8,24.8,24.9,25,24.9,24.8],"script":[2.7,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.6,2.7,2.7,2.7,2.6,2.6],"paint":[21.8,21.8,21.6,22,22,21.9,21.7,21.8,21.6,21.8,21.7,21.8,22,21.9,21.8]}},{"b":1,"v":{"total":[27.8,27.6,27.7,27.4,27.7,27.7,27.6,28.2,28,27.8,27.5,27.9,28.6,27.6,27.5],"script":[4.6,4.6,4.6,4.6,4.7,4.6,4.7,4.9,4.7,4.6,4.6,4.8,4.7,4.6,4.7],"paint":[22.8,22.5,22.6,22.4,22.6,22.6,22.5,22.9,22.9,22.7,22.4,22.6,23.5,22.6,22.4]}},{"b":2,"v":{"total":[11.4,11.7,10.9,12.5,10.9,10.8,13.1,12,12.1,10.7,10.9,10.7,10.8,11,10.5],"script":[0.5,1.1,1,1.3,0.6,0.2,0.8,1.2,0.7,0.2,0.6,0.2,0.6,0.8,0.6],"paint":[9.9,10,8.9,9.8,9.2,9.6,10.8,9.1,9.9,8.6,9.7,9.5,9.5,8.7,8.7]}},{"b":3,"v":{"total":[2.8,3,2.8,2.9,3,2.8,3,2.3,3.9,2.8,2.2,2.4,2.6,3.1,2.8,2.8,2.4,2.4,2.4,2.3,2.2,2.4,2.6,2.7,2.9],"script":[0.6,0.6,0.8,1,0.8,0.1,0.1,0.1,0.8,0.6,0.1,0.7,0.7,0.1,0.9,0.6,0.5,0.3,0.1,0.1,0.1,0.5,0.1,0.9,0.6],"paint":[1.6,2.3,1.1,1,0.5,1.5,2.6,1.3,1.4,1.7,1.6,1.6,1.7,2.8,1.4,2,1.8,1.9,2.2,1,2,1.8,1.5,1.2,1.5]}},{"b":4,"v":{"total":[15,13.3,14,15.4,14.8,14.5,14.3,14,14.9,15.7,15.2,13.4,17,13.9,14.4],"script":[1.7,0.9,1.1,1.4,1.8,1.5,2,2,1,1.2,1.8,1.1,2.2,1.2,1],"paint":[12.1,11.7,11.1,12.9,11.5,12.3,11.2,11.8,13.6,12.9,12.4,11.3,13.8,11.7,12.4]}},{"b":5,"v":{"total":[11.2,10.7,11.3,11.5,10.9,11,11.1,10.8,10.9,10.9,10.9,10.9,11.3,11,10.5],"script":[0.7,0.6,0.7,0.9,0.7,0.7,0.8,0.7,0.6,0.6,0.7,0.7,0.6,0.7,0.6],"paint":[9.8,9.2,10.3,10,9.4,9.7,9.7,9.2,9.4,9.6,9.5,9.6,10.1,9.1,9.6]}},{"b":6,"v":{"total":[257,257.5,259.5,257.2,257.7,257.5,256.8,256.8,256.8,258.4,256.9,255.3,256.8,259.1,256.1],"script":[28.2,27.9,28,28.2,27.7,27.7,27.7,28.2,27.6,28.1,27.3,27.7,27.9,27.9,27.6],"paint":[221.5,222.4,224,221.2,222.6,222.8,221.9,221.4,221.9,223.1,222.4,220.6,221.7,223.8,221.3]}},{"b":7,"v":{"total":[30.2,30.3,30.3,30.5,30.5,31,30.3,30.7,30.9,30.8,30.7,31.3,31.1,31.4,30.2],"script":[3.1,3.1,3.2,3.1,3.3,3.1,3.2,3.3,3.2,3.3,3.1,3.5,3.3,3.2,3.2],"paint":[26.2,26.4,26.4,26.6,26.4,27.1,26.4,26.7,26.9,26.8,26.8,27,27.1,27.4,26.3]}},{"b":8,"v":{"total":[8.9,9.2,9.1,9.2,9.9,10.3,9.7,9.6,9.2,10.7,10,8.3,9.9,9.2,8.7],"script":[7.5,7.8,7.8,7,7.8,8.8,7.4,7.9,7.4,8.5,7.3,6.3,7.6,7.6,6.8],"paint":[0.2,0.7,0.2,1.3,1.8,0.5,1.3,0.6,1,2,2.1,1.8,1.4,0.3,0.9]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.52]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[19.07]}},{"b":14,"v":{"DEFAULT":[7.2]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[35.1]}}]},
+{"f":58,"b":[{"b":0,"v":{"total":[30.6,28.5,28.4,28.9,28.1,28.5,28.3,28.9,29,28.9,28.6,28.4,28.9,28.2,28.5],"script":[6.6,6.8,6.7,6.7,6.3,6.5,6.7,6.8,6.9,6.8,6.6,6.4,6.6,6.5,6.6],"paint":[23.4,21.2,21.2,21.7,21.2,21.4,21.1,21.6,21.5,21.6,21.5,21.5,21.7,21.1,21.3]}},{"b":1,"v":{"total":[30.3,31,31.3,31.3,31.3,32.3,31,31.2,31.2,31.2,31.1,31.2,31.8,31.2,31.4],"script":[8.5,8.6,8.7,8.8,8.4,8.4,8.4,8.8,8.6,8.6,8.5,8.5,9.3,8.5,8.6],"paint":[21.2,21.8,22,21.9,22.3,23.3,22,21.9,22,22.1,22,22.2,21.9,22.1,22.3]}},{"b":2,"v":{"total":[14.9,14.9,15.6,14.7,16,14.4,15.1,15.9,15.3,15.1,14.5,15.1,15.3,15.4,14.7],"script":[4.6,5,4.8,4.6,5.1,3.8,4.8,4.6,4.3,4.9,4.7,5.1,4.9,4.2,4.8],"paint":[9.3,7.6,9.2,8.9,9.8,8.9,9,10.2,10.4,8.8,8.6,8.9,9.4,9.9,8.6]}},{"b":3,"v":{"total":[4.2,2.8,3.4,2.9,2.9,3,2.9,2.8,2.7,3.4,2.5,2.1,3,2.9,2.5,3.1,3,3,2,2.1,3,3.2,2.7,2.8,2.5],"script":[0.1,0.1,1.1,0.8,0.1,1,1.1,0.5,0.5,0.8,0.9,0.3,0.9,0.5,0.1,1.1,0.1,0.9,0.1,0.2,1.1,0.9,0.5,0.9,0.1],"paint":[2.6,2.1,1.6,0.5,2.6,1.7,1.1,1.1,1.4,2.4,1,1.1,1.5,1.5,2,1.2,2.8,1.5,1.1,1,1.8,2.1,2,1.3,1.6]}},{"b":4,"v":{"total":[13.7,12.8,12.7,13.1,13,12.9,12.3,12.6,13.5,13.9,13.4,14,12.9,13.2,12.9],"script":[0.9,0.1,0.1,0.1,0.4,0.2,0.1,0.5,0.7,0.7,0.1,0.8,0.4,0.1,0.5],"paint":[11.7,11.2,11.6,12.1,11.5,11.5,11,11.2,11.7,11.9,12.6,12.9,11.5,11.8,11.5]}},{"b":5,"v":{"total":[10.9,10.5,10.6,11.2,10.4,10.3,10.6,10,10.3,10.4,10.3,10.7,10.1,10.7,10.5],"script":[0.2,0.3,0.4,0.3,0.4,0.4,0.3,0.2,0.2,0.3,0.3,0.3,0.1,0.3,0.1],"paint":[9.9,9.4,9.8,10.2,9.6,9,9.7,9.3,9,9.4,9.3,9.8,9.5,9.9,9.8]}},{"b":6,"v":{"total":[280.1,277.4,274.6,277,274.6,279.9,278.7,278.8,278.7,276.9,277,280.5,277.5,276.3,276.8],"script":[47.9,47.9,46.8,47.5,47.3,48,47.4,47.4,49.2,47.3,46.7,47.6,47.2,46.6,47.2],"paint":[224.3,222.5,220.5,222.1,220.1,223.8,223.9,223.6,222.3,222.5,223,224.9,223,222.6,222.1]}},{"b":7,"v":{"total":[33,32.1,32.7,33.9,33.2,33.7,33.6,32.4,33.4,33.2,33.7,33.2,33,32.5,33.1],"script":[6.4,6,6.3,6.4,6.4,6.7,6.4,6.3,6.4,6.2,6.5,6.4,6.4,6.3,6.1],"paint":[25.6,25.2,25.5,26.5,25.9,26.1,26.2,25.2,26,26.1,26.2,25.8,25.7,25.3,26.1]}},{"b":8,"v":{"total":[15.1,13.8,15.3,14.9,15.6,15,15.8,15.8,14.9,15.4,14.8,14.7,15.2,14.2,15.8],"script":[12.9,12.6,13.5,13.2,13.4,13,13.9,13.8,13.5,13.6,12.7,12.7,13.3,11.7,14],"paint":[1.3,1,1.2,0.7,0.7,0.9,1.1,1.7,0.5,0.6,0.3,1.1,0.5,1.6,0.5]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[2.67]}},{"b":11,"v":{"DEFAULT":[2.86]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[17.51]}},{"b":14,"v":{"DEFAULT":[65.2]}},{"b":15,"v":{"DEFAULT":[17.8]}},{"b":16,"v":{"DEFAULT":[77]}}]},
+{"f":59,"b":[{"b":0,"v":{"total":[35.4,35.8,35.7,35.8,36.4,35.7,36.1,36.1,35.6,35.6,36,36.1,35.8,36.3,36],"script":[12.7,13.1,12.9,12.8,13.4,12.8,13.1,13.2,12.7,13.1,13,13,13,13.3,13.2],"paint":[22.1,22.1,22.3,22.4,22.5,22.4,22.4,22.3,22.4,22.1,22.4,22.6,22.3,22.5,22.2]}},{"b":1,"v":{"total":[39.9,38.3,39.2,39.1,39.5,39.3,38.4,38.5,39.1,39.7,39.1,38.6,39,38.9,39.9],"script":[15.3,15.1,15.3,15.6,15.8,15.6,15.1,15.2,15.5,16.1,15.6,15.2,15.6,15.2,15.8],"paint":[24,22.6,23.4,22.9,23.1,23.1,22.7,22.7,23,23.1,22.9,22.8,22.8,23.1,23.6]}},{"b":2,"v":{"total":[12.2,11.6,11.7,12.4,12.3,11.6,13.8,13.5,12.7,11.9,11.7,11.3,11.4,12.2,11.4],"script":[1.1,1,1.3,1.7,1.9,1.4,2.1,1.3,2,1.5,1.3,1.4,1.1,0.9,1.3],"paint":[9.8,9.3,9.2,9.4,8.7,8.7,9.8,10.5,9.6,8.7,9,8.8,9.3,10,8.7]}},{"b":3,"v":{"total":[5.4,2.7,1.9,2.4,2.5,1.6,2.6,2.4,2.8,2.6,2.4,2.5,2.4,2.2,2.3,2.2,1.8,2.1,2.3,2.1,2.6,2,2.2,2.1,2.4],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.9,0,0.8,0.1,0.1,0.1,0,0.1,0,0,0,0.7,0.1,0.1,0,0.3,0.1,0.7,0],"paint":[1.4,2.5,1.5,1.6,1.9,1,1.2,1.5,1.9,2.4,0.7,2,2.2,0.9,1.8,1.2,1.5,1.3,1.2,2,2.4,1.2,1.9,1.3,2]}},{"b":4,"v":{"total":[12.9,13.1,14.7,12.8,13.2,13.1,12.9,12.3,13.4,13.2,12.4,12.7,13.2,13.1,12.5],"script":[0.7,0.1,0.1,0.6,0.1,0.9,0.9,0.1,0.1,0.1,0.4,0.4,0.5,0.5,0.1],"paint":[11.2,11.9,13,10.5,11.6,11.1,10.6,11.3,11.9,11.8,11.1,11.3,11.3,10.9,11.5]}},{"b":5,"v":{"total":[10.3,10.3,10.6,10.4,10.9,10.3,10.7,11.9,10.3,10.2,10.4,10.7,10.3,10,10.5],"script":[0.2,0.1,0.3,0.3,0.5,0.3,0.3,0.5,0.1,0.3,0.3,0.3,0.4,0.2,0.3],"paint":[9.4,9.3,9.8,9.5,10.1,9.6,9.8,10.7,9.5,8.9,9.6,9.8,9,9.2,9.7]}},{"b":6,"v":{"total":[336.5,337.1,339.7,340,339.4,337.1,337.5,338.3,339.8,338.2,340.1,337.7,341,344.1,337.7],"script":[115,113.9,118.8,115.3,115,112.4,115.4,114.5,115,115.1,115.5,114.6,115,117,115.3],"paint":[214.3,216,213.8,217,217.2,217.4,215,216.4,216.7,215.7,217.4,215.7,218.4,218.8,215.2]}},{"b":7,"v":{"total":[39.1,39.3,39.3,39.2,38.8,40.8,39.6,38.6,40,39.3,39.3,40,39.4,39,39],"script":[12.8,12.9,12.7,12.6,12.5,13.3,12.9,12.5,13.1,13,12.6,13.2,12.8,12.9,12.6],"paint":[25.3,25.4,25.6,25.6,25.4,26.5,25.7,25.1,26,25.3,25.7,25.8,25.7,25.1,25.5]}},{"b":8,"v":{"total":[15,15.7,15.9,15.7,15.2,14.6,15.9,15.8,15.7,16,16.7,15.1,15.4,15.6,15.5],"script":[13.3,13.5,13.6,13.5,13.1,12.7,13.1,13.4,13.4,13.5,13.2,13.6,13.6,13.6,13.8],"paint":[1.1,0.3,0.8,0.8,1,1,1.7,1.3,1.2,2.3,2.4,0.9,0.7,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.76]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.17]}},{"b":12,"v":{"DEFAULT":[1.12]}},{"b":13,"v":{"DEFAULT":[20.58]}},{"b":14,"v":{"DEFAULT":[83.9]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[93.1]}}]},
+{"f":60,"b":[{"b":0,"v":{"total":[25.4,24.2,25.8,24.3,24.4,24.4,24.8,23.9,24.6,24,24,23.9,24.5,24.1,24.1],"script":[3.8,3.7,4.1,3.7,3.6,3.7,4,3.8,3.9,3.8,3.7,3.6,3.7,3.7,3.7],"paint":[21.2,20,21.3,20.2,20.3,20.4,20.5,19.8,20.3,19.9,19.9,19.9,20.4,20,20.1]}},{"b":1,"v":{"total":[29.3,29.1,29.7,28.9,29.3,28.9,28.9,28.9,30.2,29.5,29.2,28.7,28.9,28.6,30.9],"script":[6.5,6.5,6.5,6.3,6.4,6.4,6.2,6.5,6.6,6.6,6.3,6.4,6.5,6.5,6.4],"paint":[22.3,22,22.6,22,22.4,22,22.1,21.9,23,22.4,22.4,21.7,21.9,21.6,23.8]}},{"b":2,"v":{"total":[12.8,12.9,13.1,21.3,12.3,20.2,12,13.1,13.2,12,12.6,11.7,13,13.5,14],"script":[2,3,3.1,3.8,1.7,2.8,2.3,2.6,2.2,1.9,1.6,2.1,2.2,2.2,2.4],"paint":[9.2,9.3,8,15,9.1,14.6,8.4,8.4,9.8,8.7,10.1,8.3,9.4,9.1,10.6]}},{"b":3,"v":{"total":[5.3,3.6,4,3.8,3.7,3.2,3.7,4.1,3.9,3.1,3.9,3.4,3.3,3.6,3.4,3.7,3.8,3.9,3.6,4.2,3.6,2.7,4.1,4,3.3],"script":[0.7,1.2,1.8,1.6,1.9,1.8,0.7,1.8,1,1.8,1,1,1.6,1,0.7,1,1.6,1.8,1.9,2.3,1.3,1.1,1.6,2.2,1.2],"paint":[1.8,1.5,1.3,1.4,1.6,1.3,2.3,1.5,2.2,1.1,2,1.2,1.1,1.8,1.6,2.5,2.1,1.9,1.2,1.6,2.2,0.7,2.1,1.8,2]}},{"b":4,"v":{"total":[18.1,16.6,15.4,15.6,14.9,15.3,17.3,15.5,15.8,16.1,15.6,15.7,14.9,16.3,15.7],"script":[2.6,2.9,2.7,2.3,2.4,2.9,2.8,2.4,2.5,2.6,2.3,2,2.5,2.7,2.8],"paint":[14.4,12.8,11.7,11,11,11.6,14,11.5,11.9,11.1,11.5,12.8,11,11.7,10.4]}},{"b":5,"v":{"total":[12.2,10.9,11.4,10.9,11.5,11.5,11,11.4,11,11.3,11,11.1,11.1,11.1,11.3],"script":[0.8,0.7,1.4,0.7,1.2,0.9,1.1,0.9,0.7,1.1,0.8,0.9,0.8,0.9,0.9],"paint":[10.7,9.6,9.5,9.6,9.6,10,9.3,9.9,9.4,9.6,9.6,9.6,9.7,9.6,9.7]}},{"b":6,"v":{"total":[272.9,268.6,268.8,267.2,268.5,271,268.5,270.8,270.6,268.2,272.6,270.2,270.8,267.5,272.1],"script":[38.1,35.9,35.7,36.7,36.7,36.1,36.5,37.2,35.9,36.4,36.5,36.2,36.6,36.7,36.6],"paint":[226.2,224.5,225.1,222.4,223.6,226.8,224,225.3,226.7,223.6,227.9,225.9,225.9,222.9,227.2]}},{"b":7,"v":{"total":[30.4,31.9,30.5,29.9,32.1,30.7,31.4,30.8,31.8,31.3,31.5,31.7,30.7,30.7,30.6],"script":[4.4,4.6,4.4,4.4,4.6,4.4,4.5,4.5,4.6,4.5,4.5,4.5,4.5,4.5,4.4],"paint":[25.2,26.6,25.3,24.8,26.8,25.5,26.2,25.5,26.4,26,26.3,26.3,25.5,25.4,25.4]}},{"b":8,"v":{"total":[10.9,10.9,10.7,11.5,10.9,11.8,11.2,11.4,10.9,11,11.4,11.2,10.3,12,11.3],"script":[9.4,9.2,8.6,9.1,8.6,10.3,9.3,9.2,8.8,9.6,8.8,9.1,8.3,9.3,8.9],"paint":[1.3,1.2,1.4,1.4,1.7,0.7,0.4,1,0.3,1.2,0.6,1.9,0.9,1.5,1.5]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.66]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[19.23]}},{"b":14,"v":{"DEFAULT":[11]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[42.3]}}]},
+{"f":61,"b":[{"b":0,"v":{"total":[40.6,39.9,42.4,42.7,37.7,37.1,37.6,38,39.7,35.6,42.6,41.4,38.7,40.8,40.2],"script":[13.1,14.5,13.5,14.7,14.6,13.4,13.4,13.9,13.6,13.2,14.9,14.5,13.2,14,14.7],"paint":[20.7,21.6,21.8,22.2,22.6,22,21.6,21.8,21.9,21.9,21.7,21.7,21.7,21.9,21.7]}},{"b":1,"v":{"total":[49.1,49.3,49.5,50.8,48.3,47,43.9,43.6,48.2,47.8,47.7,49,47.6,49.3,48.6],"script":[20.1,19.5,19.8,20.5,19.8,20.3,20.5,20.2,19.5,20.1,19.8,19.3,20.2,20.1,19.9],"paint":[23.1,23,23.3,23.2,23.2,23.1,22.9,23,23.3,23,22.7,23.3,23.1,23.3,23]}},{"b":2,"v":{"total":[56.5,22.3,58.5,20.5,20.9,58.3,20.7,19.5,59,20.5,20.1,57.7,21.9,58.8,21.7],"script":[6,7.8,7.5,6.4,7.1,6,6.3,6.5,7.4,6.6,6.9,6.5,6.8,7.4,7.6],"paint":[11.4,12.9,12.6,12.3,11.8,14.2,11,11,12.6,12.7,12,12.7,11.4,12.9,13]}},{"b":3,"v":{"total":[11.9,15.7,13.8,13.8,14.2,15.6,10.5,9.8,10.8,9.5,15.7,15.6,9.6,16.8,15.6,11.4,9.3,13.6,12.1,10.9,15,11.9,12,13.4,11.4],"script":[7.4,6,5.5,6.2,5.9,6,5.2,5,5.2,5.6,6.7,6.9,5.5,6,5.8,6.2,5.1,5.5,6.2,4.3,5.7,5.2,5.2,4.6,6],"paint":[4,3.5,3.1,3.6,3.7,3.7,2.7,2.8,4.7,2.8,3.1,2.8,3,4.8,3.6,3.6,3.2,3.9,4,2.9,5.2,2.3,3,3.3,3.7]}},{"b":4,"v":{"total":[109.2,147.9,145.8,145.3,108,147.3,107.8,145.8,143.9,104.9,105.4,145.6,148.2,105.8,146.1],"script":[17.1,18.5,18.4,18,18.6,17,17,17.5,17.9,16.9,16.9,18.9,17.5,16.4,17.8],"paint":[89.1,88.7,86.5,86.2,86.5,89.8,87.5,87.4,85.3,86,86,85.9,92.6,85.9,85.3]}},{"b":5,"v":{"total":[15,15.6,14.9,14.7,15.2,15.8,15.7,15.9,15,16.4,15.4,14.6,16.1,19,14.7],"script":[2.7,2.6,2.6,2.4,2.9,2.5,2.5,2.7,2.8,2.7,2.5,2.4,2.7,3.1,2.7],"paint":[11.4,11.2,10.9,11,11.1,12.5,11.9,12.1,11,11.2,11.4,11.1,12.1,11.7,10.7]}},{"b":6,"v":{"total":[361.7,351.7,354.9,352.6,362.6,353.7,355.3,359.7,359.2,357.1,354.9,364.1,352.6,359.9,352.1],"script":[126.4,122.2,126.2,123.7,128.6,124,121.2,128.5,128.5,123,123.7,128.6,123.6,126.4,122.7],"paint":[225.1,224.7,224.3,224.6,227.8,225.4,224,225,224.9,224.9,222.6,225.9,224.7,228.8,225]}},{"b":7,"v":{"total":[53.6,54.7,55.1,42.4,42.6,52.9,44,55.2,53.7,52.7,42.8,53,53.9,54.2,53.1],"script":[14.6,15.2,15.1,15.2,14.8,13.9,15.7,14.4,14.8,13.8,15.3,14.3,14.9,14.7,14.2],"paint":[26.4,26.5,26.7,26.5,26.5,26.8,27.1,28.8,26.4,26.8,26.2,27.6,26.4,26.8,26.8]}},{"b":8,"v":{"total":[66.2,66.2,22.9,68.6,21.9,23.1,23.4,23.9,68.2,23.5,68.3,22.8,22.8,21.3,68.5],"script":[19.6,18.9,18.5,18.4,18.3,18.9,18.8,19.2,18.1,18.7,17.3,18.4,19.2,17.9,17.5],"paint":[2.1,3.1,2,3.9,2.1,2.8,3.9,3.8,3.9,2.9,2.9,2.7,2.3,2.4,3.9]}},{"b":9,"v":{"DEFAULT":[0.78]}},{"b":10,"v":{"DEFAULT":[4.25]}},{"b":11,"v":{"DEFAULT":[4.42]}},{"b":12,"v":{"DEFAULT":[4.06]}},{"b":13,"v":{"DEFAULT":[32.91]}},{"b":14,"v":{"DEFAULT":[48.3]}},{"b":15,"v":{"DEFAULT":[16.6]}},{"b":16,"v":{"DEFAULT":[66.9]}}]},
+{"f":62,"b":[{"b":0,"v":{"total":[25.9,25.6,25.6,25.8,25.9,25.5,25.8,25.6,25.7,25.9,25.4,26.1,25.3,26,26.3],"script":[4.1,3.9,3.8,4,4.1,3.9,3.8,3.8,3.9,3.9,3.8,3.8,3.9,4.1,4.2],"paint":[21.5,21.3,21.4,21.5,21.4,21.2,21.6,21.4,21.4,21.6,21.3,21.8,21.1,21.5,21.7]}},{"b":1,"v":{"total":[29.7,29.1,29.3,29.2,28.8,29,29.2,29.2,29.2,29,29.5,29.3,29.3,29.6,29.3],"script":[6.2,6.1,6.2,6.2,6.1,6,6.2,6.2,6.2,6.1,6.1,6.3,6.2,6.2,6.2],"paint":[22.9,22.4,22.6,22.4,22.2,22.5,22.5,22.4,22.4,22.4,22.8,22.5,22.5,22.8,22.6]}},{"b":2,"v":{"total":[17.5,17.4,17.6,18.1,18.2,18.5,18.4,18.7,18,20.4,18,17.5,17.4,20.1,21.2],"script":[5.6,6.2,5.9,5.9,6.3,6.7,5.6,6.3,5.8,6.1,6.2,6.5,5.3,7.3,7.3],"paint":[11.1,9.4,9.6,10.9,9.5,9.1,10.3,10.1,10.3,12.8,9.6,9.2,10.1,11.1,11.5]}},{"b":3,"v":{"total":[6.7,6.5,7,6.7,6.1,6.9,6.4,6.5,7,6.4,7.3,8.1,6.5,6.4,6.7,7.2,6.5,6.3,5.7,6.9,7.5,8.5,7.3,6.5,5.6],"script":[4.2,3.4,4.3,4.8,4.1,4.2,4.4,3.8,4.5,4.5,4.4,5.2,3.7,3.9,4.5,4.6,4.1,3.9,3.7,4.5,4.9,5.4,4.9,4.2,3.5],"paint":[1.5,2.1,2.5,1,1.2,2.5,1.2,2,1.3,1,2.8,2.4,2.7,1.6,1.1,2.5,2.2,1.4,1.1,1.3,2.2,2.3,1.6,1.3,2]}},{"b":4,"v":{"total":[20.4,20.4,19.5,19.1,19.1,19.6,20.2,18.4,20.5,19.5,18.6,20.4,19.5,19.7,19.5],"script":[5.8,6.5,5.7,5.2,6,6.1,6.5,5.2,5.8,5.7,5.4,6.3,5.8,5.4,5.5],"paint":[13,11.7,12.6,11.9,11,11.8,12.1,11.4,12.8,11.6,12.5,12.9,11.3,12.6,12.4]}},{"b":5,"v":{"total":[12.8,13.4,12.8,13,13.1,13.3,12.8,13.9,12.9,13.1,13.4,13.3,13.1,13.4,13.1],"script":[2.8,2.9,2.5,2.6,2.6,2.8,2.5,3,2.8,2.9,2.8,2.6,2.7,2.7,2.7],"paint":[9.1,9.9,9.5,9.8,10.1,9.8,9.6,10.2,9.3,9.6,10,10.1,9.5,9.9,10]}},{"b":6,"v":{"total":[271.4,270.4,271.4,273,272.2,270.3,274.3,270.1,274,271.2,273.7,273.7,271.2,273.8,271.5],"script":[41.4,41,41.2,41.6,42.1,40.9,41.4,42.1,42.1,41.4,41.8,41.7,41.4,41.1,41],"paint":[223,222.2,222.3,224.2,223.1,222.3,225.8,220.8,224.7,222.7,224.1,224.8,222.5,225.7,223.3]}},{"b":7,"v":{"total":[32.4,32.2,32.4,32.5,32.8,31.9,32.6,32.5,32,32.5,33.7,32.5,31.8,32.4,33.1],"script":[5.7,5.8,5.8,5.7,5.8,5.6,5.7,5.7,5.8,5.9,6.3,5.8,5.7,5.7,5.8],"paint":[25.7,25.5,25.6,25.8,25.9,25.4,26.1,25.8,25.3,25.7,26.4,25.8,25.1,25.8,26.4]}},{"b":8,"v":{"total":[9.9,10.8,9.5,9.5,9.6,10.2,9.8,9.5,10,10.1,9.3,9.6,9.8,10.5,10.5],"script":[8,8.9,8.1,7.9,7.7,8.5,8.3,7.3,7.9,8.5,7.7,7.8,7.7,8,8.2],"paint":[1.1,0.6,0.3,0.9,0.4,0.5,1.3,1.2,0.4,1.1,0.2,0.6,1.1,1.9,1.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.66]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[20.33]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[7.7]}},{"b":16,"v":{"DEFAULT":[56.9]}}]},
+{"f":63,"b":[{"b":0,"v":{"total":[27.5,27.2,26.7,26.7,27.9,27.7,27.2,27.5,26.9,27.3,26.6,27.6,27.6,27.6,27.1],"script":[4.7,4.6,4.2,4.2,4.9,4.8,4.7,4.8,4.8,4.7,4.2,4.8,4.8,4.7,4.7],"paint":[22.3,22.2,22.2,22.1,22.6,22.5,22.1,22.3,21.8,22.2,22.1,22.4,22.4,22.5,22]}},{"b":1,"v":{"total":[29.4,29.4,29.7,29.5,30.2,29.8,29.7,29.9,29.5,29.8,30.3,30.1,29.8,29.9,30],"script":[6,6.5,6.5,6.5,6.6,6.4,6.6,6.6,6.6,6.6,6.7,6.4,6.5,6.7,6.8],"paint":[22.8,22.4,22.7,22.5,23,22.9,22.5,22.7,22.4,22.7,23,23,22.8,22.6,22.7]}},{"b":2,"v":{"total":[9.9,10,10.4,10.2,10.2,10.8,11,11.1,9.9,11.5,10.9,10.5,10.6,10.4,11],"script":[0.1,0.1,0.6,0.8,0.1,0.1,1,0.8,0.1,1.1,0.9,0.5,0.2,1.1,0.8],"paint":[8.6,8.6,8.8,8.3,8.9,9.7,8.7,9,8.7,9.4,8,8.2,8.8,8.3,9]}},{"b":3,"v":{"total":[7.1,2.6,2.2,2.3,1.8,2.5,2.1,2.3,2.5,2.2,2.5,2,2.7,2.8,2.5,3.3,2.3,2.7,3.3,2.3,1.9,2,2,1.5,2.5],"script":[0,0,0,0.4,0,0.6,0,0.5,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0],"paint":[1.7,1.6,1.8,1.8,1.7,1.7,1.2,1.2,2.3,2,1.6,1.1,2.3,2.5,1.4,2.5,0.4,2.5,2.1,1.5,1,0.8,1.9,1.1,1.5]}},{"b":4,"v":{"total":[12.4,12.5,12.7,12.9,12.7,13.1,11.9,12.5,13,12.5,12.9,13.3,12.8,12.2,12],"script":[0.1,0.3,0.1,0.2,0.2,0.1,0.1,0.1,1,0.2,0.1,0.1,0.8,0.1,0.1],"paint":[11.1,11,11.4,11.1,11.5,12,11.1,10.7,11.7,11,11.2,12.1,11.3,11.3,10.8]}},{"b":5,"v":{"total":[10.5,10.1,10.3,10.2,10.2,10.3,10,10.3,9.9,10.1,10.7,10.3,10.4,10.1,10.9],"script":[0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.1],"paint":[9.9,9.5,9.6,9.8,9.5,9.8,9.3,9.8,9.2,9.1,9.6,9.6,9.7,9.6,10.1]}},{"b":6,"v":{"total":[275,274.8,273.9,273.8,273.7,273.9,276.2,271.3,276,277.3,276.4,274.1,273.6,274.6,275.9],"script":[45,44.5,44.7,44.2,43.7,44.4,45,42.9,44.4,45,44.4,43.5,44,44.3,44.3],"paint":[222.7,223.1,222,222.3,222.6,222.2,223.7,221,224.2,224.9,224.7,223.4,222.1,222.9,224.2]}},{"b":7,"v":{"total":[31.8,31.8,31.8,31.7,32.3,32.1,32.5,32.4,31.9,32,31.9,31.6,31.8,31.3,32],"script":[4.7,4.5,4.7,4.1,4.8,4.7,5,4.4,4.5,4.6,4.7,4.5,4.4,4.3,4.6],"paint":[26.4,26.5,26.3,26.8,26.8,26.7,26.7,27.3,26.5,26.5,26.5,26.4,26.6,26.2,26.7]}},{"b":8,"v":{"total":[9.4,9.3,9.5,9,8.8,9.6,10,9.6,10.3,9.8,10,10.4,10,8.9,9],"script":[7.6,7.4,7.8,7.5,7,7.4,7.9,7.5,7.9,7.9,7.3,8.5,8.2,7.3,7.6],"paint":[1,1.6,0.3,0.6,0.9,1.3,1.9,1.3,2.3,1.1,1.6,1.7,0.7,0.4,0.2]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.37]}},{"b":11,"v":{"DEFAULT":[2.45]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[17.34]}},{"b":14,"v":{"DEFAULT":[6.8]}},{"b":15,"v":{"DEFAULT":[2.8]}},{"b":16,"v":{"DEFAULT":[35.3]}}]},
+{"f":64,"b":[{"b":0,"v":{"total":[23.3,23.2,23.1,22.8,23,23.3,22.9,22.9,23.2,23,23.2,23.1,23,23,22.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.4,21.2,21.3,21.6,21.2,21.3,21.5,21.3,21.6,21.4,21.3,21.4,21.2]}},{"b":1,"v":{"total":[26.3,25.6,26.2,25.6,25.8,25.5,25.8,25.5,26.9,25.7,25.9,26,25.8,25.9,26.2],"script":[3.3,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.7,3.2,3.2,3.4,3.3,3.1,3.4],"paint":[22.5,22,22.5,22,22.1,22,22.3,21.9,22.7,22.1,22.3,22.2,22.1,22.4,22.4]}},{"b":2,"v":{"total":[10.7,11,10.9,12.5,10.5,10.3,10.8,10.3,10.1,10.1,10.4,9.9,10.2,10.9,10],"script":[1,0.8,0.8,0.8,0.6,0.8,0.9,0.1,0.5,0.5,0.5,0.1,0.1,0.6,0.5],"paint":[8.4,8.6,8.8,10.5,9,8.6,9,8.6,9.1,8.7,9.2,8.6,9.2,9.4,8.1]}},{"b":3,"v":{"total":[2.5,1.7,2.1,2.5,2.4,2.8,2,2.8,2,1.7,2.1,2.3,2.4,2.3,2.5,1.8,2.1,2.8,1.9,2.8,2.6,2.7,2.6,2.7,2.1],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.1,0.1,0.6,0.2,0.3,0.7,0.4,0.1,0.6,0.8,0.5,0.4,0.1],"paint":[1.9,0.7,1,2.3,2.2,1.6,1.1,1.7,1.8,0.9,1.2,1.4,1.4,1.5,1.8,1,1.7,1.9,1.4,1.9,1.6,1.8,1.4,2.2,1.7]}},{"b":4,"v":{"total":[13.7,13.5,14.4,14.2,13.9,13.7,13.2,15.1,13.9,14.6,13.3,14.4,12.5,13.8,13],"script":[0.9,0.6,1.5,0.6,1.1,0.9,0.6,0.2,0.6,1.3,0.2,0.6,0.5,0.6,0.8],"paint":[11.6,12.2,12,12.1,12,11.6,11.6,13.6,12.2,12,11.4,12.7,11.1,11.2,10.9]}},{"b":5,"v":{"total":[10.4,10,10.1,10.3,10.2,9.9,10.2,10.1,10.1,10,10.2,10.4,10.1,10.9,10.5],"script":[0.3,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.2],"paint":[9.6,9.1,9.5,9.3,9.4,9.5,9.3,9.4,9.5,9.5,9.6,9.4,9.4,10,9.5]}},{"b":6,"v":{"total":[245.9,244.4,246.5,246.1,244.4,248.4,245.7,246.9,246.7,246.7,246.1,246.5,244.3,246.6,245.7],"script":[14.9,15.5,14.8,15.4,15.1,15.2,14.9,15.1,15.3,14.8,15.1,15.4,14.9,15.1,14.9],"paint":[223.8,221.8,224,223.5,222.3,225.8,223.7,224.8,224,224.8,224,223.8,222.3,224.1,223.5]}},{"b":7,"v":{"total":[27,27.1,26.8,27.1,26.9,27.2,27,26.8,27,26.8,27.1,26.7,26.8,27.9,27],"script":[1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4,1.5,1.4],"paint":[25,25,24.8,25.1,24.8,25.1,24.9,24.6,24.9,24.8,25,24.6,24.7,25.7,24.9]}},{"b":8,"v":{"total":[9,9.1,9.7,9.2,8.9,9.4,8.7,8.7,9.4,9.1,10.3,9.3,10.1,9.4,9.8],"script":[7.4,7.3,7.2,7.5,7.7,7.2,7.1,6.9,7.4,7.4,8.9,7.5,8,7.7,7.9],"paint":[0.6,0.3,1.2,1,0.2,1.9,0.2,1,1.8,1,1.1,0.5,1.3,0.6,1.8]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.02]}},{"b":11,"v":{"DEFAULT":[2.02]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[14.16]}},{"b":14,"v":{"DEFAULT":[12.3]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[45.2]}}]},
+{"f":65,"b":[{"b":0,"v":{"total":[23.3,23.4,23.7,23.6,23.5,25.7,23.6,23.7,23.9,23.4,23.9,23.6,23.7,23.8,23.7],"script":[2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.2,2.1,2.2,2.1,2.1,2.1,2.1],"paint":[20.8,20.9,21.2,21.2,21,23.1,21.1,21.2,21.4,20.9,21.4,21.1,21.2,21.3,21.2]}},{"b":1,"v":{"total":[27.3,26.8,26.8,26.7,27.3,27.5,27,26.9,27.2,27,26.9,26.9,26.9,27,26.9],"script":[4.5,4.4,4.1,4.1,4.4,4.5,4.5,4.1,4.5,4.2,4.1,4.1,4.1,4.2,4.1],"paint":[22.3,22,22.3,22.3,22.5,22.6,22.1,22.4,22.2,22.4,22.4,22.4,22.3,22.4,22.4]}},{"b":2,"v":{"total":[10.6,10.3,10.6,10.5,11.4,11.5,10.8,10.7,11.4,10,11.2,11.2,11.4,11.1,12.5],"script":[0.6,0.6,1.3,0.2,0.2,0.9,1.4,0.6,0.6,0.9,1.3,0.5,0.1,0.8,1.1],"paint":[8.5,9,7.3,8.5,10,9.8,8.4,8.8,9.7,7.9,9,9.7,10.2,9.5,9.5]}},{"b":3,"v":{"total":[8.3,2.5,2.1,2,2.8,2.9,1.8,2.2,2.7,2.1,2.6,2.1,1.9,2.1,2.7,2.8,3.4,1.9,2.4,2.4,1.9,2.6,3.7,2.3,2.4],"script":[0.1,0.1,0.4,0.2,0.1,0.9,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.9,0.9,0.8,0.1,0.5,0.1,0.1,0.1,0.9,0.2,0.1],"paint":[2.8,2.3,1.6,1.1,2.3,1.6,1,2,1.8,1.9,1.7,1.5,0.9,1.9,1.2,1.4,1.4,1.1,0.4,2.1,1.1,1.9,1.2,2,1.9]}},{"b":4,"v":{"total":[12.4,13.1,13,12.8,12.9,13.3,14.9,12.9,13,12.9,13.2,12.6,12.4,13.4,12.1],"script":[0.5,0.6,0.1,0.6,0.1,1,0.1,0.1,1,0.1,0.1,1,0.1,0.9,0.4],"paint":[10.7,11.1,12,11.6,11.8,11.7,14.2,12,10.6,11.9,11.9,10.2,9.8,11.3,10.3]}},{"b":5,"v":{"total":[10.4,10.4,10.4,10.1,10.3,10.2,10.5,10.1,10.2,10.1,10.2,10.2,10.3,10.3,9.8],"script":[0.3,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.4,0.1,0.1,0.1],"paint":[9.4,9.7,9.7,9.4,9.6,9.7,9.5,9.2,9.2,9.5,9.5,9.2,9.6,9.7,8.9]}},{"b":6,"v":{"total":[254.7,256.8,256.2,254.5,255.3,256.1,253.8,253.4,254.8,256.3,253.9,253.8,256.4,254.9,253.6],"script":[24.4,24.3,24.1,24.3,24.1,24.8,24.3,24.3,24.7,23.8,24.2,24.3,24.3,24.2,24.4],"paint":[223.1,225.2,224.8,223.1,223.9,224.1,221.9,222,222.8,225.1,222.4,222.2,224.5,223.6,222]}},{"b":7,"v":{"total":[27.8,27.5,28.3,27.7,27.5,28.4,26.5,27.9,27.5,27.6,29.7,28.2,28.4,27.8,28.1],"script":[2.2,2.1,2.2,2.1,2.1,2.4,2.1,2.1,2.2,2.2,2.4,2.4,2.5,2.1,2.4],"paint":[24.9,24.7,25.4,24.8,24.7,25.2,23.8,25,24.6,24.8,26.5,25.1,25.2,25,24.9]}},{"b":8,"v":{"total":[9.8,9.3,9.4,9.9,10.3,9.7,10,9,9.2,9.4,9.5,9.8,9.5,10,10.2],"script":[7.8,7.9,8,7.5,8.2,7.4,7.8,7.5,7.7,7.8,7.2,7.8,8.1,8.2,8.1],"paint":[0.9,0.3,0.6,2.1,0.7,2.1,1.9,0.7,0.6,0.2,2.2,1.2,0.6,0.3,1.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.35]}},{"b":11,"v":{"DEFAULT":[2.37]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[17.14]}},{"b":14,"v":{"DEFAULT":[15.2]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[41.9]}}]},
+{"f":66,"b":[{"b":0,"v":{"total":[52.3,47.1,42.1,42.9,42.9,41.8,42.8,41.7,48.2,41.8,43.1,43.7,41.7,47.7,44.7],"script":[19.3,19.2,19.6,19.7,19.7,19.5,19.9,19.9,19.4,19.9,19.6,19.8,19.7,19,19.5],"paint":[20.9,21.3,21.3,21.3,21.7,21,21.3,21,21.4,20.9,21.6,21.3,21.1,21.3,21.2]}},{"b":1,"v":{"total":[68.1,62.2,56.6,58.2,59.3,58.9,63.2,62.8,58.3,58.1,58.5,56.8,59.2,56.9,57.5],"script":[32.5,33.8,31.2,33.1,33.6,32.7,32.1,33.3,32.9,32.4,34.2,32.6,32.6,33,32.9],"paint":[23.4,22.8,22.8,23.4,23.2,23.3,19.2,23.2,23.4,23.2,22.6,23.1,22.9,23,22.7]}},{"b":2,"v":{"total":[46.4,62.8,49.4,63.7,45.4,64.1,47.4,46.7,48.4,63.4,62.5,62.9,64.6,48.2,66.4],"script":[32.8,30.3,34.7,32.7,31.4,33.4,33.3,32.6,35,32.2,32.1,31.6,33.1,32.1,35.4],"paint":[13.2,12.5,12.3,12.9,11.7,13,12.3,12.9,13.2,11.9,13.1,14.3,12.8,14.7,13.2]}},{"b":3,"v":{"total":[38.4,41.5,41.1,40.2,38.5,39.7,38.4,39.6,37.7,40.3,37.9,39.1,37.6,41.1,38.7,38.6,38.5,37.7,38.3,36.6,38.6,39.8,42,38,40.5],"script":[32.5,32.4,33.7,31.4,32.1,34.7,33,33.5,31.5,33.9,32.3,32.7,32.1,33.6,33,31.7,32.4,31.9,32.9,31.4,34.1,32.9,36.8,30.7,33.1],"paint":[3.4,3.1,4.2,4.4,4.6,3.7,4.8,3.4,4.3,4.5,2.6,4.2,3.4,4.3,4.7,3.3,3.9,3,4.5,3,3,3.6,3.5,3.3,3.2]}},{"b":4,"v":{"total":[45.9,48,65.8,64,51.1,65.7,61.7,63.5,65.8,64.5,47,64.6,64.9,62.4,63.6],"script":[27.9,29.7,30.3,29.3,30.2,29.2,26.5,29.2,30.4,29.2,29.5,31,30.2,27.9,29.6],"paint":[15.9,16.4,16,16,18.8,15.8,16.2,16.9,15.3,15.6,15.9,15.8,16.2,15.2,16.3]}},{"b":5,"v":{"total":[40.6,39,35.8,42.5,42.9,32.6,37.6,39.6,37.8,38.6,38,36.7,40.5,32.5,39.1],"script":[16.1,15.6,16.5,15.3,14.7,16.6,17.3,16.1,16.9,15.8,15.6,15.7,16.1,15.8,16.3],"paint":[13.2,12.9,12.7,12.4,12.7,13,13.1,13.3,13.4,13.1,13.7,13,13.5,13.6,13.3]}},{"b":6,"v":{"total":[417.7,407.8,416.4,408.9,410.2,406.7,413.4,413.2,407.4,408.2,407.3,411.5,408.2,409.1,409.3],"script":[182.3,183.7,184.1,182,182.5,182.2,185.3,185.1,182,182.9,182.1,185.3,182.1,183.1,183.3],"paint":[220.7,219.8,219.6,220.8,221.8,220.5,222.7,220.6,220.5,220.2,220.2,219.9,221.4,221.2,220.9]}},{"b":7,"v":{"total":[62.2,61,64,61.5,61.7,61.6,61,61.9,61.5,61.4,61.6,61.3,61.6,57.2,61.9],"script":[25.4,25.1,26.5,25.3,25.5,25.3,25.1,25.5,25.3,25.2,25.1,25.2,24.9,24.9,25.6],"paint":[26.6,26.4,26.8,26.7,26.8,27,26.5,26.8,26.6,26.8,26.8,26.7,27.2,26.6,26.8]}},{"b":8,"v":{"total":[24.5,47.6,43.2,44.1,43.3,44.7,44.5,43.1,48.6,44.6,43.5,43.8,43.3,46.1,43.1],"script":[20.4,20.7,19.9,20.5,19.3,19.7,20.3,19.5,19.9,19.5,19.6,18.7,20,19.5,20.4],"paint":[2.8,1.3,2.6,2.8,3.5,2.5,3,3,3.4,2.3,3.3,3.7,2.2,2.6,2.6]}},{"b":9,"v":{"DEFAULT":[2.59]}},{"b":10,"v":{"DEFAULT":[8.07]}},{"b":11,"v":{"DEFAULT":[10.85]}},{"b":12,"v":{"DEFAULT":[8.17]}},{"b":13,"v":{"DEFAULT":[48.77]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.6]}},{"b":16,"v":{"DEFAULT":[490.3]}}]},
+{"f":67,"b":[{"b":0,"v":{"total":[28.7,28.8,28.3,29,28.8,28.6,29,28.1,28.5,28.3,28.7,28.4,28.2,28.8,28.6],"script":[5.9,6.1,6,6.2,6.1,6,6.1,5.7,5.8,5.8,5.8,5.9,6,6,6.1],"paint":[22.2,22.1,21.8,22.2,22.1,22.1,22.3,21.9,22.1,22,22.3,22,21.7,22.3,22]}},{"b":1,"v":{"total":[33,33.3,32.8,32.6,32.6,32.6,32.9,32.5,32.4,32.5,32.6,32.6,33,32.7,33],"script":[10.5,10.4,10.2,10.2,10.1,10.2,10.5,10.3,10.2,10.2,10.4,10.2,10.5,10.3,10.6],"paint":[22,22.3,22,21.8,21.9,21.7,21.7,21.6,21.6,21.7,21.6,21.8,21.9,21.8,21.8]}},{"b":2,"v":{"total":[21.6,20.7,21.5,22.1,22.2,22.6,22.6,22.7,22.4,21.3,21.8,21,22,21.6,21.8],"script":[6.4,6.1,5.9,6.7,6.1,6.6,6.6,6.8,6.5,5.6,6.2,6.5,5.7,6.1,6.4],"paint":[12.6,12.5,13.5,13.3,14.5,14.3,14.3,13.3,14.4,14.5,12.7,12.9,14.9,14,13.2]}},{"b":3,"v":{"total":[11.2,11.3,11.6,11.3,11.4,11.6,11.6,10.8,11.5,11.1,11.9,11.6,12,11.8,12.5,11.5,11.1,11.6,12.6,10.6,12,11.7,11.7,11.7,11.7],"script":[5.5,5.8,5.8,5.3,5.6,6.2,5.8,5.5,5.7,5.5,5.6,6.3,5.9,6.3,6.6,6.4,5.7,5.8,6.7,5.5,5.6,6.4,5.8,5.8,6.2],"paint":[4.2,3.5,4.5,4,4.2,3.6,4.7,3.9,4.5,3.7,4.7,3.7,5.2,4.8,4.1,4.5,3.6,4.5,5.2,3.6,4.9,3.9,4.8,5.6,3.6]}},{"b":4,"v":{"total":[20.4,21.1,21,20.4,20.3,20.7,19.9,20.3,20.5,19.7,20.4,20.9,20.2,22.3,22],"script":[5.5,5.7,5.8,5.3,5.2,5.2,5.6,5.7,5.5,4.9,5.3,6.1,5.3,5.5,6.4],"paint":[12.7,12.3,13.3,13.2,13.8,12.8,12.5,12.2,13.9,13.3,14,13.4,12.8,14.9,12.8]}},{"b":5,"v":{"total":[14,14,14.5,14.8,14.4,14.2,14.4,14.7,13.9,14.5,14.3,14,14.4,14.7,14.5],"script":[3,3,3.1,3.1,3.1,3.2,3.3,3.2,3,3.3,3.1,3,3,3.1,3.1],"paint":[10,10,10.8,10.9,10.6,10.2,10,10.4,10.3,10.2,10.7,10.1,10.7,11,10.8]}},{"b":6,"v":{"total":[308,286.8,290.4,287.2,289.5,288.6,289.1,284.1,295.6,286.4,288.2,288.4,288.8,288.6,289],"script":[53.6,53.6,53.6,52.6,54,52.7,53.4,52.8,54.4,53.5,52.9,53.3,52.5,54.6,52.4],"paint":[246.5,225.4,229.1,226.8,227.7,228.2,227.5,223.5,232.4,224.8,227.5,227.3,228.4,225.9,228.7]}},{"b":7,"v":{"total":[37,37.2,36.8,37,36.9,36.8,36.7,37.4,37.7,37.9,36.8,36.9,37.2,37,37.2],"script":[8.8,8.9,8.7,8.8,8.6,8.6,8.7,8.9,8.7,8.6,8.8,8.8,8.6,8.7,8.9],"paint":[27.1,27.4,27.2,27.2,27.3,27.2,27.1,27.5,27.8,28.2,27,27.1,27.5,27.3,27.3]}},{"b":8,"v":{"total":[15.5,15.4,17,15.2,15.6,15.7,16.8,15.5,15.1,15,15.2,15.4,15,16.1,15],"script":[13.6,13.9,15,12.8,13.8,14.2,14.9,13.8,13.5,12.7,12.8,13.5,12.9,13.4,12.3],"paint":[1,0.5,1.8,2.2,0.9,0.6,1,0.2,0.7,1.4,1.1,1,1,1.7,1.7]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[3.34]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[0.72]}},{"b":13,"v":{"DEFAULT":[27.18]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[50]}}]},
+{"f":68,"b":[{"b":0,"v":{"total":[35.1,33.4,35.7,32.3,35.3,33.7,34.6,33.3,29.1,35,34.1,35.4,34.3,34.1,35.1],"script":[5.7,6.2,6.2,6.6,6.4,6.3,6.3,6.2,6.4,6.5,6.4,6.2,6.5,6,6],"paint":[20.9,21.4,21.2,21.8,21.7,21.6,21.2,21.3,22.4,21.6,21.4,22.1,21.8,21.5,21.6]}},{"b":1,"v":{"total":[31.9,35.3,32.7,35.8,33,33.1,35.4,34.5,38.1,35,34.6,38.2,34.1,35.9,34.9],"script":[8.9,9,9.3,8.8,9.1,8.8,8.8,9.1,9.1,9.1,9.1,9.7,9.3,8.9,8.9],"paint":[22.6,23.1,22.8,22.9,22.4,23,23.3,22.9,23.3,22.9,22.7,22.7,23.3,22.6,22.6]}},{"b":2,"v":{"total":[38,39.1,38.2,37.8,37.7,21.5,39.1,37.6,38.3,21.8,36.9,37.4,21.1,37.6,37.1],"script":[10.6,10.4,9.9,9.7,10.6,8.8,10.1,9.9,10.1,10,10.1,10.7,10.1,10.5,9.3],"paint":[11.2,11.1,10.5,12,10.3,11.1,12.2,10.3,11,10.7,11.4,11.1,8.9,10,10.5]}},{"b":3,"v":{"total":[11.6,10.6,12.6,15.3,10.7,11.9,13.3,14,13.5,10.6,11.1,12.9,14,15,11.3,14.7,10.7,11.3,13.3,12.4,10.4,10.8,10.9,10.4,11],"script":[7.5,7.2,7.4,7.8,7.7,9.2,7.3,7,7.5,8.1,8.1,8.5,7.9,8.3,8.9,8.3,8.2,7.8,7.3,8,7.9,7.9,8.1,7.6,7.8],"paint":[2,2.4,1.6,2.8,1.4,1.8,2.7,2.4,1.5,1.1,2.7,2.4,2.2,2,1.4,2.3,2.2,1.7,2.1,1.5,1.7,2.3,1.8,1.5,1.8]}},{"b":4,"v":{"total":[37.8,22.8,22.1,39.2,38.7,21.2,38.4,37.9,38.9,38.3,38.3,22.1,37.7,38.3,38.6],"script":[7.6,8.2,8,8.9,7.8,7.5,7.9,8.6,8.1,7.1,8.2,7.6,7.1,7.8,8.2],"paint":[13.7,13.1,13.1,13.1,13.7,11.2,12.9,12.7,12.7,13.3,13.3,12.5,14.4,14.2,13.2]}},{"b":5,"v":{"total":[15.1,17.9,13.3,13.5,14.6,15.8,12.7,13.5,13,14,13.4,13.2,13.4,14.1,13.3],"script":[3.9,4,4.1,4.3,3.9,4,3.4,4,3.9,3.9,4.2,4.1,4,4,3.9],"paint":[8.8,9.1,8.5,9,8.7,9.4,8.8,9.1,9,9.1,9.1,9,9.1,8.8,9.2]}},{"b":6,"v":{"total":[285.1,290.5,290.6,294.5,293.3,292.9,289.6,298.4,290,293,293.6,292.2,288.9,292.7,297.6],"script":[68.7,70.3,69.6,70.7,70.2,69.6,70.4,70.1,70.7,70,70.5,70.3,70.4,69.8,69.6],"paint":[213,214.1,213.3,216.6,215.9,215.6,215.5,217.6,215.6,215.3,215.5,213.6,215.2,214.1,219.1]}},{"b":7,"v":{"total":[34.2,34.5,39.9,39,40.1,38.9,39.1,34.5,34.1,39.7,34.3,39.3,41.7,41.8,34.9],"script":[8.5,8.5,8.6,8.1,8.6,8.3,8.4,8.5,8.4,8.5,8.4,8.8,8.1,8.6,8.8],"paint":[25.2,25.5,25.6,25.3,25.8,25.1,25.2,25.5,25.2,25.6,25.5,24.8,25.7,25.3,25.6]}},{"b":8,"v":{"total":[12.3,13.2,12,29.5,28.1,28.5,28.6,12,12.3,27.6,11.9,11.7,27,28.2,27.3],"script":[10.7,9.6,9.9,11.9,10.6,10.9,11.1,10.4,10.5,9.6,10.4,9.8,9.5,10.2,9],"paint":[0.6,2,1.6,1.5,1.1,1.5,1,0.3,1.1,1.9,0.3,0.9,0.3,1.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[3.98]}},{"b":11,"v":{"DEFAULT":[5.4]}},{"b":12,"v":{"DEFAULT":[0.91]}},{"b":13,"v":{"DEFAULT":[32.15]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[11.7]}},{"b":16,"v":{"DEFAULT":[56.4]}}]},
+{"f":69,"b":[{"b":0,"v":{"total":[26.4,26.1,26.6,26.2,25.9,26.5,26.2,26.1,26.4,26.6,27.9,26.1,26.3,26.5,26.2],"script":[4.6,4.5,4.9,4.6,4.5,4.6,4.6,4.6,4.6,4.6,5.7,4.6,4.6,4.6,4.5],"paint":[21.4,21.2,21.3,21.3,21,21.5,21.3,21.2,21.5,21.6,21.6,21.1,21.4,21.5,21.3]}},{"b":1,"v":{"total":[31.6,31,30.5,30.4,29.9,30,31.8,30.4,31.3,30,31.1,30.6,29.9,29.8,31.3],"script":[7.8,7.7,7.5,7.4,7.1,7.1,7.8,7.2,7.8,6.9,7.7,7.6,7,7,7.8],"paint":[23.2,22.8,22.5,22.4,22.3,22.4,23.3,22.6,22.9,22.4,22.9,22.4,22.3,22.3,22.9]}},{"b":2,"v":{"total":[11.5,10.7,10.8,11,10.9,13,11.3,11.4,11.3,15.5,10.8,11.5,11.4,10.9,11.3],"script":[1.6,0.9,1.4,1.1,1.4,1.8,1.6,1.1,1.1,2,1.2,1.3,1.3,1.2,1],"paint":[7.6,8.8,8.6,8.8,8,9.7,8.6,9.1,9.3,12.1,8.3,9.4,8.1,8.6,9.1]}},{"b":3,"v":{"total":[4.5,2.8,3,2.4,3.1,2.2,2.7,2.7,2.7,2.3,2.4,2.1,2.7,2.6,2.6,2.4,2.7,2.5,2.7,2.8,2.6,2.4,3.6,2.9,2.5],"script":[1,0.1,0.8,0.4,1.2,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.9,0.6,0.5,0.9,0.1,0.3,0.6,0.1,0.1,0.1,0.6,0.8,0.1],"paint":[1.8,1.6,2.1,1.7,1.3,1.5,2.2,1.3,2.5,1.1,2.2,1.6,1.3,1.6,2,1.4,2,2,1.5,2.5,1.7,1.8,1.8,0.4,1.9]}},{"b":4,"v":{"total":[14.9,13.9,14,15,16.1,15.4,14.7,14.3,13.8,14.4,14.3,14.3,14.1,14.1,14.7],"script":[1.5,1.1,1.5,1.3,1.1,1,1,1.6,1.1,1.6,1.3,1.5,1.3,1.8,1.4],"paint":[11.4,11,11.4,12.6,13.5,12.9,12.7,11.4,11.9,11.8,11.5,11.1,11.2,11.4,12.3]}},{"b":5,"v":{"total":[10.8,10.7,10.4,10.8,10.7,10.4,10.8,10.7,10.4,10.5,10.4,10.8,10.3,10.4,10.6],"script":[0.4,0.5,0.4,0.6,0.4,0.5,0.6,0.5,0.5,0.6,0.6,0.5,0.4,0.5,0.6],"paint":[9.6,9.9,9.2,9.6,9.3,9.1,9.7,9.6,9.2,9.7,9.5,9.4,9.5,9.6,9.8]}},{"b":6,"v":{"total":[274.8,274.9,276.4,275.6,276,281.1,276.1,277.8,275.7,277.5,276.7,276,276.6,275.4,279.9],"script":[54.4,54.9,54.2,54.7,54.6,54.5,54.4,57,55.1,54.8,54.2,54.1,54.4,54.5,54.2],"paint":[213.4,213.1,215.2,214,214.4,218.9,214.8,213.9,213.8,215.9,215.6,215.2,215.4,213.9,217.3]}},{"b":7,"v":{"total":[31.1,32.2,31.7,31.6,32.1,32,31.9,31.4,32,32.5,32,32,31.8,31.8,31.7],"script":[4.9,5.3,5.1,5.3,5.2,5.4,5.3,5.1,5.3,5.4,5.3,5.4,5.2,5.2,5.3],"paint":[25.5,26,25.7,25.4,25.9,25.7,25.7,25.4,25.8,26.2,25.7,25.7,25.7,25.6,25.5]}},{"b":8,"v":{"total":[9.7,10.5,10.6,9.8,9.9,10.9,10.2,10.6,10.3,10.7,9.8,9.8,10.1,10.9,10.6],"script":[8.6,8.4,7.8,8,8.5,8.9,8.7,8.8,8.8,8.8,8.3,8.7,8.3,9,8.4],"paint":[0.9,0.5,2,0.7,0.3,0.5,0.3,0.8,0.7,0.6,0.7,0.9,0.9,0.9,1.6]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[3.95]}},{"b":11,"v":{"DEFAULT":[3.98]}},{"b":12,"v":{"DEFAULT":[1.19]}},{"b":13,"v":{"DEFAULT":[29.81]}},{"b":14,"v":{"DEFAULT":[56.4]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[73.8]}}]},
+{"f":70,"b":[{"b":0,"v":{"total":[28.2,28.3,27.9,28.4,28.7,28.7,28.4,28.4,28.4,28.5,28.4,28.6,28,28.3,28.1],"script":[5.9,5.9,5.9,5.9,6,5.9,6,5.9,6,5.9,5.9,6,5.9,5.9,5.9],"paint":[21.8,22,21.6,22,22.2,22.4,22,22,22,22.2,22.1,22.2,21.7,22,21.8]}},{"b":1,"v":{"total":[32.7,33,32.8,32.6,32.5,32.8,33,32.7,33.3,33.4,32.5,32.8,32.8,32.9,33.9],"script":[8.6,9,8.9,8.9,8.8,9,8.9,8.9,9.7,9.7,8.8,8.7,8.9,9.2,9.9],"paint":[23.6,23.5,23.4,23.3,23.2,23.4,23.6,23.3,23.2,23.3,23.2,23.6,23.4,23.2,23.6]}},{"b":2,"v":{"total":[12.8,13.7,13.5,14.1,16.2,14.3,13.9,14.3,14.5,13.5,14.4,14,13,14.8,14.3],"script":[2.9,3,3.1,3.1,3.7,3.8,3.6,2.8,3.6,2.2,2.6,4,3.1,3.1,3.7],"paint":[8.6,9.6,7.9,10,10.6,9.3,8.9,10.4,9.9,10.1,10.5,9,8.5,10.5,8.9]}},{"b":3,"v":{"total":[6.5,7.3,7.1,6.5,6.9,6.2,7.8,6.8,7.5,6.7,6.8,7,6.5,6.9,7.1,6.4,6.6,7.2,6.3,6.6,6.7,6.4,6.7,6.8,6.3],"script":[4.4,5.2,4.8,4.3,4.3,4.6,5.3,4.3,5.2,4.1,4.5,4.8,4.5,4.5,4.7,4.4,3.6,4.6,4.2,4.4,4.4,4.2,4.6,4.5,4.1],"paint":[1.5,1.3,2.2,1.6,2.5,1,2.3,2,1.6,2.4,0.6,1.6,1.2,1.7,2.2,1.4,1.3,2.4,2,2,2.2,1.1,1.5,1.7,1.4]}},{"b":4,"v":{"total":[19.3,17.9,18.6,18.8,18.6,18.5,18.6,17.9,19.6,17.9,18.5,18.6,19.2,18.3,19.2],"script":[5.2,5.1,5.8,5,4.7,5.2,5.7,5,5.2,5.4,5.3,5.4,6,5.3,4.7],"paint":[12.4,11.6,11.2,12.7,12.3,11.5,10.6,11.1,13,10.8,12.4,11.6,11.8,12,13.5]}},{"b":5,"v":{"total":[12.9,12.9,12.8,12.7,12.4,12.8,12.9,12.9,12.8,13,12.9,13.2,13.2,12.8,13.1],"script":[2.5,2.4,2.5,2.4,2.5,2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.8],"paint":[9.7,9.6,9.6,9.6,9.7,9.8,9.8,9.9,9.6,9.8,10.1,10,9.9,9.8,9.7]}},{"b":6,"v":{"total":[367.7,365.8,363.4,366.5,368.2,364.7,365.5,363.5,366.6,364.7,364.5,366.2,362.9,365.6,371.9],"script":[142,140.6,138.6,140.8,140.2,139.6,140.9,138.6,141.5,139.6,140.4,139.8,138.7,141.3,140.4],"paint":[217.5,217.4,216.5,218,220.2,217.5,216.8,217.3,217.4,217.4,216.4,218.7,216.2,216.6,222.1]}},{"b":7,"v":{"total":[48.3,48.5,49.1,48.4,48.2,47.9,49.1,48.2,47.9,49.1,48.3,48,48.9,47.6,47.8],"script":[19.5,19.4,19.7,19.2,19.1,19.3,19.2,19,19.2,19.8,19.2,18.7,19.4,19,19.2],"paint":[27.9,28.2,28.5,28.3,28.2,27.8,28.9,28.3,27.9,28.5,28.1,28.4,28.6,27.8,27.7]}},{"b":8,"v":{"total":[19,18.4,18.2,19,19.2,18.9,20.5,19.4,18.7,18.4,19,19,21.3,18.6,18.5],"script":[17.9,16.7,16.7,17.9,17.8,17.7,19.4,17.7,16.5,16.4,17.8,17.8,19.7,16.8,17.1],"paint":[1,1.6,1.4,1,0.8,1.2,1,1.7,2.1,1.9,1.1,1.1,0.7,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[2.84]}},{"b":10,"v":{"DEFAULT":[9.77]}},{"b":11,"v":{"DEFAULT":[9.8]}},{"b":12,"v":{"DEFAULT":[10.3]}},{"b":13,"v":{"DEFAULT":[72.5]}},{"b":14,"v":{"DEFAULT":[232.2]}},{"b":15,"v":{"DEFAULT":[66.3]}},{"b":16,"v":{"DEFAULT":[291.2]}}]},
+{"f":71,"b":[{"b":0,"v":{"total":[28.9,28.9,29.1,28.1,29.1,29.1,29.3,28.8,28.7,29,29,29.3,28.6,29.2,28.9],"script":[6.7,6.8,6.9,6.8,7.1,7,7.1,6.7,6.7,6.7,6.8,7,6.7,6.9,7],"paint":[21.6,21.6,21.6,20.7,21.5,21.5,21.6,21.6,21.5,21.7,21.7,21.8,21.5,21.7,21.4]}},{"b":1,"v":{"total":[33,33.6,33.8,33.1,33.9,33.3,33.7,33.7,33.7,33.5,33.6,33.4,34,33.6,33.9],"script":[10.6,10.9,10.6,10.5,10.7,10.6,10.8,10.8,10.9,10.5,10.7,10.4,10.7,10.7,10.6],"paint":[21.8,22.1,22.6,22.1,22.6,22.1,22.3,22.4,22.2,22.5,22.2,22.4,22.7,22.3,22.8]}},{"b":2,"v":{"total":[13.9,13.1,13.3,13.9,15.4,13.8,13.7,13.6,14.2,14.9,13.3,13.6,13.6,16.6,14.2],"script":[2.7,3.1,3.1,2.6,3.8,3.1,3.3,3.1,3.1,3.3,3.3,3.1,2.8,3.4,3.5],"paint":[10.3,8.9,8.6,10.4,10.6,10.1,9.7,9.4,9.8,10.4,8.9,9.6,9.6,12.5,10]}},{"b":3,"v":{"total":[4.7,3.7,3.8,4,3.1,3.4,3.3,3.5,4.2,4,3.7,3.4,3.7,3.9,3.2,3.7,3.9,2.9,3.6,3.6,4.1,4.2,3.7,3.9,3.2],"script":[1.5,1.6,1.4,1.7,1.5,1.3,0.9,1.6,1.9,1.7,2.2,1.3,1.3,1.7,1.6,1.8,1.7,1,1.6,1.7,1.7,1.5,1.5,1.7,1.1],"paint":[1.3,1.3,2.3,2.2,1.1,2,2.3,1.8,2.1,1.5,1.4,1.2,1.6,1.5,1.5,1.3,2.1,1.1,1.8,1,2.3,2.5,0.8,1.4,2]}},{"b":4,"v":{"total":[16.2,16.8,15,15.6,15.3,15.9,16,16.2,17.7,16.7,20.4,16,16,16.1,16.6],"script":[2.4,3.1,2.4,2.6,2.8,2.9,2.9,2.2,3.3,3.1,3.3,3,2.6,2.5,2.4],"paint":[13,12.4,11.3,11.9,11.3,12.1,12.2,12.8,12.9,12.6,15.3,11.7,11.8,12,12.5]}},{"b":5,"v":{"total":[11.9,12,12.2,11.5,12,11.7,11.9,11.7,12.1,12.1,11.9,12.1,12,12.1,11.6],"script":[1.6,1.8,1.5,1.7,1.7,1.4,1.5,1.7,1.8,1.7,1.6,1.7,1.7,1.7,1.7],"paint":[9.9,9.7,9.8,9,9.5,9.6,9.7,9.2,9.7,9.4,9.7,9.7,9.8,9.5,9.3]}},{"b":6,"v":{"total":[288.8,288.3,286.7,285.3,290.5,288.2,288.9,285.8,286.2,286.2,291.4,291.6,285.1,288.3,287.6],"script":[65.9,64.3,64.2,62.3,66.5,63.8,65.6,64.6,63.6,65.5,69,66.6,63.5,65.2,64],"paint":[215.8,217,215,215.9,216.8,217,216.1,214.2,215.5,213.7,215.1,218,214.5,215.9,216.4]}},{"b":7,"v":{"total":[35,34.9,35.3,34.6,35.6,35.2,34.8,35.2,34.8,35.2,34.8,34.5,34.7,34.8,34],"script":[8,8.1,8.2,7.9,8.1,8.3,8,8,8.3,8.1,8.3,7.8,8.3,8,8.2],"paint":[26,25.9,26.1,25.7,26.5,26,25.9,26.2,25.6,26.2,25.6,25.8,25.5,25.8,24.9]}},{"b":8,"v":{"total":[13.6,12.5,12.9,13.5,12.7,13,13.2,13.3,12.7,12.7,12.7,12.8,13.4,12.6,12],"script":[11.7,10.2,11,11.4,10.8,11.5,11,10.7,11.1,10.6,10.8,11.3,11,10.8,10.9],"paint":[1,2.1,0.3,1,1.7,0.2,0.7,1.5,0.2,1.3,1.7,0.3,1.4,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[3.98]}},{"b":11,"v":{"DEFAULT":[4.01]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[33.8]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[42.1]}}]},
+{"f":72,"b":[{"b":0,"v":{"total":[37.5,33.5,37.1,36.1,35.4,36.9,37.2,37.1,37.2,33.9,33.8,37.8,35,38.4,35.4],"script":[5.5,5.6,5.9,6.1,6.1,6.2,6.1,6,6.1,6.1,6.1,5.9,5.8,5.7,6],"paint":[21.2,22.2,21.7,21.6,22.6,22.2,21.9,21.3,21.9,22.2,22.1,21.5,22.2,21.5,22.1]}},{"b":1,"v":{"total":[31.2,31.9,33.6,34.5,34.2,33.4,33.6,32.7,33.7,32.6,33,31.9,31,33.3,32],"script":[8.1,7.8,8.3,8.4,8.7,8.3,8.7,8.6,8.2,8.1,8.5,8.6,8.3,8.7,8.7],"paint":[22.6,23,22.9,23.9,23.1,22.8,22.6,23.1,23,22.7,22.5,22.9,22.3,22.4,22.9]}},{"b":2,"v":{"total":[12,11.4,10.8,11,11.6,11.1,12.5,11.9,10.8,12.2,10.6,10.1,12.1,11,11.6],"script":[0.4,0.1,0.1,0.6,0.1,0.1,1.1,1.2,0.1,1,0.3,0.1,0.7,0.6,0.5],"paint":[10.3,10.3,9.6,9.1,10,9.8,8.9,10,9.7,9.6,8.7,9.3,10,9.1,10.2]}},{"b":3,"v":{"total":[2.5,2.4,2,2.3,2.9,2.4,2.6,2.5,1.6,2.8,2.7,2.4,2.5,2.4,2,2.2,2.4,2.4,1.9,3.6,2.2,2.8,2.2,1.9,2],"script":[0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0],"paint":[1.7,2.3,1.8,2.1,1.3,2.2,1.8,2.1,0.9,2.6,2.5,2.2,1.5,1.6,1.1,2,1.5,1.4,1.1,2.1,2,2,1.1,1.2,1.8]}},{"b":4,"v":{"total":[13.3,13,12.5,13.1,13,13.7,14,12.6,13.4,13.6,13.2,13.3,14.5,13,14.5],"script":[0.7,0.5,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.4,0.8,0.2,0.4],"paint":[11.6,11.6,11.4,11.6,11.1,12,12.5,11.6,11.8,12.3,11.6,11.3,12.3,11.8,13.2]}},{"b":5,"v":{"total":[10,10.3,10.6,9.9,10.7,10.3,10.2,10,10.3,10.2,10.2,9.8,9.8,10.2,10.4],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.4,0.1,0.2,0.1,0.1,0.3,0.3],"paint":[9.5,9.4,9.9,9.5,9.9,9.5,9.3,9.3,8.9,9,9.5,8.9,9.3,9.4,9.7]}},{"b":6,"v":{"total":[289,290,289.2,285.7,285.6,290.9,702,286.6,288.5,292.8,710.9,717.5,285.5,292.6,710.8],"script":[59.2,60.3,61.3,65.1,64.9,61.9,62,65.1,65.5,62.9,63.1,61.6,63.7,62.5,62.5],"paint":[226.2,226,224.4,217.1,216.7,225.4,229.1,217.8,219,226.2,233.7,231.9,217.8,226.6,229.3]}},{"b":7,"v":{"total":[51.3,33.6,50.1,50.4,50.3,50.3,50.4,34.1,50.5,49.8,50.6,51.4,50.6,49.2,50.8],"script":[5.9,6.1,5.9,6.3,6.1,6.2,5.9,6.2,6,6.1,6.2,6.2,5.9,6.2,6.1],"paint":[25.9,26.8,25.4,25.2,25,25.2,25.2,27.3,25.5,25,25.6,26.3,25.8,24.7,25.7]}},{"b":8,"v":{"total":[10.4,10.4,10.2,10.5,10.7,10.1,11,11,10.7,10.6,11,10.4,10,10,9.8],"script":[8.7,8.6,8.4,8.3,8.3,8.6,9,9,8.7,8.5,8.8,8.4,8.5,8.7,8.6],"paint":[0.2,0.3,0.9,0.9,2,0.7,1.1,1.7,0.7,0.9,1.3,1.3,0.6,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.56]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[17.7]}},{"b":14,"v":{"DEFAULT":[25.7]}},{"b":15,"v":{"DEFAULT":[8]}},{"b":16,"v":{"DEFAULT":[56.6]}}]},
+{"f":73,"b":[{"b":0,"v":{"total":[27.8,33.6,34.2,33.5,33.7,34.3,34,34.1,32.5,34.9,33.1,33.4,35.3,35.8,34],"script":[24.2,24.5,23.3,24.6,24.2,24,23.6,24.3,24.2,24,24.1,24.1,23.7,24.1,23.9],"paint":[21.2,21.3,20.2,21.4,21,20.8,20.4,21.3,21.1,20.9,21,21,20.6,20.9,20.8]}},{"b":1,"v":{"total":[40.9,33.1,33.9,35.4,34.4,36.3,33.1,33.9,32.6,32.4,35.8,35.7,33.9,34.9,35.2],"script":[28.8,29,29.1,29.2,28.8,29,28.7,28.6,28.7,28.6,29,29.1,29,28.7,29],"paint":[21.9,21.8,21.7,21.9,22,22.1,22.2,21.9,21.7,21.7,21.8,21.8,22.2,22,21.9]}},{"b":2,"v":{"total":[57.3,56,42.4,62.1,41.8,40.6,43.3,59,42.5,40,57,57.1,40.6,40,58],"script":[33.9,32.2,34.6,36.5,35.2,33,33,34.4,34.4,32.6,34.5,33.8,33.6,32.2,33.6],"paint":[15.3,12.8,14.6,13.5,12.5,11.1,14,13.4,14,12,13,13.5,12.1,10.8,13.6]}},{"b":3,"v":{"total":[36.1,34.5,36.7,34.3,33.6,35.2,35.9,34.5,35.5,35,35.2,33.9,34.1,34,36.5,34.3,35.3,37.5,34.8,35,34.1,35.5,36.1,34.1,36.9],"script":[29.3,28.9,30.4,28.7,28.3,28.8,28.6,27.9,30.2,29.6,28.2,28.3,28.7,28.4,29.5,27.5,29.5,31.2,28.7,29.1,27.4,29.4,30.4,28.9,28.2],"paint":[3.7,3.2,3,2.6,2.8,2.2,5.2,3.5,3.7,3.3,4.4,2.5,3.5,3.8,3.3,3.8,3.3,4.1,3.4,3.7,1.9,4.2,3.1,2.6,3]}},{"b":4,"v":{"total":[133.2,130,146.7,148,145.3,132.6,149.1,131.3,149.2,131.9,149.6,147.7,145.5,149.8,130.2],"script":[114.7,113.3,113.3,114.4,111.9,115,116.4,111.9,115.7,114.5,115.6,115.2,113.3,117,112.6],"paint":[85.7,85.4,86.8,85.9,83.1,87,86.5,86.5,86.7,86.5,87.7,84.8,83.8,87.5,84.9]}},{"b":5,"v":{"total":[65.4,66.1,69.6,66.2,66.6,66.9,68.1,66.3,64.3,65.6,67.3,66.1,66.6,65.6,71.8],"script":[20.8,20.8,21.3,21,20.6,21.2,20.4,21.4,20,20.5,21.9,21.2,21,21.6,21.3],"paint":[43,43.5,42.7,43.7,44.1,43,42.5,41.8,42.3,43.4,43.9,43,43,42.2,44.6]}},{"b":6,"v":{"total":[289.8,294.4,293.6,295,291.9,294.1,297.6,295.3,295.4,293.4,297.2,293.3,290.9,288.1,294.7],"script":[241.2,239.7,239.7,240.1,240.4,241.2,242.4,241.3,241.9,241.5,242.7,241.2,241.9,239.8,240.1],"paint":[225.9,224.3,225.3,225.5,225,225.2,227.6,225.2,226.3,224.7,229,226.5,225.3,224.4,223.9]}},{"b":7,"v":{"total":[44.2,43.5,43.4,42.8,43,43.6,42.9,43.3,42.6,45.7,43.8,45,42.2,43.4,43.6],"script":[32.6,32.5,32.4,32,32.5,32.7,32.3,32.6,32.2,32.3,32.4,32.3,31.8,32.9,32.5],"paint":[26.2,26.5,26.1,25.9,26,26.1,25.9,26.2,25.8,26.1,26,25.7,25.4,26.1,25.8]}},{"b":8,"v":{"total":[23.1,42.8,22.8,22.4,23.8,23.2,41.8,24,22.7,43.3,22.5,23.6,42.7,24.4,44.2],"script":[18.6,19.6,19,18.3,20.4,18.9,19.7,19.4,19.4,21.1,18.5,20.4,19.1,20.4,19.4],"paint":[1.6,1.7,2.4,3,3.5,2.9,2.9,3.5,1.8,1.9,2.5,3,2.1,2.7,2.9]}},{"b":9,"v":{"DEFAULT":[3.32]}},{"b":10,"v":{"DEFAULT":[4.85]}},{"b":11,"v":{"DEFAULT":[4.89]}},{"b":12,"v":{"DEFAULT":[3.58]}},{"b":13,"v":{"DEFAULT":[16.25]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.7]}},{"b":16,"v":{"DEFAULT":[113]}}]},
+{"f":74,"b":[{"b":0,"v":{"total":[27.7,26.2,30.3,26.1,25.9,26.2,26.4,32.1,26.1,32.2,26.5,26.7,26.2,26.9,26.8],"script":[4.4,4.5,4.5,4.5,4.4,4.3,4.5,4.3,4.5,4.3,4.7,4.5,4.4,4.5,4.4],"paint":[21.5,21.5,21.5,21.5,21.4,21.6,21.6,21.4,21.5,20.9,21.6,21.8,21.4,22.2,21.4]}},{"b":1,"v":{"total":[35.8,30.4,31.8,33,30.3,34,30,31.9,30.4,34.1,33.5,34.3,34.2,32.4,32.7],"script":[7.5,7.4,7.3,7.4,7.5,7.5,7.6,7.4,7.4,7.5,7.4,7.8,7.6,7.5,7.5],"paint":[22.1,22.5,22.4,22.4,22.4,22.1,22,22,22.6,22.6,22.7,22.4,22.1,22,22.5]}},{"b":2,"v":{"total":[18.9,17.5,17.2,18,17.3,17.4,17.7,18.1,16.7,18.4,17.8,18,18.2,18,18],"script":[7.6,7.1,7.3,6.8,6.9,7.2,7,6.4,6,7.8,7.2,7.6,7.2,7.8,7.3],"paint":[11.1,10.2,9.3,9.9,9,10,9.4,9.9,9.8,9.1,9.3,9.1,9.5,9,9.4]}},{"b":3,"v":{"total":[8,8,8.5,7.4,7.9,8.2,8.8,8.1,7.1,8.6,7.6,8.4,7.4,7.8,7.4,8.2,7.5,8.4,7.6,7.6,6.8,7.9,7.8,7.4,7.9],"script":[5.7,5.7,6.5,5.7,5.9,4.9,6.4,5.8,5.3,5.4,5.7,5.4,5.2,5.2,5.3,5.2,5,6.3,5.9,5.7,5.1,5.2,5,5.5,5.8],"paint":[1.5,2.1,1.8,1.6,1.9,1.4,1.7,2.1,1.3,2.2,1.2,1.9,1.5,1.7,1.9,2.5,2.3,1.3,1.1,1.8,1.6,1.7,1.9,1.8,2]}},{"b":4,"v":{"total":[33.1,34.1,17.7,18.1,33.8,18.1,18.5,18.1,17.8,21.9,18,18.4,17.5,18.1,17.6],"script":[5,5.2,5.7,6,5.4,6,5.2,5.9,5.6,6.9,5.3,5.7,4.9,5.8,4.8],"paint":[12,13.4,11.5,12,11.3,11.2,12.4,10.7,11.7,14.7,11.9,12.5,11.9,11.5,11.2]}},{"b":5,"v":{"total":[14.2,13.6,13.9,13.5,14.3,13.4,14,13.4,13.6,14,13.4,13.8,13.4,13.9,13.6],"script":[4.7,4.7,4.8,4.5,4.9,4.3,4.9,4.7,4.8,4.9,4.7,4.7,4.4,4.7,4.5],"paint":[9,8.8,9,8.8,9.2,8.7,8.8,8.6,8.6,8.9,8.3,8.7,8.8,8.7,9]}},{"b":6,"v":{"total":[275,276,277.8,275.2,276.9,274.2,275.6,274.4,275.8,275.4,274.8,275.8,275,273.3,272.7],"script":[46.4,47.1,46.3,46.6,47,46.7,46.3,46.9,46.3,46.8,46.3,46.9,47.3,47.2,46],"paint":[225.1,225.5,227.7,225.1,226.5,224.2,225.8,224.2,226.2,225.2,225.2,225.4,224.3,222.8,223.4]}},{"b":7,"v":{"total":[38.1,39.3,39.6,39.5,33.9,34.3,34,34.3,33.4,39.3,34.5,38.1,38.7,38.9,33.7],"script":[7.5,7.6,7.6,7.7,7.6,7.7,7.7,7.8,7.5,7.4,8,7.4,7.6,7.7,7.8],"paint":[24.7,25.4,25.6,25.3,25.5,26.2,25.9,26.1,25.5,26.1,26.2,25.3,25,25.4,25.5]}},{"b":8,"v":{"total":[11.6,11.2,11.1,10.7,11.6,10.8,12.2,11,10.7,10.9,12.3,11.9,11.3,11.2,11.5],"script":[8.9,9.4,8.5,8.4,9.5,8.2,9,8.9,8.9,9.3,10.1,9.1,9.1,9.4,9.7],"paint":[1.7,1.1,1.7,1.2,0.3,0.6,2,1.4,1,0.3,2,2.1,1.6,1.6,1.1]}},{"b":9,"v":{"DEFAULT":[0.88]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[1.35]}},{"b":13,"v":{"DEFAULT":[23.87]}},{"b":14,"v":{"DEFAULT":[79.9]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[90.7]}}]},
+{"f":75,"b":[{"b":0,"v":{"total":[27,27.2,26.9,27.3,28.1,27,26.8,26.9,27.2,27.6,26.8,27.2,26.9,27.1,27.2],"script":[4.8,5.1,5,5,5.1,5.1,4.7,5,5,5.1,4.7,5.1,4.7,4.8,5.1],"paint":[21.8,21.6,21.3,21.8,22.4,21.4,21.7,21.4,21.7,22,21.7,21.6,21.8,21.9,21.5]}},{"b":1,"v":{"total":[30.4,30.6,30.2,30.1,30.8,29.8,30.3,30.3,30.7,30.7,30.1,29.9,29.7,30.1,29.9],"script":[7.1,7.1,7.1,7.1,7.1,6.9,6.9,7,7.4,7,7.3,7.1,6.8,7,7],"paint":[22.7,22.9,22.6,22.5,23.1,22.3,22.8,22.7,22.7,23.1,22.2,22.4,22.3,22.6,22.3]}},{"b":2,"v":{"total":[12.1,12.6,12.3,12.4,11.7,12.4,12.3,13.7,12.6,11.6,12.3,11.7,14.5,11.6,11.9],"script":[1.2,1,1.5,0.5,0.8,0.9,0.8,1.1,0.5,1,0.8,0.2,1.1,0.5,1.4],"paint":[9.2,10.7,8.9,10.7,9.7,10.2,10.1,11.5,9.8,9.7,9.9,10.3,11.5,9.7,9.6]}},{"b":3,"v":{"total":[3,2.6,2.9,2.7,2.1,2.5,2.2,2.4,3.2,2.6,2.7,2.5,2.9,2.1,3.3,3.3,2.3,2.7,2.6,2.4,2.7,2.5,3.1,2.6,2.3],"script":[0.7,0.1,0.8,0.1,0.6,0.5,0.6,0.6,0.8,0.1,0.9,0.6,0.1,0.2,1,0.9,0.1,0.3,0.1,0.5,0.7,0.1,0.6,0.3,0.5],"paint":[2.1,1.5,2,2.4,1,1.9,1.1,1.6,1.5,2.3,1.5,1.8,1.8,1.1,2.1,1.2,1.3,2.2,0.8,1.7,1.9,1.9,1.8,2.2,1.7]}},{"b":4,"v":{"total":[14.2,13.9,13.7,13.6,14.7,13.7,13.1,13.9,13.8,14.8,13.3,13.8,13.6,13.1,13.4],"script":[1.4,1.1,1.2,0.7,0.6,0.9,0.6,0.9,1.1,1.6,1,0.9,1,0.2,0.9],"paint":[11.6,11.2,11.4,12.3,12.5,11.8,11.4,12.1,11.6,12,11.3,11.8,12.1,11.2,11.3]}},{"b":5,"v":{"total":[10.6,10.4,10.5,10.3,9.9,10.4,10.3,9.9,10.4,10.2,10,10.6,10.4,10.3,10.2],"script":[0.4,0.4,0.1,0.1,0.1,0.4,0.1,0.1,0.2,0.1,0.1,0.3,0.3,0.4,0.1],"paint":[9.5,9,9.7,9.3,9.2,9,9.6,8.6,9.9,9.5,9.6,9.4,9.1,8.6,9.5]}},{"b":6,"v":{"total":[281.9,281.3,281.3,279.3,280.1,283.1,282.2,279.1,280.8,278.3,280.1,282.4,281.3,281.7,281.2],"script":[46.9,47.1,49.1,47.3,47.6,47.4,47.7,47.2,47.5,47.9,48.1,47.4,48.6,47.4,47.7],"paint":[227.9,226.8,225.1,224.9,225.3,227.5,227.3,224.7,226.2,223.3,224.9,227.5,225.5,226.7,226.1]}},{"b":7,"v":{"total":[32.3,32.9,32.5,31.9,32.5,32.3,33.3,31.6,32.7,32.3,32.5,32.1,32.9,32,32.4],"script":[5.2,5,5.3,5.2,5.2,5.1,5.1,4.9,5.2,5.2,4.9,5,5.3,4.9,5.3],"paint":[26.2,27.1,26.3,25.8,26.3,26.2,27.3,25.9,26.6,26.1,26.8,26.4,26.6,26.4,26.2]}},{"b":8,"v":{"total":[10.7,10.3,11,10.5,10.1,10.8,10.7,10.7,11,11,12.2,10.8,9.8,10.7,10.4],"script":[8.8,8.2,9.2,9.1,8,8.8,8.7,9.2,9.1,9.1,10.1,9,8.4,9.1,9.1],"paint":[0.8,1.8,0.9,0.3,1.1,0.7,1,0.3,0.9,1.1,1.2,1.2,0.2,0.2,0.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.1]}},{"b":11,"v":{"DEFAULT":[2.17]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[13.91]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[41.7]}}]},
+{"f":76,"b":[{"b":0,"v":{"total":[25.2,25.1,25.4,26.1,24.9,26,25.3,25.8,25.7,25.3,25.4,25.6,25.2,25.1,25.3],"script":[3,2.8,3.1,3.1,2.8,2.7,2.8,3.1,3,3,2.8,3.1,2.8,2.9,3.1],"paint":[21.8,21.9,21.9,22.5,21.7,22.9,22.1,22.3,22.2,21.9,22.2,22.1,21.9,21.9,21.8]}},{"b":1,"v":{"total":[30.8,29.4,29,28.7,28.4,28.8,28.8,29,28.9,28.7,28.3,29.1,29,28.7,28.9],"script":[6.6,6,5.8,5.8,5.3,5.8,5.8,5.7,5.9,5.9,5.7,6.2,6,5.9,5.7],"paint":[23.7,22.8,22.6,22.3,22.5,22.5,22.4,22.7,22.5,22.2,22.1,22.3,22.4,22.3,22.5]}},{"b":2,"v":{"total":[13.8,12.5,12.1,11.9,12.4,10.8,12.1,12.3,11.8,11.6,12.3,12,10.8,12.4,12.4],"script":[1.2,1,0.8,1.4,1.5,0.2,0.6,1.2,1.1,0.6,1.2,1.5,0.2,0.9,0.7],"paint":[11.1,10.5,9.6,9.5,9.8,8.9,10.3,10.2,9.5,9.7,9.9,9.5,9.8,9.9,10.6]}},{"b":3,"v":{"total":[4.8,3.2,2.8,2.2,2.1,2.6,2.7,2.1,2.1,2.2,2.6,2.3,2,2.5,2.6,2.6,2,2.3,2.2,2.6,2.2,2.4,2,2.2,2.2],"script":[0,0,0,0,0,0,0,0,0.5,0,0.4,0,0.1,0,0.6,0,0,0,0.1,0,0,0,0,0,0],"paint":[2.4,3,1.5,1.5,1.5,2.5,1.8,1.4,1.5,1.7,2,1.4,1.1,1.4,1.6,2.5,1.7,1.2,1.9,1,1.4,1.7,1.8,2,1.2]}},{"b":4,"v":{"total":[13.2,13.1,13.3,13.6,13.2,13.6,15,14.5,13.5,13.6,15.1,13.3,14,13.4,13.9],"script":[1,0.2,0.7,0.2,0.2,0.3,0.6,1.2,0.2,1.1,1,1.4,1,1,0.8],"paint":[11,11.7,11,12.2,12,12.7,13.5,12.2,12.4,11.7,13.1,10.3,11.2,11.4,11.5]}},{"b":5,"v":{"total":[10.6,11.2,10.7,10.9,10.9,10.8,11.5,10.7,10.8,10.9,10.8,10.9,10.4,10.6,10.6],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.5,0.6,0.6,0.5,0.6,0.3,0.6],"paint":[9.4,10.1,9.6,9.6,9.4,9.7,10.5,9.7,9.7,9.4,9.5,9.4,9.2,9.8,9.2]}},{"b":6,"v":{"total":[270.1,265.6,266.1,266.3,266.3,267,266.1,265.8,266.6,265.5,265.8,264.5,265.5,267.8,265.8],"script":[34,33.6,33.5,34.4,33.7,35.5,33.7,33.9,34,34,33.9,33.1,33.8,34,34],"paint":[228.3,224.5,225.1,224.5,225.1,224.1,224.9,224.5,224.9,224.2,224.4,224.1,224.4,226.5,224.4]}},{"b":7,"v":{"total":[29.8,31.8,30.4,30.5,30.1,29.7,30.8,30.2,30.4,30,30.4,31.5,30.3,30.8,30.8],"script":[3.1,3.2,3.1,3.2,3.1,3.1,3.3,3.1,3.1,3.1,3.1,3.1,3.1,3.2,3.3],"paint":[26,27.8,26.5,26.5,26.3,25.9,26.7,26.3,26.5,26.1,26.4,27.6,26.5,26.8,26.8]}},{"b":8,"v":{"total":[9.9,10.3,9.7,10.1,12.3,9.9,10.4,10.7,9.8,10.1,10.6,9.7,11.3,10.6,12.6],"script":[8.1,8,7.7,7.7,9.4,7.7,8.1,8.8,7.8,8.2,8.6,7.9,9.1,8.6,10.2],"paint":[1.3,0.6,1,0.7,1.8,1.1,1.4,1,1.1,1,1.3,0.7,1,1.2,1.2]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.62]}},{"b":11,"v":{"DEFAULT":[2.64]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[19.01]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[49.3]}}]},
+{"f":77,"b":[{"b":0,"v":{"total":[28.1,27.5,27.2,26.8,27.6,27.4,27.3,27.3,27.6,27.4,27.2,27.2,28.5,27.3,27.2],"script":[5.7,5.5,5.6,5.6,5.6,5.8,5.8,5.7,5.8,5.8,5.6,5.6,5.9,5.9,5.8],"paint":[21.8,21.4,21,20.7,21.4,21.1,21,21.1,21.3,21,21.1,21.1,22,20.9,20.9]}},{"b":1,"v":{"total":[32.3,32.4,32.9,33.7,32.7,33.2,33.1,33,33.8,32.7,32.4,32.9,33.3,33.1,32.8],"script":[9.8,9.8,10.1,10.5,10,10.2,10.3,10.1,10.5,10,10,10,10.1,10,10.1],"paint":[22,22,22.2,22.6,22.1,22.4,22.1,22.3,22.7,22.1,21.9,22.4,22.6,22.5,22.1]}},{"b":2,"v":{"total":[12.3,12.1,12.3,12.6,11.8,12.4,14.2,13,13,13.6,12.9,12.8,12.6,13.4,12.4],"script":[1.9,2.4,2.3,2.4,1.8,2.5,3.2,2.4,3.2,2.6,2.3,2.6,2,2.6,2],"paint":[9.2,8.5,8.9,9.2,8.8,8,9.5,9.4,8.3,9.9,9.1,9.5,9.3,9.8,8.2]}},{"b":3,"v":{"total":[4.2,3.4,4.1,3.7,4.1,4,4,4,3.7,4.4,4.7,4,3.4,3.9,4.7,3.3,3.8,4,4.1,3.6,3.7,4.6,4.1,3.7,3.5],"script":[1.9,1.7,1.6,1.7,1.9,1.4,1.7,1.4,1.5,1.5,2.3,1.4,1,1.8,2.4,1.3,1.7,1.4,1.7,1.1,1.3,2.1,1.4,1.6,1.7],"paint":[2.2,1.6,1.6,1.2,1.6,1.8,1.6,2.4,1,2.8,1.8,1.6,1.3,1.5,1.5,1.5,2,1.8,1.9,1.4,2.3,1.6,2.5,1.3,1.6]}},{"b":4,"v":{"total":[14.3,14.8,15.8,14.5,14.4,15.2,15.5,14.1,14.7,15.5,15.2,14.7,15.5,13.7,14.5],"script":[1.2,1.5,2.1,1.6,1.6,2.2,2,1.7,1.6,1.8,1.7,1.6,2.2,1.5,1.8],"paint":[11.9,12.3,12.6,12.4,11.9,11.8,12.3,11.1,11.8,13.4,12.3,12.2,12.3,11,11.7]}},{"b":5,"v":{"total":[11,11,11,11.4,11.2,10.8,10.9,11,10.9,11.3,11.2,11,11.1,11,11],"script":[0.7,1,0.7,0.8,0.9,0.7,0.7,0.7,1,0.9,0.8,0.8,0.7,0.9,0.8],"paint":[9.4,9.6,9.5,9.6,9.5,9.6,9.6,9.7,9.3,9.8,9.9,9.7,9.8,9.6,9.6]}},{"b":6,"v":{"total":[298.4,296.7,297.7,297,298.2,298.6,296.3,299.5,296.7,301.8,300.1,296.1,303,304.5,297],"script":[66.9,66.3,66,67.2,67.3,66.8,66.7,67.2,66.5,67.6,67.6,66.6,67.3,67.3,66.8],"paint":[224.2,222.8,224.2,222.4,223.5,224.3,222.3,224.9,222.9,226.4,225.2,222.3,228.4,228.4,222.9]}},{"b":7,"v":{"total":[33.9,33.4,34.3,33.9,34.1,34.2,33.9,34.2,34,33.9,33.8,33.8,33.8,34,34.1],"script":[6.9,6.7,6.9,7,7,6.9,7.3,7.3,7,7,7,6.9,6.8,6.9,6.8],"paint":[26.1,25.7,26.4,26,26.2,26.4,25.6,26,26.2,26,25.9,26,26,26.1,26.4]}},{"b":8,"v":{"total":[11.7,12.1,12.6,12.2,13.8,12.6,13.5,12.3,12.1,13,12.2,12,12.3,11.7,11.9],"script":[10.6,10,10.3,9.8,11.8,10.7,11.1,10.1,10.1,10.6,10.4,10,10.8,9.9,10.1],"paint":[0.9,1.8,1.2,1.4,1.8,1.7,1.8,1.6,0.9,1.5,0.9,0.3,0.6,0.3,0.5]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[3.61]}},{"b":11,"v":{"DEFAULT":[3.66]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[29.27]}},{"b":14,"v":{"DEFAULT":[17.3]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[49]}}]},
+{"f":78,"b":[{"b":0,"v":{"total":[29.4,29.1,28.5,29.4,29.1,29.6,28.9,29,28.7,29.3,29.2,28.8,29.2,29,28.7],"script":[6.6,6.5,6.5,6.9,6.5,7,6.8,6.6,6.4,6.8,6.9,6.5,6.5,6.5,6.5],"paint":[22.3,22.1,21.4,22,22,22,21.6,21.8,21.8,21.9,21.7,21.7,22.1,22,21.6]}},{"b":1,"v":{"total":[33.1,34.7,33.4,33.6,33.3,33.1,33.4,32.8,33.8,33.4,33.3,33.6,33.4,33.2,33.6],"script":[10.1,10.8,10.2,10.3,10.3,10,10.4,10,10.5,10.1,10.3,10.5,10.2,10.2,10.5],"paint":[22.4,23.3,22.6,22.7,22.5,22.5,22.4,22.3,22.8,22.7,22.4,22.5,22.6,22.4,22.5]}},{"b":2,"v":{"total":[21.2,22.5,21.8,21.4,20.2,21.4,21,21.9,21.7,21.8,21.5,22,20.6,21.8,22],"script":[10.1,9.9,9.6,9.5,8.6,9.5,9.3,10.1,9.6,9.8,9.3,10.4,9,10,9.6],"paint":[9.6,9.8,9.5,10,8.7,9.8,8.9,10.1,10.6,9.2,9.9,9.4,9.3,9.9,10.9]}},{"b":3,"v":{"total":[14.7,14.9,14.4,15.3,13.4,14.5,14.7,14.7,12.2,13.7,14,14.1,14,15.2,13.9,14.6,14.4,13.9,13.8,13.9,14.2,13.9,13.3,14.5,14.8],"script":[11.2,11.3,11.2,12.1,10.7,11.1,11.9,11.1,9.6,11,11.2,10.9,10.5,11.9,10.4,11.4,10.8,10.7,10.6,10.8,10.8,11.1,10.7,11.1,11.4],"paint":[1.8,2.2,2.4,0.8,2.1,2,1.7,1.4,1.4,1.4,1.1,1.3,3.2,2.8,1.1,2.8,2.5,1.2,2.1,2.6,1.1,1.7,0.9,2.5,1.6]}},{"b":4,"v":{"total":[25.3,25.7,25.8,25.6,24.6,25,25.9,26.3,26.1,24.9,26.4,26.7,27.3,24.7,25.6],"script":[11.2,11.5,11.6,11.4,11.1,11.4,11.8,11.4,12.4,10.4,12,11.6,12.5,10.5,11.4],"paint":[12,12.5,11.9,12.3,11.1,12.5,11.1,12.8,12.6,12.5,12.3,12.8,12.9,12.4,11.4]}},{"b":5,"v":{"total":[17.1,16.9,16.8,16.4,16.9,16.8,16.7,17.2,16.6,16.7,17.3,17,16.7,19.1,16.9],"script":[6,5.8,5.9,5.4,6,5.6,5.8,6.2,5.5,6,6.1,6.1,5.8,6.7,5.8],"paint":[10,10.2,9.5,9.9,10.1,9.9,9.9,10.2,10.1,9.9,10.3,9.5,9.7,10.9,10]}},{"b":6,"v":{"total":[300.2,300.6,301.1,300.5,296.5,298.7,301.3,299.7,299.8,298.9,298.1,300.3,300.6,299.4,295.5],"script":[71.1,69.9,69.3,69.3,68.2,69.3,69.3,70.2,69.5,69,69.8,69.6,70.1,69.4,69.3],"paint":[221.7,223.4,224.4,223.9,221.2,222.2,224.7,222.2,222.8,222.8,221.1,223.2,223,222.5,219.1]}},{"b":7,"v":{"total":[35.6,36,36,36.7,35.4,35.7,35.3,35.9,35.7,35.5,35.7,35.9,36,35.7,35.7],"script":[8.9,8.9,8.9,9.2,8.9,8.8,8.8,9,8.8,8.9,9,9,9.1,8.9,9.1],"paint":[25.9,26.1,26.2,26.5,25.5,26,25.6,26,26,25.7,25.8,26,25.9,25.9,25.7]}},{"b":8,"v":{"total":[13,12.2,12.8,12.5,11.8,12.1,11.8,11.7,12.3,12.2,11.4,12.9,11.5,11.6,11.1],"script":[10.7,10,10.6,10.4,9.9,9.8,9.5,9.5,10.4,10.4,9.9,11,9.5,10.3,9.6],"paint":[1.5,2.1,2,0.3,0.6,0.8,0.7,0.9,0.3,1,0.3,1.2,0.6,0.3,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[0.77]}},{"b":13,"v":{"DEFAULT":[27.11]}},{"b":14,"v":{"DEFAULT":[14.6]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[42.5]}}]},
+{"f":79,"b":[{"b":0,"v":{"total":[35.7,35.7,34.4,35,34.5,34.4,34.1,36.5,34.5,34.8,34.5,34.3,34.4,34.4,35.6],"script":[13.7,13.7,12.1,12.8,12.5,12.4,12.2,12.8,13.1,12.4,12.2,12.6,13,12.3,13.2],"paint":[21.4,21.4,21.7,21.6,21.5,21.5,21.3,23,20.8,21.8,21.7,21.1,20.8,21.4,21.8]}},{"b":1,"v":{"total":[39.9,39.9,40.4,39.7,40.4,40.5,40.1,40.4,41.1,40.2,40.2,40.6,39.6,39.2,40.1],"script":[16.6,16.5,16.8,16.1,17.3,17.2,17.1,17.2,17.6,16.5,16.5,17.2,16.5,16.4,16.8],"paint":[22.7,22.7,23,23,22.4,22.7,22.4,22.6,22.9,23.2,23,22.8,22.5,22.3,22.6]}},{"b":2,"v":{"total":[16.4,14.5,15.7,14.9,15.2,15.2,14.8,16,14.8,15,16.5,14.4,14.8,16.9,15.7],"script":[5.2,4.4,4.4,4.5,4.5,4.5,4.1,4.8,4.9,4.6,5.3,4.2,4.5,6,4.4],"paint":[9.8,8.3,9.8,8.3,9.6,9.1,9.4,9.6,8.7,7.8,9.7,9.5,9.4,8.9,10]}},{"b":3,"v":{"total":[3.8,3.2,3.5,2.9,3,3.5,3,3,3.1,2.7,3,2.6,2.7,3.5,2.8,3.2,3.6,3.3,3.3,3.3,3.5,3.4,3.5,2.9,2.5],"script":[1.2,1,1,0.9,0.9,1,0.7,1,1,0.7,1,1,0.6,1.2,1,0.9,1.5,1,1.4,1.1,1.2,0.9,1.4,0.7,0.9],"paint":[2.3,1.4,2.4,1.9,1.2,2,2,1.9,0.8,1.4,1.4,1,1.1,2.2,1.6,1.7,1.6,2.2,1.8,1.5,2.1,1.6,1.3,1.3,1.1]}},{"b":4,"v":{"total":[15.3,15,15.3,15.4,15.8,15.1,14.5,14.6,15.4,15.1,16,16.7,14.6,14.6,14.7],"script":[2.7,2.3,2.5,2.2,2.3,2.4,2.3,1.8,2.2,2.1,2.4,2.2,1.8,2.3,1.6],"paint":[12,11,11.8,11.7,12,11.5,10.7,11.7,12.1,11.9,12.3,13.3,11,11.7,12.3]}},{"b":5,"v":{"total":[11.6,11.6,11.4,11.5,11.5,11.6,11.5,11,11.7,11,11.4,11.5,11.4,12.2,11.5],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2],"paint":[10.1,9.4,9.7,9.7,9.6,9.7,9.5,9.2,9.9,9.1,9.7,9.5,9.8,10.3,9.5]}},{"b":6,"v":{"total":[338.5,340.2,339.4,341.2,339.2,338.9,336.8,338.2,341.3,342.5,339.9,339.7,343.2,340.2,338.4],"script":[114.3,114.1,111.7,114.3,112.7,110.1,109.8,111.6,112.6,114.4,112.1,112.8,115.4,111.6,112.4],"paint":[216.6,218.4,219.7,219.3,218.8,221.2,219.2,218.9,221,220,219.9,219.3,220,219.9,218.1]}},{"b":7,"v":{"total":[41.6,41.1,41.7,41.1,40.8,41.2,41.3,42.5,41.6,41.9,41.4,41.5,41.6,41,41.6],"script":[14.2,13.9,14.3,14,13.8,14.2,14.1,14.1,13.8,14.1,13.8,14.1,14,14.1,14.3],"paint":[26.4,26.2,26.4,26.1,26.1,26,26.3,27.3,26.8,26.8,26.5,26.4,26.7,25.9,26.4]}},{"b":8,"v":{"total":[14,15.3,15,14.3,13.9,14.7,14.7,14.5,15.2,15.1,15.1,15.2,15.3,15.5,15.7],"script":[12.3,12.8,13.3,12.3,11.9,12.5,12.9,12.3,12.7,12.8,13,13,13.6,13.6,13.7],"paint":[0.3,2.2,0.6,0.8,1.7,1.5,1,1.1,1.4,0.7,0.3,1,1,1.7,1.8]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.74]}},{"b":11,"v":{"DEFAULT":[5.82]}},{"b":12,"v":{"DEFAULT":[1.04]}},{"b":13,"v":{"DEFAULT":[49.14]}},{"b":14,"v":{"DEFAULT":[32]}},{"b":15,"v":{"DEFAULT":[10.8]}},{"b":16,"v":{"DEFAULT":[59.6]}}]},
+{"f":80,"b":[{"b":0,"v":{"total":[36.2,33.8,34.5,34.4,34.8,34.7,35.4,35.8,34.4,37.5,34.6,35.3,35.1,35.7,34.4],"script":[13.1,11,11.8,11.4,12.1,11.7,12.1,12.6,11.9,12.8,11.6,12.5,12.2,12.6,11.5],"paint":[22.5,22.2,22.2,22.4,22.2,22.4,22.7,22.6,21.9,24.2,22.5,22.2,22.3,22.6,22.3]}},{"b":1,"v":{"total":[36.3,36.8,37,36.2,36.2,36.7,36.7,37.3,36.9,37.5,36.9,36.1,36.3,37,37.1],"script":[13.3,13.5,13.8,13,13,13.3,13.4,13.8,13.4,13.8,13.8,13.2,13,13.5,13.6],"paint":[22.3,22.7,22.6,22.6,22.6,22.8,22.7,22.9,22.9,23.1,22.6,22.3,22.8,22.9,22.9]}},{"b":2,"v":{"total":[11.8,11.1,11.7,11.5,11.2,11.1,12.3,12.4,11.7,10.9,10.8,11.5,11.5,10.6,12.2],"script":[1.2,1,1.4,1.3,0.6,0.6,1.5,1,0.9,0.6,0.6,1,0.8,0.2,1],"paint":[9.1,9,8.9,9.2,9.5,9.2,10,10.8,9.2,9.2,9.6,9,9.5,9.1,10]}},{"b":3,"v":{"total":[4.3,3.3,3.5,3.7,3.9,3.3,3.6,2.5,3.3,3,3.6,2.9,3,3.7,3.2,3.5,3.7,3.6,2.9,3.9,2.6,2.8,3.1,2.4,3.6],"script":[1.1,0.9,1.2,1.2,1.5,0.9,1.2,0.8,1.1,1,0.9,0.3,0.6,1.7,0.9,0.9,1.3,1.2,1.1,1.6,0.3,1.1,1.5,0.9,1.2],"paint":[1,1.8,2.1,1.6,2.3,1.8,0.4,1.2,1.4,1.2,2.5,2.4,1.8,1.8,1.4,1.8,2.3,1.4,1,2.2,2.3,1.6,1,1.4,1.5]}},{"b":4,"v":{"total":[16.2,15.7,15.4,15.5,16.1,16.6,15.7,19,16.7,16.8,16.7,16.1,16.7,16.1,16.7],"script":[3.4,3.1,3.2,3,3.2,3.3,3.6,3.8,3.5,3.4,3.3,3.4,2.8,3.4,3.4],"paint":[11.1,11.5,11.2,11.5,11.8,11.9,11,13.8,12,12.5,11.7,11.7,13.2,12,12.3]}},{"b":5,"v":{"total":[11.9,11.8,12.6,12.2,13.4,11.8,11.6,12.1,11.8,11.8,12,12.1,11.9,11.8,12.2],"script":[1.6,1.5,1.8,1.8,1.8,1.7,1.7,1.7,1.6,1.6,1.7,1.8,1.7,1.5,1.8],"paint":[9.5,9.5,10,9.8,11.1,9.5,9.6,9.9,9.4,9.5,9.7,9.4,9.6,9.7,9.5]}},{"b":6,"v":{"total":[325.8,328,326.8,322.5,327.9,325.9,326.3,327.7,326.4,323.6,327.9,324.4,327.7,328.9,326.2],"script":[100.3,102.1,102.8,99.6,100.2,99.9,102.2,100.6,101,99.1,102.7,100.7,102.9,100.6,101.5],"paint":[218.4,218.6,217,215.8,220.6,218.9,217.2,219.9,218.3,217.5,218.3,216.6,217.7,221.1,217.6]}},{"b":7,"v":{"total":[39,38.8,38.4,39.5,39.2,39.2,38.9,38.4,38.6,39.1,38.7,38.5,39,40.7,39.1],"script":[10.9,10.7,10.7,11.1,11.2,11.1,11,10.6,10.6,11.2,10.6,10.9,11,10.8,11.1],"paint":[27,27.2,26.8,27.4,27,27.1,26.9,26.8,27.1,26.9,27.1,26.6,27,28.8,27]}},{"b":8,"v":{"total":[14.7,13.2,14.5,15,14.3,14.5,15.6,14.2,14.1,15.5,14.5,13.7,14.2,14.4,14.5],"script":[12.8,11.6,12.6,12.9,12.7,12.2,13.2,11.9,11.9,13,12.3,12.1,11.9,12,12.7],"paint":[1.1,0.3,0.5,0.3,0.3,1.3,1.1,0.7,1.5,0.8,0.3,1.1,1.3,1.4,0.6]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[5.12]}},{"b":11,"v":{"DEFAULT":[5.14]}},{"b":12,"v":{"DEFAULT":[1.94]}},{"b":13,"v":{"DEFAULT":[43.17]}},{"b":14,"v":{"DEFAULT":[23.1]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[52]}}]},
+{"f":81,"b":[{"b":0,"v":{"total":[28.6,28.4,29,28.1,27.7,28.2,28.5,29,27.6,29.2,28.2,27.8,28.1,27.1,27.9],"script":[5.7,5.7,5.8,5.5,5.5,5.5,5.7,6.1,5.4,6,5.4,5.6,5.5,5.5,5.5],"paint":[22.4,22.2,22.7,22,21.7,22.1,22.3,22.4,21.6,22.7,22.3,21.6,22,21.1,21.8]}},{"b":1,"v":{"total":[33,33,32.8,32.4,33,32.9,32.8,33,32.9,32.7,33,33.2,34.7,33.1,32.2],"script":[9.3,9.5,9,8.8,9.4,9.1,9.2,9.4,9.1,9.2,9.4,9.2,9.6,9.3,9],"paint":[23,22.9,23.2,23.1,23.1,23.1,22.9,23,23.3,22.9,23.1,23.4,24.5,23.1,22.6]}},{"b":2,"v":{"total":[13.7,14,15.8,13.2,14.2,13.8,13.4,14.5,14.5,13.4,13.5,13.8,14.1,14.2,14.5],"script":[2.1,2.2,3.3,2.2,2.2,2.6,2.9,2.5,3.2,2.5,2.6,2.5,2.5,2.5,2.9],"paint":[8.9,10.6,11.8,9.9,10.8,10.1,9.5,11,10.2,9.5,9.1,10,9.7,9.5,10.5]}},{"b":3,"v":{"total":[2.9,2.4,3.1,3,3.1,3.3,2.9,2.8,3.1,2.7,3.5,2.8,3,2.7,2.6,2.9,3.4,3.5,3.3,3.3,3.1,3.5,3.1,2.5,3.3],"script":[0.2,0.2,0.9,0.6,0.6,0.8,0.2,0.7,0.6,0.5,1.1,0.7,0.3,0.8,0.2,0.3,1.1,1.3,0.9,0.8,0.6,1,1,0.6,0.9],"paint":[2.6,1.3,1.6,2.2,1.6,1.1,2.2,2,1.8,1.3,0.4,2,2.6,1.1,1.8,2.4,1.2,2.1,1.5,1.5,1.6,2.3,1.4,1.1,1.5]}},{"b":4,"v":{"total":[15,14.5,14.4,15.2,15.8,15.2,14.8,14,14.5,14.3,14.4,14.2,15.2,14.2,16.1],"script":[1.7,0.9,1.4,1,1,1,0.6,0.9,1.1,1.3,1.4,1.4,1.7,1.3,1.8],"paint":[11.8,12.4,11.7,13.2,13.3,12.9,12.7,11.9,11.9,11,12,11.9,12,11.3,13.1]}},{"b":5,"v":{"total":[13.3,13.3,13.7,13.1,13.3,13.2,13.4,13,12.9,13.4,13.5,13.3,13.2,13.4,13],"script":[2.5,2.7,3,2.6,2.5,2.5,2.5,2.6,2.5,2.9,2.8,2.8,2.7,2.7,2.5],"paint":[10.2,10,10.4,9.9,10.1,10.1,9.9,9.8,9.4,9.9,9.9,9.7,9.9,10,9.9]}},{"b":6,"v":{"total":[343.6,344.4,341.7,347.9,342.3,343.6,344.2,340.4,341.1,341.3,341.5,343.9,341.8,347.6,345.8],"script":[108.9,110.3,107.6,108.9,108.7,108.4,109.8,107.4,107.3,108,107.9,109.2,108.2,110.1,110.3],"paint":[226.6,226,226.1,230.8,225.5,226.7,226.2,224.9,225.7,225.3,225.4,226.7,225.4,228.9,226.9]}},{"b":7,"v":{"total":[42.5,42.6,42.9,42.1,42.5,42.5,42.9,42.8,42.2,41.9,42.4,41.9,42.4,42.2,42],"script":[15,14.6,15.1,14.8,14.9,14.7,14.9,14.9,14.7,14.6,14.8,14.8,15.2,14.7,14.8],"paint":[26.4,27,26.8,26.2,26.6,26.7,27,26.9,26.4,26.3,26.6,26.1,26.1,26.4,26.2]}},{"b":8,"v":{"total":[15.9,17.7,15.6,16.2,15.7,15,16,15.6,18.3,16.2,16.1,16,15.9,16.3,16.4],"script":[13.5,15.6,13.8,14.1,13.4,13.3,13.9,13.5,16.8,14,13.8,14,13.4,14.1,14.2],"paint":[1.4,0.6,1,1.6,0.5,1,1.6,1.4,1.4,0.9,1.6,1.8,1.5,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[1.07]}},{"b":10,"v":{"DEFAULT":[5.21]}},{"b":11,"v":{"DEFAULT":[5.19]}},{"b":12,"v":{"DEFAULT":[4.82]}},{"b":13,"v":{"DEFAULT":[39.51]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[21.8]}},{"b":16,"v":{"DEFAULT":[108.8]}}]},
+{"f":82,"b":[{"b":0,"v":{"total":[89.2,87,84,85.4,87.9,85.5,84.1,87.5,87.2,90.5,85.6,87.4,90.1,86.7,90.8],"script":[60.9,61.2,61.6,61.1,61.4,60.3,61,61.9,61.4,61,61.6,61.5,60.8,61.1,60.6],"paint":[22.6,22.5,22.1,22,22.3,22.4,22.5,22.6,22.6,22.4,22.4,22.5,22.1,22.5,22.6]}},{"b":1,"v":{"total":[92.1,99,92.3,91.9,96.8,93.1,98.9,96.9,94.5,97.1,92.5,94.1,92.7,93.4,99],"script":[63.4,63.7,63.4,63,63.3,63.4,63.6,64.7,63.4,63.2,64,63.8,63.4,63,63.7],"paint":[23.3,23.5,23.6,22.9,23.2,23.4,23.7,23.6,23.3,23.1,22.9,23.5,23,22.8,23.1]}},{"b":2,"v":{"total":[57.5,56.9,56.6,57.5,56.4,59,57.7,57.3,59.4,59.1,57.5,57.5,59.3,59.3,56.5],"script":[3.8,3.3,2.7,3.9,4,3.2,3,3.6,3.6,2.9,3.9,4.7,3.6,3.2,3.3],"paint":[12.5,12.3,12.6,12,10.9,11.5,10.9,11.5,12.9,12.4,12.6,10.9,11.6,11.3,12.2]}},{"b":3,"v":{"total":[14.1,9.3,10.7,8,13.8,10.7,6.4,9.4,7.1,5.8,10.1,9.4,11.6,13.3,8,8.3,8.1,8.1,8.4,13.7,11.8,5.7,10.5,13.1,5.4],"script":[1,2.1,2,2.1,1.6,1.4,1.2,1.4,1.6,1.5,2,2.2,1.9,1.2,1.4,0.9,2.1,1.9,2,1.2,1.8,2.2,1,1.4,0.3],"paint":[3.3,3.5,2.7,2.2,3.3,2.7,2.3,3.3,3.5,3.7,4.3,2.2,2.5,2.9,3.8,2.6,2.1,2.1,4,2,3.8,2.3,3.7,3.8,3.5]}},{"b":4,"v":{"total":[25.6,67.2,66.3,66.2,25.1,25.1,66.9,67.7,66.5,65.9,69.7,65.2,66.2,67.1,65],"script":[8.4,9,8.7,8.5,8.2,7.4,9.1,8.3,8,8.2,9,8.6,8.9,9,8.5],"paint":[15.4,15.1,13.7,14.9,15.9,14.7,14.5,13.7,16.2,15.2,15.5,14.7,15.3,14.8,14.2]}},{"b":5,"v":{"total":[17.5,17.5,19.4,16.5,17.5,17.1,17.1,17.4,16.8,16.9,17.4,16.9,17.1,16.8,17.2],"script":[5,4.8,4.7,4.8,5.2,4.7,4.8,4.8,4.8,5.2,5.2,4.9,5.1,4.7,5],"paint":[11.2,11.2,11,10.9,11.3,11.2,11,11.3,11.1,10.9,11.2,10.6,10.7,11.1,11.2]}},{"b":6,"v":{"total":[833.3,828.1,822.4,839.1,830.2,831.9,839.7,836,832.4,830.4,828.3,838,835.8,840.2,833.8],"script":[591.6,592.7,590.8,598.8,593.9,595.2,595.3,594.6,594.1,592.9,593.9,595.2,596.1,600.8,591.2],"paint":[229,227.3,224.9,232.5,229.5,228.8,235.9,232.1,229.2,227.8,226.8,234.2,231.5,228,231.9]}},{"b":7,"v":{"total":[87.5,88.3,87.4,87.7,89,89,87.8,88.1,87.9,88,88.8,88,87.6,89.5,87.9],"script":[49.1,49.7,49.2,49.2,49.9,50.3,49.5,49.2,49.4,49.1,49.9,49.5,49.5,51.1,49.1],"paint":[27.3,27.1,27.1,27,28,27.2,27.4,27.4,27.5,27.8,27.7,27.4,26.9,27.1,27.4]}},{"b":8,"v":{"total":[64.9,22,23.2,22.8,23.5,22.5,64.9,22.2,23.8,22.8,63.7,22.3,21.1,22.2,23.1],"script":[19.4,18.8,19,18.5,20.1,19.4,18.9,18.2,19,19.2,18.2,18.9,17.6,18.6,19.4],"paint":[3.6,3.1,2.9,2.1,2.8,2.6,3.9,2.8,3.4,2.5,1.9,1.5,2.8,2,2.5]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[9.99]}},{"b":11,"v":{"DEFAULT":[9.99]}},{"b":12,"v":{"DEFAULT":[9.27]}},{"b":13,"v":{"DEFAULT":[86.93]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[30.6]}},{"b":16,"v":{"DEFAULT":[41.7]}}]},
+{"f":83,"b":[{"b":0,"v":{"total":[41.3,40.8,42.6,42,41.8,42,39.8,42.1,41.3,42.1,41.9,41.8,42.4,39.6,42.3],"script":[18.9,18.7,19.8,19.9,19.7,19.7,18.2,19.6,19.5,20,19.8,19.4,19.9,18.2,19.8],"paint":[21.8,21.5,22.2,21.6,21.4,21.8,21.1,21.8,21.3,21.6,21.5,21.8,21.9,20.8,22]}},{"b":1,"v":{"total":[45.4,45.5,46.9,46.7,45.3,46.1,45.9,46.2,46.2,45.9,46.1,46,45.9,46.5,46.5],"script":[22,22.1,23.5,23.1,22.8,23,22.8,23.4,23.1,22.8,22.9,22.8,22.6,22.7,23.3],"paint":[22.8,22.8,22.8,23,22,22.6,22.6,22.3,22.6,22.6,22.6,22.6,22.6,23.2,22.7]}},{"b":2,"v":{"total":[12.6,13.2,12.7,12.6,12.6,12.3,12.6,13.5,13.4,13.4,12.5,12.7,13.3,12.3,13.2],"script":[1.9,2.5,2.4,1.9,2,2.1,2.2,1.9,2.2,2.2,2.3,1.7,2.1,1.7,3],"paint":[9.2,9.8,9.4,9.6,9.5,8.7,8.9,10.3,10.5,9.7,9.3,9.5,9.9,9.7,9.3]}},{"b":3,"v":{"total":[7.2,8.7,9.1,7,8,7.7,8.8,8.4,9,7.1,6.9,8.2,7.3,8.1,9.1,9.4,7.1,6.8,7.6,6.9,6.8,9,7.2,6.4,7.4],"script":[4.5,5.7,5.9,4.8,4.8,5,5.4,5.9,5.8,4.7,4.4,5.6,4.7,5,5.9,5.8,4.4,4,5,4.6,4.8,6.2,4.6,4.6,4.8],"paint":[2.4,2.3,1.7,1.4,2.4,2.5,1.8,2.4,2.9,1.3,1.9,1.2,2,2.1,1.5,2,1.7,1.8,1.1,1.9,1.1,1.8,1.8,1.3,1.6]}},{"b":4,"v":{"total":[107.6,103.3,104.7,108.2,106.7,105.1,108.4,107.3,110.1,110.2,106.3,107.1,106.4,108.4,105.5],"script":[20.1,18.7,20.2,19.9,18.7,19.6,20.1,21.2,19.6,22,19.4,21,19.8,19.8,18],"paint":[86.2,81.7,82.1,85.1,85.8,83.4,86.5,84.4,87.5,86.2,83.9,83.1,83.8,85.9,85.5]}},{"b":5,"v":{"total":[16,14.7,15.9,15.9,15.2,16.4,15.5,14.8,15.1,16.1,16,15.7,15.5,15,15.3],"script":[4.5,3.8,4.6,4.9,4,4.8,4.5,3.8,4.1,4.5,4.8,4.3,4.3,3.6,4.1],"paint":[10.8,10.1,10.5,10.3,10.5,10.6,10.7,10.2,10.3,10.9,10.6,10.6,10.6,10.7,10.3]}},{"b":6,"v":{"total":[378.9,376.9,378.5,378.3,377.7,378.7,378.9,380.3,380,380.7,380.2,381.1,378.6,378.8,383],"script":[152.2,152.4,154,153.7,154,153.4,154.6,155.8,153.9,155.2,154.6,155.9,154.9,153.5,155.4],"paint":[218.6,217.3,217.4,217.6,216.4,218,217.2,217.4,219.1,218.2,218.4,218,216.6,218.1,220.5]}},{"b":7,"v":{"total":[44.5,45.1,45.6,45.7,45.5,45.6,45.4,45.4,45.6,45.9,45.5,45.7,45.6,48.1,45.5],"script":[17.2,17.6,17.9,18.1,18.2,17.8,18.1,18.1,17.6,17.8,18.2,18.1,18,18.4,18],"paint":[26.3,26.5,26.7,26.6,26.3,26.8,26.3,26.3,27,27.3,26.2,26.6,26.6,28.6,26.6]}},{"b":8,"v":{"total":[27.7,29.8,28.2,29,26.5,28.6,30.2,28.9,27.7,27.6,28.8,28.1,28.6,27,29],"script":[25.6,27.9,25.9,27.1,25,26.2,27.8,26.5,25.3,25.6,25.9,26.2,26,25.3,26.8],"paint":[1.1,1.1,0.3,0.3,0.7,1.2,1.2,1.3,2.1,0.4,2.1,0.5,1.6,1.6,0.4]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.75]}},{"b":11,"v":{"DEFAULT":[8.76]}},{"b":12,"v":{"DEFAULT":[2.15]}},{"b":13,"v":{"DEFAULT":[73.15]}},{"b":14,"v":{"DEFAULT":[227.4]}},{"b":15,"v":{"DEFAULT":[59.6]}},{"b":16,"v":{"DEFAULT":[232.5]}}]},
+{"f":84,"b":[{"b":0,"v":{"total":[55.5,53.4,52.4,54.9,53.7,55.4,55.3,55.3,52.1,52,58.9,54.4,53.5,53.4,54],"script":[23.7,24,24.2,24.2,24.1,24.4,24.1,24.7,24,24.6,24.1,24,24,24.1,24.4],"paint":[21.2,21.6,21.2,21.7,21.4,21.5,21.7,21.8,22.1,21.2,21.4,21.1,21.2,21.6,21.9]}},{"b":1,"v":{"total":[65.6,58.5,71.1,64.4,57.3,65.1,63.2,64.3,70.7,62.6,58.3,59.5,62.7,64.4,60.7],"script":[29.2,29.2,29.1,28.8,28.6,28.9,28.9,28.9,29.3,28.8,28.2,28.6,28.9,29.3,29.1],"paint":[23.4,23,23.5,23.5,23.6,23.7,23.6,23.5,23.6,23.3,23.7,23.4,23.5,23.3,23.3]}},{"b":2,"v":{"total":[45.7,45.7,44,45.7,45.4,45.4,45.3,29.5,44,45.9,29,27.7,43.8,47.4,44.9],"script":[15.3,15.6,14.5,15.5,15.4,15.7,15,15.2,15.9,14,13.8,13,14.8,15,15.7],"paint":[12.8,13.4,13.1,14.2,13.5,12.2,13.9,13.3,12,14.2,11.8,12.3,12.7,12.5,12.1]}},{"b":3,"v":{"total":[16,17.6,22.6,16.1,22.2,20.8,14.2,23.5,14.3,14,15.5,18.5,10,17.9,21.6,16.9,15.1,19,19.9,22.1,16.6,22,19.3,17.4,20.7],"script":[6.1,5.5,6,6.1,5.6,5.4,5.2,7.2,4.4,6.6,7.1,5.2,5.6,5.5,7.5,7.1,6.2,4.9,6.6,4.5,5,6.3,6.1,5.3,4.9],"paint":[3.3,3.5,3.2,4.8,3,3.5,2.5,3.4,3.5,4.9,2.9,3.7,3.5,3.9,4.6,4,2.6,4.2,3.5,3.5,4.5,3.7,2.9,2.7,5.5]}},{"b":4,"v":{"total":[127.8,131.6,132,133.3,129.9,131.3,131.6,133.3,135.4,129.1,133.2,133.8,130.5,134.3,129.5],"script":[26.9,26.7,26.6,27.7,28.9,23.9,27.4,27.1,27.8,26,24.6,27.5,27.5,27.6,26.8],"paint":[83.3,85.5,84.3,87,82,84,83.9,83.2,82.7,84.9,84.9,85.2,85.3,86.2,84.3]}},{"b":5,"v":{"total":[28.8,25.7,28.4,31.7,32,25.5,24.6,26.9,23.9,24.1,27.8,29.6,30.1,26.7,28.2],"script":[6.8,6.6,6.5,6.8,6.5,6.8,7.1,6.3,6.3,6.3,6.8,6.8,6.7,6.2,6.8],"paint":[11.6,10.8,12.1,11.8,12,11.6,11.7,11.4,12.1,11.8,11.5,11.8,11.1,11.5,11.8]}},{"b":6,"v":{"total":[523.2,509.4,514.2,516.9,514.5,515.1,522.3,517.7,524.3,509.2,524,516.8,514.9,501.8,514.1],"script":[272.4,271.7,275.2,273.7,277,275.8,275.5,275.6,283.5,271.8,278.2,277.3,276.8,272.9,274.1],"paint":[235.3,233.1,232,231.6,233.5,232.8,235.6,235.2,230.2,230.8,239.3,233.1,231.7,223.2,233.2]}},{"b":7,"v":{"total":[66.4,60.3,55.2,60.3,62.4,62.4,61.9,61,61.4,67.9,63.2,58.1,61.8,58.3,55],"script":[23.5,23,23.4,23.3,23.8,23.3,23.5,23.4,23.5,23.1,23.9,23.8,23.1,23.5,23.5],"paint":[25.8,26,26.3,26.2,26.2,26.1,26.2,26,26.3,26.5,25.6,26.1,26.4,25.9,26]}},{"b":8,"v":{"total":[57.6,57,55.7,54.9,59,57.2,58.2,55.3,60.3,57,57.2,56.4,56.1,58,60.2],"script":[32.8,31.5,31.5,30.9,32.8,31.9,34.4,32.8,33.1,32.5,33.2,33.5,32.5,32,32],"paint":[3.1,3.1,1.4,2.1,3,2.5,3.4,2.1,1.7,2.3,3,2.8,2.6,2.6,2.8]}},{"b":9,"v":{"DEFAULT":[1.85]}},{"b":10,"v":{"DEFAULT":[7.64]}},{"b":11,"v":{"DEFAULT":[8.36]}},{"b":12,"v":{"DEFAULT":[3.27]}},{"b":13,"v":{"DEFAULT":[53.15]}},{"b":14,"v":{"DEFAULT":[351.1]}},{"b":15,"v":{"DEFAULT":[80.8]}},{"b":16,"v":{"DEFAULT":[376]}}]},
+{"f":85,"b":[{"b":0,"v":{"total":[29.6,27.3,29,27.6,27.9,27.3,27.5,27.7,27.7,27.6,27.2,27.2,29.6,27.4,27.3],"script":[7.5,6.8,7.3,7.1,7.1,6.8,7,7,7.1,6.7,6.8,6.7,7.3,6.9,6.7],"paint":[21.5,19.9,21.2,20,20.3,19.9,20,20.2,20.1,20.3,19.9,20,21.6,20,20.1]}},{"b":1,"v":{"total":[35,34.3,34.2,34.6,34.7,34.2,34.4,34.8,34.1,34.1,34.3,34,33.9,34.3,34.5],"script":[10.9,11,10.8,10.9,11,10.8,11,10.9,11,10.9,10.6,10.8,10.6,11,10.9],"paint":[23.5,22.8,22.8,23.1,23,22.9,22.9,23.3,22.5,22.5,23.1,22.7,22.7,22.8,23]}},{"b":2,"v":{"total":[14.3,15.6,14.1,14.2,14.9,14.8,14.3,14.4,15,14.5,13.6,14.2,14.4,14.1,14.3],"script":[3.5,4.7,3.9,3.7,4,3.1,4,3.9,3.9,3.3,3.8,3.4,4,3.3,3.1],"paint":[9.3,9.9,8.8,8.8,10,10,8.8,9,10,10.3,8.9,10.1,9,9.9,10]}},{"b":3,"v":{"total":[4.4,5.3,4.5,4.2,4.3,5.3,4.1,4.2,4.5,4.9,4.3,4.2,4.3,3.6,4.9,5.3,4.6,4.7,4.5,4.5,4.1,3.4,4.6,4.9,4.3],"script":[1.5,2.4,2.1,2.2,2.3,2.4,1.9,2.1,2.6,2.1,1.3,2.1,2.6,1.2,2.1,2.6,2.4,2.8,2.3,1.6,1.5,1.5,1.5,1.8,2.7],"paint":[2.8,2.7,2.3,1.2,1.8,2.7,2,2,1.8,2,2.8,1,0.7,2.2,1.9,1.8,1.2,1.8,2.1,2.5,1.4,1.1,2.2,1.1,1.5]}},{"b":4,"v":{"total":[103.3,105.9,110.5,104.9,104.6,107.6,107.4,106.1,105.7,103.4,107.9,104.4,105,106.2,106.7],"script":[17.7,18.1,20.6,17.4,18.1,19.4,19.8,17.3,18.2,17.8,17.4,17.8,18.8,19,18.4],"paint":[83.8,86.3,87.2,85.7,84.5,86.4,84.8,86.2,85.1,82.9,88.2,84.5,83.3,84.3,86.2]}},{"b":5,"v":{"total":[12.5,12.2,12.8,12.3,12.2,12.1,11.9,12,11.9,12.1,12.4,12.2,12,11.8,12.1],"script":[1.6,1.6,1.3,1.4,1.4,1.5,1.5,1.3,1.5,1.6,1.7,1.7,1.3,1.4,1.4],"paint":[10.3,10,10.7,10.2,9.8,9.8,10,10,9.7,10.1,10.3,9.8,9.7,9.9,9.9]}},{"b":6,"v":{"total":[398,395.6,394,393.7,395.6,394.4,396.2,398.2,395.2,393.6,394.6,397.3,397.3,398.1,395],"script":[169.9,169.8,170.2,169.1,169.8,168.4,170.4,171.5,171.1,168.8,168.5,172,170.2,171,168.8],"paint":[219.8,218.4,216.5,216.4,218,218.4,218.3,218.7,216.5,217.6,218.6,217.5,219.9,219.4,219]}},{"b":7,"v":{"total":[35.3,33.4,33.9,33.5,35.3,33.8,33.7,33.4,33.7,33.5,34.3,34.3,34,34,33.8],"script":[7.5,7.1,7.3,7.5,7.6,7.2,7.5,7.4,7.2,7.2,7.4,7.9,7.4,7.3,7.3],"paint":[26.8,25.4,25.7,25.1,26.8,25.7,25.2,25.1,25.6,25.5,25.9,25.6,25.7,25.8,25.6]}},{"b":8,"v":{"total":[17.8,18.1,18.1,17.6,19,17.5,16.8,18.4,18,18.9,17.9,17.6,17.9,18,17.6],"script":[15.6,16.4,15.8,15.8,16.8,15.2,15.2,16.3,15.7,16.8,15.9,15.7,15.7,16.1,15.6],"paint":[0.8,0.3,1.3,0.6,0.9,1.5,1.1,0.3,1.1,1.1,1.8,1,1.1,1.1,1.6]}},{"b":9,"v":{"DEFAULT":[1.19]}},{"b":10,"v":{"DEFAULT":[4.63]}},{"b":11,"v":{"DEFAULT":[5.08]}},{"b":12,"v":{"DEFAULT":[1.93]}},{"b":13,"v":{"DEFAULT":[32.45]}},{"b":14,"v":{"DEFAULT":[184.6]}},{"b":15,"v":{"DEFAULT":[50.2]}},{"b":16,"v":{"DEFAULT":[202.6]}}]},
+{"f":86,"b":[{"b":0,"v":{"total":[28.8,27.5,29,29.1,28.9,28.8,27,29.3,27.2,29.4,29.1,29.1,29.1,27.2,26.8],"script":[6.5,6.1,6.6,6.9,6.6,6.6,5.9,6.6,6.2,6.9,6.7,6.8,6.7,6.2,5.8],"paint":[21.7,20.8,21.8,21.7,21.7,21.7,20.5,22.1,20.4,21.9,21.9,21.7,21.8,20.5,20.5]}},{"b":1,"v":{"total":[33.2,33.9,33.4,33.3,33.5,33.5,33.4,33.9,33.9,33.4,33.4,34.1,34.1,34,33.8],"script":[10.4,10.8,10.8,10.3,10.5,10.6,10.5,10.6,10.9,10.6,10.9,10.9,10.9,10.8,10.8],"paint":[22.2,22.5,22,22.5,22.5,22.3,22.3,22.7,22.4,22.2,21.9,22.6,22.6,22.7,22.4]}},{"b":2,"v":{"total":[14.3,14.6,15.4,13.9,15.9,15.8,14.3,15.2,14.5,15.2,16.1,14.4,14.7,14.5,14.7],"script":[4.2,3.8,4.2,3.9,4.3,3.7,3.7,3.8,3.8,4.3,4,4,3.7,3.9,4.2],"paint":[8.6,9.7,9.9,8.8,10.6,10.9,9.5,10,9.6,9,9.9,9.4,9.5,7.9,9.5]}},{"b":3,"v":{"total":[4.1,4.9,4.6,4.3,4.9,4.8,4.5,4.1,5.1,4.8,4.4,4.2,4.2,4.6,4,4.6,4.3,4.5,4.9,4,4.5,4.1,4.6,5.5,3.6],"script":[2.2,2.1,2,1.6,2.1,2.4,2.2,1.9,2.3,2.1,1.9,1.4,1.5,2.4,1.9,2.1,1.4,2.3,2.2,1.3,1.9,1.5,2.1,2.5,2],"paint":[1.1,1.6,2.4,2.6,2.6,1.4,2.2,1.3,1.7,2.5,1.8,2.7,1.8,1.4,1.5,1.7,2.3,1.2,2.4,1.3,2.4,2.5,1.6,2.9,1.1]}},{"b":4,"v":{"total":[103.9,105.6,103.9,103.2,103.9,100.7,103.6,106,103.8,106.8,101.6,106.9,107.2,102.7,110],"script":[17.2,19.2,17.6,18,17.6,16.9,17.5,18.5,17.6,19.1,17.3,19.5,17.7,17.3,20.4],"paint":[83.6,83.7,84.1,83.2,84.8,81.7,83.8,85.8,83.3,85.5,81.9,85.5,86.7,83.7,88]}},{"b":5,"v":{"total":[11.8,11.6,12.2,12.7,12.2,12.1,11.6,12,12.1,11.9,12.8,12.1,11.6,12,12],"script":[1.5,1.3,1.6,1.4,1.4,1.9,1.3,1.6,1.7,1.3,1.5,1.3,1.4,1.5,1.6],"paint":[9.7,9.5,10.2,10.5,10.1,9.8,9.7,10,9.8,10,10.4,9.7,9.6,10,9.8]}},{"b":6,"v":{"total":[392.2,387.8,412,411.6,389.4,391.8,391.3,389.7,390.2,388.8,389.8,389.5,389.5,390,389.2],"script":[166.4,164.7,187.1,186.4,164,166.5,164.4,165.8,166.3,164.5,164.5,165,166.1,165.4,163.8],"paint":[218,215.7,217.4,218,218,217.7,219.1,216.7,216.6,216.8,217.7,217,216,217,218]}},{"b":7,"v":{"total":[33.6,33.9,33.9,33.9,35,34.6,34.3,34.2,34.6,34.4,34,34.2,34.8,34.3,34.5],"script":[7.1,7,7.3,7.4,7.5,7.3,7.5,7.2,7.3,7.2,7.4,7.4,7.6,7.2,7.6],"paint":[25.6,25.9,25.7,25.6,26.6,26.5,25.8,26,26.4,26.3,25.6,25.9,26.3,26.2,26.1]}},{"b":8,"v":{"total":[17.3,16.8,18.2,18.7,18.8,19,17.5,19.2,16.8,17.5,18.4,18.1,18,19.6,17.1],"script":[15.1,15.2,15.8,17,16.9,17.1,15.3,17,15.2,15.6,16.1,16.1,15.9,17.7,14.8],"paint":[2,0.8,2.1,0.7,1.3,0.9,0.9,1.3,0.3,0.4,1.7,1.8,1.1,1.2,0.3]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[4.66]}},{"b":11,"v":{"DEFAULT":[5.06]}},{"b":12,"v":{"DEFAULT":[1.94]}},{"b":13,"v":{"DEFAULT":[33.35]}},{"b":14,"v":{"DEFAULT":[183]}},{"b":15,"v":{"DEFAULT":[50]}},{"b":16,"v":{"DEFAULT":[202.7]}}]},
+{"f":87,"b":[{"b":0,"v":{"total":[28.6,28.9,26.8,29,29.1,26.7,28.9,29,27.3,26.8,27,26.9,29.2,26.9,28.8],"script":[6.5,6.8,5.9,6.5,6.9,5.8,6.6,6.7,6.2,6,5.8,6,6.7,6,6.6],"paint":[21.6,21.6,20.3,22,21.7,20.4,21.8,21.7,20.6,20.3,20.7,20.4,21.9,20.3,21.6]}},{"b":1,"v":{"total":[32.9,32.6,33.4,32.7,33.4,33.4,32.8,33.9,34.1,33.6,32.8,33.9,32.8,33.3,33],"script":[10.2,10.2,10.5,10.5,10.5,10.7,10.4,10.8,10.9,10.6,10.4,10.9,10.3,10.5,10.7],"paint":[22.1,21.8,22.3,21.6,22.4,22.1,21.9,22.5,22.7,22.4,21.9,22.4,21.9,22.3,21.7]}},{"b":2,"v":{"total":[15.2,15.3,15.2,14.6,14.7,14.4,14.9,15.2,14.9,15,17,15.3,15.1,15.1,15.3],"script":[4.2,4.6,4.6,4.4,3.8,4.5,3.8,4.4,4.6,3.5,4.8,4.1,4.5,4,5],"paint":[10.2,8.4,9.4,7.9,9.6,8.7,10.8,9.9,9.6,9.8,10.7,9.5,8.9,10,9.1]}},{"b":3,"v":{"total":[4.3,4.5,4.8,4.9,4.6,4.4,4,6,4.6,4.5,4.3,4.6,4.3,5.1,4.6,4.1,4.7,4.4,4.3,4,4.5,4.5,4.8,4.3,4.5],"script":[2.2,2.1,2.1,2,1.7,2.1,1.5,2.8,2.2,2.3,1.8,1.5,2,2.3,2.2,2,2.1,1.4,1.5,1.1,2.3,2.4,1.5,2.4,2],"paint":[2,1.2,1.9,2.3,1.6,1.1,1.5,2.3,2.3,2.2,1.9,1.8,2,2.6,2.2,1.4,2.3,2.9,2.7,2.9,1.7,1.3,1.3,1.1,2]}},{"b":4,"v":{"total":[104.8,102.9,105.8,105.7,106.3,104.3,105.3,105.7,105.6,105.8,106.6,104.8,104.2,102.9,105.1],"script":[18.5,17.5,19.4,18.8,17.6,17.6,19.9,19.7,17.9,18.9,18,17.3,17.1,17.5,18.2],"paint":[84.7,83,85.1,83.9,85.8,84.1,82.7,83.3,85.3,84.3,84.8,86.1,85.7,82.9,85.3]}},{"b":5,"v":{"total":[11.9,11.9,12.8,11.6,12.1,11.9,12.1,12.8,11.7,12,11.7,11.6,12.2,11.9,12.1],"script":[1.2,1.3,1.5,1.3,1.3,1.5,1.5,1.5,1.3,1.3,1.3,1.2,1.4,1.5,1.7],"paint":[9.9,10.2,10.4,9.7,10.2,9.9,10.2,10.1,9.7,9.8,9.7,9.6,10,9.6,9.2]}},{"b":6,"v":{"total":[410.7,390.6,388.7,393,409.5,386.6,390.4,389.5,389.7,409.8,388.1,391.6,412.4,431.6,388.7],"script":[187.7,165.4,164.1,163.8,184.3,160.8,163.5,164.2,164,186.3,164,166,185,205.1,163.7],"paint":[215.8,217.5,217.5,221.7,218,217.9,219.2,218,218.2,216.4,216.7,218.3,219.8,218.8,217.3]}},{"b":7,"v":{"total":[33.6,33.7,34.4,34.1,34.2,34,33.6,34.1,33.8,33.6,33.7,33.7,33.7,33.7,34.1],"script":[7,6.9,7,7,7.3,7.1,6.9,7,6.9,6.7,6.7,6.9,7.1,7.1,7],"paint":[25.6,25.8,26.4,26.2,25.9,25.9,25.7,26.2,26,26,26.1,25.9,25.7,25.7,26.2]}},{"b":8,"v":{"total":[18,18.2,17.9,16.7,18,18.8,18,17.5,18.3,17.3,18.8,18,18.3,18,17.4],"script":[15.8,15.9,15.9,14.7,16.5,16.6,15.8,15.3,16.4,14.8,16.5,15.7,16.1,15.6,15.5],"paint":[0.9,1.9,1.5,0.4,0.9,1.3,0.3,0.8,0.5,1.5,1.4,2.1,0.3,1.4,1.1]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[4.46]}},{"b":11,"v":{"DEFAULT":[4.91]}},{"b":12,"v":{"DEFAULT":[1.85]}},{"b":13,"v":{"DEFAULT":[31.58]}},{"b":14,"v":{"DEFAULT":[182.2]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[199.5]}}]},
+{"f":88,"b":[{"b":0,"v":{"total":[31.9,37.5,32,41.2,38.6,33.1,36.6,34.4,31.6,40.8,35.5,36,37.9,34.9,37.4],"script":[7.8,7.6,7.7,7.6,7.5,7.6,7.8,7.5,7.3,7.4,7.7,7.5,7.5,7.3,7.8],"paint":[21.8,21.5,21.7,21.8,21.6,22.4,21.9,21.7,21.6,21.2,21.9,21.5,21.5,22.4,21.8]}},{"b":1,"v":{"total":[36.1,40.7,34.4,34.7,38,39.1,36.9,37.4,35.1,36.5,38.6,38.3,34.3,38.2,36.4],"script":[11.6,11.4,11.7,11.4,11.2,11,11.5,11.7,11.4,11.4,11.4,11.4,11.6,11.5,11.6],"paint":[22.4,22.6,22,22.7,22,22.8,22.4,22.7,23.1,22.5,22.1,22.4,22.2,23,22.5]}},{"b":2,"v":{"total":[34.4,33.5,34.3,34.8,18.7,34.7,34.8,19,34.9,33.3,35.5,34.1,34.2,33.4,33.9],"script":[6,5.2,6,5.2,5.9,5.8,6.3,5.9,6,5,5.8,6.3,5.4,5.5,5.4],"paint":[12.6,12.2,11.7,12.1,11.4,13.7,12.1,12.5,12.5,13,12.1,12.7,13.1,12.6,13.4]}},{"b":3,"v":{"total":[7.3,7.5,11.6,12.9,12.1,8.4,10,13.1,9.5,11.4,7.4,13.3,7.4,6.5,9.7,11,12.2,11.9,12.4,14.2,7.6,9.5,13.7,8.1,8],"script":[3.8,2.7,4.5,3.1,3.4,3.2,2.7,3.5,3.2,3.1,2.7,3.7,2.8,3.4,3.8,2.4,3.2,2.3,3.6,3.5,3,4,4.2,3.9,3.5],"paint":[2.5,1.8,2.8,3.5,3.9,2.5,2.7,2.5,2.1,3.6,2.4,4.2,3.6,1.9,2.2,3.1,3.3,4.6,3.9,3.6,3.7,3,3.2,2.6,3.7]}},{"b":4,"v":{"total":[124.3,122.4,106,121.4,121.7,126.7,110.5,105.6,123.4,110,106,108.6,122,109.6,104.9],"script":[18.8,19.6,18.8,19.1,18.7,21.1,21.2,20.4,19.1,19.7,19,19.5,19.8,19.2,19.1],"paint":[86.6,86.8,84.7,85.2,84.2,89,86.9,83.9,86.6,85.9,84.9,85.9,85,88.9,83.7]}},{"b":5,"v":{"total":[14,13.7,16.7,14.1,15.2,15.6,13.9,14.1,13.7,14,14.6,15.2,13.7,13.6,15.1],"script":[1.8,1.8,2.3,2,1.8,1.9,1.8,1.8,1.6,1.8,1.5,1.7,2,1.5,1.6],"paint":[10.7,10.6,10.8,11,11,10.7,10.8,11,10.9,10.7,10.5,11.5,10.9,10.8,11]}},{"b":6,"v":{"total":[393.9,392.6,390.1,393.3,391.4,393.3,392.7,393.5,392.7,385.3,389.4,390,394.5,387.4,393],"script":[170.5,166.6,165.3,168,164.9,167.5,165.2,166.2,165.4,162.5,166.5,162.1,168,165.3,167.6],"paint":[217.6,219.5,218.2,217.8,218.2,218.6,217.8,216.5,218.9,215.6,216.2,216.8,218,218.1,217]}},{"b":7,"v":{"total":[40.5,50.6,35.3,35.6,41.4,35.2,35.2,40.5,39.6,50.5,38.7,34.4,35,39.1,35.6],"script":[7.3,7.5,7.3,7.3,7.4,7.5,7,7.3,7.3,7.2,7.2,7.3,7.3,7.6,7.5],"paint":[27.2,26.3,27.4,27.8,27.1,27.3,27.7,26.9,26.3,26.4,27,26.6,27.3,26.5,27.6]}},{"b":8,"v":{"total":[34.2,16.4,18.2,16.6,17.1,18.6,18.5,35.7,34.6,36,17.3,16.1,16.5,17.1,16.9],"script":[12.4,12.3,14.4,12.5,12.5,13.9,13.4,14.2,12.1,13.9,14.2,12.4,12.2,13.2,13.2],"paint":[2.7,2.3,2.6,2.3,3.3,3.2,2.2,2.5,1.2,2.9,2.6,1.5,2.8,1.9,2.4]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[4.53]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[31.67]}},{"b":14,"v":{"DEFAULT":[182.4]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[207.4]}}]},
+{"f":89,"b":[{"b":0,"v":{"total":[31.4,30.3,29.9,30,29.8,29.7,29.9,30.8,30.9,30.5,32.1,31.3,31.6,31.7,32.2],"script":[8.6,8.1,7.9,8.2,8,8,8.1,8.4,8.6,8.6,9,8.5,8.7,8.9,8.7],"paint":[22.3,21.7,21.4,21.2,21.2,21.1,21.2,21.8,21.7,21.4,22.5,22.2,22.3,22.3,22.8]}},{"b":1,"v":{"total":[34.3,35,35.4,34.2,34.4,34.8,35.1,34.9,35.1,34.7,34.7,33.9,34.9,34.8,34.9],"script":[11.7,12.2,12.1,11.8,11.6,12.1,12.1,11.8,12,12,12.3,11.7,11.8,12.2,11.8],"paint":[22,22.2,22.6,21.8,22.2,22.1,22.4,22.5,22.5,22.1,21.9,21.6,22.4,22.1,22.6]}},{"b":2,"v":{"total":[17.3,17.2,19.4,17.4,17,16.8,16,17.3,16.5,16.7,16.5,17.4,17.6,17.1,17.6],"script":[5.8,5.9,6.7,5.1,6,5.8,5.5,5.3,5.5,5.9,5.5,5.7,5.8,5.4,5.2],"paint":[9.8,8.7,10.5,10.8,8.8,9.5,8.9,9.7,9,8.7,9.1,9.3,9.5,9.3,11]}},{"b":3,"v":{"total":[5.1,4.4,4.8,4.5,4.3,4.7,4.2,4.3,4.6,4.1,3.7,4.4,4.5,4.2,4.5,5.4,4.3,4,4.2,4.5,5.8,5.7,4,5.8,4.7],"script":[2.2,1.8,2.4,1.9,2,2.5,1.8,2.4,2.1,1.9,1.5,1.6,2.2,2,1.8,2.3,2.1,2.4,2.5,1.9,1.5,2.9,1.6,2.8,2.1],"paint":[1.2,2.4,1.7,2.5,1.5,1.8,0.8,1.2,1.5,1.3,1.1,2.7,2.1,2.1,1.6,1.2,1.6,1.1,1.3,2.5,2.6,2,1.9,1.6,1.5]}},{"b":4,"v":{"total":[105.6,103.5,105.3,102.9,103.1,105,106.3,108.2,104.9,107.1,104.7,110.1,106.5,104.7,104.7],"script":[18.4,17.6,17.1,18.5,17.1,18.7,18.1,18.2,18.8,19.7,18.4,19,18.4,18.3,19],"paint":[85.1,84.2,84.8,82.5,82.9,83.6,85,88.1,82.7,84.8,83.8,88.6,85.6,82.8,82.8]}},{"b":5,"v":{"total":[12,12.5,12.2,12.3,12.2,12.2,12.1,12.4,12.3,12.1,12.1,11.7,12.1,12.5,11.9],"script":[1.6,1.7,1.5,1.3,1.7,1.4,1.8,1.8,1.6,1.6,1.5,1.6,1.6,1.7,1.7],"paint":[9.3,10.2,10.2,10,9.5,10.2,9.5,9.8,10.1,10,10.1,9.7,9.8,10.1,9.7]}},{"b":6,"v":{"total":[405,403.3,403.5,407.4,405.4,406.7,409.5,404.1,403.2,409.1,402.5,404.8,402.9,403,402.3],"script":[178.3,176.6,176.2,176.8,176.8,177.3,182,177.1,176.4,181.1,174.7,177.9,176.4,175.9,177.8],"paint":[218.8,218.6,219.6,222.7,220.3,221.4,219.6,218.8,219.1,219.6,220,218.9,218.9,219,216.5]}},{"b":7,"v":{"total":[37.5,37.1,36.5,38.1,36.5,36.8,37,37.2,37,37.3,37.5,37,36.8,37.6,36.9],"script":[9.3,9.1,9,9,9.1,9.1,9.3,9.1,9.2,9.2,9.2,9,9.1,9.6,9.2],"paint":[27.2,26.9,26.6,27.9,26.5,26.8,26.7,27.1,26.8,27.1,27.2,26.9,26.7,27,26.7]}},{"b":8,"v":{"total":[18,18.2,19.4,18.2,19.8,21.2,18,19.1,19,18.8,18.3,19.7,19,18.7,18.1],"script":[15.8,16.8,16.8,16.3,17.5,19.3,15.5,16.6,16.8,16.2,16.6,17.2,16.6,17.2,15.8],"paint":[0.5,0.3,2.3,1.2,1.5,0.3,1.4,1.4,1,1.5,0.5,0.9,2.1,0.7,1.1]}},{"b":9,"v":{"DEFAULT":[1.18]}},{"b":10,"v":{"DEFAULT":[5.79]}},{"b":11,"v":{"DEFAULT":[6.19]}},{"b":12,"v":{"DEFAULT":[1.88]}},{"b":13,"v":{"DEFAULT":[43.45]}},{"b":14,"v":{"DEFAULT":[188.3]}},{"b":15,"v":{"DEFAULT":[51.3]}},{"b":16,"v":{"DEFAULT":[209.9]}}]},
+{"f":90,"b":[{"b":0,"v":{"total":[30.4,30.5,30.8,30.7,30.3,30.6,31.4,30.3,31.2,30.8,30.3,31.1,30,30.5,30.2],"script":[9.1,9,9.2,9.3,9.2,8.7,9.3,8.9,9.4,9.4,8.9,9.2,8.9,8.8,8.6],"paint":[20.9,21.1,21.2,21,20.7,21.4,21.8,21,21.4,21,21,21.5,20.8,21.3,21.2]}},{"b":1,"v":{"total":[35.9,35.8,36.2,36.9,35.6,36.1,35.8,35.7,35.9,35.9,35.3,36.3,36.1,35.6,35.4],"script":[13.3,13.3,12.9,13,13,13.2,12.6,12.4,13.2,12.9,12.6,12.6,12.7,13,12.7],"paint":[22.2,22.1,22.9,23.5,22.2,22.5,22.7,22.8,22.4,22.5,22.3,23.3,23,22.1,22.2]}},{"b":2,"v":{"total":[16.5,15,15,14.9,14.6,14.7,15.8,15.4,15.8,15.2,17.3,15.3,16.1,16.1,15.3],"script":[5.4,4.7,4.5,4.3,3.7,4.5,4.6,3.9,4.4,4.5,4.8,3.4,4,4.3,4.3],"paint":[10,8.5,9.5,9.5,9.1,8.7,9.9,10.2,9.7,8.8,11.6,10.2,11,11.1,9.3]}},{"b":3,"v":{"total":[5.6,5.8,5.9,5.9,5.9,5.4,5.3,5.6,5.7,5,5.9,5.8,5,5.9,6,6.2,5.8,6.3,6.1,5.7,6.2,5.4,5.2,5.5,6.3],"script":[3.3,2.9,2.8,3.4,2.7,2.7,2.8,3.3,3.2,2.9,2.9,3.2,3.3,3,3,3.6,2.7,3.7,3.5,3.4,3.3,3,3,3.3,3.8],"paint":[1.6,2,2,1.6,1,1.7,1.7,1.2,2.1,1.5,2.8,2.4,1.6,2,1.8,1.8,2.9,2.5,1.6,1,2.2,1.6,1.6,1.3,1.3]}},{"b":4,"v":{"total":[104.2,105.7,103.4,102.9,110.9,104.3,106.4,104.7,104.4,104.6,103.2,104.7,105.8,104.7,105.7],"script":[17.4,20.4,20.2,17.9,18.9,18.6,19.7,18.3,18.2,19,17.9,20.8,18.7,19,18.3],"paint":[85,83.7,81.9,83.8,90.2,83.5,84.6,84.4,84.4,83.5,84.2,82.2,85.1,83.8,84.2]}},{"b":5,"v":{"total":[12.1,12.3,12.2,12.2,12.1,12.1,12.1,12.1,11.7,12.2,12.2,12.1,12.2,12.3,12.2],"script":[1.2,1.5,1.2,1.2,1.2,1.3,1.3,1.4,1.3,1.5,1.3,1.1,1.1,1.1,1.3],"paint":[10.4,10.1,10.1,10.3,9.9,9.8,10.2,10,10.1,10.3,9.9,10,10.3,10.6,10.1]}},{"b":6,"v":{"total":[416.8,422.8,417,416.8,415.7,410.6,416.9,421.6,415.3,413.2,415.8,416.5,416,421.6,412.6],"script":[190.2,196.7,190.2,192.6,189.1,186,189.6,190.4,189.5,188.6,189.2,189.6,190.5,189.1,190.2],"paint":[219.3,218.8,219.5,217.2,219.2,217.3,219.8,223.6,218.8,217.2,219.4,219.8,218.3,225.4,215.3]}},{"b":7,"v":{"total":[36.6,35.8,36.3,35.5,35.9,36,36.5,36.2,36.5,37.6,36.5,36.1,36.5,36,36.3],"script":[10,9.9,10,10,9.9,9.7,10,10,10.3,10.3,9.8,10,10.1,9.9,10],"paint":[25.8,25,25.5,24.8,25.2,25.5,25.6,25.4,25.4,26.6,25.8,25.3,25.5,25.3,25.5]}},{"b":8,"v":{"total":[11.2,11.8,12.6,12.1,11.1,12.4,11.1,11.8,11.8,12,12,12,11.5,12,11.7],"script":[9.9,10.5,11.1,10.9,10.4,11.5,9.5,10.2,10.3,10.6,11,10.7,10.2,10.4,10.1],"paint":[1.2,1.2,1.3,0.3,0.6,0.3,1.5,0.9,1.1,1.3,0.9,0.6,1.1,1.4,1.6]}},{"b":9,"v":{"DEFAULT":[1.39]}},{"b":10,"v":{"DEFAULT":[7.16]}},{"b":11,"v":{"DEFAULT":[7.77]}},{"b":12,"v":{"DEFAULT":[2.77]}},{"b":13,"v":{"DEFAULT":[55.66]}},{"b":14,"v":{"DEFAULT":[213.1]}},{"b":15,"v":{"DEFAULT":[49.2]}},{"b":16,"v":{"DEFAULT":[215.2]}}]},
+{"f":91,"b":[{"b":0,"v":{"total":[30.9,29,29.2,29.8,29.4,29.5,29.4,29.8,29.8,28.9,29.2,31.2,29.7,29.4,29.3],"script":[9,7.9,8,8.1,8.1,8.1,8.3,8.4,8.3,8,7.9,8.7,8.4,8.3,8],"paint":[21.4,20.6,20.6,21.1,20.8,20.7,20.5,20.8,20.9,20.4,20.8,22,20.7,20.6,20.8]}},{"b":1,"v":{"total":[37,37.2,36.8,37.2,36.9,36.5,36.3,36.7,36.7,36.9,36.7,35.3,35.3,35.5,36.8],"script":[13,13.4,13.2,13,13.2,12.6,13,13,13.3,13.1,13.2,12.8,12.7,12.6,13],"paint":[23.5,23.2,23,23.6,23.1,23.4,22.7,23.1,22.9,23.2,23,22,22,22.4,23.2]}},{"b":2,"v":{"total":[17.7,16.7,16.6,17.2,17.2,16.7,16.5,18,17.3,17.2,16.7,17,16.3,16.7,18.3],"script":[5.5,5.2,5,5.5,5.5,5.2,5.2,6.6,5.7,5.7,5.4,5.3,5.3,5.4,5.9],"paint":[11.4,9.7,9.4,9.3,9.7,8.8,9.1,9.4,9.3,9.6,9.3,9.9,8.8,8.9,10.4]}},{"b":3,"v":{"total":[4.9,5.9,4.6,4.6,4.9,4.9,5.6,5.4,5.3,5.4,4.8,5.2,5.6,5.7,5,4.8,4.8,5.2,5.8,5.7,5.9,5.1,5.1,5.7,4.6],"script":[2.1,3.3,2.7,2.5,2.5,2.6,3.2,3,2.6,2.9,2.1,2.9,3.2,3.2,2.6,2.8,2.4,2.9,3.4,3.1,2.2,2.5,3,2.8,2.7],"paint":[2.2,1.7,0.8,1.5,2.3,2.1,1.5,2.2,1.7,1.6,2.6,1.4,1.5,1.5,1.4,1.2,2.3,2.1,2.3,1.7,2.2,2,1.2,2.7,1.1]}},{"b":4,"v":{"total":[105.8,106.3,108.2,105.4,106.4,109.1,109,110.4,104.3,109.5,106.3,110.2,109,111.9,106.4],"script":[20.8,21.9,23.2,20.7,21.6,22.8,22.9,24.1,22.2,22.4,22.9,24.2,23.6,23.8,21],"paint":[83.3,81.6,82.1,81.8,81.6,82.9,83.6,84,80.4,85.4,81.4,84.2,81.9,86.4,82.9]}},{"b":5,"v":{"total":[12.1,12.6,13.2,12.8,11.9,12.1,12.4,12.3,12.4,12.1,12.8,12.2,12.2,12.3,12.1],"script":[1.6,1.6,1.8,1.9,1.4,1.6,1.8,1.4,1.5,1.7,1.7,1.6,1.7,1.7,1.6],"paint":[9.9,10.2,10.7,10.2,9.8,9.8,9.8,10.2,10.4,9.8,10.5,9.8,10,9.8,10]}},{"b":6,"v":{"total":[411.6,434.3,412.2,416.2,410.6,412.3,423.6,421.6,428.1,410.9,420,409.9,429.2,421.6,411.4],"script":[184.3,207.8,186.4,187.9,185.5,184.5,196.1,194.3,202.9,187.5,193.5,184.6,201.5,195.9,185.1],"paint":[219.6,218.7,218.2,221,217.8,219.8,220,219.8,217.6,215.7,218.8,217.7,220.2,218.6,219.1]}},{"b":7,"v":{"total":[35.9,35.9,35.8,35.8,35.7,35.8,36.6,36.1,35.9,36.1,36.7,36.3,36.2,36.3,35.1],"script":[9.5,9.5,9.6,9.7,9.8,9.4,9.7,9.7,9.5,9.8,10,9.7,9.7,9.7,9.7],"paint":[25.4,25.5,25.3,25.2,25.1,25.4,25.9,25.4,25.4,25.4,25.7,25.7,25.6,25.6,24.5]}},{"b":8,"v":{"total":[17.9,17.9,18.6,18,18.5,19.7,17.1,18.1,17.7,18.3,17.5,18.9,19.6,18.3,17.6],"script":[15.8,15.6,16.6,16.4,16.5,17.4,15.3,15.9,15.2,16.1,15.1,16.6,17.3,16.4,15.7],"paint":[1.5,1.4,1,0.3,0.8,1,1.2,1.5,1.8,0.4,1.3,1.6,0.6,1.7,1.7]}},{"b":9,"v":{"DEFAULT":[1.55]}},{"b":10,"v":{"DEFAULT":[6.24]}},{"b":11,"v":{"DEFAULT":[6.72]}},{"b":12,"v":{"DEFAULT":[2.33]}},{"b":13,"v":{"DEFAULT":[44.61]}},{"b":14,"v":{"DEFAULT":[242.8]}},{"b":15,"v":{"DEFAULT":[64]}},{"b":16,"v":{"DEFAULT":[266]}}]},
+{"f":92,"b":[{"b":0,"v":{"total":[29.8,27.7,30,28.3,29.5,29.3,28.2,28,28.2,29.6,28.2,27.7,28.1,29.3,29.4],"script":[7.9,6.9,7.9,7.4,7.7,7.6,7.1,7.2,7.4,7.7,7.1,7,7.3,7.6,7.7],"paint":[21.4,20.3,21.6,20.4,21.3,21.2,20.5,20.2,20.3,21.5,20.6,20.2,20.2,21.2,21.1]}},{"b":1,"v":{"total":[224.1,231.7,225.4,224,213.7,230.3,224.7,213,224,226.4,227.3,215.5,229.1,214.4,227.5],"script":[204.5,212.1,204.2,204.4,192.7,210.5,204.7,193,204.3,206.4,207.2,194.8,209.3,194.1,206.2],"paint":[19.1,19.2,20.8,19.2,20.6,19.4,19.6,19.5,19.2,19.4,19.7,20.3,19.4,19.8,20.9]}},{"b":2,"v":{"total":[32,31.5,32.7,31.9,31.7,31.8,32.6,31.5,33.4,32.8,32.6,32,33.1,32.2,31.9],"script":[20,19.1,20.4,20.3,19.4,19.6,20,19.5,21,20.1,20,20,20.5,20.2,19.3],"paint":[9.9,10.6,10.2,10.1,10.9,10.5,10.6,9.6,10,10.5,10.3,10.4,10.5,9.5,11.3]}},{"b":3,"v":{"total":[20.3,21.4,21.4,20.5,21.1,21.4,19.1,20.8,21.8,20.7,20.9,21.4,19.5,21.2,22,19.7,21.2,18.9,20.3,20.9,21.3,20.7,21.1,20.8,21.2],"script":[17.1,18.3,17.9,17.9,17.6,18,16.7,18.1,18.3,17.7,17.5,18.2,16.8,17.9,17.7,16.8,17.9,16.7,17.2,18.2,18,17.2,18,17.9,17.2],"paint":[2.1,1.2,1.4,1.5,1.9,1.6,1.4,1.5,3,1.8,2.3,2.5,1.4,2.2,2.9,1.2,1.8,1,1.2,2.6,3,2,2,2.3,2.6]}},{"b":4,"v":{"total":[122,122.1,122.7,124.5,125.1,122.7,128.6,124,120.1,122.7,123.2,123.6,124,124.6,128],"script":[37.9,36.3,36.8,37.1,37.3,36.8,37.5,36.6,34.1,37.2,36.4,37.8,37.1,38.6,39.4],"paint":[81.7,83,83.8,84.6,85.4,83.9,88,84.4,83.2,83.1,84.4,83.8,84.7,83.3,86.5]}},{"b":5,"v":{"total":[18.8,19.7,19.2,19.3,18.9,18.8,18.8,18.9,18.8,18.7,19,18.7,18.8,19.2,18.8],"script":[7.9,7.9,8.1,7.8,8,7.9,7.6,7.9,7.6,7.6,8.2,7.9,7.8,7.9,7.8],"paint":[9.9,10.5,9.6,10.7,9.6,9.9,10.2,9.5,9.6,10.2,10,9.6,9.9,10.1,10]}},{"b":6,"v":{"total":[414.9,401.6,399.8,400.1,413.9,405,411.1,403.9,410.7,399.8,403.5,416.3,407.7,415.7,404.2],"script":[190.9,174.8,176.4,177.6,190.1,179,185.4,179.4,184.3,176.6,178.8,188.9,181.2,190.3,179.4],"paint":[216.8,219.4,216.2,215.1,216.6,218.3,218,216.6,218.8,216.1,217.3,219.7,218.6,217.8,217.6]}},{"b":7,"v":{"total":[39.4,39.6,39.8,39.6,39.9,39.3,39.5,39.4,39,39.9,39.8,39.5,39.1,39.3,39.4],"script":[12.3,12.2,12.3,12.9,12.4,12.2,12.3,12.3,12,12.4,12.3,12.3,12.4,12.4,12.1],"paint":[26.2,26.5,26.6,25.8,26.5,26.1,26.3,26.1,26,26.6,26.6,26.3,25.8,26,26.3]}},{"b":8,"v":{"total":[19.6,20.4,23.1,19.6,20.2,21,19.7,19.6,23.2,20.1,20.5,20.1,18.9,20,20.5],"script":[17.3,18,20.4,17.2,18.1,18.4,17.8,17.2,20.8,18,18.1,17.5,17.5,17.7,18.4],"paint":[2.1,1.2,1,2.1,1.1,2.4,1.5,1.7,1.1,0.7,1.6,1.9,0.3,1.4,1.9]}},{"b":9,"v":{"DEFAULT":[1.71]}},{"b":10,"v":{"DEFAULT":[5.07]}},{"b":11,"v":{"DEFAULT":[6.64]}},{"b":12,"v":{"DEFAULT":[2.7]}},{"b":13,"v":{"DEFAULT":[32.48]}},{"b":14,"v":{"DEFAULT":[297.7]}},{"b":15,"v":{"DEFAULT":[78.6]}},{"b":16,"v":{"DEFAULT":[340.2]}}]},
+{"f":93,"b":[{"b":0,"v":{"total":[32.7,31.9,31.8,32.2,32.1,33,32.4,32.7,32.5,32.7,32.7,32.1,31.8,32,32.3],"script":[10.7,10,10,10,10,11.1,10.7,10.8,10.2,11,10.9,10.1,9.9,10.3,10.7],"paint":[21.5,21.4,21.2,21.6,21.5,21.4,21.1,21.4,21.7,21.1,21.3,21.4,21.3,21.1,21.1]}},{"b":1,"v":{"total":[39.5,39.8,39.1,39.5,39.7,39.6,39.4,40,39.8,39.4,39.8,39.5,39.7,39.3,38.5],"script":[15.7,15.6,15.8,15.7,15.8,16,15.8,16.3,15.9,15.7,15.9,15.7,16,15.8,15.3],"paint":[23.3,23.5,22.7,23.3,23.3,23,23,23.1,23.3,23.2,23.3,23.2,23.1,23,22.6]}},{"b":2,"v":{"total":[20.6,20,20.4,20.7,20.1,19.6,19.9,19.2,20.2,19.9,20.6,19,20.2,20.6,19.6],"script":[9,7.5,7.9,8.8,7.7,8.1,7.9,7.1,8.5,8.4,8.4,6.9,8.1,8.3,8],"paint":[9.2,10.4,10.3,10,10.7,9.3,10.7,10.6,9.4,8.9,10.5,9.1,9.7,9.5,10.3]}},{"b":3,"v":{"total":[5.3,6.3,5.8,6.5,6.1,5.9,6.1,7.1,6.6,5.8,6.4,5.7,5.9,6.1,6,5.7,5.6,5.7,5.6,5.7,6,6.1,6,5.5,5.5],"script":[3.1,3.8,3.6,3.9,3.3,3.2,3.4,4.4,3.7,3.6,3.4,3.7,3.2,4.1,3.7,3.6,3.4,3,3.5,3.1,3.6,3.9,4.1,2.9,3.1],"paint":[1,2.3,1.4,1.7,1.4,2.6,2.6,2.2,2.3,1.3,2.9,1.1,2.6,1.8,2.2,1.5,1.6,1.9,1.8,2.5,0.5,1.4,1.1,1.7,1.5]}},{"b":4,"v":{"total":[111.6,107.7,107.8,110.7,109.9,111,108.9,112.9,110.4,109.3,110,110.2,108.4,109.9,106],"script":[23.2,20.4,21.1,21.1,21.9,21,22.4,22.3,22.7,21.9,21.7,21.8,21,22.8,20.3],"paint":[85.5,84.9,84.1,86.2,85.6,86.8,84.5,88.2,85.2,85.2,85.8,86.2,85.9,84.4,83.7]}},{"b":5,"v":{"total":[24.4,24.3,25,24.5,24.9,24.8,24.2,23.9,24.1,24.7,24.4,25,23.9,24.5,24.2],"script":[12.6,12.2,13,12.3,12.8,12.3,12.2,11.8,12.1,12.7,12.6,12.8,12.5,12.4,12.2],"paint":[10.8,11,11.1,11.1,11,11.4,10.9,10.9,11.2,10.5,10.7,11,10.2,10.9,10.9]}},{"b":6,"v":{"total":[459.4,457,448.9,449.8,453,452.4,456.7,445.3,447.5,454.7,455.1,455.1,455.1,455.4,452.9],"script":[223.4,226.8,222.6,221.8,225.5,222.8,224.9,218.4,219.1,226.1,228.7,226.4,226.7,222.8,222.9],"paint":[227.9,222.5,219,220.3,220,222.2,224.1,219.5,221,221.3,219,221.4,220.9,224.3,222.9]}},{"b":7,"v":{"total":[38.8,38.6,39,38,37.9,38.1,39.6,37.8,38.4,38.2,37.6,37.5,37.8,38.6,38.2],"script":[11.2,10.9,11.9,11,11.2,10.8,11.7,10.9,11.2,11.6,11,11,10.9,11.8,11],"paint":[26.7,26.7,26.1,26.1,25.9,26.3,26.9,26,26.2,25.6,25.6,25.5,25.9,25.9,26.3]}},{"b":8,"v":{"total":[20.9,22.2,20.9,20.8,21.1,21.8,18.9,20.8,21.4,21.9,21.7,21.3,21,20.2,20],"script":[18.6,20.1,18.7,18.5,19.2,19.7,16.7,18.4,19.2,19.8,19.3,18.6,18.3,18.4,18.1],"paint":[1.1,1,1.9,1.7,1,0.4,1.9,0.3,0.8,1,1.4,2.4,1.8,0.6,0.6]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[8.64]}},{"b":11,"v":{"DEFAULT":[9.33]}},{"b":12,"v":{"DEFAULT":[2.15]}},{"b":13,"v":{"DEFAULT":[70.58]}},{"b":14,"v":{"DEFAULT":[193.9]}},{"b":15,"v":{"DEFAULT":[52.9]}},{"b":16,"v":{"DEFAULT":[212.4]}}]},
+{"f":94,"b":[{"b":0,"v":{"total":[31.4,29.9,29.2,28.7,28.9,28.5,28.5,29.5,29.2,28.6,28.8,28.5,28.9,28.6,29.6],"script":[8.5,8.1,8,7.6,7.8,7.4,7.6,7.9,8,7.5,7.6,7.6,7.7,7.6,7.7],"paint":[22.3,21.3,20.7,20.6,20.5,20.6,20.4,21.1,20.6,20.5,20.7,20.4,20.7,20.4,21.3]}},{"b":1,"v":{"total":[36.4,35.9,35.9,35.8,35.8,36,35.9,36.1,36,36.5,36,36,36.1,34.9,35.4],"script":[13.1,13.2,13.3,13,12.9,13.1,13,12.8,13.1,13.1,12.9,12.9,13,12.4,12.9],"paint":[22.7,22,22,22.3,22.3,22.2,22.3,22.8,22.3,22.8,22.5,22.5,22.6,21.9,21.9]}},{"b":2,"v":{"total":[19.9,18.5,18.6,20.2,19.2,19.4,18,19.6,18.6,19,20,19.4,19.1,19.4,18.6],"script":[7.5,7.3,7.2,7.9,7.1,7.5,6.4,7.7,7,7.7,7.8,7.5,7.6,7.6,7],"paint":[10.9,9.4,9.3,11.6,10.6,9.5,9,9.5,9.7,9.5,10.6,9.6,9.2,9.9,9.6]}},{"b":3,"v":{"total":[5.5,6.3,5.2,5.3,5.1,6.3,5.2,4.6,5.5,5,5.8,5,4.6,5.3,5.2,5,5.1,4.6,5,5.8,5.6,5.9,5.2,5.3,6],"script":[3.1,3.6,2.7,3.2,3,3.8,2.6,2.7,3.1,3.1,3.3,2.7,2.6,2.9,2.6,2.7,2.8,2.5,2.2,3.3,3.2,3.2,2.3,3,2.9],"paint":[2.2,1.8,1.6,0.4,2,1.5,0.6,1.2,2.2,1.2,1.7,1.4,1,1.7,2.3,0.9,1.8,1.1,2.2,1.7,1.6,1.9,2.3,1.3,2.5]}},{"b":4,"v":{"total":[106.2,106.4,107.4,110.7,106.4,104,111.5,106.6,104.3,108.6,105,106.4,108.4,106,106.8],"script":[21.2,21.5,20.9,21.9,21.6,20.1,19.8,20.5,19.8,21.1,18.4,21,21.1,21,21.4],"paint":[83.4,82.2,85,86.4,81.8,81.7,89.2,83.7,81.8,84.5,83.6,83,85.3,82.9,82.7]}},{"b":5,"v":{"total":[12.9,12.7,13.4,12.7,12.8,12.3,12.8,12.6,13.5,13.3,12.8,13.1,13.5,12.9,13.1],"script":[2.1,2.1,2.3,2,2.3,1.9,1.9,2.2,2,2.3,2.1,2.5,2.2,1.9,2],"paint":[10.2,10.1,10.2,9.9,9.9,9.8,10.1,10,10.8,10.4,10,9.9,10.6,10.1,10.5]}},{"b":6,"v":{"total":[404.2,403.2,406,402,401.1,405.1,404,404.6,407.2,406.7,402.6,403.5,404.4,402.8,402.9],"script":[177.2,179.9,179.4,179.5,176.9,180.2,180.1,181.5,181.4,180.3,178.1,180.4,178.4,178.9,176.8],"paint":[219.7,215.9,219,215.4,216.6,217.6,216.5,215.8,218.3,219,216.9,215.7,218.9,216.6,218.8]}},{"b":7,"v":{"total":[35.9,35.3,34.4,35.1,34.6,34.5,35.3,35.3,36.9,35.4,35.5,34.9,35.3,34.3,35.5],"script":[8.8,8.9,8.9,8.7,8.8,8.9,8.8,8.8,9.3,9,8.8,8.9,8.8,8.4,8.9],"paint":[26.1,25.5,24.5,25.4,24.9,24.7,25.5,25.5,26.6,25.5,25.8,25.1,25.6,25,25.7]}},{"b":8,"v":{"total":[18.6,17.8,17.7,18.5,19.2,18.7,19.5,18.5,18.6,18.1,18.5,18.2,18.4,18.6,18.2],"script":[16.7,15.7,16.2,16.6,16.8,16.7,17.5,16,16.5,16.6,16.6,16.1,16.2,16.5,15.9],"paint":[0.3,0.7,1.2,0.3,1,1.2,1.2,0.9,1.8,0.3,0.3,0.3,1.1,1.9,1.6]}},{"b":9,"v":{"DEFAULT":[1.22]}},{"b":10,"v":{"DEFAULT":[5.99]}},{"b":11,"v":{"DEFAULT":[6.44]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[45.41]}},{"b":14,"v":{"DEFAULT":[185.9]}},{"b":15,"v":{"DEFAULT":[50.6]}},{"b":16,"v":{"DEFAULT":[203.1]}}]},
+{"f":95,"b":[{"b":0,"v":{"total":[32.6,31.9,32.4,31.2,31.2,31,30.4,31.1,30.3,30.6,30.1,30.6,30.9,31,30.9],"script":[10.2,9.7,10,9.7,9.6,9.3,9.3,9.4,8.9,9.2,8.9,9,9.4,9.6,9.3],"paint":[21.8,21.6,21.8,21,21,21.2,20.5,21.1,20.8,20.9,20.7,21.1,20.9,20.9,21]}},{"b":1,"v":{"total":[35.5,36.2,36.2,36,36,36.4,36.2,36.5,36,36.1,36.2,36.2,36.1,36,36.2],"script":[12.8,13.2,13.3,13.1,13.3,13.5,13.6,13.6,13.2,13.2,13.4,13.3,13.3,13.3,13.2],"paint":[22.1,22.4,22.4,22.4,22.1,22.3,22.1,22.3,22.2,22.3,22.2,22.2,22.2,22.2,22.4]}},{"b":2,"v":{"total":[24.7,25.2,25.2,25.7,25.5,27,25.9,24.3,27,25.1,25.4,26.9,25.3,24.1,23.9],"script":[12.9,13.6,13.2,14,13.4,15.2,13.4,12.7,14.3,12.4,13.1,13.7,13.1,11.9,11.9],"paint":[10.7,10.2,10.7,9,10,9.1,10.7,9.3,10.4,10.6,11.2,10.9,9.6,9.9,8.7]}},{"b":3,"v":{"total":[6.1,6,5.4,6.2,6.6,5.3,5.5,5.9,5.7,6.2,5.4,5.4,5.7,5.6,6.3,5.5,4.8,5.3,5.3,5.4,5.6,6.4,6.1,6.9,6.4],"script":[4,3.7,2.7,3.6,3.9,3.1,3,3.9,3,3.8,3,2.6,3.4,3.1,4.2,3.4,3.1,3.6,3.2,3.4,2.9,3.3,3.7,3.4,3.6],"paint":[1.5,1.7,2.5,0.8,2.5,1.1,1.4,1.1,1.7,2.3,0.5,2.2,2.2,2.3,1.9,1.9,0.8,0.8,1.6,1.1,2.4,2.1,1.8,2.9,1.8]}},{"b":4,"v":{"total":[110,111.3,111.4,108.1,107.7,109.8,110.3,108.4,110,112.1,110.3,111.9,113.1,111.8,108.7],"script":[22.7,23,23.3,23.3,22.1,23.5,23.6,23,24.1,23.4,25.5,24.3,24,22.9,22.8],"paint":[83.9,85.7,85.1,82.7,82.8,83.4,84.3,82.9,84.2,87.4,83,85.9,87,85.7,83.4]}},{"b":5,"v":{"total":[14.6,15.6,14.7,14.8,15.3,14.7,15.7,15.6,14.9,14.6,14.3,14.6,15.8,14,14.7],"script":[3.8,4.4,3.8,3.9,4,3.8,4,4.2,3.7,3.9,3.5,4,3.7,3.6,3.7],"paint":[10.1,9.9,10.4,9.9,10.7,10.3,11,10.7,10.4,9.7,10.1,10.3,11.6,9.8,10.6]}},{"b":6,"v":{"total":[410,410.1,415.4,411.9,410.5,415.3,412.6,412.3,414.8,417.1,418.1,411.3,409.8,415.5,411.9],"script":[186.3,186,189.5,187.7,187.8,187.3,187.5,188.8,190.7,192.3,188,186,185.8,189,187.7],"paint":[216.1,216.7,218.3,217.1,215.3,220.6,217.8,216.2,216.6,217.6,222.6,218.1,216.6,219.3,216.9]}},{"b":7,"v":{"total":[38,36.4,36.4,38.3,37.9,37.8,37.7,38.1,37.8,37.9,36.4,36.6,38,39,37.6],"script":[10.9,10.2,10.3,10.9,10.9,10.6,10.8,10.8,10.7,10.8,10.3,10.4,10.8,10.8,10.7],"paint":[26.2,25.3,25.1,26.4,26,26.2,26,26.4,26.1,26.2,25.2,25.3,26.3,27.1,25.9]}},{"b":8,"v":{"total":[18,19.5,20.5,20.9,21.6,21,20.2,20.1,20,20.6,22.5,20.8,19.5,20.5,21.2],"script":[15.8,17.4,18.2,19,19.4,19,17.9,17.8,18,19.2,20.1,18.5,17.5,18.3,18.9],"paint":[2,0.8,1.4,0.4,1,1.1,1.6,1.3,1.5,0.3,1.2,1.7,0.3,1.5,1.4]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[6.44]}},{"b":11,"v":{"DEFAULT":[6.93]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[47.44]}},{"b":14,"v":{"DEFAULT":[246.1]}},{"b":15,"v":{"DEFAULT":[64.7]}},{"b":16,"v":{"DEFAULT":[276.7]}}]},
+{"f":96,"b":[{"b":0,"v":{"total":[33.5,32.6,32.6,33.4,33.2,32.5,33.1,32.4,32.7,32.3,31.9,32.6,32.9,33,32.8],"script":[11.6,10.9,10.8,11.2,10.8,10.3,11.2,10.9,11.2,10.2,10,10.4,11.1,11,10.9],"paint":[21.3,21.1,21.2,21.6,21.9,21.6,21.4,21.1,21,21.4,21.4,21.7,21.2,21.5,21.3]}},{"b":1,"v":{"total":[39.3,38.9,39.3,41.8,39.3,39.7,39.6,39.5,39.4,38.6,39.6,40,39.2,39.5,39.4],"script":[15.6,15.6,15.7,15.9,15.7,15.9,15.9,15.7,15.5,15.1,15.9,16,15.7,15.7,15.8],"paint":[23.2,22.6,23,25.4,23.1,23.2,23.1,23.2,23.3,23,23.1,23.4,23,23.2,23]}},{"b":2,"v":{"total":[20.2,19.6,19.5,20,19,18.6,20.9,19.8,19.6,19.1,20.6,18.9,18.6,19.9,20.7],"script":[8.3,7.8,7.8,8.2,7.2,7.3,8.5,7.9,7.5,8,8.2,7.4,7.3,7.7,7.6],"paint":[9.6,9.6,10,8.5,10,9.5,10.4,9.4,9.9,9.2,10,9.1,9.7,10.3,10.4]}},{"b":3,"v":{"total":[5.8,6.8,6.5,5.5,6.2,5.9,6.1,6.3,5.5,5.8,5.7,5.6,5.8,6.1,6.6,6.3,6.6,6.9,6,6,5.6,5.2,6.1,5.8,5.8],"script":[3.5,4.2,4,3.7,3.9,3.5,3.2,3.5,3.6,3.6,3,2.6,3.4,3.6,4,3.1,4.1,3.7,3.5,3.5,3.1,3.1,3.6,3.3,3.4],"paint":[1.3,1.8,2.3,1.3,1.2,1.4,2.7,2.2,1.1,1.3,2.2,2.8,2.3,1.6,2.1,3,0.5,2.7,1.5,1.5,2.4,1.3,1.1,1.8,1.5]}},{"b":4,"v":{"total":[106.5,110.1,108.4,110,115.8,106.8,111.7,112.4,108.8,108.2,107.5,110,104.5,110.1,107.1],"script":[20,21.4,21.8,21.8,20.8,21.3,22.3,21,21.5,21,20.3,20.7,20.1,21.8,21.1],"paint":[84,86.4,84.4,86.9,92.6,84.2,87.3,89.8,85.3,84.5,83.9,86.1,82.3,86.6,83.4]}},{"b":5,"v":{"total":[24.4,24.5,24.6,25.9,24.4,24.2,24.9,24.5,24.2,24.4,24.8,24.4,24.4,23.9,24.5],"script":[12.6,12.4,12.5,13.1,12.3,12.2,12.8,12.3,12.3,12.5,12.8,13,12.3,11.8,12.7],"paint":[10.6,10.9,11.2,11.5,11,11.2,11.2,10.9,10.8,10.9,10.9,10.2,11,10.9,10.3]}},{"b":6,"v":{"total":[453.9,452.4,457.3,458.3,454.6,455.3,449.8,459.7,454.2,451.7,452.5,451.5,456.2,454,451.6],"script":[225.3,221.3,224.5,227.6,225.6,228.9,222.2,231.3,225.6,224.8,224.5,223.9,227.4,221.8,222.6],"paint":[220.8,223.9,225.3,223.1,221.8,219.1,220.1,221.3,220.9,219.5,220.8,220.5,221.6,224.9,221.5]}},{"b":7,"v":{"total":[38.6,38.8,39.1,37.7,39.1,37.7,37.8,38.2,38.5,37.4,38.3,38.6,38.1,38.9,37.8],"script":[12.1,11.7,12,11.2,12,11,11.1,11.4,12,11,11.2,11.9,11.2,11.9,10.9],"paint":[25.6,26.1,26.1,25.5,26.1,25.8,25.7,25.9,25.6,25.5,26.1,25.7,26.1,26,26]}},{"b":8,"v":{"total":[20.4,20.3,22.9,20.7,22.4,20.9,21.3,20.2,21.3,20.9,21.1,20.1,20.5,20.1,20.3],"script":[18,17.9,20.3,18.6,20,18.6,18.5,18.3,19.3,19.5,19.2,17.7,18.9,18.5,18.4],"paint":[1.1,1.2,1.5,1.2,1.4,1.2,1.9,0.3,0.6,0.3,0.3,1.2,0.3,0.6,0.3]}},{"b":9,"v":{"DEFAULT":[1.33]}},{"b":10,"v":{"DEFAULT":[8.62]}},{"b":11,"v":{"DEFAULT":[9.31]}},{"b":12,"v":{"DEFAULT":[2.18]}},{"b":13,"v":{"DEFAULT":[70.21]}},{"b":14,"v":{"DEFAULT":[200.2]}},{"b":15,"v":{"DEFAULT":[54.7]}},{"b":16,"v":{"DEFAULT":[224.7]}}]},
+{"f":97,"b":[{"b":0,"v":{"total":[29.1,28.4,27.5,27.3,29.8,27,27.3,27.4,27.2,27.1,29.3,27.3,27.1,28.8,27],"script":[7.1,6.8,6.6,6.6,7.3,6.7,6.3,6.5,6.4,6.7,7.3,6.7,6.4,6.8,6.3],"paint":[21.5,21,20.4,20.1,22,19.8,20.4,20.3,20.2,19.9,21.4,20.1,20.1,21.4,20.2]}},{"b":1,"v":{"total":[33.5,33.9,33.3,33.4,33.9,33.9,33.2,34.2,33.4,33.3,33.4,33.6,33.4,33.5,33.4],"script":[10.5,10.9,10.4,10.4,10.7,10.8,10.4,11.1,10.6,10.4,10.7,10.8,10.3,10.3,10.5],"paint":[22.4,22.5,22.3,22.4,22.5,22.5,22.2,22.6,22.2,22.3,22.2,22.3,22.6,22.5,22.3]}},{"b":2,"v":{"total":[17.5,17.8,17.6,15,15.9,15.7,16.4,16.9,17.2,15.6,16.1,17.4,16.8,16.8,16.2],"script":[5.4,5.8,5.2,4.5,5.1,4.7,5.5,5,5.7,4.9,5.2,5.5,5.3,5.4,4.9],"paint":[10,10.3,11,9.6,9.3,8.9,8.8,9.8,9.5,8.3,9,10.1,9.8,9.1,10.6]}},{"b":3,"v":{"total":[5,4.8,4.7,4.1,4.7,4.5,4.6,4.5,4.5,4.8,4.5,5,4.4,5.1,5,4.5,4.9,5.2,4.6,5.8,4.5,4.8,4.5,4.9,4.2],"script":[2.5,2.3,2.3,2,2,2,2.4,2.4,1.9,2.3,1.6,2.4,1.8,2.7,2.4,2.2,2.6,2.4,2.7,2.5,2.1,2.7,2.6,2.3,2.2],"paint":[2.3,1.7,1.6,1.6,2.5,2.2,1.5,1.4,1.6,1.6,1.8,1.3,1.7,1.7,1.7,2.1,2.1,1.9,1.3,1.8,1.5,1.1,1.1,2.5,1.1]}},{"b":4,"v":{"total":[104.8,101.5,106.2,104.9,105,107.5,104.1,103.6,107.2,104.9,108.9,107.3,104.1,105.3,106.4],"script":[17.7,17.4,20.2,17.1,18.2,18.8,17.2,18.2,18.4,18.4,18,20,17.9,18.4,17.2],"paint":[85,81.7,84.6,85.5,83.9,85.7,84.5,82,86.5,83.9,88.6,85,84.1,85.7,85.1]}},{"b":5,"v":{"total":[11.9,11.9,11.8,11.6,11.8,11.6,11.7,11.6,12.2,11.6,11.6,11.8,11.8,11.6,11.8],"script":[1.4,1.3,1.3,1.4,1.3,1.6,1.3,1.3,1.5,1.5,1.3,1.4,1.4,1.3,1.5],"paint":[9.8,9.8,9.8,9.7,9.7,9.6,9.4,9.6,10.2,9.7,9.4,9.7,9.6,9.7,9.7]}},{"b":6,"v":{"total":[393.4,390.3,392.3,394.1,434.5,432.4,388.3,396.5,395.2,394.7,411.7,413.5,392.7,467.2,390.3],"script":[166.6,163.7,164.9,167.8,205.7,205.8,164.9,170.3,168.7,167.6,186,187.5,166.3,238.3,164.3],"paint":[219.2,219.1,219.9,218.5,220.5,219.1,216.3,218.8,219.1,219.8,218.3,218.4,218.9,221.3,218.4]}},{"b":7,"v":{"total":[33.6,33.2,33.3,33.6,33.7,34,33.2,33.8,32.7,33.3,33.5,33.3,33.1,33.6,33.3],"script":[7.4,7.4,7.2,7.4,7.4,7.5,7.4,7.2,7.1,7.4,7.4,7.3,7.2,7.3,7.3],"paint":[25.3,24.9,25.1,25.3,25.3,25.6,24.9,25.6,24.6,25,25.2,25.1,24.9,25.3,25.1]}},{"b":8,"v":{"total":[17,17.1,17.7,17.8,17,17.4,17.7,17.7,17.4,17.2,16.4,16.7,16.8,16.1,17.7],"script":[14.7,14.5,15.6,15.6,14.7,15.6,15.5,15.4,15.4,15,14.9,14.8,14.5,14.7,15.6],"paint":[1,1.6,1,1.3,1.3,0.3,1.2,1,1.8,0.3,0.3,1.1,1.4,1.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.24]}},{"b":10,"v":{"DEFAULT":[4.43]}},{"b":11,"v":{"DEFAULT":[4.83]}},{"b":12,"v":{"DEFAULT":[1.95]}},{"b":13,"v":{"DEFAULT":[30.4]}},{"b":14,"v":{"DEFAULT":[196.8]}},{"b":15,"v":{"DEFAULT":[53.3]}},{"b":16,"v":{"DEFAULT":[219.6]}}]},
+{"f":98,"b":[{"b":0,"v":{"total":[29.3,27.9,27.4,29.7,27.6,29.7,27,27.4,27.6,29.5,27.4,29.1,27.4,29.5,29.1],"script":[7,6.5,6.3,7.2,6.5,7.1,6.2,6.2,6.6,7.2,6.2,6.8,6.2,6.8,6.9],"paint":[21.7,20.9,20.5,22,20.6,22.1,20.3,20.7,20.4,21.8,20.7,21.7,20.7,22.1,21.7]}},{"b":1,"v":{"total":[33.5,34.3,34.2,33.9,33.3,33.5,34.2,34,33.6,34.9,34.5,33.6,33.4,33.5,34.9],"script":[11.1,11.3,11.4,11.4,11,10.9,11.1,11.1,10.9,11.6,11.6,10.9,11,10.9,11.5],"paint":[21.9,22.3,22.2,22,21.7,22,22.5,22.2,22.1,22.7,22.3,22.1,21.7,22,22.9]}},{"b":2,"v":{"total":[15.4,15.8,15.4,16.3,16,15.2,15.4,17.1,16,17.3,15.6,15.1,14.9,14.7,16.4],"script":[4,4.6,4.5,5.1,4.9,4.6,4.7,5.5,4.8,5.3,5.3,4.6,4.5,4.6,5.4],"paint":[9.4,9.3,10,10,10,9.3,9.5,9,10.5,9.7,9.3,9.2,9.4,8.7,9]}},{"b":3,"v":{"total":[5.6,4.1,3.7,5,4.3,4.3,3.7,4.3,4,4.3,5.6,5,4.7,4.6,3.5,4.8,4.3,3.9,4.9,4.1,4.4,3.5,4.9,4,3.6],"script":[2.4,2.2,2.2,1.8,1.9,1.9,1.3,2.3,1.3,1.9,2.9,2.2,2,1.9,1.4,1.8,2.2,2.1,2.4,1.5,1.8,2,2.3,1.9,1.2],"paint":[3,1.4,1.3,3,1.5,1.6,2.3,1,2.5,1.6,1.8,1.1,1.7,1.8,1,2,1.5,1.5,1.7,1.5,2.1,1.3,1.5,1,2.2]}},{"b":4,"v":{"total":[100.6,101.5,104.9,101.3,101.8,103.2,103.5,105.2,103.1,104.6,103.1,103.5,105.2,106.7,105.7],"script":[16.4,15.7,17.6,16.8,16.5,15.6,16.3,17.9,17.4,18.6,16.3,16,18,17.3,18.8],"paint":[80.9,83.1,84.4,81.8,82.4,85.7,84.7,85.2,83.4,84,84.5,84.2,84,86.7,85.6]}},{"b":5,"v":{"total":[12,11.6,11.9,11.6,12.4,11.8,11.8,11.9,12.4,11.1,11.6,12,12,12.6,11.9],"script":[1.2,1.3,1.4,1.2,1.6,1.4,1.5,1.2,1.6,0.9,1.6,1.3,1.3,1.5,1.6],"paint":[10.3,9.9,9.8,9.6,10.4,10.1,9.7,9.8,9.8,9.6,9.7,10.1,9.9,10.4,9.5]}},{"b":6,"v":{"total":[393.7,394.4,395,389,393.3,395.7,390.8,393.7,398.4,389.2,393.7,393.6,394,392.7,396.6],"script":[169.7,169.4,168.8,166.1,167.6,169.8,165.7,169,169.2,165.2,167.5,169,169.5,166.5,169.2],"paint":[216.7,217.9,219.1,215.6,218.3,218.2,217.9,217.4,222,216.7,218.9,217.3,217.2,218.3,219.9]}},{"b":7,"v":{"total":[35.2,35.5,35.7,35.5,35.4,36.4,36,35.8,35.5,34.8,35.9,35.8,35.9,35.6,36],"script":[7.6,7.7,8.1,8.2,8.2,8.3,8.2,8.3,8.1,7.8,8.2,8,8.2,8.2,8.2],"paint":[26.6,26.9,26.7,26.3,26.3,27.3,26.9,26.5,26.4,26,26.7,26.9,26.7,26.5,26.9]}},{"b":8,"v":{"total":[17.2,18.1,18.2,17.4,17.9,17.3,17.8,18.4,17.1,19.2,18,17.9,19.5,17.2,19.9],"script":[15.1,15.9,16.6,15.3,15.8,15.4,15.9,16.1,15.2,17.1,15.7,15.9,17.1,14.8,18.2],"paint":[1.3,1.8,0.6,0.9,1.5,1,0.3,1.7,1.1,0.7,1.4,0.7,0.9,1.1,0.5]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.06]}},{"b":11,"v":{"DEFAULT":[5.52]}},{"b":12,"v":{"DEFAULT":[1.88]}},{"b":13,"v":{"DEFAULT":[37.08]}},{"b":14,"v":{"DEFAULT":[181.6]}},{"b":15,"v":{"DEFAULT":[49.5]}},{"b":16,"v":{"DEFAULT":[203.1]}}]},
+{"f":99,"b":[{"b":0,"v":{"total":[31.6,29.6,30.2,31.7,30,33.2,29.8,30.1,29.8,31.8,31.4,30.3,30.7,30,29.9],"script":[9.2,8.5,8.6,9.2,8.4,8.9,8.5,8.6,8.3,9.1,9.1,8.7,8.7,8.7,8.5],"paint":[21.8,20.6,21.1,22,21,23.8,20.8,20.9,21,22.1,21.7,21.1,21.3,20.8,20.9]}},{"b":1,"v":{"total":[35.9,36,36.6,35.2,36.1,36.1,35.8,36.3,36.1,36.8,35.9,36.6,36.1,35.7,35.5],"script":[12.5,12.5,12.4,11.9,12.3,12.6,12.3,12.6,12.5,12.8,12.3,12.8,12.6,12.5,12.2],"paint":[22.8,22.9,23.5,22.7,23.1,22.9,23,23,23,23.4,23,23.2,22.9,22.6,22.6]}},{"b":2,"v":{"total":[21.4,21.9,21.2,20.7,21,21,21.5,20.5,23.4,21,21.8,20.5,21.5,21.1,20.6],"script":[10.1,9.6,9.4,9.1,9.4,9,10,8.7,9.5,9.5,10.2,9.2,9.8,9,8.9],"paint":[8.2,10.3,10.2,10,9.9,10.1,9.8,10.4,12.6,9.2,10.1,9.2,10.8,10,9.5]}},{"b":3,"v":{"total":[7.6,8.8,7.5,8.2,8.1,7.3,8.4,8.7,7.4,8.5,8.6,7.1,8,6.9,7.5,7.3,7.4,7.4,7.5,8.6,7.3,7,7.2,7.5,7.6],"script":[4.8,5.3,4.6,5.7,5.3,4.5,5.2,5.5,4.8,5.2,5.5,4.8,5.4,4.7,4.8,4.9,4.9,4.8,4.9,5.1,4.6,4.8,4.5,4.5,4.9],"paint":[1.7,1.6,2.4,0.8,1.1,1.6,1.8,2.1,1.6,1.7,2.2,1.2,0.8,2,1.5,0.8,1.3,1.7,1.7,1.4,1.6,1.1,1.6,2.6,1.7]}},{"b":4,"v":{"total":[107.8,107.9,107.7,108,105.7,110.3,105.9,109,106.7,107.9,108,108,110.2,107.9,109.2],"script":[20.9,21.6,22.2,22.3,20.8,21.5,21.7,23.7,20.8,22.3,22.4,21.3,20.7,21.3,21],"paint":[84.5,82.4,83.6,82.9,83.4,85.9,82.2,82.6,84.2,82.9,84.4,83.6,87.1,83.9,85.5]}},{"b":5,"v":{"total":[13.4,13.7,13.3,13.4,13.8,13.1,13.4,13.4,13.8,15.2,13.4,13.6,13.4,13.2,13.3],"script":[2.9,3,2.9,3,3.2,2.8,2.9,2.8,3.1,3.9,2.7,3,3,2.7,3],"paint":[9.5,10.1,9.4,9.7,9.9,9.4,10,9.8,10.2,10.6,9.9,10.1,9.7,9.9,9.8]}},{"b":6,"v":{"total":[406.2,427.9,401.7,403,403.2,423.4,403.7,411.1,401.3,404.2,403.9,400.5,400.2,404.5,426],"script":[180.3,201.2,174.8,176.4,176.1,196.6,174.6,184.6,175.9,177.4,178.9,176.3,176.6,178.4,199.8],"paint":[218.7,219.2,219.7,219,219.7,219.6,221.7,219.3,218,219.7,217.7,217,216.2,218.7,218.6]}},{"b":7,"v":{"total":[36.7,37.7,37.3,37,37.9,37.2,37,37.3,37.3,37.7,37.2,37.7,37.8,37.6,37.4],"script":[9.8,10.2,10.1,9.9,10.1,9.7,10,10,9.9,9.8,9.8,10,9.7,10.1,9.8],"paint":[26,26.5,26.2,26.2,26.8,26.5,26.1,26.4,26.5,27,26.5,26.7,27.1,26.5,26.6]}},{"b":8,"v":{"total":[18.7,17.9,19,17.1,18.2,18.3,18.4,17.8,17.1,17.4,18,18.3,18.4,16.3,18.5],"script":[16.4,15.6,16.6,15.9,16,16.1,16,16,15.5,15.7,16.3,15.8,16.7,14.9,16.8],"paint":[0.7,2.1,2.1,1,1.7,0.9,1.2,1.2,1.1,0.5,0.6,2.1,0.7,1.2,0.3]}},{"b":9,"v":{"DEFAULT":[1.28]}},{"b":10,"v":{"DEFAULT":[4.95]}},{"b":11,"v":{"DEFAULT":[5.47]}},{"b":12,"v":{"DEFAULT":[2.48]}},{"b":13,"v":{"DEFAULT":[35.36]}},{"b":14,"v":{"DEFAULT":[185.7]}},{"b":15,"v":{"DEFAULT":[50.8]}},{"b":16,"v":{"DEFAULT":[207.8]}}]},
+{"f":100,"b":[{"b":0,"v":{"total":[30.8,28.8,28.8,29.1,30.7,30.6,30.6,28.6,29.6,29,31.3,29.9,29.2,28.9,30.6],"script":[7.8,7.4,7.4,7.1,7.7,7.8,8,7.3,7.6,7.1,8.2,7.6,7.2,7.1,8],"paint":[22.5,20.9,20.9,21.4,22.5,22.3,22,20.7,21.4,21.5,22.6,21.7,21.4,21.3,22]}},{"b":1,"v":{"total":[33.7,34.7,34.9,34.2,33.7,34.2,34,34.3,34.2,33.6,34.1,33.9,34.6,34,34.2],"script":[11.2,11.2,11.8,11.2,11.2,11.3,11.5,11.4,11.5,11,11.4,11.4,11.7,11.5,11.4],"paint":[22,22.9,22.5,22.3,21.9,22.3,22,22.2,22.1,22,22.1,21.9,22.3,22,22.1]}},{"b":2,"v":{"total":[18.6,17.3,16.2,17,17.8,17.1,17.4,17.6,17.6,17.3,16.6,16.7,18.8,17.5,16.2],"script":[5.3,5.6,5.4,5.8,5.8,5.9,5.7,5.6,5.5,5.5,5.8,5.8,5.3,6.2,5.2],"paint":[11.5,9.6,9.5,9.7,9.7,9.1,9.5,10.8,10.4,10.9,7.8,9.5,12.4,9.7,9.5]}},{"b":3,"v":{"total":[4.9,5.3,5.1,5.7,5.4,4.8,5,5.2,4.9,6.1,5.1,5.2,4.9,5.5,4.7,4.4,5.3,4.5,5,5.6,5.4,5.1,5.4,5.2,6.1],"script":[2.7,3.2,2.6,2.8,3.2,2.4,2.4,2.5,3,3.5,3,2.8,2.7,3.1,2.2,2.7,2.9,2.6,2.3,3,3.3,2.4,3.3,3.1,3],"paint":[1.6,1.9,2.3,2.8,1.2,1.6,2.4,1.1,1.1,2.4,1.1,1.9,1.1,1.8,1.7,1.1,1.6,1.1,1.5,1.9,1.4,2,1.5,1.9,2.9]}},{"b":4,"v":{"total":[105.7,104.5,106.6,106.5,109.8,105,105.8,104.8,108.2,105.4,104.4,106.1,104.5,106.3,106.6],"script":[18.6,18.3,17.8,18.9,21,19.6,17.8,18.3,19.8,18.9,18.1,17.5,18.6,18.5,18.3],"paint":[84.2,84.1,86.5,84.3,86.3,82.8,85.9,84,85,85.3,83.8,84.9,83.6,85.6,85.9]}},{"b":5,"v":{"total":[13.1,12.2,12.3,13.4,13.1,12.9,12.2,12.3,13,12.9,12.5,12.7,12.4,12.4,12.5],"script":[2,1.8,1.8,2,1.8,1.8,1.8,1.5,1.6,1.8,1.7,2,1.9,1.8,1.9],"paint":[10.2,9.5,9.5,10.5,10.5,10,10.1,10.2,10.9,10.5,10.3,10,9.8,9.7,10]}},{"b":6,"v":{"total":[407.8,408.8,408.9,402.1,412,404.5,402.1,403.9,407.1,404.4,404.5,405.1,403.9,406.1,405.2],"script":[182.5,178.1,178.8,177.3,181.9,179,178.7,177.9,180.3,180.2,178,180.9,179.6,178.7,181.1],"paint":[218.1,223,222.5,216.6,222.3,217.8,216.1,218.3,219.2,216.7,218.5,216.8,217.1,220,216.8]}},{"b":7,"v":{"total":[36.3,36.5,35.9,36.2,36,35.7,36.3,38.2,36.3,36,36.3,36.3,36,36.1,36.2],"script":[8.6,8.6,8.5,8.4,8.4,8.4,8.5,8.5,8.4,8.4,8.4,8.4,8.4,8.5,8.5],"paint":[26.8,26.9,26.5,26.8,26.6,26.4,26.8,28.8,26.8,26.7,26.9,26.9,26.7,26.7,26.7]}},{"b":8,"v":{"total":[20.1,18.2,20.1,18.3,20,19.2,19.5,19.8,19.5,19.8,19.8,19.8,19.8,18.8,19.7],"script":[17.9,16.5,17.9,16.7,17.6,17.2,17.6,17.9,17.5,17.4,17.7,17.9,17.8,16.8,17],"paint":[1.1,0.3,1.2,0.3,1.4,0.5,0.3,0.3,0.3,2,1.9,0.7,1.3,1.8,1.9]}},{"b":9,"v":{"DEFAULT":[1.18]}},{"b":10,"v":{"DEFAULT":[6.16]}},{"b":11,"v":{"DEFAULT":[6.76]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[47.98]}},{"b":14,"v":{"DEFAULT":[182.9]}},{"b":15,"v":{"DEFAULT":[49.8]}},{"b":16,"v":{"DEFAULT":[204.3]}}]},
+{"f":101,"b":[{"b":0,"v":{"total":[48,40.4,44.5,41.1,38.7,40.7,45.1,40.4,43.9,39.4,39.5,39.7,39.6,39.7,42.1],"script":[17.6,19.5,18.4,17.9,18.2,18.5,18.2,18.7,17.5,18.1,18.3,18.6,18.1,18.2,18],"paint":[20,20.6,20.9,20.9,20.4,20.7,20.6,20.6,20.5,21.1,21,20.8,21.3,20.6,21.1]}},{"b":1,"v":{"total":[50,49.6,43.6,45.3,50.9,44.5,45.4,51.7,44.1,44.7,44.5,47.4,44.2,46,44.7],"script":[22.5,22.1,21.8,22.5,22.2,21.9,22.3,22,21.8,21.8,21.9,22.3,21.8,21.9,22.2],"paint":[22.3,22.8,21.6,22.3,22.1,22.4,22.7,22.6,22.1,22.7,22.4,22.4,22.2,22.4,22.3]}},{"b":2,"v":{"total":[23.5,39.2,38.1,40.7,23.4,40.6,39.3,38.4,38.5,38.4,23.7,38.4,39.6,37.5,39.2],"script":[12.3,13,13,12.8,12.4,13.7,12.6,12.6,11.4,12.2,11.3,11.6,12.3,12.2,12.3],"paint":[11.1,11.3,10.2,11.9,10.2,11.3,9.7,10.2,11,10.9,10.8,11.9,10.9,11.1,10.5]}},{"b":3,"v":{"total":[7.1,8.8,10.4,7.2,9.3,7.6,11.1,10.5,8.8,7.7,12.9,12.9,6.2,12.8,12.9,6.8,12.2,6,6.2,11,9.5,12.3,6.4,8.9,13.2],"script":[2.9,3.2,2.2,3.4,2.2,3.6,2.3,2.6,4.2,3.4,1.9,2.1,3.3,2,2.9,3,2.7,2.7,3.3,3.3,2.2,2,3.3,3.1,2.7],"paint":[1.8,2.7,1.6,1.4,1.1,1.8,2.4,0.6,1.8,1.9,2.6,2.2,1.1,1.8,1.6,2.2,1.4,1.9,1.3,2.1,1.4,2.2,2.2,1.8,1.9]}},{"b":4,"v":{"total":[125.1,123.2,111.8,108.5,109.1,109.2,114.1,120.5,122.6,107,104.1,122.3,126.6,120,126.4],"script":[25.2,25.2,23.7,24.4,25.7,22.5,23.9,24.4,24.1,23.4,24.1,24.2,25.2,23.4,24.8],"paint":[84,82.5,86.2,82,82.2,84.7,88.4,80.1,81.3,82.6,78.9,81.5,84.9,80.5,84.6]}},{"b":5,"v":{"total":[25,24.7,19.1,19.8,20.6,19.4,23.9,19.7,21.7,23.7,20.4,21.1,22.2,22,21.6],"script":[4.8,5.5,4.9,5.6,5.2,4.6,5.4,5.4,5.4,5.3,5.2,4.9,5,5,5.4],"paint":[11.3,11.1,11.2,11.2,10.9,11.3,11,11.1,11.5,11.1,10.7,10.9,10.7,11.5,11.1]}},{"b":6,"v":{"total":[469.5,466.2,470.8,463.7,464.4,467.6,465.1,464,468,466.1,467.9,462.1,469.1,463.8,462.6],"script":[242.6,241.1,244.9,241.5,243.7,244.9,241.9,240.8,245.3,242.9,244.1,241.3,245.3,241.6,240.7],"paint":[221.3,221.7,222.6,219.1,217.4,219.4,219.9,220,219.3,219.9,220.3,217.6,220.5,219,218.7]}},{"b":7,"v":{"total":[55.5,43.8,45.2,48.8,44.6,48.7,49.6,49.1,44,49.3,51.7,44.7,48.3,44.6,49.4],"script":[19,18.2,19.4,18.4,18.9,18.6,19.2,18.5,18.8,18.6,19,18.9,18.6,18.8,18.8],"paint":[25.4,25.2,25.1,24.9,25.4,25.4,25.7,25.6,24.9,25.5,25.6,25.5,25.1,25.5,25.5]}},{"b":8,"v":{"total":[37.7,37.3,21.1,38.9,22.3,39.7,22.9,21.3,36.9,23.8,37.9,21.1,22.7,22.9,38.6],"script":[20.7,20.4,19.8,21.8,20.9,22.5,21.4,19.6,19.8,22.1,20.9,19.1,20.6,20.6,21.3],"paint":[1,0.9,1.2,1.1,1.2,1.2,0.6,1.3,1,1.6,1,1.8,1.2,1.6,1.2]}},{"b":9,"v":{"DEFAULT":[1.45]}},{"b":10,"v":{"DEFAULT":[6.31]}},{"b":11,"v":{"DEFAULT":[7.04]}},{"b":12,"v":{"DEFAULT":[2.95]}},{"b":13,"v":{"DEFAULT":[42.01]}},{"b":14,"v":{"DEFAULT":[274.8]}},{"b":15,"v":{"DEFAULT":[64.4]}},{"b":16,"v":{"DEFAULT":[291.4]}}]},
+{"f":102,"b":[{"b":0,"v":{"total":[29.5,29.3,29.4,29.5,29.9,29.4,29.8,29.2,29.9,29.1,29.9,29.5,29.4,29.5,30],"script":[7.1,7.1,7.1,7.1,7.3,7.2,7.3,7.1,7.2,7,7.1,7.2,7.2,7.1,7.1],"paint":[21.8,21.7,21.8,21.9,22,21.6,21.9,21.6,22.1,21.6,22.2,21.7,21.7,21.9,22.3]}},{"b":1,"v":{"total":[32.1,31.8,32.7,32.3,33.2,32.6,32,32,32.1,32.5,32,32.4,32.3,32.4,32.8],"script":[9.2,9.1,9.6,9.6,9.6,9.8,9.3,9.9,10,9.5,9.2,9.6,9.3,9.5,9.5],"paint":[22.4,22.2,22.6,22.1,23,22.1,22.1,21.5,21.5,22.5,22.2,22.3,22.4,22.3,22.7]}},{"b":2,"v":{"total":[12.7,12.1,11.8,12.7,12,11.3,12.2,12.1,12.1,11.9,11.8,13.1,12.8,12.3,12.3],"script":[1.7,1.2,0.9,2.1,1.3,1.7,2.1,1.6,0.9,1.2,1.6,2,1.3,1.7,1.3],"paint":[9.9,9.9,10,10,9.7,8.3,8.6,9.3,9.4,9,8.9,9.8,10.3,9.1,10]}},{"b":3,"v":{"total":[3.3,3.1,2.9,2.8,3.6,3.2,3.4,3.4,3,3.4,2.7,2.9,2.8,3.4,3.3,3,2.8,3.1,3.4,3.2,3.4,3,3.3,2.7,3.3],"script":[1,1.1,0.6,1.3,1.4,0.9,1.2,1,0.6,1,0.9,1,0.6,0.9,0.9,1.1,0.7,0.6,1.3,1.2,1,1.1,0.8,0.9,1.4],"paint":[2,1.1,0.8,1.4,1.2,1.2,1.5,1.6,1.3,2.1,1.7,1.8,1.3,1.6,0.5,1.8,1.6,1.6,1.9,1.9,2.3,1,2.3,1.7,1]}},{"b":4,"v":{"total":[13.6,14.3,13.8,15,13.6,14.5,13.4,13.8,14.2,14.6,14,14.6,14.9,13.8,15.2],"script":[0.6,0.9,1.6,1.8,1,0.9,0.6,1.3,1.7,1.8,1.2,1.1,1.5,0.7,1.4],"paint":[10.9,12.7,11.2,11.4,11.7,12,11.8,10.4,10.8,11.2,11.3,12.3,12.1,11.9,11.9]}},{"b":5,"v":{"total":[10.7,10.6,11.4,10.6,11.3,10.8,10.4,11.2,11.2,10.9,10.4,11.6,10.9,11.3,10.6],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.7,0.6,0.6],"paint":[9.7,9.7,10.3,9.4,10,9.3,8.7,10,9.8,9.7,9.2,10.4,9.7,9.9,9.6]}},{"b":6,"v":{"total":[296.9,296.9,295.3,300.5,296.6,295.9,297.9,298.1,296.6,297,298,301.7,295.3,295.7,296.8],"script":[70.2,69.4,69.4,68.8,68.9,69.2,69.8,70.1,70,69.8,69.3,71.7,70,69.9,69.6],"paint":[219.3,220.2,218.6,224.3,220.5,219.3,220.6,220.6,219.3,220,221.5,222.4,218.1,218.6,219.9]}},{"b":7,"v":{"total":[34.4,35.2,35.1,35.9,35.1,35.4,35.2,35.2,35.2,35.6,34.4,35.2,35.1,35.2,35.1],"script":[7.6,7.3,8,8,7.8,8,8,7.8,7.7,8.1,7.5,7.8,7.9,7.7,7.7],"paint":[25.9,27,26.2,26.9,26.4,26.5,26.2,26.5,26.6,26.6,26,26.4,26.3,26.6,26.4]}},{"b":8,"v":{"total":[13.5,12.1,12.4,12.1,12.7,12.2,12.9,12.2,12.5,12.9,13.1,12,12.7,12.4,12.1],"script":[11.5,9.9,10.4,9.8,10.9,10.4,11.4,10.5,10.5,11,11,9.9,10.3,10.4,10.2],"paint":[0.8,1.5,1.8,1.5,0.5,1.2,1,1.1,1.7,1.1,0.8,1,0.8,1,0.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.51]}},{"b":11,"v":{"DEFAULT":[2.56]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[19.15]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[38.1]}}]},
+{"f":103,"b":[{"b":0,"v":{"total":[28.3,28.3,28.5,28.1,29,28,29,29,28.2,28.2,29.4,28.9,28.9,28.8,28.8],"script":[5.9,6.2,6.3,5.9,6.5,5.9,6.4,6.4,6,5.9,6.5,6.6,6.4,6.3,6],"paint":[21.8,21.6,21.7,21.7,21.9,21.6,22,22,21.6,21.7,22.3,21.8,21.9,21.9,22.2]}},{"b":1,"v":{"total":[40,39.3,39.4,39.6,39.5,39.2,40.5,39.7,39.5,39.3,39.1,40.5,39.6,39.5,39.8],"script":[17.4,16.9,17.3,17.1,16.9,16.8,17.7,17,17.2,16.9,17,17.7,17,16.8,17.1],"paint":[22,21.8,21.6,22,22,21.8,22.2,22.1,21.6,21.8,21.5,22.2,22,22.1,22.2]}},{"b":2,"v":{"total":[15.2,13.9,13.4,13.1,13.5,14.4,15.3,14.4,13.4,13.6,15.7,13.5,14.3,14.4,13.5],"script":[3.3,3.3,2.6,2.9,3.4,3.5,3.5,3.7,3.7,2.9,3.3,2.6,3.7,3.1,3],"paint":[10.9,9.3,8.6,8.4,8.7,8.7,9.9,9.1,8.1,9.7,10.9,9.8,7.5,9.8,9.8]}},{"b":3,"v":{"total":[4.7,4.8,4,4.4,4.2,4.2,3.9,3.9,4.2,4,4.8,4.9,4.1,4.1,4.4,4.7,4,4.2,4,4.8,4.2,4.2,4.1,4.6,3.8],"script":[2.2,2.1,1.5,2.3,2,2.1,2,1.6,1.7,1.7,2.4,2.5,1.6,1.2,2.1,2.3,2.1,2.3,2.5,2.1,2,2,2,2.2,1.8],"paint":[2.4,1.5,2.4,1.6,1.3,2.1,1.1,1.1,1.7,1.4,1.5,1.5,1.5,2.6,2.1,2.3,1.8,1,0.9,2.5,0.6,1.8,0.5,1.5,1.8]}},{"b":4,"v":{"total":[16.5,16.4,16.3,16.4,15.9,16.9,17.6,16.5,15.6,16.5,15.9,17.1,16.2,16.1,16.1],"script":[3.6,2.2,3.2,3.8,2.7,3.6,3.2,3.2,2.6,3.1,2.7,3.4,2.6,3.6,2.7],"paint":[12.6,13.4,12.1,12,12.4,12.2,13.5,12,12.1,12.3,12.5,12.5,12.3,11.6,12.5]}},{"b":5,"v":{"total":[11.3,11.3,11.4,11.5,11.6,11.7,11.7,11.6,11.5,11.1,11.5,11.5,11.5,11.9,11.2],"script":[1.2,1.1,1.1,1.2,1.2,0.9,1.2,1.2,1.2,0.8,1.2,1.2,1.2,1.2,1],"paint":[9.6,9.5,9.6,9.5,9.4,9.7,9.8,9.4,9.7,9.7,9.7,9.7,9.5,9.9,9.2]}},{"b":6,"v":{"total":[289.5,289.9,291.1,289.3,289,288.8,291.1,289,289.5,290.8,288.9,289.1,287.1,289.2,288.4],"script":[60.4,58.5,63.2,58.9,58.9,62.5,62.2,59.6,58,63.9,59.1,62.6,62.3,58.5,58.2],"paint":[221.8,224.1,220.7,223.2,222.6,219.1,220.5,222.2,224.4,219.8,222.6,219.4,217.6,223.6,223.1]}},{"b":7,"v":{"total":[45.6,45,45.6,45.2,44.7,45.3,44.9,45,45.2,45.1,45.9,45.5,44.7,44.7,45.3],"script":[19.6,18.9,19.2,18.6,18.3,19.3,18.8,18.8,18.8,19.3,19.2,19.2,18.5,18.8,18.5],"paint":[25.1,25.2,25.5,25.7,25.5,25.1,25.2,25.3,25.4,25,25.7,25.4,25.3,24.9,25.9]}},{"b":8,"v":{"total":[12.5,10.2,11,10.7,11.8,11.2,10.7,11.4,10.8,11.5,11.4,10.8,10.8,11.8,11.1],"script":[10.8,7.5,8.6,8.8,9.8,8.9,8.6,9.4,8.7,9.2,9.2,8.9,9.3,9.4,8.8],"paint":[1.1,1.7,1.2,1,0.7,0.3,1.2,1.4,0.8,0.7,2,0.3,0.6,1.4,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.53]}},{"b":11,"v":{"DEFAULT":[3.62]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[29.02]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[46.2]}}]},
+{"f":104,"b":[{"b":0,"v":{"total":[26.6,26.3,26.1,26,26.1,26.6,26.4,26.2,25.8,26,26.4,26.3,26.6,26.6,26.6],"script":[6,5.5,5.6,5.6,5.5,5.5,5.7,5.6,5.5,5.5,5.7,5.6,5.6,5.5,5.5],"paint":[20,20.2,20,19.9,20.1,20.6,20.2,20.1,19.8,20.1,20.2,20.1,20.5,20.6,20.5]}},{"b":1,"v":{"total":[31,31.4,31.3,31.3,31,31.1,30.4,30.9,31.5,31.3,31.4,31,31.4,30.8,31],"script":[7.7,8.2,8.2,8,8.2,8.1,7.5,8.1,8.2,8,8.1,8.2,8.2,8.2,8.1],"paint":[22.9,22.6,22.5,22.8,22.4,22.6,22.4,22.3,22.8,22.9,22.7,22.4,22.8,22.1,22.5]}},{"b":2,"v":{"total":[12.5,12.8,11.7,12.9,11.7,11.3,11.6,11.9,10.8,11.2,11.9,13.5,11.4,11.3,11],"script":[2,1.8,1,1.9,0.9,1.4,0.9,1.6,1.3,1.2,0.9,2,1.4,1.4,1],"paint":[9.2,10.3,9.8,9.5,9.5,8.6,8.6,9.2,8.3,9,9.4,10.7,8.7,8.5,9.1]}},{"b":3,"v":{"total":[3.3,3.6,3.3,3.3,3.1,3,3.3,3.1,2.8,3.3,2.4,2.5,3,2.9,2.8,3.1,3.4,3.1,2.8,3.6,2.6,3.4,3.2,2.6,2.6],"script":[1.2,1.1,1,1.2,1.2,1,0.9,0.9,0.7,1.3,0.6,0.6,0.7,1,1.2,0.9,1.2,0.8,0.6,1.2,0.9,0.9,1.2,0.6,1.1],"paint":[1.3,1.2,2.2,1.2,1.3,1.5,2.3,2,1.8,1.5,1,1.1,2.2,1.6,1,1.3,2,1.2,1.3,1.5,1.2,1.8,1.7,1.7,1.1]}},{"b":4,"v":{"total":[16.8,16.4,16.8,16.4,15.5,16.3,16.6,16.1,16.3,18.1,16.7,17,17,16.3,16.3],"script":[3.7,3.1,4,2.9,3.2,3.2,3.4,2.9,3,3.9,3,3.1,3.8,2.8,3.2],"paint":[11.5,12.3,11.5,12.2,11.3,11.7,11.9,12.2,12.2,13.6,12.6,12.4,10.8,12.6,12]}},{"b":5,"v":{"total":[12.2,12,12,12,12,11.9,12,11.9,11.9,12.1,12.2,11.9,12,11.9,12],"script":[1.8,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.5,1.3,1.5,1.3,1.2,1.2,1.2],"paint":[9.3,10.4,10.1,9.9,10.1,10.1,10.2,10.4,9.7,10.3,10.2,10.2,10,9.9,10.1]}},{"b":6,"v":{"total":[294.6,302.7,293.1,293.9,303.3,291.8,293.6,303.6,306,303.1,308.6,303.2,301.6,303.2,305.3],"script":[67.8,67.1,67.2,67.9,67.7,67.3,65.9,68,68.2,66.1,68.6,67.9,67.2,68.2,67.6],"paint":[219.3,227.6,218.5,218.7,228.4,217.3,220.4,228.3,230.4,229.7,232.1,228.1,227.3,227.9,230]}},{"b":7,"v":{"total":[31.6,32.1,32.7,30.4,31.8,31,32.5,31.4,32.1,32.3,32.5,31.4,33.4,32.8,31.1],"script":[6.3,6.5,6.8,5.8,6.1,6.1,6.7,6,6,6.5,7.1,6.1,6.9,6.8,5.9],"paint":[24.3,24.7,25,23.7,24.7,23.9,24.9,24.5,25.1,24.9,24.5,24.4,25.5,25,24.3]}},{"b":8,"v":{"total":[9,12.1,10,10.5,10.2,10.4,9.8,9.8,10.9,9.7,10.7,9.8,10.3,9.2,9.2],"script":[7.6,9.6,8.1,8.6,8.2,8.4,7.8,8.5,8.8,7.6,8.7,7.8,8.5,7.1,8.2],"paint":[1.3,1.6,1,1,0.5,1.7,1.3,0.2,0.4,0.4,1.7,1,1.6,1.5,0.9]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.83]}},{"b":11,"v":{"DEFAULT":[2.79]}},{"b":12,"v":{"DEFAULT":[0.86]}},{"b":13,"v":{"DEFAULT":[20.86]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[50.3]}}]},
+{"f":105,"b":[{"b":0,"v":{"total":[30.5,30,30.4,31.5,30,30.4,30.3,30.5,30.9,30.2,30.3,30,30.4,30.2,30.6],"script":[8.1,8,8.3,8.6,8,8.2,8,8.3,8.5,8.1,8.3,8.4,8.4,8.2,8.2],"paint":[21.9,21.4,21.5,22.3,21.5,21.6,21.7,21.7,21.9,21.6,21.5,21.1,21.4,21.5,21.9]}},{"b":1,"v":{"total":[35.9,35.5,35.9,34.8,35.2,35.7,35.2,35.6,35.3,35.4,35.6,35.6,36,35.2,35.1],"script":[12.8,12.2,12.5,12.2,12.3,12.8,12,12.6,12.4,12.2,12.3,12.6,12.2,12.2,12.2],"paint":[22.5,22.7,22.8,22.1,22.3,22.4,22.6,22.5,22.4,22.7,22.7,22.4,23.2,22.4,22.3]}},{"b":2,"v":{"total":[17.5,17.4,16.5,16.5,16.8,17.6,17.3,16.8,16.1,19.7,16.9,17.7,16.4,16.5,17.4],"script":[5.5,5.7,5.3,4.6,5.2,5.7,5.5,5.5,4.9,6.7,5,6.1,5.5,5.4,6],"paint":[9.5,9.3,9.7,10,10.6,10.3,9.9,9.6,9.1,10.2,8.9,10.6,8.8,9.5,9.7]}},{"b":3,"v":{"total":[6.8,6.7,7.1,7.3,7.2,6.8,6.8,7.5,7,7.4,8.8,6.7,7.4,7.6,7.4,6.9,7.5,7.2,7.2,7.1,7.8,7.3,6.9,8.5,6.2],"script":[4.6,4.5,4.7,4.5,4.8,4.7,4.6,4.7,4.6,5,5.4,4.6,5.1,4.9,4.9,4.5,4.8,4.7,4.9,4.2,5.1,4.9,4.4,5.5,4],"paint":[1.8,1.4,2.1,1.7,1.5,1.1,1.4,1.7,1.6,2.3,2.1,1.4,1.6,2.1,2.3,2.2,1.8,2.4,1.8,1.9,1.8,1.6,1.6,1.5,1.1]}},{"b":4,"v":{"total":[18.8,19.5,18.8,20.1,18.6,18.1,18.5,17.3,18,20.4,19.2,20,18,17.7,19.1],"script":[5,5.4,4.5,5.4,4.3,4.6,4.9,4.8,4.6,5.1,5.2,5.4,4.4,5,5.3],"paint":[12.2,12.7,13.1,11.8,12.7,12.8,12.1,11.3,12.7,12.9,12.1,12,12.5,12.1,12.6]}},{"b":5,"v":{"total":[13.4,12.8,13.7,13.5,13.7,12.6,13.4,13.1,13.5,13.3,13.5,13.3,12.8,12.8,13.3],"script":[2.9,2.4,2.9,2.6,2.8,2.4,2.5,2.4,2.8,2.4,2.5,2.4,2.6,2.4,2.8],"paint":[9.5,9.2,10.5,10.2,10.5,9.6,10.2,10.1,10.3,10.6,10.4,10,9.6,9.4,9.5]}},{"b":6,"v":{"total":[316.2,315.9,317.4,319,317.9,317.4,316.2,317.7,317.6,318.2,317.4,316.8,317.6,316.8,317.3],"script":[85.3,87.3,87.1,86.3,86.2,85.7,85.6,85.9,86.5,86.3,85.5,86.2,86.1,86,86.2],"paint":[222.9,220.5,222.2,224.2,223.4,223.8,222.8,223.5,222.9,223.8,223.7,222.7,223.6,222.9,223.2]}},{"b":7,"v":{"total":[36.7,37.1,36.8,35.7,36.1,37,36.4,36.7,37.4,36.1,36.7,36.9,36.1,37.6,36.8],"script":[9.9,10,9.7,9.6,9.5,9.7,10,9.9,9.8,9.8,9.9,10,9.6,9.9,9.9],"paint":[25.8,26.1,26.1,25.1,25.6,26.3,25.4,25.9,26.6,25.3,25.8,25.8,25.6,26.6,25.9]}},{"b":8,"v":{"total":[17.3,16.5,18.4,16.9,18.2,16,15.9,16.9,16.5,16.8,17.1,20.1,18.1,17.7,16.7],"script":[15.2,14.7,16.5,15.1,16.2,14,14.3,14.9,13.8,15,15.2,17.9,15.3,16.1,14.9],"paint":[0.9,1.2,1,1.4,1.5,1.3,0.7,0.9,2.2,1.1,1,0.9,1,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3.74]}},{"b":11,"v":{"DEFAULT":[3.77]}},{"b":12,"v":{"DEFAULT":[0.92]}},{"b":13,"v":{"DEFAULT":[30.81]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.5]}},{"b":16,"v":{"DEFAULT":[47.8]}}]},
+{"f":106,"b":[{"b":0,"v":{"total":[24.2,24.2,24.2,24.4,24.3,24.3,24,24,24.2,24.2,23.8,24.2,24.2,24.1,24.6],"script":[2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4],"paint":[21.4,21.4,21.5,21.7,21.6,21.6,21.3,21.3,21.4,21.5,21.1,21.4,21.5,21.3,21.8]}},{"b":1,"v":{"total":[26.9,27,26.5,27.2,26.9,27.5,26.6,26.9,26.8,27.1,27,27.2,27.3,26.8,26.8],"script":[4.5,4.3,4.3,4.3,4.4,4.4,4.4,4.4,4.4,4.3,4.3,4.6,4.4,4.3,4.4],"paint":[22,22.3,21.8,22.5,22.1,22.6,21.9,22.1,21.9,22.3,22.2,22.2,22.5,22,22]}},{"b":2,"v":{"total":[10.5,9.9,10.7,10.5,10.7,10.4,11.4,11.3,10.7,10.7,10.7,10.7,11,10.5,9.9],"script":[0.1,0.1,0.7,1.1,0.4,0.8,1.1,0.2,0.7,0.5,0.5,0.1,0.9,0.2,0.1],"paint":[9.1,8.9,7.8,8.3,9.2,8.7,9.2,10.1,9.1,8.8,9,9.5,9.2,9.2,8.9]}},{"b":3,"v":{"total":[3.5,2.8,3.3,3.6,3.5,2.9,3.7,3.1,3.1,2.8,3,2.9,3.5,3.1,3.8,3.7,3.7,3,3,2.8,3.6,2.2,2.7,3,2.4],"script":[1,0.2,1.5,1.7,0.9,0.2,1,0.6,0.9,0.6,0.2,0.2,1.6,1,1.4,1,1,0.9,1.1,1.1,1.2,0.2,0.3,0.3,0.3],"paint":[1.7,1.7,1.2,1.7,1.8,2.4,2.4,1.8,1.3,1.4,1.5,2.6,1.7,1.9,1.3,2.5,2.6,1.1,1.1,1.5,2.3,1.9,2.1,2.4,2]}},{"b":4,"v":{"total":[14,13.4,13.1,13.4,13.8,13.1,13.6,14.1,14.3,16.1,15.7,14.6,13.4,13.9,13.8],"script":[1,0.9,0.2,0.9,0.9,0.8,0.6,0.6,1,1.1,0.6,0.9,0.9,1.2,0.9],"paint":[11.8,11.6,12,12.2,11,11.2,11.8,12.3,11.7,13.7,13.4,12.6,10.3,11.6,11.8]}},{"b":5,"v":{"total":[10.8,10.8,11,10.2,10.4,10.8,10.8,10.4,10.4,10.5,10.8,10.3,10.4,10.4,10.5],"script":[0.5,0.5,0.5,0.1,0.5,0.5,0.5,0.3,0.5,0.3,0.3,0.2,0.2,0.2,0.3],"paint":[9.6,9.8,9.8,9.5,9,9.5,9.7,9.1,9.6,9.5,9.3,9.5,9.6,9.3,9.7]}},{"b":6,"v":{"total":[256.1,259.7,259.2,261.6,258.8,257.9,258.7,260,264.2,256.2,257.6,257.8,264.5,256.4,257.3],"script":[24.5,25.1,25.4,25.6,24.8,25.2,25.6,25.7,25.9,25,25.1,25.7,25.3,24.6,25.1],"paint":[224.3,226.7,225.5,228.3,226.4,224.8,225.6,227,230.2,224,225,224.3,230.8,224.1,224.5]}},{"b":7,"v":{"total":[27.4,27.7,29,28.3,28.4,28.9,28.9,28.5,27.6,27.9,28.4,28.7,28.6,28.8,28.9],"script":[2.4,2.5,2.5,2.5,2.5,2.4,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.5],"paint":[24.2,24.5,25.7,25,25.1,25.7,25.6,25.3,24.4,24.8,25.1,25.4,25.3,25.6,25.6]}},{"b":8,"v":{"total":[9.3,10,10.2,9.5,9.9,12,9.7,10.3,10.1,9.4,9.7,9.7,10.9,9.1,10],"script":[7.8,7.7,8,7.8,7.7,10.2,8.1,8.4,7.9,7.4,7.1,8,8.8,7.7,7.4],"paint":[0.5,2,1.3,0.3,1.4,1.1,0.4,1.5,1.4,0.9,2.3,0.7,1,0.3,2.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.4]}},{"b":11,"v":{"DEFAULT":[2.49]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[17.96]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[46.1]}}]},
+{"f":107,"b":[{"b":0,"v":{"total":[27,27.5,27.2,27.4,27.6,27.2,27.4,27.3,27.2,27.7,26.9,27.4,27.5,27.8,27.5],"script":[5.3,5.2,5.2,5.3,5.5,5.4,5.3,5.4,5.5,5.7,5.3,5.3,5.5,5.4,5.4],"paint":[21.2,21.7,21.5,21.6,21.5,21.3,21.5,21.4,21.2,21.5,21.1,21.5,21.4,21.8,21.5]}},{"b":1,"v":{"total":[32.1,32.4,32.3,32.5,32.1,32.2,31.8,32.7,30.8,32,32.5,31,31.3,32.1,32.2],"script":[8.4,9.4,9,9,8.4,9,8.8,9.3,8.2,9.1,9.4,8.7,8.7,9,8.6],"paint":[23.2,22.4,22.8,22.9,23.1,22.6,22.4,22.9,22.1,22.4,22.6,21.7,22,22.5,22.9]}},{"b":2,"v":{"total":[11.4,12,11.9,11.5,11.8,11.9,11.8,12.8,11.2,11.3,11.9,11.9,11.4,11.4,13],"script":[1.5,1.9,2,1.8,1.4,1.5,1.3,2,1.8,1.6,2.2,2.2,1.6,1.5,2.7],"paint":[8.5,9.2,8.3,7.9,9.3,9.1,9.5,9.8,8.5,8.4,8.1,8.1,8.8,9,8.3]}},{"b":3,"v":{"total":[3.1,2.6,2.8,3.4,3.1,2.8,2.6,3.6,3,4.1,2.4,3.2,2,3.6,2.7,2.5,3,3,2.8,2.3,3.1,2.9,2.4,3.1,3],"script":[1.1,0.1,0.6,0.8,1.2,0.1,0.1,1.4,0.6,1.4,0.1,0.9,0.1,0.9,0.1,0.1,0.6,0.5,0.8,0.1,1.2,0.1,0.8,1.2,0.6],"paint":[1.3,2.4,1.3,1.6,1.6,2.5,1.6,1.3,2,1.8,2.2,2.2,1.1,2.6,1.3,1.8,1,1.4,1,2,1.1,1.4,1.1,1.2,2]}},{"b":4,"v":{"total":[14.7,15.1,14.5,14.9,14.5,15,14.8,15.2,14.1,15.1,13.7,14,15.3,14.1,15.2],"script":[1.6,1.5,1.2,1.4,1.4,1.1,1.1,2,0.9,1.1,1,1,1.5,1.5,1.8],"paint":[11.9,12,12.5,12.2,12.1,13.1,12.8,12.3,13,13.1,12.1,11.9,12.7,10.8,12.4]}},{"b":5,"v":{"total":[10.9,10.9,11.2,11,11,11,11.1,11,10.5,11,11.3,10.9,11.2,11.1,11],"script":[0.6,1,0.8,0.9,0.7,0.7,0.9,0.8,0.7,0.7,0.9,0.9,0.8,0.7,0.7],"paint":[9.1,9,9.8,9.4,9.7,9.5,9.7,9.7,9.2,9.4,9.8,9.4,9.7,9.4,9.7]}},{"b":6,"v":{"total":[386.1,385.8,387.5,389.2,386,384.6,380.5,390.1,394.4,391,388.2,387.1,390.6,389.5,386.6],"script":[159.7,155.8,160.3,162.6,159.4,159.8,156.7,165.1,167,166.5,161.1,161.7,164.8,162.9,161.6],"paint":[219.1,222.6,220,219.1,219.2,217.5,216.5,218,220.1,217.1,219.8,218,218.5,219.4,217.5]}},{"b":7,"v":{"total":[32.3,33,32.2,31.9,32.1,32.6,32.7,32,32.8,32.3,33.7,32,32.5,31.9,32.4],"script":[6.1,6.3,6,6.1,6.1,6.2,6.3,6,6.2,6.3,6.5,6,6.2,5.9,6.1],"paint":[25.3,25.8,25.3,24.9,25.1,25.5,25.5,25.1,25.7,25.2,26.2,25.1,25.3,25.1,25.3]}},{"b":8,"v":{"total":[11.7,11.5,11.4,11.7,11.8,11.5,11.8,11.6,11.5,11.6,11.7,11.6,11.7,11.5,11.5],"script":[9.7,9.1,9.7,9.5,9.8,9.4,9.3,9.3,9.5,9.2,10.3,9.4,9.8,9.7,9.4],"paint":[0.3,1,0.3,0.5,1.2,0.3,1.4,1.2,1,1.6,0.3,1.4,0.3,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.77]}},{"b":11,"v":{"DEFAULT":[3.81]}},{"b":12,"v":{"DEFAULT":[0.79]}},{"b":13,"v":{"DEFAULT":[31.38]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[5.6]}},{"b":16,"v":{"DEFAULT":[50.8]}}]},
+{"f":108,"b":[{"b":0,"v":{"total":[29.4,27.9,26.6,27,27.5,27.5,27.3,26.5,27.1,27.5,29.4,29.3,27.1,27,27],"script":[6.5,6,6.1,6.1,6.1,6.2,6.1,5.7,6.1,6.4,6.4,6.6,6.2,6.2,6.1],"paint":[22.3,21.3,20,20.4,20.9,20.9,20.4,20.3,20.5,20.6,22.4,22.1,20.3,20.2,20.3]}},{"b":1,"v":{"total":[34.2,34.9,34.9,34.1,34.4,34.2,35,34,34.8,34.9,34.3,34.3,35.1,34.7,34.1],"script":[10.1,10.4,10.4,10.2,10.4,10.2,10.4,10.2,10.4,10.4,10.2,10.1,10.5,10.3,9.9],"paint":[23.5,23.9,23.9,23.2,23.5,23.4,24,23.2,23.9,23.9,23.5,23.6,23.9,23.8,23.5]}},{"b":2,"v":{"total":[11.4,11.9,12.3,12.2,11.7,11.4,12,11.7,11.5,11.7,12.7,12.1,11.5,12.2,11.8],"script":[1.1,1.1,0.9,0.6,0.3,1.1,1.5,1,1.3,1.2,1.1,1,0.6,1.4,1.7],"paint":[9.2,9.5,10.4,10.5,10.7,9.3,9.2,9.3,8.8,9.2,10.8,10.5,9.9,9.9,8.9]}},{"b":3,"v":{"total":[2.8,2.1,2.2,2.3,2.2,2.5,2.7,2.2,2.4,2.6,2.2,2.2,1.9,3.3,2.2,2.5,2.8,1.8,2.6,2.2,2,2.5,2,2.4,2.5],"script":[0,0,0,0,0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.1,0,0],"paint":[1.3,1.6,1.8,1.1,1.3,1.5,1.9,1.3,2.2,1.5,1.7,1.9,1.1,2.2,2,2.3,1.7,1.1,1.5,2,1.2,2.1,1.8,1.9,1.4]}},{"b":4,"v":{"total":[13,13.9,13.1,13.5,13.5,13.9,13,12.8,13.4,14.9,13.1,13,13.6,13.6,13.6],"script":[0.3,0.6,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.3,0.1,0.1,0.1],"paint":[11.1,11.8,11.3,11.8,11.9,11.6,12,10.8,11.7,12.9,11.7,11.3,12.2,11.3,12.8]}},{"b":5,"v":{"total":[10.4,10.5,10.7,10.4,10.3,10.3,10.8,10.8,10.2,10.8,10.4,10.5,10.7,10.6,10.2],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.1,0.1,0.1,0.1,0.2,0.3],"paint":[9.6,9.9,10,9.4,9.4,9,10,9.7,8.7,10.1,9.3,9.6,10.2,9.6,9.1]}},{"b":6,"v":{"total":[308.4,307.6,308.1,308.4,308.9,310.4,308.3,309.2,308.2,307.5,312.1,307.2,309.2,311.3,307.6],"script":[78.6,77.7,77.5,77.1,77.9,77.8,77.4,76.9,76.6,77,76.9,77.6,77.8,78.5,76.9],"paint":[222.3,222.3,222.6,223.3,223.4,224.6,223.4,224.6,223.9,222.8,225.9,221.8,223.7,225.1,223]}},{"b":7,"v":{"total":[35.8,34.1,33.8,34.6,34.8,35.2,34.1,34.1,35.3,34.2,34.3,34.9,33.7,34.7,34],"script":[8.2,7.5,7.5,7.5,7.9,8,7.6,7.9,7.9,7.6,7.7,8,7.5,7.6,7.4],"paint":[26.6,25.8,25.4,26.1,26,26.1,25.5,25.3,26.4,25.6,25.6,25.9,25.3,26.1,25.7]}},{"b":8,"v":{"total":[14.3,13.2,14.5,14.7,14.7,13.9,14.3,16.2,13.9,14,14,13.9,13.7,14,15],"script":[12.5,11.8,12.3,12.7,12.3,11.5,12.2,14.2,12.3,12.5,12.6,12.3,11.6,12.3,12.8],"paint":[1.5,1.2,1.9,0.3,1.1,1,1.2,0.9,0.8,0.6,0.3,0.6,0.9,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.39]}},{"b":11,"v":{"DEFAULT":[3.46]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[25.83]}},{"b":14,"v":{"DEFAULT":[73.4]}},{"b":15,"v":{"DEFAULT":[11.8]}},{"b":16,"v":{"DEFAULT":[91.7]}}]},
+{"f":109,"b":[{"b":0,"v":{"total":[29.9,28.8,28.4,28.1,28.2,28.6,28.3,28.5,27.9,28.5,28.6,28.8,29,28.5,28.5],"script":[7.5,7,7.3,7.1,7.1,7.1,7.2,7.2,7.1,7.2,7.1,7.2,7.3,7,7.3],"paint":[21.9,21.2,20.6,20.4,20.6,20.9,20.6,20.7,20.3,20.7,20.9,21.1,21.1,20.9,20.6]}},{"b":1,"v":{"total":[34.9,34.6,34.2,34.6,35.4,34.8,34.6,34.6,34.3,34.8,35.7,35,34.7,34.8,35.5],"script":[11.2,11.2,11,11.1,11.5,11.3,11.2,11,10.9,11.2,11.7,11.3,11,11.1,11.4],"paint":[23.1,22.8,22.6,22.9,23.3,22.9,22.8,23,22.8,22.9,23.4,23.1,23.1,23.1,23.5]}},{"b":2,"v":{"total":[14,12.6,12.8,13.5,13.3,13.5,13.6,13.9,13.2,13,12.7,14.4,13.3,14.8,13.3],"script":[2.9,2.4,2.5,1.8,2.3,2.4,2.5,2.4,2.5,2,1.7,2.9,2.5,2.6,2.3],"paint":[10,8.9,9.5,9.5,9.3,9.9,9.9,9.3,9.3,9.2,9.4,10.3,9.4,10.7,9.9]}},{"b":3,"v":{"total":[3.7,3.9,2.8,2.9,2.9,3.1,2.7,3.6,3.7,3.8,3.3,3.4,3.4,3.8,3.3,2.8,3.4,3.7,3.7,3.3,3.8,3.7,3.7,3.5,3.6],"script":[1.2,1.2,0.6,1.1,1,1.3,0.9,1.3,1.3,1.9,0.7,1.4,0.8,1.4,0.6,0.7,1.7,1.3,1.2,1.1,1.4,1.1,1.3,1.1,1.2],"paint":[1.6,1.8,1.9,1.2,1.1,1.7,1,2.1,2.1,1,2.5,1.9,1.2,2.3,2,1.9,1.6,2.3,1.6,1.7,1.6,2.4,1.7,2.3,1.6]}},{"b":4,"v":{"total":[15,14.8,15,14.5,16.9,14.7,15.4,14.4,15.4,16,15.2,15.3,14.7,14.3,15.5],"script":[2.1,1.4,1.2,1.1,1.7,1.8,2.1,1,2,1.9,1.7,1,1.2,1,1.4],"paint":[11.9,12.2,12.6,12.6,12.4,11.7,12.2,12.4,12.1,12.8,12.1,12.6,12.3,11.8,13]}},{"b":5,"v":{"total":[11,10.9,11.3,10.6,10.9,10.9,10.8,11.6,10.9,10.6,11,11.9,10.8,10.9,10.7],"script":[0.3,0.5,0.3,0.3,0.5,0.5,0.5,0.3,0.2,0.2,0.4,0.5,0.4,0.5,0.3],"paint":[9.8,9.5,10.5,10,9.8,9.8,9.6,10.1,10.4,9.4,9.8,10.6,9.9,9.7,9.7]}},{"b":6,"v":{"total":[307.3,304.8,306.2,304.7,305.1,306.3,305.7,306.9,306.3,307.4,305.4,307,306.8,305.2,306.5],"script":[76.8,75.2,76.1,76.5,76.2,75.6,76.3,75.5,75.6,76.1,75.6,76.1,76.6,75.7,75.5],"paint":[222.5,222.1,222.7,220.9,221.7,223.5,222.1,224.1,223.3,223.9,222.4,223.6,222.8,222.2,223.6]}},{"b":7,"v":{"total":[34.3,34.4,35.6,33.8,34.4,35,34.4,34.1,34.8,34.9,34.2,34.3,34.6,34.6,34.7],"script":[7.8,7.8,7.8,7.8,7.8,8.2,7.9,7.7,7.9,8.1,7.8,7.8,7.8,7.8,8.1],"paint":[25.5,25.5,26.7,25.1,25.5,25.8,25.6,25.4,25.8,25.7,25.4,25.6,25.8,25.8,25.5]}},{"b":8,"v":{"total":[14.8,15.4,14.6,14.6,15.9,15.5,15,14.7,16.1,15.6,14.9,15.3,15.5,15.6,14.6],"script":[12.9,13,12.6,12.9,13.4,13.3,13,12.9,14.1,13.4,13,13.1,13.4,13.7,12.5],"paint":[1,0.9,1.8,1.1,2.3,0.7,0.6,1.2,1.8,0.7,1.1,1.2,1.1,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.94]}},{"b":10,"v":{"DEFAULT":[4.94]}},{"b":11,"v":{"DEFAULT":[5.04]}},{"b":12,"v":{"DEFAULT":[1.12]}},{"b":13,"v":{"DEFAULT":[39.64]}},{"b":14,"v":{"DEFAULT":[81.4]}},{"b":15,"v":{"DEFAULT":[20]}},{"b":16,"v":{"DEFAULT":[93.8]}}]},
+{"f":110,"b":[{"b":0,"v":{"total":[32.3,29.6,37.4,31.7,31.9,32.2,31.5,34.7,33.3,38.7,31.4,30.9,30.9,32.6,35.2],"script":[5,5.5,4.9,5.4,5.5,5.6,5.3,5.5,5.3,5.2,5.4,5.4,5.2,5.5,5.3],"paint":[21.3,21.9,20.7,22,21.4,21.8,21.6,21.7,21.4,21.1,21.6,21.7,21.5,21.8,21.3]}},{"b":1,"v":{"total":[33.5,33,32.6,32.2,31.5,34.7,38.9,32,32.2,32.1,32.7,37,36.5,31.1,33.1],"script":[8.3,8.3,8.2,8.5,8.3,8.3,8.3,8.2,8.5,8.2,8.4,8.4,8.3,8,8.2],"paint":[22.7,21.8,22.2,22.7,22.2,22,21.8,22.6,22.4,22.4,22.3,22,22.5,22.6,22.3]}},{"b":2,"v":{"total":[30.8,31.3,31.6,16.2,31.5,33.7,31.7,34,32.5,30.3,31,30.8,31.9,32.9,31.4],"script":[2.9,2.6,3.1,2.5,3.8,2.8,2.8,3,3.3,2.6,3.3,2.9,2.8,3.8,2.7],"paint":[11.1,12.6,13,13.1,12.4,13,11.8,11.7,14,12.8,12.5,12.2,11.6,12.6,13.8]}},{"b":3,"v":{"total":[5.8,14.5,13.2,9.4,10.8,13.2,15.8,7.3,13.8,8.3,7.7,8.9,8.4,11.4,16,12.1,11.1,6.5,15.3,7.6,13.6,9.6,14.3,11.7,12.5],"script":[1.6,2.3,2.6,2,2.5,2.5,1.8,2.9,1.6,0.9,2.7,2.9,2.4,2.3,2.3,1.8,2.6,1,1.1,1.6,2.1,2.7,2.4,1.9,1.8],"paint":[1.3,2.5,3.6,4.3,2.7,3.7,3.2,3.2,2.4,2.5,2.6,3,3.3,3.2,3,3,2.8,1.9,3.3,1.7,3.6,3.6,2.3,2.9,2.7]}},{"b":4,"v":{"total":[35.5,33.9,32.1,15.6,32.5,33.7,34.8,32.7,36.4,32.4,32.1,33.7,35.9,33.7,33.6],"script":[0.9,0.8,1.3,1.8,1.9,1.1,1.6,2.1,1.6,1.4,1.1,1.1,2.3,1.1,2.3],"paint":[16,14.5,14.9,12.9,13.7,16.5,14.5,14.1,15.3,15.5,14.8,13.6,15.1,16.5,15]}},{"b":5,"v":{"total":[14.5,15.8,12.6,12.8,17,12.8,13.9,13.3,15.7,15.2,17.7,12.8,12.9,12.9,17],"script":[0.7,0.8,0.9,1.1,1.1,1,1.1,0.9,1,1,1,0.9,0.9,1.1,1.1],"paint":[10.7,11.5,10.4,10.6,11.3,10.3,10.6,11.6,10.6,11.4,11,10.9,10.7,10.8,11.6]}},{"b":6,"v":{"total":[272.5,275,272.3,277.6,270.8,271.6,273.1,272.5,275,273.1,271.1,271.5,282.1,270.8,272.2],"script":[49.4,50.5,50.5,49.7,49.8,49.9,50.6,49.8,51.2,49.7,49.6,49.3,50,49.6,50.1],"paint":[219,220.7,218,220.4,217.2,217.9,218.6,218.9,220,219.6,217.9,218.4,221.9,217.2,217.2]}},{"b":7,"v":{"total":[38.9,40.7,37,37.7,38.3,36.9,38.8,37.1,39.1,37.9,38.4,37.4,41.4,36.4,37.2],"script":[5.2,5.2,5.2,5.3,5.4,5.2,5.2,5.3,5.1,5.2,5.3,5.3,5.2,5.2,5.2],"paint":[25.4,25.2,25.6,25.8,25.6,26.1,25.6,25.9,25.3,25.5,25.7,25.5,25.4,25.5,25.7]}},{"b":8,"v":{"total":[38.3,13.7,17.4,39.3,37.6,38.6,15.4,15.3,37.7,38.5,14.1,36.6,36.6,35.1,14.9],"script":[13.4,9.8,13.7,13.7,11.9,13.1,12,12.4,11.3,13.8,10.9,11.1,11,10.8,11.6],"paint":[2.2,2.3,2.5,1.6,2.9,1.9,2.1,1.4,1.4,2,2.4,3.1,3.3,2.5,1.5]}},{"b":9,"v":{"DEFAULT":[0.99]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.75]}},{"b":12,"v":{"DEFAULT":[1.18]}},{"b":13,"v":{"DEFAULT":[25.86]}},{"b":14,"v":{"DEFAULT":[92.5]}},{"b":15,"v":{"DEFAULT":[23]}},{"b":16,"v":{"DEFAULT":[103.3]}}]},
+{"f":111,"b":[{"b":0,"v":{"total":[54.4,54.2,54.8,54,54.2,55,54.4,55.1,54.5,54.2,54.9,54.4,54.9,55.1,54.8],"script":[30.1,29.7,30,29.4,30,30.2,29.9,30.6,30.1,30.1,30.5,29.9,30.3,30.3,30.3],"paint":[23.8,24,24.3,24.2,23.7,24.3,24,24.1,23.9,23.6,24,24,24.1,24.3,24.1]}},{"b":1,"v":{"total":[68.6,68.2,68.4,68.4,68.1,68.3,68.7,69.2,68.5,68.2,68.6,67.9,67.9,67.6,67.8],"script":[44.9,44.7,44.9,44.7,44.4,44.6,45,45.5,45,44.6,44.9,44.7,44.5,44.3,44.3],"paint":[23.2,23,23,23.2,23.2,23.1,23.2,23.3,23,23,23.2,22.7,23,22.8,23.1]}},{"b":2,"v":{"total":[41.3,40.2,40.7,41.2,41.4,41.2,40.4,41.8,42.3,42.2,41.4,39.7,40.5,41.2,42.3],"script":[27.6,27.4,27.7,28.1,28.3,27.9,27.3,28.7,29.5,29.4,28.9,27.7,27.4,27.8,29.1],"paint":[11.7,11.8,11.7,11.1,11.7,11.4,12.2,11.8,11.8,11.3,11.2,11,11.6,12.7,12]}},{"b":3,"v":{"total":[28.8,28.7,28.5,28.5,29.4,28.6,29,28.7,29.2,29.7,28.7,28.3,28.2,28.9,29.1,29.9,28.6,28.3,30,30.3,28.8,29.6,29.2,30.8,28.4],"script":[26.4,26.3,25,25.2,26.3,25.8,26.2,26.3,25.6,27.1,26.2,26,26,26.3,26.6,26.7,26.1,26.1,27.2,26.8,25.9,27,27.2,27.5,25.9],"paint":[1.5,2,2.6,3.1,2.1,1.9,2,1.4,3.1,1.5,1.4,1.8,1.2,2.5,1.4,1.3,1.7,1.3,2,2.6,1.6,1.6,0.8,1.7,1.7]}},{"b":4,"v":{"total":[66.1,68.6,66.2,68.3,68.1,71.3,68,68.6,67.8,69,67.4,68.5,67.7,70.7,68.6],"script":[49.8,52.7,51.3,52.6,52.8,53.4,51.6,51.9,51.5,53.1,51.4,51.4,51.7,53.8,52.5],"paint":[15,14.7,13.1,14.6,13.4,16.6,15.5,16.1,14.6,14.8,14.9,15.6,14.2,15.3,14.9]}},{"b":5,"v":{"total":[23.7,23.8,23.1,23.4,22.8,23.2,23.7,23.9,23.3,23.7,24.5,23.8,23.6,23.9,24],"script":[12.5,12.5,12.2,12.5,12.2,12.4,12.5,12.6,11.9,12.8,12.9,12.5,12.7,12.7,12.5],"paint":[10.6,10.8,10,10.3,10.2,10.2,10.3,10.6,10.8,10,10.8,10.7,10.1,10.3,10.8]}},{"b":6,"v":{"total":[1113.2,1213.1,1210.3,893.2,1479.9,1118,1015.1,911,1001.4,930.6,1157.4,870.9,1030.1,862.7,1194.5],"script":[857.3,954,954.4,636.4,1224,860.6,756.2,652.8,741.2,673.3,899.2,609.8,770.2,606,933],"paint":[247.7,250.5,247.7,248.8,247.9,249.1,250.4,250,251.7,249.2,249.7,252.2,251.6,248.6,252.5]}},{"b":7,"v":{"total":[68.8,69,69.2,69.4,68.6,69.5,69.9,69.9,68.6,68.4,69.6,69.3,68.6,68.9,69],"script":[38.3,38.2,38.3,38.8,38.3,38.7,39,38.9,38.1,37.9,38.9,38.4,38.1,38.5,38.5],"paint":[29.5,29.8,29.8,29.6,29.3,29.8,29.9,29.9,29.6,29.5,29.7,29.9,29.5,29.4,29.6]}},{"b":8,"v":{"total":[25.7,25,26.4,24.9,25,25.4,25.2,26.6,24.8,25.2,25.3,24.7,25.5,25,25],"script":[24.3,23.5,24.9,23.8,23.5,24.5,23.9,24.7,23.3,23.5,24,23.8,24.2,24,24],"paint":[1.4,1.4,1.4,1,0.6,0.4,0.6,1.8,1.3,1.6,0.3,0.3,1,0.9,0.3]}},{"b":9,"v":{"DEFAULT":[1.78]}},{"b":10,"v":{"DEFAULT":[8.42]}},{"b":11,"v":{"DEFAULT":[11.17]}},{"b":12,"v":{"DEFAULT":[23.36]}},{"b":13,"v":{"DEFAULT":[68.52]}},{"b":14,"v":{"DEFAULT":[277.6]}},{"b":15,"v":{"DEFAULT":[81]}},{"b":16,"v":{"DEFAULT":[387.8]}}]},
+{"f":112,"b":[{"b":0,"v":{"total":[26.8,26.6,27.5,26.8,26.7,26.8,26.7,27.4,26.5,26.6,27.2,27.4,26.9,26.7,27.7],"script":[4.7,4.6,5.3,4.6,4.6,4.7,4.6,4.9,4.6,4.6,4.7,4.6,4.7,4.6,4.8],"paint":[21.7,21.6,21.6,21.9,21.8,21.8,21.7,22.2,21.5,21.6,22.1,22.4,21.8,21.7,22.5]}},{"b":1,"v":{"total":[30.3,31.2,30.3,30.7,30.3,30.6,30.3,30.8,30.8,30.7,30.7,31.4,30.3,30.2,30.7],"script":[7.2,7.1,7.2,7,7.1,7.4,7.1,7.1,7.2,7,7.2,7.9,7.1,7.1,7.2],"paint":[22.5,23.6,22.6,23.1,22.6,22.6,22.6,23.1,23.1,23.1,22.9,22.9,22.7,22.5,22.9]}},{"b":2,"v":{"total":[11.8,12.6,12.2,12.1,11.9,13,11.8,12.1,12.1,12.6,12.5,11.7,12.5,12.4,12.1],"script":[2,2.3,1.9,1.8,1.5,2.4,1.8,2.2,1.4,1.9,1.8,1.6,2.1,2,1.8],"paint":[8.6,9.4,9.3,9.4,9.4,9.4,8.9,8.4,9.3,8.2,9.4,9.2,9.2,9.1,8.3]}},{"b":3,"v":{"total":[4,4.2,3.4,4,4.7,4,3.6,3.8,3.3,3.6,3.3,3.6,4.1,4,4.1,3.7,3.2,4.7,3.6,4.2,3.8,4,3.4,3.7,3.6],"script":[1.5,2.3,1.5,1.3,2.2,2,2.1,1.3,1.2,1.6,0.9,1.8,1.8,2.1,1.7,1.5,1.6,2.2,1.1,2,1.4,2.1,1.2,1.4,1.7],"paint":[1.5,1.8,1,2.5,1.5,1.8,1,2.3,1.2,1.9,1.2,1.7,2.2,1.3,2.3,1.3,1.5,2.4,1.7,2.1,2.2,1.5,1.3,2,1]}},{"b":4,"v":{"total":[14.9,13.9,14.2,14,14,15.9,14.3,14.1,14.9,14.8,13.6,14.7,14.7,15.2,14.2],"script":[2,1.5,1.4,1.5,1.9,1.8,1.9,2.2,2.2,2.2,1.3,2.1,1.4,1.5,1.7],"paint":[12.2,11.3,11.6,11.5,10,12.9,11.2,10.9,11.7,11.6,10.8,12,12.4,12.1,10.3]}},{"b":5,"v":{"total":[11.4,11.3,11.1,11.4,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.5,11.3,11.1,11],"script":[1.2,1.2,1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1],"paint":[9.6,9.8,9.6,9.4,9.4,9.6,9.6,9.8,9.3,9.6,9.7,9.8,9.5,9.4,9.6]}},{"b":6,"v":{"total":[279.1,281.2,280.8,281.5,279.6,279,281.8,281.6,279.4,280.7,281.3,279.8,278.9,278.3,278.8],"script":[45.5,44.8,45.4,44.7,44.7,44.7,45.1,45,45.2,45.3,45.3,44.2,44.2,44.9,45],"paint":[226.2,228.8,228,229,227.7,227,229.5,229.3,227,228.1,228.7,228.4,227.5,226.2,226.7]}},{"b":7,"v":{"total":[32.4,31.6,31.9,31.9,31.8,32.3,31.7,32.3,33.2,31.9,31.8,32.1,31.6,31.7,32.9],"script":[5,4.6,4.9,4.8,4.7,5,4.6,5.1,4.7,5,4.9,5.1,4.7,5.1,5],"paint":[26.4,26.2,26.2,26.3,26.4,26.6,26.3,26.3,27.7,26.1,26.1,26.1,26.1,25.7,27]}},{"b":8,"v":{"total":[11.8,11.5,11.6,12.2,11.6,12.4,12.5,11.8,12,11.5,15.7,12.1,11.7,11.7,11.2],"script":[9.8,9.2,9.5,9.6,10,10.1,9.8,9.7,9.8,10,13.6,10.3,10.1,9.9,9.9],"paint":[1.8,1.1,1,1.9,0.2,1.4,1.4,0.8,1.1,0.9,1.5,0.6,1,1.1,0.4]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.78]}},{"b":11,"v":{"DEFAULT":[3.76]}},{"b":12,"v":{"DEFAULT":[2.5]}},{"b":13,"v":{"DEFAULT":[22.27]}},{"b":14,"v":{"DEFAULT":[173.9]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[208.5]}}]},
+{"f":113,"b":[{"b":0,"v":{"total":[27,26.6,26.7,26.3,26,26.2,26.3,26.8,27.1,26.8,26.2,26.6,26.8,26.8,26.5],"script":[4.5,4.3,4.4,4,4,4,4,4.3,4.5,4.5,4.3,4.1,4.4,4.5,4.1],"paint":[22.2,21.8,21.9,21.9,21.6,21.8,21.9,22.1,22.3,21.9,21.5,22.1,22,21.9,21.9]}},{"b":1,"v":{"total":[29.4,29.8,29.6,29.8,29.9,29.8,29.5,29.8,29.4,29.7,29.7,30,29.5,29.4,30],"script":[6,6.2,6.3,6.6,6.2,6.2,6.2,6.2,6.1,6.3,6.2,6.3,6.1,5.9,6.3],"paint":[22.7,23,22.8,22.6,23.2,22.9,22.8,22.9,22.7,22.8,22.9,23.2,22.8,22.9,23.2]}},{"b":2,"v":{"total":[12.4,10.8,10.7,10.5,11.5,10.9,10.9,11.5,10.7,11.1,11.2,10.7,10.2,11,10.9],"script":[1.3,0.2,0.9,0.8,1.2,0.9,0.8,0.9,1.2,0.9,1.2,0.5,0.2,0.7,0.8],"paint":[9.3,9.5,8.6,8.1,8.9,9,8.9,9.4,7.8,9,8.9,9,8.6,9,9.1]}},{"b":3,"v":{"total":[4.8,1.9,2.5,2.2,2.1,2.4,2.4,1.9,2.7,2.3,1.7,2.2,2.3,2.4,2.1,2.1,2.1,2.4,2.4,1.9,2.1,2.1,2.2,2.3,2.6],"script":[0,0,0,0,0.4,0.9,0.1,0,0,0.4,0,0,0.4,0,0.5,0,0,0.7,0.4,0,0,0,0,0,0],"paint":[2,1.1,2.3,1.7,1.6,1.4,1.6,1.8,2.1,1.1,1.3,2,1.7,1.7,1.5,1.6,1,1.5,1.9,1.3,2,1.5,0.9,1.5,2.1]}},{"b":4,"v":{"total":[14.9,15.3,14.9,15.5,15.9,14.6,15.9,13.9,14.5,16.8,14.8,15,16,13.8,14.1],"script":[1.9,2.7,1.9,2.4,2,1.5,2.2,0.9,1.7,2.7,1.5,1.6,1.5,1.7,1.4],"paint":[11.2,11.3,11.6,11.9,13,11.6,12.3,11.4,11.2,12.6,11.8,12.1,13.2,10.6,11.5]}},{"b":5,"v":{"total":[10.6,10.7,10.3,10.4,10.8,11.5,10.4,10.5,10.4,10.4,10.5,10.4,10.9,10.2,10.4],"script":[0.3,0.3,0.4,0.1,0.5,0.1,0.3,0.3,0.3,0.2,0.3,0.5,0.5,0.3,0.1],"paint":[9.8,9.6,9.3,9.3,9.7,10.6,9.6,9.7,9.6,9.5,9.4,9.6,9.2,8.7,9.3]}},{"b":6,"v":{"total":[281.1,281.6,283.7,281.4,282.7,283.4,284.1,283.6,283.6,280.5,283.7,280.3,282.2,283.2,284],"script":[48.9,49.3,49.3,48.6,49.3,49.6,49.7,49,49.2,48.8,49.9,48.6,49.3,50,49.6],"paint":[224.2,224.6,226.6,224.8,225.8,226.2,226.7,226.3,226.7,224.1,226.1,224.1,225.2,225.6,226.6]}},{"b":7,"v":{"total":[31.4,31,31.6,31.3,31.8,32,31.3,31.8,31.4,31.7,32.3,31.8,31.6,31.5,31.1],"script":[4.4,4.3,4.5,4.4,4.4,4.4,4.4,4.3,4.3,4.2,4.5,4.4,4.5,4.5,4.4],"paint":[26.2,25.9,26.3,26.1,26.6,26.7,26.1,26.6,26.3,26.6,27,26.6,26.3,26.2,25.9]}},{"b":8,"v":{"total":[9.5,9.8,10.5,9.8,10.3,10,10.9,9.3,9.5,10.1,10.4,9.7,9.5,9.7,9.9],"script":[7.9,7.6,8.2,8.4,8.1,8.1,8.2,7.5,8.1,7.9,8.1,7.6,7.3,7.7,7.9],"paint":[0.8,0.5,0.9,0.3,0.7,0.9,1.5,1.6,1.2,1.4,0.6,1.3,1.9,0.6,1]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.74]}},{"b":11,"v":{"DEFAULT":[2.75]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.43]}},{"b":14,"v":{"DEFAULT":[9.4]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[38.1]}}]},
+{"f":114,"b":[{"b":0,"v":{"total":[38.1,37.9,38.8,38.6,37.7,37.9,37.5,38.2,38.1,37.8,37.9,37.9,38.4,37.6,38.5],"script":[14.8,15,15.6,14.8,14.4,14.6,14.6,14.8,14.7,14.7,14.5,15,15.1,14.6,15.4],"paint":[22.7,22.3,22.6,23.2,22.7,22.7,22.3,22.8,22.9,22.5,22.8,22.4,22.8,22.5,22.5]}},{"b":1,"v":{"total":[41.8,41.9,41.5,41.3,41.9,41.3,41,41.9,42.1,41.3,41.2,42.5,42.1,42,42],"script":[18.6,19.2,18.6,18.4,18.7,18.6,18.1,18.8,18.7,18.2,18.5,18.9,18.9,18.7,18.8],"paint":[22.7,22.2,22.4,22.3,22.6,22.2,22.4,22.5,22.8,22.5,22.1,23.1,22.6,22.6,22.6]}},{"b":2,"v":{"total":[20.3,19.8,18.6,20,19.8,18.3,19.2,19.2,18.7,18.3,19.8,19.4,19,19.5,22.1],"script":[7.5,6.9,7.3,7.9,7.6,6.7,7.4,6.5,7.1,6.2,8.2,7.2,6.5,7.1,7.6],"paint":[11,10.8,9.3,10.3,10.9,9.1,9,10.9,9.5,9.9,9.1,10.1,10,10.3,11.9]}},{"b":3,"v":{"total":[4.4,5.3,4.5,4.9,4.8,4.8,5.7,5.3,4.5,4.3,5.2,5.2,4.5,5.2,5.5,4.7,5,5.4,4.4,4.6,5.1,4.6,5.6,4.6,4.6],"script":[2.1,2.5,2.5,2.7,2.1,2.1,2.2,2.5,2.3,2.1,2.9,2.6,2.4,2.4,2.7,2.2,2.7,3,1.8,2.2,2.3,1.7,2.9,2.3,2.4],"paint":[1.4,1.6,1.1,1.5,2,1.8,2.5,1.9,1.3,1.1,1.6,1.7,1.6,1.8,1.8,1.7,1.2,2.1,1.3,1.5,1.8,1.1,1.7,1.3,1.2]}},{"b":4,"v":{"total":[16.5,16.5,16.2,15.6,15.5,16.6,16.5,16.3,15.3,16.8,16.4,15.9,16.7,16.4,15.8],"script":[1.9,2.2,2.5,2,2.1,3.1,1.9,2.7,1.9,2.3,2.5,1.9,3.1,2.7,1.6],"paint":[12.3,12.7,12.7,12,11.1,11.9,13.6,12.2,12,12.4,12.8,12.5,11.9,11.8,12.4]}},{"b":5,"v":{"total":[12.1,12,11.5,12.2,12.6,11.6,12.2,12.4,12,12,12.1,11.6,12,12.1,12.3],"script":[1.2,1.2,1.1,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1,1.1,1.2,1.2,1.2],"paint":[10,10.2,9.8,10.2,10.7,9.9,10.4,10.7,10.4,9.7,10.6,10,10.3,10.3,10]}},{"b":6,"v":{"total":[382,379,385,380.5,380.9,377.9,379.6,382.1,384.2,381.6,383.9,383.7,380.7,381.8,381.8],"script":[144.3,141.9,146,141.4,141.7,140.8,142.7,143.1,142.6,139.9,144.6,142,142.7,142.8,144.3],"paint":[229.6,229,230.9,231.1,230.6,228.9,228.9,230.8,233.2,233.6,231.3,233.4,229.9,230.9,229.4]}},{"b":7,"v":{"total":[42.6,44,42.3,43.1,43.1,42.7,43,43.3,43,43.1,42.6,42.3,42.9,42.6,42.8],"script":[14.6,14.9,15,15.1,15.3,14.4,14.8,14.8,14.7,15.2,14.9,14.5,14.9,14.7,14.9],"paint":[26.9,28,26.3,27,26.7,27.2,27.2,27.4,27.2,26.8,26.7,26.8,27,26.9,27]}},{"b":8,"v":{"total":[10.4,9.9,10.4,11.2,10.7,10.8,9.7,10.1,10.1,10.4,9.8,10.6,10.4,9.9,10],"script":[8.6,7.8,8,8.8,8.7,8.4,8.4,8.4,8.3,8.5,8.4,8.5,8.6,7.9,8],"paint":[0.7,1,2.1,1.3,0.8,1,0.2,1.1,1.1,1,0.4,1,0.3,0.8,1]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.53]}},{"b":12,"v":{"DEFAULT":[1.36]}},{"b":13,"v":{"DEFAULT":[18.99]}},{"b":14,"v":{"DEFAULT":[5.2]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[41]}}]},
+{"f":115,"b":[{"b":0,"v":{"total":[24,24,24.1,23.8,23.9,24.1,24.1,24.2,23.9,24,24.1,24.3,23.8,24.1,24],"script":[2.5,2.5,2.5,2.4,2.4,2.5,2.6,2.5,2.5,2.4,2.5,2.6,2.5,2.5,2.4],"paint":[21.1,21.2,21.2,21,21.1,21.3,21.2,21.3,21.1,21.2,21.2,21.3,21,21.2,21.2]}},{"b":1,"v":{"total":[27.4,27.8,27.6,27.9,28.1,28.1,28.5,27.8,27.5,27.9,28,28.1,27.5,27.8,27.4],"script":[5,5.1,5.1,5.2,5.1,5.3,5.1,5.3,5,5,5.1,5.1,5,5,5],"paint":[22,22.2,21.9,22.2,22.5,22.3,22.9,21.9,21.9,22.3,22.3,22.4,21.9,22.2,22]}},{"b":2,"v":{"total":[11,10.7,11.3,10.8,10.9,11.4,11.1,11.5,10.9,11,10.8,10.3,11.1,10.5,9.8],"script":[1.2,1,0.9,0.9,0.7,0.9,1.2,1.4,1.2,1.4,1.1,0.2,0.9,0.2,0.8],"paint":[8.3,8.2,9,8.8,8.9,9.7,9.1,9,8.5,8.4,8.8,8.4,9.4,9.1,8]}},{"b":3,"v":{"total":[2.5,2.1,2.7,2.5,2,2.7,2.4,2.2,2.3,3.2,3,2.7,3,2.4,2.6,2.5,2.5,2.5,2,3.6,2.8,3.1,2.6,2.6,2.5],"script":[0.1,0.1,0.1,0.1,0.1,0.8,0.3,0.1,0.1,0.7,0.6,0.5,1,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,1,0.1,0.6,0.1],"paint":[2.3,1,2.5,0.8,1.1,1.1,1.6,1.5,1.3,2.3,2,0.6,1.8,1.3,1.5,1.5,1,1.5,1.1,2.1,2.6,1.4,1.8,1.5,1.9]}},{"b":4,"v":{"total":[14.3,13.9,13.6,13.7,13.8,13.9,13.6,14.4,14.6,14.2,14.2,14,14.1,14.6,13.6],"script":[1.3,1.4,0.9,1.2,0.6,0.7,0.7,2,1,1,1.3,1.6,1.1,1.5,1],"paint":[12,10.8,12,10.6,12.3,12.1,11.9,11,12.6,11.9,11.9,11.1,12,11.9,12.3]}},{"b":5,"v":{"total":[10.7,10.6,10.8,10.2,10.9,10.6,11.2,11,11.3,10.4,10.8,10.5,10.7,10.5,10.7],"script":[0.6,0.5,0.6,0.3,0.6,0.3,0.6,0.6,0.6,0.2,0.6,0.6,0.5,0.4,0.6],"paint":[9.8,9.6,9.8,9,9.7,9.6,10.3,9.9,10,9.4,9.4,9.3,9.6,9.2,9.6]}},{"b":6,"v":{"total":[256.7,259.5,259.5,258.2,257.8,258.5,260,257.8,257.8,258.8,257.9,257.5,259.7,259.1,258.8],"script":[28.6,29,29,28.8,28,28.5,28.8,28.5,29.7,28.6,28.4,28.3,28.9,28.5,28.8],"paint":[221,223.2,223.4,222.4,222.6,222.7,224,222.3,221.1,223,222.2,221.9,222.8,223.5,222.8]}},{"b":7,"v":{"total":[29.2,29.6,28.9,28.8,29.1,29.5,29.1,29.9,28.7,29,29.9,29.2,30.5,28.9,29.6],"script":[3.2,2.9,2.9,3,3,3,3,3.1,3,2.9,3.1,3,3,3,3.1],"paint":[25.1,25.9,25.2,25,25.3,25.6,25.4,26.1,24.9,25.3,26,25.5,26.7,25.3,25.8]}},{"b":8,"v":{"total":[11.8,10.2,11.7,11.9,11.5,10.5,11.8,11,12.6,12.6,11.3,12.7,12.7,12.5,12.7],"script":[10.7,8.2,9.9,10.6,9.3,8.5,10,9.2,10.8,9.9,9.4,10.8,10.5,10.6,11.2],"paint":[0.9,1.5,0.9,0.2,0.7,1,1,0.9,0.9,2.1,1.7,0.8,1.3,0.6,0.7]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[2.74]}},{"b":11,"v":{"DEFAULT":[2.77]}},{"b":12,"v":{"DEFAULT":[0.74]}},{"b":13,"v":{"DEFAULT":[21.07]}},{"b":14,"v":{"DEFAULT":[11.5]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[42.3]}}]},
+{"f":116,"b":[{"b":0,"v":{"total":[26.6,25.8,26.2,27.1,25.7,26.3,25.7,25.4,26.4,25.4,26.2,25.4,26.4,25.4,25.4],"script":[4.4,4.1,4.3,4.5,3.9,4.3,3.6,3.6,4.3,3.5,4.2,3.5,4.3,3.6,3.5],"paint":[21.8,21.3,21.6,22.3,21.3,21.6,21.7,21.5,21.7,21.5,21.6,21.5,21.7,21.5,21.5]}},{"b":1,"v":{"total":[30.1,29.3,29.3,29.4,29.5,29.6,30,29.4,30.6,29.2,30,29.1,29.9,29.4,29.8],"script":[6.8,6.5,6.7,6.8,6.6,6.5,6.8,6.7,6.8,6.5,6.6,6.6,6.9,6.5,6.5],"paint":[22.7,22.2,22,22.1,22.3,22.6,22.7,22.1,23.2,22.2,22.8,22,22.5,22.3,22.7]}},{"b":2,"v":{"total":[11.4,10.5,11.2,11.7,10.6,11.4,10.7,11.7,11.1,12.4,10.4,11.3,11.5,10.7,10.9],"script":[1.1,0.9,1,1.5,1.2,1.1,1.4,1.2,1.1,1.6,0.7,1.3,1.6,1.1,1.2],"paint":[8.2,8.2,9.3,9.3,8.4,7.9,8.1,9.4,8.5,9.8,8.8,8.9,9,8.9,8.4]}},{"b":3,"v":{"total":[4.5,2.4,1.9,2.9,2.2,2.2,2.5,2.8,3.1,2.6,2.7,2.6,2.4,2.5,2.4,2.9,3.1,2.7,3.1,2.7,2.8,2.2,2.7,1.9,2.6],"script":[0.1,0.5,0.1,0.9,0.5,0.5,0.1,0.4,0.8,0.6,0.5,0.5,0.6,0.1,0.6,0.9,0.8,0.5,0.8,0.5,0.8,0.1,0.7,0.1,0.2],"paint":[2.6,1.8,1,0.8,1.6,1.6,1.5,2.3,0.7,1.4,1.4,1.4,1.3,2,1.2,1.4,1.5,2.1,2.2,2.1,1.2,1.1,1.8,1.7,1.4]}},{"b":4,"v":{"total":[16,15,15.1,16.5,15.3,18.1,14.9,16,15,16.5,15.2,15,16.1,14.3,14.5],"script":[2.2,2.3,2.1,2.2,2.1,2.3,2,2.8,1.9,2.4,2.4,2.5,2.5,1.5,2.1],"paint":[12.5,11.8,11.9,13.4,12.5,14.6,10.8,12.5,11.9,13,11.6,11.1,12.6,11.7,11.2]}},{"b":5,"v":{"total":[11.8,11.8,11.9,11.6,11.9,11.6,11.5,11.8,11.5,12.7,12.7,12,11.5,11.6,11.6],"script":[1.6,1.6,1.6,1.6,1.7,1.7,1.4,1.7,1.4,1.5,1.6,1.7,1.6,1.7,1.5],"paint":[9.6,9.5,9.7,9.4,9.6,8.9,9.5,9.9,9.5,10.6,10.6,9.6,9.3,8.9,9.6]}},{"b":6,"v":{"total":[272.6,271.7,273.1,273.1,273.3,271.8,271.8,271.5,273.8,272.5,271.6,271.7,270.4,272.7,271.7],"script":[42.3,43,42.7,43.2,42,43.2,42.4,42.8,42.5,42.9,42.7,41.8,43.2,42.8,42.1],"paint":[223.1,221.4,223.1,222.8,223.7,221.4,222.3,221.6,223.5,222.4,221.7,222.7,220.1,222.8,222.5]}},{"b":7,"v":{"total":[31.6,31.8,31.5,30.9,30.9,31.1,32,30.8,31.6,33.7,31.6,31.8,31.5,31.9,31.1],"script":[4.9,4.9,5,4.7,4.8,4.7,4.8,4.7,4.9,4.8,5,5,4.9,4.9,4.9],"paint":[25.9,26.1,25.8,25.4,25.4,25.6,26.4,25.3,25.9,28.1,25.9,26,25.8,26.2,25.4]}},{"b":8,"v":{"total":[11,10.5,11.2,11.4,12.3,12.4,13.1,10.1,11.9,13.2,11.7,12.4,12.2,11.3,11],"script":[9.1,8.6,9.1,9.4,10.6,10.5,11.3,8.6,9.8,11.8,9.4,10.5,10.9,9.1,8.9],"paint":[1.7,1.7,1.1,0.8,0.3,0.9,0.2,0.9,1,0.2,1.4,0.3,1.1,1.1,1.9]}},{"b":9,"v":{"DEFAULT":[0.51]}},{"b":10,"v":{"DEFAULT":[2.97]}},{"b":11,"v":{"DEFAULT":[3.01]}},{"b":12,"v":{"DEFAULT":[0.83]}},{"b":13,"v":{"DEFAULT":[22.64]}},{"b":14,"v":{"DEFAULT":[14.7]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[42.2]}}]},
+{"f":117,"b":[{"b":0,"v":{"total":[23.4,23.3,23,22.9,23,23.3,23.2,23.2,23,23.1,23.4,23.1,23.4,23.2,23.3],"script":[1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.4,1.4],"paint":[21.6,21.6,21.3,21.2,21.3,21.6,21.5,21.5,21.3,21.4,21.7,21.4,21.7,21.5,21.6]}},{"b":1,"v":{"total":[25.9,26.1,25.7,25.7,26.1,25.9,26,26,25.5,25.9,25.8,25.9,26.2,26,26.6],"script":[3.2,3.2,3.2,3.2,3.3,3.3,3.2,3.3,3.2,3.3,3.2,3.3,3.4,3.3,3.3],"paint":[22.3,22.4,22.1,22,22.4,22.3,22.4,22.3,22,22.2,22.2,22.3,22.4,22.3,22.8]}},{"b":2,"v":{"total":[10.2,10.6,9.5,9.7,9.9,9.5,9.8,10.6,11.1,10.1,10.3,9.4,9.5,9.7,10],"script":[0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.1,0.1,0.1,0.3,0.1],"paint":[8.9,8.3,8.1,8.2,9.2,8.4,9.4,9.9,10,8.4,9.3,8.3,8.9,7.8,8.4]}},{"b":3,"v":{"total":[2.6,2.2,2.5,2.2,1.8,1.9,3.5,3.1,2.6,1.9,2.2,2.3,2.4,2.1,2.1,2.3,2.3,2.6,2.5,2.2,2,1.9,2.6,2.6,1.7],"script":[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],"paint":[2,1.6,1.7,1.5,1.7,1.1,1.5,2,1.7,1.1,1.8,2.2,2.2,1.5,1.9,1.8,1.7,2.4,1.7,2.1,1.5,0.7,2.5,2.5,1.6]}},{"b":4,"v":{"total":[12.2,13,12.5,13.3,12.7,12.8,11.9,13.3,12.3,12.2,12.7,12.7,13.3,14.1,12.2],"script":[0.6,0.8,0.1,0.7,0.1,0.1,0.1,1,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[10.3,11.9,11.2,11.7,11.5,10.4,10.9,10.7,11.3,10.6,11.4,11.4,11,12.8,10.9]}},{"b":5,"v":{"total":[10.2,10.3,10.2,10.2,10.2,9.8,9.8,10.1,10.3,10,10.6,10.2,10.3,10.1,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1,0.2,0.4],"paint":[9.5,9.5,9.6,9.4,9.5,9.1,9.2,9.2,9.6,9.1,9.6,9.9,9.6,9.3,9.3]}},{"b":6,"v":{"total":[247.3,244.8,242.6,244.6,244.4,246.1,245.2,243.9,244.9,244,245.2,244.9,242.1,246.3,244.6],"script":[13.4,13.7,13.7,13.7,14,13.9,13.7,13.8,13.8,13.8,13.9,13.7,13.9,13.6,13.9],"paint":[226.1,224,221.6,223.9,223.4,225.1,224.5,222.9,224,223.1,223.7,224,221.1,225.4,223.4]}},{"b":7,"v":{"total":[26.7,26.7,26.8,26.8,26.7,26.9,26.9,26.7,27,26.6,26.9,27.2,27.1,26.8,26.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.7,24.6,24.7,24.8,24.7,24.9,24.9,24.7,25,24.7,24.9,25.2,25,24.8,24.8]}},{"b":8,"v":{"total":[8.9,9.7,9.4,9.1,10.4,8.7,9.7,9.2,9.1,9.2,9.9,9.4,9.3,9.1,9.2],"script":[7.1,8,7.5,7,7.8,6.8,7.6,6.7,6.8,7.2,7.6,7,7.6,7.3,7.4],"paint":[0.8,0.4,1.6,1.8,1.6,0.9,0.6,2.2,0.6,1.3,0.8,1.3,1.4,0.2,0.5]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[1.82]}},{"b":11,"v":{"DEFAULT":[1.83]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[12.61]}},{"b":14,"v":{"DEFAULT":[10.4]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[33.7]}}]},
+{"f":118,"b":[{"b":0,"v":{"total":[28.4,28.8,28.4,28.5,29,28.8,28.2,28.2,28.6,28,28.7,28,28.2,28.1,28.4],"script":[6.2,6.3,6.2,5.9,6.4,6.1,6.1,6,6.1,5.9,6.4,6,6.2,5.9,6.2],"paint":[21.7,21.9,21.6,22,22,22.1,21.5,21.6,21.9,21.6,21.7,21.5,21.5,21.6,21.7]}},{"b":1,"v":{"total":[31.7,32,31.5,32.1,31.6,31.4,31.8,31.6,31.8,31.6,31.7,32.1,31.5,31.3,31.2],"script":[8.7,8.7,8.5,8.8,8.6,8.6,8.7,8.7,8.6,8.6,8.5,8.5,8.4,8.6,8.5],"paint":[22.5,22.8,22.4,22.8,22.5,22.2,22.5,22.3,22.6,22.4,22.6,23.1,22.4,22.1,22.2]}},{"b":2,"v":{"total":[13.1,13.7,13.1,13.6,13.9,13.2,13.9,13.4,13.7,13.4,14.1,13.8,12.9,12.9,12.7],"script":[3.3,3.6,3.1,3.3,2.8,3.2,2.9,3,2.9,2.6,3.1,3.1,3.4,3,2.7],"paint":[9.2,8.4,9.1,9.3,9.5,8.8,9.6,9.5,9.4,9.6,9.5,10.1,8,8.5,8.6]}},{"b":3,"v":{"total":[4.2,4.4,5,3.5,3.7,3.7,4.1,4.2,4,4.5,3.8,3.8,4.3,3.7,4,4,4.2,4.5,4.6,3.6,4.1,4,4.2,4.1,4],"script":[2.1,2.2,2.7,1.5,1.7,1.9,2.1,2.1,2,2.4,1.4,1.7,2.4,2,1.8,2,2.1,1.9,2.3,1.6,1.7,1.5,1.4,2,1.6],"paint":[1.7,1.6,2.1,1.1,1.6,1,1.9,1.6,1.2,2,2,2,1.2,1.6,1.3,1.2,1.2,2.5,2.2,1.1,1.4,2.4,2.4,1.8,1.8]}},{"b":4,"v":{"total":[15.1,13.4,13.8,13.7,14.4,14.4,15.9,14.3,14.2,14.3,14.5,14.1,14.1,16,13.7],"script":[2.2,2,1.8,2,1.4,1.8,2.2,2.1,1.3,1.8,1.5,1.4,1.4,1.8,1.9],"paint":[11.4,10.2,10.7,10.8,12.1,10.9,13,11.1,12,11.5,12,11.7,11,13,10.4]}},{"b":5,"v":{"total":[11.3,11,11.5,10.9,11,11,11.3,10.9,11,10.9,11.3,12.1,11.4,11.3,11.2],"script":[1.1,1,1.1,1.1,0.9,1.1,1.1,1.1,1.1,0.8,1,1.1,1.1,1.1,1.1],"paint":[9.5,9.5,9.6,9.2,9.5,9,9.4,9.3,9.3,9.5,9.7,10.2,9.9,9.6,9.4]}},{"b":6,"v":{"total":[288.3,289.3,291.7,288,286.4,288.9,289.4,287.8,290.1,288.2,288.7,288.4,287.5,288.9,287.5],"script":[53.2,53.3,53,53.9,52.9,53.7,53.1,53.2,54,53.2,53.3,52.7,53.6,53,53.1],"paint":[227.9,228.7,231.2,227.1,225.9,228.1,229.2,227.6,228.9,227.8,228.3,228.6,226.9,228.7,227.4]}},{"b":7,"v":{"total":[34.6,34.3,34.2,34.7,34.3,33.8,34.1,34.5,34.6,34.4,34.5,34.1,34.7,34,34.2],"script":[7.1,6.9,6.9,6.9,7,6.9,6.8,6.9,6.9,7,6.8,6.8,6.8,6.8,6.8],"paint":[26.6,26.5,26.3,26.8,26.3,26,26.4,26.7,26.7,26.5,26.7,26.3,26.9,26.2,26.4]}},{"b":8,"v":{"total":[12.8,12.8,12.8,13.1,12.8,13.3,12.3,13.1,12.8,12.8,14.5,12,12.4,13.2,13.4],"script":[10.3,10.1,10.8,11.2,10.5,10.8,10.5,10.5,10.7,10.8,11.2,10.5,10.6,10.8,11],"paint":[2.2,0.6,1.6,1.2,1.3,1.5,0.9,0.9,1.9,0.9,2.4,0.2,1.2,2.1,2.1]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[5.08]}},{"b":11,"v":{"DEFAULT":[5.13]}},{"b":12,"v":{"DEFAULT":[3.58]}},{"b":13,"v":{"DEFAULT":[33.97]}},{"b":14,"v":{"DEFAULT":[101.4]}},{"b":15,"v":{"DEFAULT":[31.8]}},{"b":16,"v":{"DEFAULT":[130]}}]},
+{"f":119,"b":[{"b":0,"v":{"total":[27.9,28.1,28,28.1,28.2,27.9,28.1,27.8,27.9,28.6,27.8,28.2,27.8,28.2,28.8],"script":[5.5,6,5.7,5.7,5.8,5.6,5.8,5.7,5.7,5.8,5.6,5.7,5.7,5.7,6.5],"paint":[21.9,21.5,21.8,21.8,21.9,21.7,21.7,21.6,21.7,22.2,21.7,21.9,21.6,21.9,21.7]}},{"b":1,"v":{"total":[32.7,32.4,30.4,32.1,31.9,31,32.4,32.3,30.5,31.9,30.6,32.3,30.8,30.7,31.8],"script":[8.6,8.4,7.6,8.3,8.2,8.2,8.5,8.5,7.8,8.4,7.8,8.7,8.1,7.9,8.3],"paint":[23.5,23.4,22.2,23.2,23.2,22.2,23.3,23.3,22.1,23,22.2,23,22.2,22.2,23]}},{"b":2,"v":{"total":[12.6,13.1,13.1,13.5,12.8,12.4,14.5,13.4,13,13.5,13.3,14.8,12.9,13.6,13.4],"script":[2.8,2.5,3.4,3.3,2.9,2.4,3.1,3.5,2.9,2.9,2.7,3.5,2.3,2.6,2.5],"paint":[8.8,9.6,8.7,8.4,8.4,9.1,10.1,8.7,9,9.1,9.4,10.3,10.1,10.1,9.9]}},{"b":3,"v":{"total":[5,5,4.6,4.5,4.4,4.2,4.1,4.9,4,4.3,4.7,5,4.3,5.4,4.8,4.6,4.4,4.3,4.6,5,4.5,4.4,4.2,4.8,4],"script":[3,2.7,2.6,2.1,2,2.4,1.7,2.8,1.9,2.3,2,2.4,2.7,3,2.4,1.8,2.3,2.6,2.5,2.9,2.4,2.4,1.9,2.4,2.1],"paint":[1.6,1.4,1.9,1.3,2.3,1.6,1.8,1.5,1.1,1,1.8,1.7,1,1.3,2.2,1.7,1.6,1.5,2,1.1,2,1.9,1.8,2.1,1.7]}},{"b":4,"v":{"total":[14.3,14.3,13.6,13.7,13.5,14.1,14,14.5,14.4,14.2,13.7,15,14.4,14.4,14.3],"script":[2,1.1,1.2,1.5,1.6,1,1.8,1.9,1.2,1.8,1.4,1.5,1,2.2,1.8],"paint":[11.4,11.6,11.2,10.9,10.3,12.1,11.3,11.7,11.5,11.4,11.3,12.4,11.1,10.9,11.2]}},{"b":5,"v":{"total":[11.3,11.7,11.2,10.9,10.9,11.4,11,10.9,10.8,10.9,11,11.3,11.1,11.1,10.7],"script":[1,0.9,0.9,1,1.1,1.1,0.9,1.1,0.9,1.1,0.8,1.1,1,1.1,1],"paint":[9.6,9.9,9.5,8.8,9.2,9.8,9.7,9,9.3,9.1,9.4,9.4,9.3,9.2,9.3]}},{"b":6,"v":{"total":[288.7,287.6,290.9,288,287.4,289.4,288.5,288.3,287.9,289.9,291,298.4,289.5,288.7,289.1],"script":[50.7,51.5,51.9,51.6,52.6,51.8,52.2,51.7,51.2,52.6,52.4,52.6,52.2,51.8,51.6],"paint":[230.7,228.9,231.7,229.3,227.7,230.5,229,229.3,229.2,230.2,230.8,238.5,230,229.8,229.9]}},{"b":7,"v":{"total":[33.6,32.8,33.2,33.2,33.3,32.7,33.5,33.1,33,32.7,33.4,33.4,33.2,33,33.8],"script":[6.3,6.2,6,6.1,6.1,6.1,6.2,6.1,6.1,6,6.1,6.2,6.2,6.1,6.4],"paint":[26.5,25.7,26.3,26.2,26.3,25.6,26.4,26,25.9,25.8,26.3,26.3,26.1,26,26.4]}},{"b":8,"v":{"total":[11.7,11.6,11.6,11.3,11.6,11.5,11.9,12.2,11.6,11.8,11.7,11,12.1,11.2,11.6],"script":[9.3,9.5,10.1,9.4,10,9.7,9.8,9.7,9.4,9.8,10,9.6,10.2,9.5,9.2],"paint":[1.4,1.2,0.6,0.2,0.6,0.2,1,0.5,2,0.7,0.9,0.3,1.7,1,1.8]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[4.52]}},{"b":11,"v":{"DEFAULT":[4.58]}},{"b":12,"v":{"DEFAULT":[3.09]}},{"b":13,"v":{"DEFAULT":[29.5]}},{"b":14,"v":{"DEFAULT":[90.7]}},{"b":15,"v":{"DEFAULT":[27.8]}},{"b":16,"v":{"DEFAULT":[109.1]}}]},
+{"f":120,"b":[{"b":0,"v":{"total":[25.4,24.7,25.2,25.3,25.3,25.2,25.3,24.9,24.8,25.2,25.6,25.4,25.7,25.2,25.4],"script":[4,3.6,3.8,3.9,3.8,3.8,3.7,3.7,3.6,3.8,3.9,3.7,3.8,3.6,3.7],"paint":[21.1,20.8,21.1,21,21.1,21,21.2,20.8,20.8,21,21.3,21.3,21.5,21.2,21.3]}},{"b":1,"v":{"total":[29.3,29.6,29.1,28.9,29.1,29.2,28.9,30.1,29.5,29.8,29.3,29.7,29.3,28.9,29.8],"script":[7,7.1,6.9,6.8,7.1,6.9,6.7,7.4,7.2,7.1,7,7,7.1,6.8,7],"paint":[21.7,21.9,21.6,21.5,21.5,21.7,21.6,22.1,21.7,22.1,21.8,22.1,21.6,21.6,22.2]}},{"b":2,"v":{"total":[10.9,11,11.3,11.7,10.9,11.6,11.9,10.8,11.5,11,10.7,12,10.7,10.7,10.9],"script":[0.2,0.9,1.6,1.1,1,1.5,0.6,0.2,1,1.3,1.4,1.1,0.5,0.2,1],"paint":[9.5,8.5,8.7,8.8,8.4,8.4,9.8,8.9,8.3,8.7,8.2,9.8,8.6,9.3,8.5]}},{"b":3,"v":{"total":[2.4,2.1,1.8,2.8,2.3,2.4,2,2.7,1.9,2.3,2.2,2.2,2.5,1.7,2.1,2.8,2.8,2.5,2.5,1.7,1.8,3,2.4,2,2.4],"script":[0.1,0.5,0.5,0.5,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.6,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.8,0.1,0.1,0.1],"paint":[1.9,1.1,0.7,1.4,2.2,1.8,1,1.7,1.3,2,2,1.3,1.8,0.7,0.7,1.6,2.4,1.6,1.9,1.5,1.1,1.6,2.1,1.4,1.9]}},{"b":4,"v":{"total":[13.5,12.3,12.8,12.7,13.2,12.9,13.6,13.6,12.4,13.1,12.8,13.2,14.2,13.4,13.1],"script":[0.5,0.1,0.1,0.1,1.1,0.9,0.1,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.8],"paint":[11.1,10.5,11.7,11.2,10.6,10.7,11.2,12.6,11.4,11.9,11.6,11.3,12.3,11.9,11.3]}},{"b":5,"v":{"total":[10.3,10.4,10.5,10.5,11.1,10.8,10.6,11,10.4,10.7,10.7,10.8,10.3,10.7,10.6],"script":[0.5,0.3,0.2,0.4,0.5,0.5,0.2,0.3,0.3,0.3,0.5,0.5,0.2,0.5,0.3],"paint":[8.9,9.5,9.6,9.6,9.9,9.2,9.8,10,9.5,9.9,9.7,10,9.5,9.5,9.3]}},{"b":6,"v":{"total":[265.6,266.3,265,264.7,264.2,265.2,265.5,265.4,267.8,264.9,265,268.7,265.8,265.4,266.5],"script":[34.4,34.8,34,34.3,34.7,34.4,34.4,34.2,34.6,34.4,34.7,35.1,34.3,34.7,34.6],"paint":[224.1,224.4,223.9,223.1,222.4,223.6,223.7,224,226.2,223,223.1,225.9,224.4,223.5,224.6]}},{"b":7,"v":{"total":[29.5,29,28.9,29.3,29.3,30.6,29.1,29.8,29.7,30.7,29.4,29.9,30,29.6,29.9],"script":[4.2,3.9,3.9,4.2,3.9,4.1,4.1,4.1,4.2,4.2,3.9,4.1,4.4,4.1,4.3],"paint":[24.5,24.4,24.3,24.4,24.7,25.7,24.2,25,24.8,25.7,24.7,25,24.9,24.8,24.9]}},{"b":8,"v":{"total":[9.8,9.7,9.9,9,9.9,9.4,9.3,8.8,9.1,10.1,10.2,9.7,9.2,9.2,9.4],"script":[8.2,7.4,7.6,6.8,7.9,7.6,7.4,7.5,7.4,7.9,8,7.9,7.7,7.6,7.6],"paint":[0.3,2.1,0.9,1.2,1.3,0.6,1.6,0.2,0.9,2,1.6,1,0.7,0.2,1.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.59]}},{"b":11,"v":{"DEFAULT":[2.64]}},{"b":12,"v":{"DEFAULT":[1.05]}},{"b":13,"v":{"DEFAULT":[17.75]}},{"b":14,"v":{"DEFAULT":[27.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[52.6]}}]},
+{"f":121,"b":[{"b":0,"v":{"total":[31,30.3,31.1,30.7,31.2,31.1,31.1,30.7,30.6,31.1,31,30.5,30.5,31.1,31],"script":[8.4,8.4,8.6,8.4,8.8,8.6,8.6,8.6,8.5,8.9,8.6,8.4,8.4,8.9,8.5],"paint":[22.1,21.4,21.9,21.8,21.9,21.9,22,21.5,21.6,21.7,21.9,21.5,21.5,21.7,22]}},{"b":1,"v":{"total":[33.1,33.4,33.4,33.4,33.5,33.4,33.5,34.3,33,33.8,34,33.6,34.2,33.5,33.3],"script":[10.9,11.1,11,11.2,11.3,11.1,11.4,11.6,10.9,11.3,11.6,11.1,11.4,11.2,11.2],"paint":[21.6,21.7,21.9,21.6,21.6,21.7,21.6,22,21.6,22,21.8,21.9,22.2,21.7,21.5]}},{"b":2,"v":{"total":[12.8,12.9,12.2,12.8,12.3,12.2,12.4,12.3,12.6,13,12.8,12.6,12.6,13.2,13.6],"script":[2.1,1.9,1.5,2.3,1.9,2.1,2.1,2.3,1.5,2.4,2.1,1.9,2.5,2.3,1.7],"paint":[9.4,10.4,9.3,8.3,8.8,8.8,9.7,8.9,10.2,9.5,9.4,9.3,9.5,8.8,10.4]}},{"b":3,"v":{"total":[4.8,4.2,4.6,3.7,4.1,4.1,4,4.2,4.5,3.7,4.6,4.3,4.7,4.1,3.9,3.7,3.9,3.7,3.7,3.5,4.8,5,3.8,4.5,3.7],"script":[2.6,1.8,2.4,2.2,1.7,1.7,1.8,2.1,2.6,2.1,2.3,2.6,2.3,2.1,2.4,1.8,2,1.9,1.3,1.8,2.5,2.3,2,2,1.3],"paint":[1.3,1.3,1.3,1.4,0.8,2.1,1.6,1.3,1,1.5,1.6,1.6,1.4,1.1,1,1.1,1.1,1.7,2.2,1.6,2.1,1.6,1.7,0.5,2.2]}},{"b":4,"v":{"total":[14.1,14.5,14.5,14.1,14.7,14.3,13.8,14.3,14.2,14.1,14,14.6,14.2,13.7,14.5],"script":[1,1.9,1.5,1.9,1.3,1.3,1.5,1.8,1.5,1.5,1.2,1.6,1.5,1.6,2],"paint":[12.1,10.7,12,11.3,12.5,12,11.3,11.5,11.6,12.3,11.4,11.6,10.7,10.9,11.6]}},{"b":5,"v":{"total":[11.1,11.3,11,11.6,11,10.9,11,11,11.3,11,11.2,11.3,11.4,11.5,11],"script":[1.2,1,1.1,1,1.2,1.1,1.2,1.2,1.2,1.2,1,1.2,1.2,1.2,1.2],"paint":[9.2,9.5,9.2,9.8,8.8,9.5,9.5,9.3,9.6,9.2,9.1,9.7,9.6,9.4,9.4]}},{"b":6,"v":{"total":[294.2,293.2,295.3,294.6,292.6,294.4,295.8,294,293.7,295.9,292.8,296,294,293.5,294.1],"script":[57,57.7,57.4,58.1,57.3,57.5,58,58.5,58.2,58.5,58.1,58.5,57.8,57.2,57],"paint":[229.9,228.3,230.6,229.2,228.1,229.7,230.4,228.2,228.3,230.1,227.4,230,228.6,229.2,229.9]}},{"b":7,"v":{"total":[33.3,33.3,33.4,32.8,33.2,33.7,33,33.2,33.4,33,33.3,33.5,32.6,33.3,33.2],"script":[6.1,5.9,6,5.9,6,5.8,5.9,5.9,6,6,6,6,5.8,5.8,6.1],"paint":[26.3,26.4,26.5,26,26.3,26.9,26.2,26.3,26.5,26.1,26.3,26.5,25.9,26.5,26.2]}},{"b":8,"v":{"total":[13.1,12.7,13.3,13.8,13.5,13.2,13.4,12.3,13.3,13.4,13.2,13.5,13.4,12.4,13.3],"script":[11.1,11.1,10.9,11.7,11.4,11,11.5,10,11.3,11.5,11,11.4,11.1,10.4,11.6],"paint":[1,0.2,0.9,1.5,1.4,0.8,1.1,1.2,1.1,0.9,0.7,0.6,0.6,1.1,0.7]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.29]}},{"b":11,"v":{"DEFAULT":[3.29]}},{"b":12,"v":{"DEFAULT":[2.32]}},{"b":13,"v":{"DEFAULT":[16.46]}},{"b":14,"v":{"DEFAULT":[130.8]}},{"b":15,"v":{"DEFAULT":[34.2]}},{"b":16,"v":{"DEFAULT":[51.3]}}]},
+{"f":122,"b":[{"b":0,"v":{"total":[31.3,30.9,30.6,30.7,30.9,31.3,31.1,31.3,31.1,31.1,30.5,31.1,30.8,30.9,30.7],"script":[8.2,8.2,8.2,8.2,8.1,8.1,8.4,8.3,8.4,8.2,7.9,8.4,8,8,8],"paint":[22.6,22.1,21.9,22,22.3,22.6,22.1,22.4,22.2,22.3,22,22.2,22.3,22.4,22.2]}},{"b":1,"v":{"total":[38.7,38.3,38.3,38.3,38,37.6,37.8,39.1,38.3,37.8,38.3,37.6,38.6,38.3,38],"script":[14.8,14.8,14.7,15,14.8,14.6,14.5,15.3,14.6,14.7,15,14.4,15.1,14.8,14.5],"paint":[23.3,22.9,23,22.8,22.6,22.4,22.7,23.2,23,22.5,22.7,22.7,22.9,22.9,22.9]}},{"b":2,"v":{"total":[26.8,26.1,26.5,26.4,26.9,24.7,26.2,28.6,28,23.6,25.8,26.1,26.4,25,25.9],"script":[14.4,13.8,13.5,14.5,15,12.8,13.6,15.2,14.6,11.2,13.4,14.2,14.1,12,13.4],"paint":[10.6,10.8,11.2,9.1,9.4,9.6,10.6,11.2,11.7,10.3,9.6,10,10.6,10.9,10.7]}},{"b":3,"v":{"total":[15.5,14.4,14.6,14.7,15.1,14.9,14.9,13.9,14.4,16.2,15.7,14.3,13.8,14,17.1,16.4,15.6,15.9,14.2,15.1,13.5,14.7,14.9,15.5,15.9],"script":[11.6,11.3,11.3,11.6,12,11.4,11.2,10.2,11.1,12.5,12.5,11,11,10.6,13.1,13,11.7,12.4,10.6,11.8,10.2,11.3,12.1,12.6,12.2],"paint":[2.9,1.4,2,2.3,1.2,2.3,2.9,2.5,1.6,2.8,1.9,2,1.2,1.7,2,2.5,2.3,1.2,1.1,1.3,1.9,1.8,1.3,0.8,2.5]}},{"b":4,"v":{"total":[25.3,28.9,26.7,26.4,26.6,26.2,25.7,26,25.5,27.3,25,27.1,26.4,26.1,24.5],"script":[10.7,11.5,12,11.4,11.1,10.8,11.4,11,11.4,12.4,10.8,11.9,11.3,10.5,10.7],"paint":[13.1,15.3,12.8,13.1,13.2,13.2,12.9,12.8,12.4,12.6,12.7,14,12.8,14.4,11.5]}},{"b":5,"v":{"total":[17.4,17.6,17.3,17.4,17.4,17,17.5,17.4,17.1,17.6,18,17,17.4,17,17],"script":[5.9,6.6,5.8,6.2,6.2,6.1,5.9,6.2,6.1,6.4,6.1,5.8,6.1,5.9,5.8],"paint":[10.3,9.9,10.4,10.2,9.8,9.9,10.4,10.4,9.9,10.3,10.9,10.1,10.2,10.6,9.7]}},{"b":6,"v":{"total":[322.5,325.6,323.4,324.2,322.9,323.3,320.8,325.3,328,327.8,322.6,323.9,322.7,322.6,323.2],"script":[91.2,92.5,91.1,91.6,91.4,91,91.1,91.8,92.9,92.3,91.3,91,90.8,91.5,91.8],"paint":[223.1,225.2,224.4,224.3,223.8,224.5,221.8,225.7,227,227.6,223.6,225.2,224,223.4,223.6]}},{"b":7,"v":{"total":[38.8,38.3,38.7,38.6,38.8,38.4,38,38.6,38.9,38.1,38.6,38.3,38.8,40,39.2],"script":[11.3,11.2,11.1,11.2,11.1,11.1,11.1,11,10.9,10.9,11,11.2,11.4,11.3,11.2],"paint":[26.5,26.1,26.6,26.3,26.6,26.3,25.8,26.6,27.1,26.3,26.5,26.1,26.3,27.6,27]}},{"b":8,"v":{"total":[12,12.7,11.9,11.8,12.1,11.9,12.3,11.4,12.5,13,12.2,12,11.7,11.3,12.1],"script":[9.7,10.2,9.7,9.6,9.7,10,10.4,9,9.9,10.6,9.6,9.2,9.6,8.8,10],"paint":[2,1.8,1.9,0.8,1,0.8,1,1.8,1,1.4,1.8,1.9,1.1,2,0.7]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.58]}},{"b":11,"v":{"DEFAULT":[3.65]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[29.51]}},{"b":14,"v":{"DEFAULT":[17.6]}},{"b":15,"v":{"DEFAULT":[7.2]}},{"b":16,"v":{"DEFAULT":[52.4]}}]},
+{"f":123,"b":[{"b":0,"v":{"total":[24.2,24.3,24.1,24.3,24.3,24,24.1,24.2,23.9,24.1,24.2,24.2,24.3,24.3,24.1],"script":[2.5,2.6,2.6,2.6,2.5,2.5,2.5,2.5,2.6,2.5,2.6,2.5,2.5,2.5,2.5],"paint":[21.2,21.4,21.2,21.4,21.3,21.2,21.2,21.3,21,21.3,21.2,21.3,21.4,21.4,21.2]}},{"b":1,"v":{"total":[28.4,28,28.6,27.8,28.2,28.1,28.6,28.7,28.4,28.2,28.3,28.1,28.3,28.5,28.4],"script":[5.6,5.5,5.8,5.5,5.7,5.4,5.9,5.6,5.6,5.5,5.7,5.5,5.6,5.8,5.6],"paint":[22.2,22,22.2,21.8,22,22.2,22.1,22.6,22.3,22.2,22.1,22,22.1,22.1,22.3]}},{"b":2,"v":{"total":[10.4,11.4,10.8,10.7,11.5,10.9,10.8,10.7,11,11.3,11,11.1,11.3,10.3,11.1],"script":[1.1,0.9,0.9,0.5,0.6,0.9,0.2,0.6,0.8,1.1,0.2,0.9,1.2,0.6,1.4],"paint":[8.3,9.4,8.4,9.1,9.9,8.4,9.6,9,8.8,9.3,9.8,9.3,9,9.1,8.3]}},{"b":3,"v":{"total":[3.5,3.2,3.4,3.3,3.8,3.8,3,2.9,2.9,3.3,3.3,3.3,3.6,3.5,3.4,3.3,3.7,3.8,3.1,3.1,2.9,2.7,2.8,3.1,2.8],"script":[0.9,0.9,0.6,1.2,1.3,1.3,0.2,1,1.2,1.2,1.4,0.8,1.2,0.8,1,1.4,1.3,1.2,0.6,0.9,0.2,0.6,0.8,1.2,1],"paint":[2,1.4,1.8,0.8,2.4,2.1,2.7,1.1,1.6,1.5,1.4,1.5,2.3,1.6,2.1,1.8,1.7,1.6,2.4,1.3,2.1,1.2,0.9,1.1,1]}},{"b":4,"v":{"total":[13.4,14.2,14.5,14.1,13.8,14.4,13.1,13.5,13.7,14,13.4,13.1,13.6,14.5,13.4],"script":[0.7,1.2,1.4,1.3,1.5,1.3,0.9,1,1.2,1.3,1,1.1,1.1,1.1,1.1],"paint":[11.1,12.1,12.1,11,11.3,12,11.1,11.6,11.3,11.7,11.3,10.6,11.8,12.8,10.4]}},{"b":5,"v":{"total":[10.4,10.3,10.7,10.5,10.7,10.5,10.7,10.6,10.6,10.6,10.7,10.3,10.5,10.6,10.4],"script":[0.5,0.5,0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.4,0.4,0.3,0.5,0.5,0.2],"paint":[9.1,9.1,9.7,9.7,9.7,9.6,9.6,9.5,9.1,9.6,9.6,9.5,9.3,9.5,9.6]}},{"b":6,"v":{"total":[257,257.1,256.3,256.6,255.9,257.3,257.5,256.6,257.6,257,256.4,256.6,260.8,257.4,257.6],"script":[27.6,28.1,27.7,28,28.1,28.8,27.7,28,27.9,28,28.1,28.1,28.3,28.4,28.2],"paint":[222.1,221.7,221.3,221.3,220.8,221.2,222.4,221.3,222.4,221.4,221,221.4,225,221.6,222]}},{"b":7,"v":{"total":[28.8,27.7,28.3,28.5,28.1,28.9,27.5,27.6,29.1,28.2,28.8,28.1,28,28.1,29],"script":[2.7,2.5,2.7,2.7,2.6,2.7,2.6,2.6,2.8,2.7,2.7,2.6,2.6,2.6,2.6],"paint":[25.3,24.4,24.8,25,24.7,25.4,24.2,24.3,25.6,24.7,25.3,24.7,24.6,24.8,25.6]}},{"b":8,"v":{"total":[10.1,11,9.8,10.3,10.3,10.5,10.6,10.1,9.9,11,10.3,10.3,10.3,10,10.2],"script":[7.8,9,7.8,8.3,8.2,8.7,8.6,8.5,8,8.7,8.6,8.1,8.2,7.5,8.3],"paint":[1.1,1.8,1.2,0.4,0.7,0.9,1,1,0.3,2,0.7,1.6,0.8,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.88]}},{"b":13,"v":{"DEFAULT":[20.33]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[49.5]}}]},
+{"f":124,"b":[{"b":0,"v":{"total":[24.7,25,24.7,24.9,24.9,24.8,25.1,24.7,24.8,24.8,25.2,24.9,24.9,24.7,24.9],"script":[3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.2,3.3,3.2,3.2,3.3,3.3,3.2,3.3],"paint":[21.1,21.3,21.1,21.3,21.5,21.2,21.5,21.2,21.2,21.2,21.6,21.2,21.2,21.2,21.2]}},{"b":1,"v":{"total":[29.2,29,29.1,29.1,29,29.3,29.4,29.1,29.2,29.1,28.8,28.9,28.9,28.9,29.1],"script":[6.4,6.6,6.6,6.2,6.5,6.6,6.5,6.6,6.6,6.2,6.3,6.4,6.3,6.2,6.6],"paint":[22.2,21.8,21.9,22.3,22,22.1,22.3,22,22.1,22.2,22,22,22.1,22.1,22]}},{"b":2,"v":{"total":[12.5,12.5,11.4,12.1,11.7,11.6,13.9,12.5,12.2,11.3,11.6,11.7,12.3,11.4,13.5],"script":[1.5,2.4,1.3,2.3,1.6,2.1,1.8,1.8,1.8,1.5,2.2,1.6,1.9,1.1,2.4],"paint":[10.4,9.5,8.6,8.9,9.4,8.5,10.5,9.5,9.2,8.5,8.7,9.4,9,8.6,9.9]}},{"b":3,"v":{"total":[3.3,3.1,3.2,3.9,3.5,2.6,3.1,3.4,3.1,3.4,3,3.5,3,2.7,3,3.3,3.7,3.2,3.3,3.4,2.9,3.5,3.4,3.2,3.7],"script":[1.2,1.1,1,2,1,0.2,0.9,0.7,0.8,1,0.5,1.5,0.5,1.1,0.9,0.9,1.3,0.6,0.9,1.3,0.2,1.2,1,0.6,1.3],"paint":[1.4,1.1,1.3,1.8,1.7,2.2,2,2.6,1.2,2.3,1.5,0.4,1.4,0.7,2,1.9,2.3,2.5,2.2,1.8,2.5,1.2,1.6,2.4,1.7]}},{"b":4,"v":{"total":[14.9,14.9,14.4,14.9,15.7,14.9,14.9,14.9,15,14.7,14.4,15,14.9,15,14.6],"script":[2.2,1.5,1.4,2.6,1.5,1.2,1.3,1.6,2.2,2.3,1.3,2.2,1.8,1.7,2.2],"paint":[11.2,12.4,11.5,11.6,13.1,12.5,12.1,12,12.1,11.5,12.1,12,11.8,12.3,10.4]}},{"b":5,"v":{"total":[11,11.4,11,10.9,11.2,11.3,11,10.9,11.1,11.4,11.5,11.2,11.5,11,10.9],"script":[0.7,1.1,0.7,0.7,1,0.9,1.2,0.7,0.9,1.2,1.1,0.9,1.2,0.7,0.7],"paint":[9.5,9.6,9.6,9.7,9.6,9.5,9.3,9.6,9,9.6,9.7,9.4,9.8,9.6,9.6]}},{"b":6,"v":{"total":[268.2,269.4,267.2,269,267.5,266.4,269.8,269.4,268.1,267.9,269.2,270.2,269.9,267.3,269.7],"script":[37.6,37.4,37,37.5,37.1,36.9,37.5,37.6,37.6,37.5,38,37.5,37.1,37.5,37.5],"paint":[223.5,224.9,223.1,223.9,223.2,222.3,224.7,224.3,223.3,223,224.1,225.5,225.6,222.6,225.2]}},{"b":7,"v":{"total":[29.6,30.2,29.3,29.5,29.4,29.5,29.1,30.3,29.5,29.6,29.9,29.6,29.8,29.5,29.1],"script":[3.8,4.1,3.8,3.8,3.8,3.9,3.9,4.1,3.8,3.9,3.8,3.9,4,3.9,3.8],"paint":[25,25.4,24.8,24.9,24.8,24.9,24.5,25.4,24.9,25,25.4,24.9,25,24.9,24.7]}},{"b":8,"v":{"total":[10.4,10.1,10.2,9.7,10.3,11.5,10.3,10.1,10.9,10,10.7,10.6,9.5,10.2,10.4],"script":[8,8.6,7.8,8.1,8.3,9.7,7.6,7.9,8.7,8.2,8.1,8,7.4,8.1,8.3],"paint":[2.1,0.5,1.8,0.6,0.8,0.6,1.8,1.3,1.8,1,2.4,2.3,1.2,1.3,0.2]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.92]}},{"b":11,"v":{"DEFAULT":[2.96]}},{"b":12,"v":{"DEFAULT":[1.44]}},{"b":13,"v":{"DEFAULT":[21.58]}},{"b":14,"v":{"DEFAULT":[22.9]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[54.2]}}]},
+{"f":125,"b":[{"b":0,"v":{"total":[29.3,29.3,28.8,28.6,28.7,28.7,29,28.9,28.8,29,28.2,28.8,28.7,29.1,28.8],"script":[6.5,6.2,6.3,6.5,6.3,6.2,6.3,6.2,6.2,6.2,6.1,6.2,6.3,6.3,6.4],"paint":[22.2,22.5,21.9,21.5,21.9,22,22.2,22.2,22.1,22.3,21.5,22.1,21.8,22.2,21.8]}},{"b":1,"v":{"total":[33.9,34,33.6,34,34,33.8,34.6,33.8,33.6,33.5,33.2,33.9,34,33.8,33.8],"script":[11,11.1,10.7,10.7,11,10.7,11,10.8,10.6,10.7,10.6,10.7,10.7,10.8,10.8],"paint":[22.3,22.3,22.4,22.8,22.5,22.5,23,22.4,22.4,22.2,22,22.6,22.7,22.4,22.4]}},{"b":2,"v":{"total":[16.1,14.5,14.5,14.6,14.2,16,14.4,14,14,14.8,14.3,15,15.9,15.7,13.8],"script":[4.2,3.8,4,3.9,3.8,4,3.6,4,3.3,3.3,3.4,3.7,4.5,4.4,3.2],"paint":[10.4,9.6,9.6,9.1,9.3,10.5,9.5,9.1,9.6,9.9,9.3,10.2,10.3,10.2,8.9]}},{"b":3,"v":{"total":[5.6,6.3,5.6,6,6.5,6,5.9,5.8,6.2,5.5,5.3,6,6.4,5.1,6.1,6.1,5.5,5.8,6.1,6.5,5.9,6,6,5.4,6.3],"script":[3.5,4.1,3.5,3.9,3.7,3.5,3.6,3,3.7,3.6,3.4,4.1,4,3.4,3.4,3.6,3,3.3,3.2,3.6,3.9,3.4,3.9,3.5,4.2],"paint":[2,2.1,1.2,1.4,2.6,1.5,2.1,2.4,1.6,1.7,1.1,1.7,1.8,0.7,1.6,2.3,1.2,2.3,2.4,2.7,1.8,2.2,1.9,1.8,1.6]}},{"b":4,"v":{"total":[15.8,15.9,15.9,16.2,16.1,15.3,15.6,15.8,15.9,15.8,14.8,16.9,15.5,18.7,18],"script":[2.4,2.4,2.8,3,3.1,2.3,2.4,2.8,3,2.7,2.5,2.7,2.9,4.4,3.1],"paint":[11.8,12.6,12.1,12.1,12,12.1,11.7,11.8,12.2,12.1,10.7,12.7,12.1,13.1,13.5]}},{"b":5,"v":{"total":[12.1,11.8,11.8,12.1,11.6,12,12,11.7,11.9,12,11.7,11.9,12.8,12.3,11.6],"script":[1.8,1.7,1.6,1.7,1.7,1.6,1.6,1.6,1.8,1.7,1.6,1.6,2.4,1.4,1.7],"paint":[9.5,9.4,9.3,10,8.9,9.8,9.7,9.4,9.5,9.6,9.3,9.9,9.8,9.8,9.3]}},{"b":6,"v":{"total":[295.2,291.3,292.4,294.1,293.7,294.5,292,293.2,292.2,294.2,293.8,293.2,295.8,293.4,294.6],"script":[59.9,60.2,60.3,61,60.7,60.9,60.5,59.2,60.2,60.1,60.2,59.8,61.2,60.7,60.7],"paint":[227.9,224,224.9,226,225.8,226.5,224.5,226.6,224.8,227,226,226.3,227.4,225.6,226.7]}},{"b":7,"v":{"total":[34.4,34.6,34.1,34.2,34.6,34.5,34.8,34.7,35,34.5,34.6,35.1,35.1,34,35.1],"script":[7.1,7.3,7,7,7.1,7,7.1,7.3,7.2,7,7.3,7.4,7.4,6.9,7.1],"paint":[26.4,26.4,26.2,26.2,26.6,26.6,26.8,26.6,26.9,26.6,26.4,26.8,26.8,26.1,27.1]}},{"b":8,"v":{"total":[13.5,13.7,13.2,13.3,14.1,13.6,14.1,14.8,14,14.8,13.9,13.2,12.5,13.7,13.7],"script":[11.6,11.6,11.5,11.3,12.2,11.5,12.1,12.6,12.3,11.8,12,11.3,10.6,11.7,12.3],"paint":[1,1.2,1,0.8,0.8,1.5,0.4,1.3,1.1,1.7,1.7,0.9,1.7,1.2,0.2]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[4.8]}},{"b":11,"v":{"DEFAULT":[4.85]}},{"b":12,"v":{"DEFAULT":[3.52]}},{"b":13,"v":{"DEFAULT":[40.6]}},{"b":14,"v":{"DEFAULT":[157.5]}},{"b":15,"v":{"DEFAULT":[47.2]}},{"b":16,"v":{"DEFAULT":[208.1]}}]},
+{"f":126,"b":[{"b":0,"v":{"total":[24,23.8,24.2,24.3,24.4,23.8,24.1,24.4,24.1,23.8,23.9,24.4,24.7,23.9,24.3],"script":[2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.4,2.5,2.6],"paint":[21.1,20.9,21.3,21.4,21.4,21,21.1,21.7,21.1,20.9,21,21.5,21.9,21.1,21.3]}},{"b":1,"v":{"total":[27.9,27.2,26.5,27,27.2,27,27.1,26.9,26.9,27.3,27,27.3,27.1,27.6,27],"script":[4.5,4.5,4.4,4.4,4.5,4.3,4.5,4.6,4.5,4.6,4.4,4.6,4.4,4.4,4.6],"paint":[23,22.3,21.7,22.1,22.3,22.2,22.2,21.9,22,22.2,22.2,22.2,22.2,22.8,22]}},{"b":2,"v":{"total":[11.7,12.7,12.4,12.1,12.7,12,11.8,12.1,12.3,11.4,11.4,12.5,11.8,11.1,12.4],"script":[1.2,2.2,1.3,1.2,1.6,0.7,0.9,1.8,1.1,0.9,1.3,1.2,1.6,0.9,1.3],"paint":[8.8,9.4,9.3,8.8,10.3,10,10,9.6,10.3,9.2,9.5,10.4,8.7,9.2,9.9]}},{"b":3,"v":{"total":[3.6,3.8,3.3,2.9,3.3,3.4,3.7,4.3,7.2,4.8,3.7,3.7,6.2,4.8,6.1,3.1,4.4,5.6,3.1,4.5,5.2,4.4,4.7,5.8,3.2],"script":[1.3,1.2,0.6,1.1,0.9,1.2,1.5,0.9,0.2,1.3,1.4,1.2,1.5,0.5,1.1,1.1,1.6,1,0.9,1.3,1.2,0.6,1,1.1,0.6],"paint":[0.8,1.7,1.8,1.6,1.6,2.1,1.7,1.9,2.7,1.8,1.6,1.1,1.7,1.3,1.9,1.9,2.1,2.5,1.3,1.7,2,1.9,1.6,1.7,1.6]}},{"b":4,"v":{"total":[14.5,14.3,14.1,14,14.2,14.2,14.9,14.7,14.8,14.9,15.3,14.7,14.5,14.8,13.7],"script":[1.3,1.3,1.7,1.6,1.4,1.1,2.2,1.9,1.4,1.2,2.2,1.7,1.1,2.1,1.8],"paint":[12,11.7,10.9,11.4,9.9,12.4,11,11.7,12.2,12.4,12.2,12.1,10.2,11.2,11.1]}},{"b":5,"v":{"total":[11.1,10.5,10.9,10.9,11.2,10.9,10.9,10.8,10.8,11,11.1,10.8,10.7,11,10.7],"script":[0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.4],"paint":[9.9,9.5,9.5,9.7,10,10,9.7,9.9,8.8,9.9,9.5,9.6,9.5,9.7,9.7]}},{"b":6,"v":{"total":[259.7,261,258.6,262.2,259.7,259.9,260.9,263.4,260.3,259.5,260.5,260.1,259.4,259.4,259.2],"script":[25.9,26.2,25.6,26,26.3,25.6,26.5,27.8,25.5,26.5,26,26.1,25.8,26,26.1],"paint":[226.3,227.4,225.7,228.4,225.9,226.8,226.9,228,227.3,225.5,227,226.4,225.7,225.7,225.6]}},{"b":7,"v":{"total":[28.6,29.5,28.6,28.7,28.9,28.6,28.3,28.3,28.3,29,28.3,29.4,28.7,28.8,29.4],"script":[2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.6],"paint":[25.3,26.2,25.3,25.4,25.6,25.3,25,25,25,25.4,24.9,26,25.4,25.5,26]}},{"b":8,"v":{"total":[11.6,10.5,10.1,10,10.4,10.7,11.1,10.6,9.9,10.7,11,10.3,11.5,10.4,10],"script":[9,8.8,8.6,8.5,8.4,8.7,9.2,8.4,8.6,8.9,8.6,9.1,8.6,9,7.9],"paint":[2.3,0.5,0.3,0.6,1,1.2,1,1,0.2,0.9,1.4,0.5,2.2,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[1.34]}},{"b":10,"v":{"DEFAULT":[3.11]}},{"b":11,"v":{"DEFAULT":[3.21]}},{"b":12,"v":{"DEFAULT":[1.79]}},{"b":13,"v":{"DEFAULT":[17.53]}},{"b":14,"v":{"DEFAULT":[191.7]}},{"b":15,"v":{"DEFAULT":[32.4]}},{"b":16,"v":{"DEFAULT":[181.5]}}]},
+{"f":127,"b":[{"b":0,"v":{"total":[23.7,23.8,23.6,23.7,23.8,23.6,23.7,23.6,23.8,23.6,24.1,23.9,23.8,23.8,23.9],"script":[2,2,1.9,1.9,1.9,1.9,2,2,2,2,2,2,2,2,2],"paint":[21.4,21.4,21.3,21.4,21.5,21.3,21.3,21.2,21.4,21.3,21.7,21.6,21.4,21.4,21.5]}},{"b":1,"v":{"total":[26.5,26.8,26.8,27,26.7,26.8,27,26.8,26.5,26.8,26.8,27,27.3,27.3,27.1],"script":[4,3.9,4,4,4,4.1,4,4.1,4,4,4,4.1,4,4.1,4.1],"paint":[22.1,22.4,22.4,22.5,22.4,22.3,22.6,22.3,22.1,22.4,22.3,22.4,22.8,22.8,22.6]}},{"b":2,"v":{"total":[10.9,10.1,10.3,10,10.5,9.7,10.1,11.2,10.3,10.5,11.3,11,11.5,11,10.6],"script":[0.8,0.1,0.8,0.1,1.1,0.5,0.1,0.6,0.1,0.5,0.8,0.7,0.3,0.8,0.5],"paint":[9.4,8.8,8.6,8.8,8.3,8.5,9,9.5,9.2,9.4,9.3,8.8,10.2,8.6,8.9]}},{"b":3,"v":{"total":[3.8,2.6,2,2.5,2.4,2.8,2.2,2.5,2.6,2.1,2.8,2.8,3,2.5,2.8,2.4,2.3,2.2,2.6,3.2,2.7,2.6,2.3,2.7,2.2],"script":[0.8,0.1,0.1,0.1,0.8,0.5,0.1,0.3,0.1,0.5,0.8,0.9,0.1,0.1,0.1,0.1,0.5,0.1,1,1.1,1,0.1,0.3,0.4,0.1],"paint":[1.6,2.4,1.2,2.3,1.6,1.6,1.9,1.8,1.5,1.6,1.1,1.3,2.4,1.3,2.5,1.4,1.7,2,1.6,2,1.6,1.5,1.9,1.9,1.9]}},{"b":4,"v":{"total":[14.2,13.4,14,13.9,14.3,13.5,13.9,13.4,14.1,13.8,13.7,14.4,15.1,14,13.1],"script":[1,1.2,0.9,1,1,0.9,0.9,0.9,0.6,1,0.6,1.2,1,0.8,1.2],"paint":[12.2,10.8,11.8,11.9,12.1,11.5,12.1,11,11.9,11.7,11.5,12,12.4,12.3,10.7]}},{"b":5,"v":{"total":[10.6,10.4,10.1,10.4,10.5,10.5,10.5,10.5,10.7,10.4,10.4,10.4,10.5,10.2,10.6],"script":[0.3,0.4,0.4,0.3,0.5,0.3,0.4,0.3,0.3,0.5,0.3,0.5,0.4,0.4,0.3],"paint":[9.4,9.3,9.1,9.6,9.3,9.6,9.5,9.4,9.9,9.2,9.3,9.3,9.6,9.1,9.1]}},{"b":6,"v":{"total":[257.2,256.9,257.5,256.6,257,257.5,256.9,255.9,257,258.1,258.7,256.5,256.6,256.6,256],"script":[26.4,26,26.3,26.8,26.3,26.4,26.1,26.3,26.3,27,27,26.4,26.6,26.1,26.3],"paint":[223.6,223.5,224,222.4,223.4,224,223.5,222.2,223.4,223.7,224.5,223,222.6,223.3,222.5]}},{"b":7,"v":{"total":[28,28,27.9,28.1,27.9,27.9,28.9,27.8,27.7,28,27.9,27.9,27.8,28.5,27.5],"script":[2,2,2,2,2,2,2,2,2,2.1,2,2,2,2,2],"paint":[25.2,25.3,25.2,25.4,25.1,25.2,26.2,25,25,25.2,25.2,25.1,25,25.6,24.8]}},{"b":8,"v":{"total":[9.2,10.2,9.7,9.7,10,9.3,9.5,9.7,9.5,10.4,10.5,11.1,9.7,9.7,9.3],"script":[7.3,8.2,7.8,7.8,7.9,7,7.6,7.3,7.7,8.7,7.1,9.2,8.2,8.1,7.4],"paint":[1.6,1.1,1.1,0.3,1.9,1.6,0.3,1.4,0.9,1.2,3.1,0.6,0.7,1,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.17]}},{"b":11,"v":{"DEFAULT":[2.18]}},{"b":12,"v":{"DEFAULT":[0.65]}},{"b":13,"v":{"DEFAULT":[15.87]}},{"b":14,"v":{"DEFAULT":[7.3]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[39.9]}}]},
+{"f":128,"b":[{"b":0,"v":{"total":[27.9,27.7,27.5,27.6,27.5,27.6,27.3,27.4,27.4,27.3,27.7,27.5,27.3,27.7,27.8],"script":[5.8,5.5,5.8,5.9,5.5,5.6,5.6,5.6,5.7,5.6,5.6,5.9,5.5,5.8,5.5],"paint":[21.6,21.6,21.1,21.2,21.4,21.4,21.1,21.2,21.2,21.1,21.5,21.1,21.3,21.3,21.7]}},{"b":1,"v":{"total":[31.9,32,32.8,32.6,32.6,32.8,32.9,32.1,32.9,32.5,32.7,32.2,32.5,32.2,32.8],"script":[8.5,8.6,9.1,9,9.1,9.1,9.1,8.8,9.2,9,9,9,8.9,8.8,9],"paint":[22.8,22.8,23.1,23,22.9,23.2,23.1,22.7,23.1,23,23.1,22.6,23,22.7,23.2]}},{"b":2,"v":{"total":[11.8,10.7,11.5,10.7,10.9,10.4,10.7,10.5,11.5,10.9,11,10.7,10.9,11.2,10.8],"script":[0.9,0.7,0.8,0.6,0.5,0.2,0.8,0.2,0.9,0.6,0.2,0.9,0.9,1.2,0.2],"paint":[9.6,8.9,9.4,7.7,9.3,9.3,7.8,9.1,9.3,7.8,9.6,8.4,9,8.8,9.5]}},{"b":3,"v":{"total":[2.7,2.4,2,2.6,2.5,2.1,1.8,2.8,2.2,2.3,2.4,2.5,2,1.9,1.8,1.5,2.2,1.6,2.5,2.1,2.5,2.3,2,2.4,2.4],"script":[0.6,0,0,0,0,0.3,0,0,0,0.2,0,0,0.2,0.2,0.3,0.2,0,0,0,0,0,0,0,0.8,0.8],"paint":[1.7,2.2,1.2,0.8,1.3,1.4,1.2,2.6,2.1,1.5,2.2,2.3,1.3,1.2,1.2,1.2,1.2,1,2.4,1.4,1.5,2.1,1.1,1.1,1.1]}},{"b":4,"v":{"total":[22.5,21,20.9,21.1,20.2,21.3,20.7,20.7,22,21.1,22.6,21,21.9,20.8,21.8],"script":[8.1,7.2,6.7,6.6,6.5,6.9,6.1,6.5,7.9,7.4,7.8,6.9,7.2,7.4,7.7],"paint":[12.5,11.5,13.5,11.8,10.9,13.1,11.7,12.2,12.2,11.7,12.9,12,12.1,10.5,12.2]}},{"b":5,"v":{"total":[15.1,14.9,14.6,14.7,15.1,14.9,15.2,14.6,14.6,14.7,15.2,14.7,14.5,14.9,16],"script":[4.3,4.2,4.2,4.3,4.2,4.3,4.3,4.3,3.8,4.3,4.3,4.3,4.1,4.2,4.2],"paint":[10.2,10.1,9.8,9.8,9.7,9.8,10.2,9.1,10.1,9.9,9.7,10,9.5,10.2,10.8]}},{"b":6,"v":{"total":[287.1,289.6,289.4,287.7,286.7,289.6,287.7,289.1,289,290.1,288.6,287.9,287.9,288.5,285.8],"script":[56.6,57.1,56.6,56.6,55.9,57.6,55.9,61.2,56.9,56.4,57.1,56.3,57.1,57,55.7],"paint":[222.8,224.5,224.7,223.2,223,224.3,223.9,219.7,224.2,225.8,223.6,224.1,223.3,223.8,222.2]}},{"b":7,"v":{"total":[35.2,35.2,36,35.3,34.9,34.5,35.1,34.8,35.5,34.7,35.5,35.2,34.8,35.3,35.3],"script":[8,7.7,7.9,7.8,7.9,7.8,7.9,7.9,7.9,8,8,7.9,8,7.9,8],"paint":[26.3,26.4,27.1,26.5,25.9,25.7,26.2,25.9,26.5,25.7,26.5,26.3,25.9,26.4,26.3]}},{"b":8,"v":{"total":[10,9.9,10.5,10.8,10.1,10.3,9.8,10.2,10.5,10.3,10.3,10,10.7,10.8,10.9],"script":[8.3,8,8.2,8.8,7.9,8,7.9,8.2,8.8,8.2,8.4,8.1,8.3,8.8,8.7],"paint":[0.6,0.6,1.7,0.9,0.7,1.3,1,1.8,0.8,1.5,0.7,0.6,1.9,0.9,1.6]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[21.59]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[59.1]}}]},
+{"f":129,"b":[{"b":0,"v":{"total":[28.8,29.1,29.1,29,29.4,29.3,29.7,29.4,28.9,29.5,29.7,29.5,29.2,29.2,29.7],"script":[6.6,6.4,6.5,6.4,6.7,6.5,6.8,6.3,6.4,6.8,6.6,6.7,6.7,6.7,6.7],"paint":[21.6,22.2,22,22,22.1,22.3,22.3,22.6,21.9,22.2,22.6,22.2,22,21.9,22.4]}},{"b":1,"v":{"total":[33.3,33.4,33.3,33.6,33.5,33,33.6,33,32.5,33.6,32.7,32.9,33,32.4,33],"script":[9.1,9.4,9.5,9.3,9.2,9.3,9.3,9.3,9.3,9.2,9.3,9.2,9.3,9.2,9.2],"paint":[23.6,23.4,23.3,23.7,23.7,23.2,23.7,23.2,22.6,23.8,22.8,23.1,23.1,22.7,23.2]}},{"b":2,"v":{"total":[11,11.5,12.8,11,10.7,10.5,10.8,11.4,10.6,11.7,11.4,11.1,10.4,10.9,10.7],"script":[0.2,0.6,0.6,1.3,0.8,0.2,0.6,0.9,0.2,0.9,0.7,0.7,0.7,0.5,0.9],"paint":[8.7,10.2,11.3,8.2,8.8,8.7,8.9,9.3,8.8,9.7,9.7,8.4,8.5,9.4,8.3]}},{"b":3,"v":{"total":[2.5,2.2,2.7,2.4,3.2,2.7,1.8,2.6,2.3,2.1,2.5,2.3,1.8,2.3,2.3,2.3,1.6,2.4,2.3,2.5,2.3,2.1,2.1,2.3,2.4],"script":[0,0,0.5,0.5,0.9,0,0.2,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.4,0,0,0,0],"paint":[1.5,1.1,1.6,0.4,1.6,2.5,1,0.6,1.6,1.9,1.9,1.8,1.2,2.1,1.4,1.9,0.9,1.6,1.5,1.5,1.8,1.4,1.3,1.3,1.4]}},{"b":4,"v":{"total":[22.6,23.4,23.3,23.7,24.3,23.5,23.1,23.8,22.9,23.7,23.1,23.6,24.5,22.3,22.6],"script":[7.9,9,8.8,9.4,9.7,9.1,8.7,8.8,9,9.1,9.2,9.6,8.9,8.8,8.7],"paint":[12.4,13.1,12.9,13,12.4,11.1,12.2,13.6,11.5,12.3,11.7,11.8,13,11.8,11.1]}},{"b":5,"v":{"total":[15.9,15.9,16.2,15.3,15.6,16.2,16.5,16.2,16.3,17.1,17,15.2,15.6,16.1,16.1],"script":[4.9,5.2,5.1,4.8,4.8,5.2,5.2,5.3,5.3,5.4,5.4,4.8,4.9,5.2,5.2],"paint":[10,9.5,9.9,9.8,10.2,10.5,10.3,9.5,10.2,10.3,10.8,9.3,9.7,9.9,10]}},{"b":6,"v":{"total":[293.6,292.3,293.3,292,293.3,290.6,290.1,294.6,291.9,293.4,289.8,289.8,289.7,289.9,290.6],"script":[60.8,60.3,60.2,60.7,61.1,66.3,65.2,60.8,66.7,60.2,65.6,64.5,65.1,64.8,66.1],"paint":[225.1,224.5,225.4,223.8,224.6,216.6,217.2,226.1,217.6,225.5,216.5,217.4,216.9,217.5,216.7]}},{"b":7,"v":{"total":[36.8,36.7,37,36.3,36.9,36.6,36.6,37.3,38,36.8,36.9,36.7,37.1,37.6,36.7],"script":[8.8,8.8,8.8,8.9,9,8.7,8.7,8.8,9,9,9,8.8,9.1,8.8,8.9],"paint":[27,26.9,27.1,26.4,26.9,26.9,26.9,27.5,28,26.9,27,26.9,27,27.8,26.9]}},{"b":8,"v":{"total":[10.2,10.4,11,10.9,11,10.6,10.8,10.5,10.4,11.3,12,10.6,10.4,10.3,10.3],"script":[8.6,8.4,8.6,8.7,8.9,8.9,8.7,8.7,8.1,9,9.6,9,8.7,7.9,8.1],"paint":[0.8,1.2,0.4,0.3,0.6,0.3,0.9,0.7,1.1,1.1,1.2,1.1,1.1,1.4,1.1]}},{"b":9,"v":{"DEFAULT":[0.67]}},{"b":10,"v":{"DEFAULT":[2.85]}},{"b":11,"v":{"DEFAULT":[2.87]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[21.64]}},{"b":14,"v":{"DEFAULT":[13.4]}},{"b":15,"v":{"DEFAULT":[5.2]}},{"b":16,"v":{"DEFAULT":[65.8]}}]},
+{"f":130,"b":[{"b":0,"v":{"total":[28.2,28.6,28.1,28.3,28.6,28.1,28.5,28.2,27.9,28.2,29.7,28.3,28.5,28.7,28.2],"script":[5.5,5.8,5.5,5.5,5.8,5.4,5.8,5.5,5.8,5.8,5.7,5.7,5.4,5.8,5.5],"paint":[22.2,22.3,22,22.2,22.3,22.2,22.2,22.1,21.6,21.9,23.4,22,22.6,22.3,22.1]}},{"b":1,"v":{"total":[32.6,32.7,32.9,33.4,32,32.5,32.2,32.4,32.7,32.8,32.7,32.1,32.7,31.7,33.1],"script":[8.4,8.4,8.6,8.5,8,8.4,8.5,8.3,8.4,8.5,8.3,8.2,8.4,8.5,8.4],"paint":[23.6,23.7,23.8,24.4,23.4,23.5,23.1,23.5,23.8,23.7,23.8,23.2,23.7,22.7,24]}},{"b":2,"v":{"total":[13,13.6,13.2,13.8,14.6,12.5,14.1,14.1,12.1,14.6,14.1,12.2,13.3,13.8,13],"script":[1.5,1.8,1.5,1.8,1.6,1.3,1.6,1.8,1.1,1.5,2,1.5,2,1.7,1.5],"paint":[10.3,10.1,10.3,10.3,11.4,9.7,11.5,11.3,10,11.8,10.7,9.1,9.8,10.3,9.8]}},{"b":3,"v":{"total":[2.8,2.6,2.4,2.1,2.8,2.4,1.9,2.3,2.7,1.8,2.5,2.4,1.8,2.4,1.9,2.7,2.5,2.4,1.9,2.3,1.7,2.3,2.3,2.9,1.9],"script":[0,0,0,0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0],"paint":[1,1.3,1.5,1,1.6,2.3,1.1,1.4,1.2,1.1,1.5,2.1,1,2.2,1.7,2,2.3,1.4,1.7,2,1.6,1.1,2.1,2.7,1]}},{"b":4,"v":{"total":[14,14.3,14.9,13.9,15.2,14.5,14.8,14.8,14,15.5,15.6,15,16.9,14.3,13.9],"script":[0.6,1.1,0.9,0.2,1.2,0.2,0.6,0.9,0.6,1.1,0.8,1,1.4,0.2,0.9],"paint":[12.2,11.9,12.7,12.6,12.6,12.6,13,12.3,12.2,13.2,13.4,12.8,14.2,12.8,12]}},{"b":5,"v":{"total":[10.6,10.3,10.6,10.4,11,10.6,10.4,10.7,10.8,10.9,10.4,11,10.5,11,10.3],"script":[0.3,0.1,0.2,0.1,0.1,0.1,0.1,0,0.1,0.2,0,0.1,0.1,0.1,0.1],"paint":[9.8,9.7,9.7,9.8,10.3,9.8,9.5,9.8,10.1,10.1,9.6,10.5,9.8,10,9.8]}},{"b":6,"v":{"total":[293.4,292.8,293.6,293.9,292.5,292.2,293.7,296.8,294.5,291.8,295.1,293.2,293,292.1,293],"script":[62.1,58.9,62,60.5,58.4,60,61,62.7,60.8,57.1,60.9,59.1,60.6,58.1,61],"paint":[223,225.7,223.4,224.9,226,224,224.6,225.5,225.4,226.4,226.1,225.8,223.7,225.1,223.7]}},{"b":7,"v":{"total":[34.1,33,33.1,33.8,33.3,34.4,32.8,34.2,33.9,33.6,33.4,33.7,33.3,34.1,33.1],"script":[6.4,6,6,6,6,6.4,5.8,6.2,6.3,6.1,6.1,6,6,6.4,6.1],"paint":[26.6,26,26.1,26.8,26.3,27,26,27,26.6,26.5,26.3,26.7,26.4,26.7,26.1]}},{"b":8,"v":{"total":[11.3,11.5,11.1,12.4,11.1,10.8,11.3,10.9,11.3,11.2,11.1,12.4,11.8,10.7,10.9],"script":[8.7,9.4,9.2,10.7,9.5,8.4,9.2,9.1,9.4,8.5,9,10.2,9.4,9.1,9.2],"paint":[1.3,1.4,0.8,0.2,0.6,1.3,1.4,0.9,1.7,1.8,0.9,1.1,0.7,1.1,0.2]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[2.76]}},{"b":11,"v":{"DEFAULT":[2.73]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.17]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[50.7]}}]},
+{"f":131,"b":[{"b":0,"v":{"total":[27.5,32.4,33.2,33.4,32.5,33.9,27.2,34.4,33.3,28,34.1,32.6,32.7,27.9,34.7],"script":[4.9,5.1,5,4.8,4.7,4.8,4.8,5,5,4.9,5,4.9,4.9,4.8,5.1],"paint":[21.6,22,22.1,21.6,22.2,22.1,22.1,22,21.9,22.4,21.7,22,22,22.3,22.3]}},{"b":1,"v":{"total":[36.7,30.1,28.7,32.3,33.4,37.1,32.7,32,33.1,30.5,32.6,35.2,31.9,33.9,32],"script":[7.2,7,6.9,7,6.8,6.8,6.7,6.8,7,7.1,6.9,7.1,6.8,6.9,6.8],"paint":[23.4,21.9,21.5,21.5,21.8,21.5,21.5,21.7,21.6,21.5,21.6,21.8,21.7,21.6,21.5]}},{"b":2,"v":{"total":[13.4,12.4,30.1,12.8,11.7,12.7,28.7,12.3,12.9,12.1,13.7,11.9,30,12.6,12.2],"script":[3.5,2.7,3.4,2.6,2.2,2.7,2.3,2.4,2.2,2.4,2.6,2.3,2.7,2.2,2.3],"paint":[8,9.2,9.9,9.1,9.4,9.9,10.4,9.8,9.8,9.5,9.7,9.4,9.9,9.7,8.9]}},{"b":3,"v":{"total":[5.9,5,4.6,4.4,4.5,4.4,5.2,4.9,5.3,4.6,4.9,4.8,4.4,4.3,4.8,4.9,4.7,4.3,5.3,5.1,4.7,4.8,4.5,4.9,4.8],"script":[1.9,2.3,1.7,2.6,2.5,2.2,2.4,1.8,2.7,2.2,1.4,1.8,1.3,1.5,2.4,2.1,1.8,1.9,2.6,1.9,1.9,2.4,1.8,2.1,2.4],"paint":[1.9,2.5,2.2,1.6,1.2,1.9,2,2.9,2,1.6,2.6,1.8,2.3,2.4,2.3,2.4,2.8,2.3,1.8,2.2,2.7,2.2,2,2.7,1.4]}},{"b":4,"v":{"total":[16.5,32.7,31.5,32.7,32.4,30.6,32.4,31.9,33.3,15.1,31,32.7,30.9,31.3,32.2],"script":[2.5,2,1.1,2,2.1,1.7,1.9,1.7,3.2,1.7,2.3,1.9,2.6,1.4,2.4],"paint":[13.1,15.1,14.3,14.8,14.3,12.8,14.4,13.6,12.7,13.3,11.9,14.7,11.6,13.4,13.8]}},{"b":5,"v":{"total":[10.5,12.9,11.5,12.2,10.8,11.3,10.7,12.9,11.3,10.8,10.9,15.5,10.8,10.7,12],"script":[1.3,1.2,1.3,1.5,1.2,1.1,1.3,1,1.5,1.4,1.3,1.3,1.3,1.3,1.2],"paint":[8.9,9.2,8.9,8.9,9.4,9,9.1,9.5,9.6,9.2,9.5,9.2,9.5,9.1,9.4]}},{"b":6,"v":{"total":[275.9,281.6,282,281.8,282.4,278,282.4,275.7,282,277.7,282.7,282.7,280.6,282.5,281.4],"script":[46.2,46,46.3,46.5,46.4,47,47.2,46.4,46,46.6,46.7,47.1,46.1,46.3,45.8],"paint":[225.8,226.4,225.2,226.3,224.6,227.1,225.9,225.3,226,227,225.6,224.5,225.7,225.8,227]}},{"b":7,"v":{"total":[39.1,41.3,39.5,41.4,39.9,40.4,38.9,40,42,41.1,40,39.4,41.5,41.2,41.6],"script":[4.9,4.9,4.6,5,4.8,4.9,4.7,4.7,4.8,4.9,4.8,4.5,5,4.9,4.9],"paint":[24.4,25.7,24.9,25.4,25.1,25,24.2,24.7,25.7,25.4,25.2,24.7,25.4,25.7,25.4]}},{"b":8,"v":{"total":[28,11.6,11.2,13.7,28.4,11.9,12,11.6,11.6,27,11.5,27,27.9,27.6,11.3],"script":[9.7,9.8,9,10.1,10.1,9.4,9.5,9.7,9.7,8.9,9.4,9.2,10,9.7,9.7],"paint":[1.7,1.6,1.7,1.3,2.1,2.3,1.7,1.7,1.4,1.6,0.3,1,1,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.21]}},{"b":12,"v":{"DEFAULT":[1.15]}},{"b":13,"v":{"DEFAULT":[21.75]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[93]}}]},
+{"f":132,"b":[{"b":0,"v":{"total":[32.5,32,32.3,32.6,32.7,32.3,34.1,33.6,32.7,33.2,32.8,32.6,33.3,32.4,32.5],"script":[11.4,10.7,11.4,11.5,11.5,11.6,12.3,12.5,11.6,11.6,11.6,11.7,12.2,11.6,11.7],"paint":[20.5,20.7,20.4,20.5,20.6,20.1,21.3,20.6,20.6,21,20.6,20.3,20.5,20.3,20.2]}},{"b":1,"v":{"total":[35.5,36.2,36.6,36.3,36.8,36.6,36.4,38.2,36.8,36.2,37,36.8,37.2,36.8,37.2],"script":[14,14.4,15,14.9,14.9,14.9,14.8,15.1,15,14.9,15,15,15.1,15,15.1],"paint":[20.9,21.2,21,20.9,21.3,21.2,21,22.5,21.3,20.7,21.4,21.3,21.6,21.2,21.6]}},{"b":2,"v":{"total":[24.4,25.7,24.9,25.3,24.5,25,24.9,25.1,24.8,25.3,25.2,26.2,26.3,24.4,25.6],"script":[12.8,13.1,13.1,12.8,12.4,12.2,13.3,12.5,12.9,13.1,12.8,13.4,14.5,12.9,13.4],"paint":[10.1,9.7,9.6,10.1,10.6,11,10.1,11.3,10.5,10.6,10.6,10.4,10.6,9.1,10.1]}},{"b":3,"v":{"total":[7.1,7,6.6,6.8,7.6,7.4,7.3,8.5,7,7.2,7.4,7.4,7.9,7.2,8.1,7.2,7.9,7.9,7.4,7.5,7.3,7.4,7.4,7.8,7.4],"script":[4.7,4.8,4.2,4.2,4.7,4.6,4.9,5.9,4.4,4.7,5.4,4.6,5.2,4.2,5.1,4.5,5.2,5.1,5.4,4.4,5.1,5.4,5.2,5.5,4.9],"paint":[1.7,2.1,1.9,2.5,2.8,2.3,1.8,1.9,2.5,1.4,1.2,2.7,1.9,2.9,2.3,2,1,2.1,1.9,2.9,2.1,1.9,2.1,2.2,1.4]}},{"b":4,"v":{"total":[109.5,108.5,111.8,110,108.2,109.1,107.9,107.4,108.1,110.8,109.5,108.8,110.3,107.5,109],"script":[23.5,23.3,24.3,24.3,22,23.2,22.3,22.5,23.2,25.7,22.9,22.9,23.8,22.7,22.9],"paint":[84.1,83.4,85.1,83.7,83.7,84.3,83.6,83,81.2,81.5,84,84,83.9,83.6,83.6]}},{"b":5,"v":{"total":[16.7,17.4,17,16.7,17.1,16.8,17.4,16.4,16.9,16.6,17.3,17.2,17.3,16.9,16.6],"script":[5.8,6.2,6,5.7,6.1,5.7,6.1,5.7,5.8,5.6,5.7,5.7,6,5.6,5.8],"paint":[9.9,10.1,10.1,10.1,10,10.1,10.5,9.6,9.9,9.6,10.2,10.6,10.5,10.6,9.9]}},{"b":6,"v":{"total":[433.6,439.4,436.3,434.6,438.7,436.1,433.1,437.8,442.1,440.3,439.7,442.8,434.5,445.7,438.7],"script":[201.5,210.7,207.6,205.4,205.5,207.4,203.2,202.9,204.9,210.2,209.6,210.3,205.5,212.1,207.4],"paint":[224.7,221.2,221.4,221.9,225.8,221,222.5,227.8,229.6,222.9,222.9,224.5,221.7,225.9,223.9]}},{"b":7,"v":{"total":[39.7,40.1,41,41.2,41.2,40.9,41.1,40.8,41.2,41.8,40.8,40.9,40.7,40.7,40.7],"script":[13.8,13.8,14.8,14.8,14.9,14.7,14.7,14.5,14.7,14.7,14.8,14.8,14.7,14.8,14.7],"paint":[25,25.3,25.3,25.5,25.4,25.3,25.5,25.3,25.6,26.2,25.1,25.2,25.2,25,25.1]}},{"b":8,"v":{"total":[15.2,14.5,14.9,13.3,15.6,14.3,14.9,14.5,14.4,14.4,15.8,14.9,13.8,14.2,14.1],"script":[13.5,12.5,13.1,11.4,13.5,12.7,13.2,12.8,11.9,12.2,13.3,13,11.7,12.2,12],"paint":[0.3,0.9,1.1,1,1.1,1,1.1,0.3,1.2,1.1,1.1,1.1,1.2,0.5,0.6]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[6.06]}},{"b":11,"v":{"DEFAULT":[6.65]}},{"b":12,"v":{"DEFAULT":[2.86]}},{"b":13,"v":{"DEFAULT":[46.79]}},{"b":14,"v":{"DEFAULT":[145.2]}},{"b":15,"v":{"DEFAULT":[41.3]}},{"b":16,"v":{"DEFAULT":[159.1]}}]},
+{"f":133,"b":[{"b":0,"v":{"total":[23.1,23.6,23.4,23.9,23.6,23.6,23.7,23.5,23.4,23.2,23.6,23.8,23.7,23.4,23.7],"script":[1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.5,1.4,1.5],"paint":[21.3,21.8,21.6,22.1,21.8,21.8,21.8,21.6,21.6,21.4,21.7,22,21.9,21.5,21.9]}},{"b":1,"v":{"total":[25.8,26.1,26.2,26,26.1,26.3,28.9,26.2,27,26.3,29.1,26.8,26.4,26.2,27.2],"script":[3.3,3.6,3.3,3.3,3.4,3.4,3.5,3.5,3.6,3.3,3.6,3.8,3.5,3.5,3.6],"paint":[22.1,22.2,22.4,22.3,22.4,22.5,24.9,22.3,23,22.5,24.8,22.6,22.5,22.3,23.2]}},{"b":2,"v":{"total":[11.2,10.4,11.8,11.1,11.1,10.7,10.2,10.2,10.5,9.8,11.4,9.8,10.8,10.8,10.5],"script":[0.5,0.8,0.6,0.1,0.1,0.3,0.1,0.4,0.1,0.7,0.1,0.1,0.5,0.9,0.1],"paint":[9.6,8.6,9.9,10.8,9.8,9.3,8.6,8.6,9.3,7.8,10.3,8.6,9.2,8.8,8.9]}},{"b":3,"v":{"total":[2.9,1.7,3,2.4,2.2,2.3,2.1,2.1,2.7,2.7,2.1,1.9,2.5,2.4,2.4,2.6,3.3,2.5,2.9,3.6,2,2.9,3.1,2.8,2.8],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.1,0.6,0.1,0.3,0.1,0.5,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[2.3,1.5,2.8,1.5,1.3,1.8,1.6,1.3,2.5,1.4,1.1,1.1,1.7,2.2,1.2,2.2,2.1,2.3,2,2.3,1,2.4,2.9,1,2.1]}},{"b":4,"v":{"total":[13.4,12.6,12.3,12.9,13.1,13.2,12.6,12.3,13.2,13.1,12.7,13.2,14,12.5,13.1],"script":[0.1,0.1,0.1,0,0.1,0.6,0.1,0.4,0.9,0,0,0.2,0.1,0.1,0.1],"paint":[12.4,11.5,11.3,11.3,11.6,11.6,10.2,10.7,11.2,11.8,12,12,12.7,11.5,12.1]}},{"b":5,"v":{"total":[10.7,10.3,10.3,10.4,10.4,10.4,10.4,10.3,10.4,10.2,10.3,10.2,10.3,10.6,11.2],"script":[0.5,0.4,0.2,0.3,0.5,0.3,0.3,0.4,0.4,0.1,0.3,0.4,0.3,0.3,0.2],"paint":[9.7,9,9.5,9.6,8.7,9.4,9.4,8.9,9.4,9.5,9,9,9.6,9.4,10]}},{"b":6,"v":{"total":[243.9,244.7,239.9,241.8,241.7,248.1,244.2,239.4,242.4,244.7,241.2,242.5,239.9,240.4,246.2],"script":[15.3,15.5,15.3,15.3,15.4,15.2,15.1,15.2,15.5,15.2,15.3,15.3,15.2,15.4,15.2],"paint":[221.1,221.7,217.1,219.2,218.7,225.6,221.7,216.6,219.4,222.1,218.6,219.7,217.3,217.6,223.1]}},{"b":7,"v":{"total":[26.5,27,27.8,27.1,27.1,27.1,27,27.8,26.9,27.3,26.8,27,27.5,27,26.8],"script":[1.3,1.3,1.4,1.3,1.4,1.4,1.3,1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.4],"paint":[24.4,24.9,25.7,25,25,25,24.9,25.7,24.8,25.1,24.6,24.9,25.4,24.9,24.7]}},{"b":8,"v":{"total":[8.9,8.9,9.4,9.2,9,9.7,9.5,8.7,8.4,9.3,9.8,9.5,10.3,8.8,9],"script":[7.3,7,7.5,7.4,7.5,7.9,7.5,6.6,7.1,6.8,7.7,7.3,7.9,7.3,7],"paint":[0.5,1.6,1,1,0.2,1.5,0.7,1.6,0.3,1.6,1.2,2,1.4,0.7,1.6]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[1.93]}},{"b":11,"v":{"DEFAULT":[1.94]}},{"b":12,"v":{"DEFAULT":[0.62]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[41.2]}}]},
+{"f":134,"b":[{"b":0,"v":{"total":[23.2,23.5,23,23.3,23.1,23,23.1,23.1,23.1,23.2,23.1,23.3,22.9,22.7,23.5],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.2,1.3],"paint":[21.5,21.9,21.4,21.7,21.5,21.4,21.5,21.4,21.5,21.6,21.5,21.7,21.3,21.1,21.9]}},{"b":1,"v":{"total":[26,25.9,25.7,25.6,25.5,25.8,25.9,25.6,25.8,25.8,25.8,25.9,25.7,25.7,25.8],"script":[3.2,3.3,3.1,3.1,3.2,3.1,3.2,3.1,3.2,3.1,3.3,3.3,3.1,3.1,3.1],"paint":[22.4,22.2,22.2,22,21.9,22.3,22.3,22.1,22.3,22.4,22.2,22.2,22.2,22.2,22.3]}},{"b":2,"v":{"total":[11.5,10.1,9.1,10,9.4,9.5,10.9,10.2,9.4,10.2,10.2,9.6,9.9,9.7,10],"script":[0.1,0.1,0.1,0.1,0.3,0.1,1,0.4,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.1,8.3,8,8.6,7.9,8.8,9,8.7,8.2,8.9,8.5,8.5,8.8,7.8,8.7]}},{"b":3,"v":{"total":[3,2.4,2.5,1.6,2.1,2.1,2.2,2.9,2.1,1.8,2.1,1.9,1.9,1.9,1.7,2,1.9,2.2,2.1,2.4,2.6,2.4,2.2,2.4,2.9],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0],"paint":[1.9,1.4,1.7,1.4,1.9,1.1,2,1.7,0.5,1,1.2,1.1,1.1,1.7,1.5,1.2,1.1,2,1.4,1,1.3,1.9,2,0.4,1.8]}},{"b":4,"v":{"total":[12.9,11.8,12.9,12.5,12.2,12.4,12.5,12.9,12.9,13.5,12.6,12.3,12.3,12.6,12.7],"script":[0,0,0,0,0,0,0,0,0.1,0.8,0,0.1,0,0.1,0.1],"paint":[10.6,11,12.3,11,11,10.8,11.3,11.4,11.9,11.2,11.3,10.6,11.2,11,10.8]}},{"b":5,"v":{"total":[10.2,10.3,10.2,10,10.2,10.1,11.1,10.1,10.3,10.1,10.1,10.3,10.1,11.3,10.1],"script":[0.1,0.3,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2],"paint":[9.5,8.9,9.6,8.8,9.6,9.1,10.3,9.4,9.6,9.4,9.5,9.6,9.2,10.3,9.3]}},{"b":6,"v":{"total":[244.1,244,243.2,243.5,243.8,243.3,244,244.7,243.8,242.2,242.8,243.5,242.8,242.4,243.4],"script":[13.4,13.4,13.4,13,13.3,13.4,13.3,13.4,13.2,13.5,13.4,13.5,13.3,13.1,13],"paint":[223.4,223.6,222.6,223.4,223.5,222.8,223.5,224.1,223.5,221.6,222.4,223,222.3,222.2,223.3]}},{"b":7,"v":{"total":[27.2,27,27,27,27.3,26.9,26.9,26.8,27.5,27,27.1,26.9,26.9,26.8,27.3],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[25.2,25,25,25,25.3,24.9,24.9,24.8,25.5,25,25.1,24.9,24.8,24.8,25.3]}},{"b":8,"v":{"total":[9.1,9,9.6,9.9,9.7,9.8,9.2,9.5,9.4,8.5,9.4,8.8,8.6,9.1,9.4],"script":[7.2,7,7.2,7.8,7.9,7.8,7.3,7.7,7.4,7.1,7.6,7,7.3,7,7],"paint":[1.1,0.3,1.3,1,1.5,1.1,1,1.5,0.8,0.7,0.5,0.2,0.2,1.2,2.2]}},{"b":9,"v":{"DEFAULT":[0.45]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.58]}},{"b":13,"v":{"DEFAULT":[12.47]}},{"b":14,"v":{"DEFAULT":[5.3]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[36.2]}}]},
+{"f":135,"b":[{"b":0,"v":{"total":[23.2,22.8,23.1,23.2,23.2,23.8,23.5,23.9,23.3,23.1,23.2,22.9,23,23.2,23],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5],"paint":[21.3,20.9,21.3,21.4,21.3,21.9,21.7,22,21.4,21.3,21.3,21.1,21.2,21.3,21.2]}},{"b":1,"v":{"total":[26.2,25.4,26,25.9,26.3,25.9,26,25.8,26,26.3,26,26,25.9,25.7,25.9],"script":[3.6,3.3,3.6,3.6,3.7,3.4,3.6,3.5,3.5,3.6,3.4,3.5,3.4,3.4,3.5],"paint":[22.2,21.7,22,21.9,22.2,22.1,22,22,22.1,22.3,22.2,22.1,22.2,21.9,22]}},{"b":2,"v":{"total":[9.8,10.4,10.1,10,9.3,10.9,10.2,10.6,9.8,10.6,9.9,10,10.3,9.9,9.8],"script":[0.1,0.1,0.9,0.7,0.6,0.5,0.9,0.1,0.1,0.9,0.1,0.4,0.9,0.1,0.1],"paint":[9.1,9.2,8.3,8,7.4,9.6,8.3,9.6,8.9,7.9,8.9,8.7,8.8,8.7,8.2]}},{"b":3,"v":{"total":[2,1.9,2.1,2,2,2.4,2.5,2.3,2.1,2.6,1.6,2.3,2.4,1.2,1.7,2.3,1.8,2.3,2.7,2.5,2,2.6,1.7,2,2.1],"script":[0,0,0,0,0,0,0.7,0,0.5,0.5,0,0,0,0,0,0,0,0.7,0.9,0.7,0,0,0.1,0.2,0],"paint":[1.2,1,2,1.1,1.9,1.7,1.7,2.2,1.1,1.6,0.7,1.6,0.8,1.1,0.8,1.8,0.6,1.5,1.3,1.6,1.8,2.5,1.5,1.2,1.9]}},{"b":4,"v":{"total":[13,12.7,13.2,12.6,12.2,12.5,12.2,13.5,13.5,12.9,12.2,12.5,13.6,13.3,12.4],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0.1,0.3,0.1,0.9,1,0.5],"paint":[11.9,11.3,11.8,11.3,10.8,11.5,10.9,11.8,11.4,11.6,10.2,11.3,12,11.1,11]}},{"b":5,"v":{"total":[10.4,9.9,9.8,10.2,10.1,10,9.8,10.1,10.2,10.4,10.1,10.1,9.8,10.4,10],"script":[0.2,0,0,0.2,0,0,0,0,0,0,0,0.3,0,0.1,0.2],"paint":[9.4,9.1,9.3,9.3,9.5,9.5,9.3,9.7,9.6,9.7,9.5,9,9.1,9.9,9.3]}},{"b":6,"v":{"total":[238,238.4,238,237,238,239.2,239,237.3,237.9,237.8,237.3,237.4,237.2,238.2,238.7],"script":[14.1,14.4,14.3,14.2,13.8,14.6,14.2,14.3,14.1,14.2,14.2,14.3,14.3,14.3,14.2],"paint":[216.5,216.7,216.3,215.4,217,217.4,217.6,215.5,216.6,216.3,215.4,215.8,215.6,216.5,217.2]}},{"b":7,"v":{"total":[26.8,27.2,27,27,27.2,27,27.3,27.3,26.9,27.1,26.9,26.9,27.3,27.2,27.1],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.5,1.4],"paint":[24.6,25,24.8,24.8,25,24.8,25.1,25.1,24.6,24.9,24.7,24.8,25.1,25,24.9]}},{"b":8,"v":{"total":[9.7,8.9,8.8,8.3,9,8.4,9.1,9.3,8.9,9,9.7,9.6,9,8.8,9.4],"script":[7.5,7.5,6.3,7.2,7.6,7,6.9,7,7.2,7,7.7,7.6,6.7,7.7,7.3],"paint":[2,0.4,1.6,0.9,0.2,0.7,0.7,1.3,0.7,1.1,0.7,1,0.8,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[1.75]}},{"b":11,"v":{"DEFAULT":[1.75]}},{"b":12,"v":{"DEFAULT":[0.62]}},{"b":13,"v":{"DEFAULT":[12.09]}},{"b":14,"v":{"DEFAULT":[4.9]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[39.5]}}]},
+{"f":136,"b":[{"b":0,"v":{"total":[25.7,26.1,26.4,26.3,26.3,25.8,26.1,26,26.3,26.7,25.8,25.9,26.3,26.3,25.9],"script":[4,4,4.2,4.1,4.1,4,4,4.1,4.1,4.2,4,4,4,4.1,4],"paint":[21.3,21.8,21.7,21.8,21.8,21.4,21.7,21.5,21.8,22.1,21.4,21.4,22,21.8,21.5]}},{"b":1,"v":{"total":[29.1,29.8,29.6,29.2,29.4,30.1,28.8,29.2,29.6,29.1,29.6,29.3,29.2,29.7,29.2],"script":[6.4,6.7,6.5,6.6,6.7,6.7,6.4,6.5,6.5,6.7,6.6,6.5,6.5,6.6,6.2],"paint":[22.1,22.6,22.5,22,22.1,22.8,21.8,22.1,22.4,21.8,22.4,22.3,22.1,22.5,22.4]}},{"b":2,"v":{"total":[11.1,11.6,11.2,11,10.7,11.1,10.9,11.7,10.6,12,11.7,11.6,11.3,10.6,10.7],"script":[1,1.4,1.1,0.9,1,1.4,0.8,0.6,0.6,1.9,0.9,0.9,1.4,0.6,0.7],"paint":[8.3,9.2,9.3,8.9,8.8,8.7,8.8,9.4,9.1,9,9.3,9.7,8.6,9.3,8.8]}},{"b":3,"v":{"total":[5.1,2.6,2.5,2.6,2.4,2.5,2.7,2.3,3,2.9,1.7,2.8,1.9,1.9,1.7,2.2,2.1,2.5,2.4,2.7,2.6,2.6,4.1,1.7,2.4],"script":[0.1,0.5,0.1,0.3,0.1,0.1,1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.8,0.8,0.6,0.1,0.6,0.1,0.1],"paint":[1.5,1.5,1.3,2.2,2.2,1.9,1.6,1.3,1.6,2.7,0.7,1.5,1.7,1.7,0.7,2,1.1,1.5,1,0.5,1.5,1.7,2.1,0.7,2.2]}},{"b":4,"v":{"total":[12.8,13.6,12.1,13.6,12.8,12.7,13.3,13.5,13,13.2,12.9,12.2,12.9,12.3,12.5],"script":[0.1,0.9,0.3,0.1,0.1,1,0.1,0,0.1,0.8,0.1,0.1,0.1,0.1,0.2],"paint":[12.1,11.5,10.6,12.8,11.1,9.5,11.3,11.9,12.3,10.9,11.7,11.3,11.6,10.8,10.9]}},{"b":5,"v":{"total":[10.5,10.2,10.5,10.2,11.5,10.1,10.6,10.1,10.2,10.2,10.2,10.4,10.2,11.1,10.1],"script":[0.3,0.1,0.2,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.3,0.3,0.1,0.1,0.1],"paint":[9.2,9.8,9.8,9.5,10.7,9,9.6,9.5,9.5,9.5,9,9.5,9.2,10,9.4]}},{"b":6,"v":{"total":[259.2,258.5,262.1,258.9,258.6,260.5,258.2,259.3,257.4,262.1,259.3,258.3,258.6,258.9,257.5],"script":[42.2,41.5,45.3,42.1,41.6,43.3,41.7,41.8,41.4,41.6,41.8,41,41.2,41.9,41.7],"paint":[209.8,209.8,209.7,209.7,209.8,210,209.3,210.3,208.8,212.8,210.1,210.2,210.1,210,208.7]}},{"b":7,"v":{"total":[30.2,29.6,30.2,29.9,30.6,30,30,30,30.1,30.1,30.2,30.4,29.7,30.2,30.1],"script":[3.6,3.7,3.7,3.5,3.8,3.6,3.8,3.7,3.8,3.7,3.6,3.6,3.4,3.7,3.5],"paint":[25.7,25.2,25.7,25.6,26,25.7,25.5,25.6,25.5,25.5,25.8,26,25.5,25.8,25.8]}},{"b":8,"v":{"total":[9.6,9.1,9.8,9.7,9.4,10.6,9.4,10.1,9.3,9.2,10,9.5,9,9.3,10.5],"script":[7.9,7.4,8.1,7.9,6.9,8.7,7,7.6,7.9,7.6,7.6,7.5,7.6,7.7,7.9],"paint":[1,1,0.3,0.7,1.4,1.7,1,1.3,0.2,0.2,1.3,1.1,0.6,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.89]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[15.97]}},{"b":13,"v":{"DEFAULT":[32.37]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[42.5]}}]},
+{"f":137,"b":[{"b":0,"v":{"total":[24.6,25.2,24.9,25,24.9,25.1,24.5,24.9,24.3,24.8,24.9,25.1,25.1,24.6,24.9],"script":[2.7,2.7,2.7,2.7,2.7,2.8,2.7,2.7,2.6,2.7,2.7,2.8,2.8,2.7,2.7],"paint":[21.6,22.1,21.8,21.9,21.8,21.9,21.5,21.8,21.3,21.7,21.8,21.9,21.9,21.5,21.9]}},{"b":1,"v":{"total":[28.4,28,27.9,27.9,28,28.1,27.8,27.7,27.8,27.9,27.8,28.5,28.3,28.3,27.9],"script":[4.6,4.6,4.8,4.6,4.6,4.7,4.5,4.6,4.6,4.5,4.6,4.7,4.8,4.6,4.9],"paint":[23.4,23.1,22.7,22.9,22.9,22.9,22.8,22.6,22.7,23,22.8,23.3,23,23.3,22.7]}},{"b":2,"v":{"total":[11.2,10.7,10.5,11.1,10.9,10.3,11.7,11.7,11.2,10.6,11,11.1,10.7,10.3,10.4],"script":[0.5,0.1,0.1,0.9,0.9,0.5,0.7,0.8,0.7,0.5,0.8,1,0.6,0.5,0.1],"paint":[10.1,9.5,9,8.8,8.2,8.9,9.4,9.6,9.3,9.1,9.1,8.7,9.1,8.8,8.7]}},{"b":3,"v":{"total":[3.7,2.4,2,2.3,2.2,2.8,2,2.6,2.1,1.9,2.4,2.4,1.9,2.7,2.9,2.3,2.6,3.1,2.6,2.5,2.7,2.5,1.7,2.7,2],"script":[0,0,0,0,0,0,0.2,0,0,0,0,0,0,0.6,0,0,0.7,0.9,0,0,0.7,0,0,0,0],"paint":[1.4,2.2,1.1,2,1.7,2.6,1.3,1.4,1.2,1.8,1.3,1.8,1.7,1.6,2.7,1.4,1.8,2.1,2.2,2,1.9,2.2,1.5,0.9,0.9]}},{"b":4,"v":{"total":[13.1,12.9,11.8,12.7,12.3,13.4,12.3,12.5,12.9,14,13,12.3,13.8,13.6,12.8],"script":[0.1,0.1,0,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.7,0.1],"paint":[11.2,11.9,10.8,11.1,11,12.1,11.1,11.4,11.5,13,10.9,10.8,12.2,11.7,12.1]}},{"b":5,"v":{"total":[10.4,10.2,10.3,11,10.4,10.3,9.9,10.1,10.3,10.3,10.4,10.2,10.3,10.9,11],"script":[0.2,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.3],"paint":[9.6,9.6,9.6,9.8,9.2,9.5,9.2,9.4,9.5,9.4,9.8,9.2,9.9,10.2,9.9]}},{"b":6,"v":{"total":[269,269.9,273.6,271.1,271.5,270.6,270.4,271.1,271.4,270.7,270.2,269.5,272.2,268.9,269.2],"script":[33.1,33.9,33.8,34.5,33.6,33.8,33.2,33.2,33.5,34.1,33.9,33.2,33.9,33.6,33.4],"paint":[228,228.4,231.8,229,230.3,229.3,229.6,230.5,230.4,229,228.8,228.8,230.9,227.6,228.2]}},{"b":7,"v":{"total":[28.9,28.7,28.4,28.7,28.7,28.5,28.1,29,28.5,28.8,28.9,28.5,28.6,29,28.6],"script":[2.6,2.6,2.6,2.6,2.6,2.7,2.5,2.6,2.7,2.6,2.6,2.6,2.7,2.6,2.6],"paint":[25.5,25.4,25,25.3,25.4,25,24.9,25.6,25,25.4,25.5,25.2,25.2,25.7,25.3]}},{"b":8,"v":{"total":[8.4,9.5,10.4,8.5,9.1,8.9,9.6,9.4,9.4,9.7,9.5,9.5,9.7,8.7,9.1],"script":[7.2,7.1,8,7.2,7.1,7.2,7.5,7.8,7.6,8.3,7.5,7.6,7.6,7.2,7.3],"paint":[0.4,1.2,1.1,0.3,0.7,0.3,0.9,0.8,1,0.2,1.1,1.1,1,0.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.05]}},{"b":11,"v":{"DEFAULT":[1.99]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[14.02]}},{"b":14,"v":{"DEFAULT":[9.8]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[41.8]}}]},
+{"f":138,"b":[{"b":0,"v":{"total":[31.6,31.2,31.3,31.3,31.9,30.7,31.3,31.4,31.8,31.5,30.6,31,31.3,30.7,30.6],"script":[8.1,8,7.9,7.9,8.2,7.6,8,7.9,7.9,8,7.6,7.8,8,7.7,7.8],"paint":[23,22.7,22.8,22.8,23.2,22.6,22.7,23,23.3,23,22.5,22.7,22.7,22.4,22.3]}},{"b":1,"v":{"total":[33.7,33.6,34.6,34.2,34,34.1,34.4,34.3,34.7,33.2,33.7,33.6,33.4,34,34.1],"script":[10.5,10,10.7,10.5,10.4,10.6,10.7,10.5,10.9,10.1,10.1,10.3,10.5,10.5,10.5],"paint":[22.6,23,23.3,23.1,23,22.9,23.2,23.2,23.2,22.4,23,22.8,22.4,22.9,23.1]}},{"b":2,"v":{"total":[30.7,30.3,31.6,30.6,30.5,32.4,30.8,30.4,14.6,29.9,31.5,30.9,29.8,30.6,30.6],"script":[1.6,0.9,1.3,1.8,0.6,1.5,1.2,1.4,1.5,0.8,1.2,0.3,1.3,2.5,1.1],"paint":[13.5,13,11.1,13.1,13,13.6,13.3,12.8,11,13.1,13.8,13.5,12.6,12.6,12.7]}},{"b":3,"v":{"total":[11.1,7.9,6.9,8,8.3,10.3,4.3,8.7,12.8,8.5,7,9.1,8.7,4.1,7.6,7.2,8.5,10.2,9.6,6,7.6,7.1,12.1,6.5,8.7],"script":[0.1,0.1,0.6,0.1,1,0.5,0.1,1.7,0.1,1,0.1,0.5,0.8,0.6,0.1,0.6,0.1,0.8,1.1,1.7,0.8,0.9,0.6,0.9,0.8],"paint":[2.3,3.2,2.8,3.2,2.8,2.4,1.7,3.3,2.5,4.1,2.5,1.8,3,2.2,2.8,2.2,2.8,2.1,2.2,4,3.2,2.7,2.5,3.4,2.6]}},{"b":4,"v":{"total":[13.5,12.7,12.6,12.9,12.8,12.8,14.4,12.8,13.9,14.4,13.2,13.5,13.6,13.2,12.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.7,0.1,0.1,0.1,0.1],"paint":[11.7,11.4,11,11.7,11.8,11.1,13.3,10.7,12.1,13.2,11.4,11.8,12.3,12,11.3]}},{"b":5,"v":{"total":[15.7,14.2,15.6,12.5,12.3,15.2,14.2,15.2,14,15.6,13.3,13.3,12.5,16.4,14.3],"script":[0.4,0.1,0.1,0.2,0.1,0.1,0.4,0.4,0.2,0.1,0.1,0.1,0.1,0.2,0.1],"paint":[11.2,11,10.7,11.2,11.3,11.2,11.5,11.3,10.9,11.2,11,11.5,11.5,11.1,11.5]}},{"b":6,"v":{"total":[308.4,305.6,305.7,307.4,308.7,309.6,308.8,307.5,306.5,307.3,309.4,308.6,308.3,310.6,308.1],"script":[82.1,82.6,82.7,82.5,83.2,84,83.5,82.7,82.6,82.3,83.3,83.5,82.2,82.5,82.2],"paint":[218.5,215.5,215.7,217.4,218,218.2,217.3,217.4,216.4,217.3,218.1,217.7,218.6,220.6,218.5]}},{"b":7,"v":{"total":[35.4,35.3,35.6,35.2,34.7,35.1,36.3,35.6,35.6,36.2,34.5,36.5,36.2,35.5,36.1],"script":[8.2,8.2,8.2,8,7.8,8.3,8.1,8.2,8.2,8.3,7.4,8.3,8.3,8.1,8.3],"paint":[26.3,26.2,26.5,26.4,26,25.9,27.3,26.4,26.5,26.8,26.1,27.2,27,26.4,26.8]}},{"b":8,"v":{"total":[10.3,10.1,10,9.9,10.4,10.6,10.5,10.1,10.1,10.3,10.7,10.5,9.7,9.3,9.9],"script":[8.5,8.3,7.9,7.7,8.6,8.5,8.6,8.2,8.3,7.9,8.7,8.1,7.7,7.4,8.1],"paint":[1.1,1,1.8,1.1,0.9,0.3,0.6,0.3,0.7,1.8,1.1,1.6,1.7,0.2,0.8]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.37]}},{"b":11,"v":{"DEFAULT":[2.41]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[18.45]}},{"b":14,"v":{"DEFAULT":[5.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[42.7]}}]},
+{"f":139,"b":[{"b":0,"v":{"total":[28.1,28.2,28.6,28.4,27.9,28,28.5,28.1,28.3,28.2,28.7,28.1,28.9,29.3,28.7],"script":[6.2,6.4,6.4,6.3,6.2,6,6.5,6.1,6.2,6.4,6.5,6.1,6.8,6.8,6.4],"paint":[21.4,21.3,21.6,21.6,21.2,21.4,21.6,21.5,21.6,21.2,21.7,21.4,21.6,22,21.8]}},{"b":1,"v":{"total":[35.4,35.1,35.2,35,35.3,35.1,35.2,35,35.3,34.9,35,35.3,36,35.2,35.4],"script":[12,11.6,12.1,11.7,12,11.9,11.9,12.1,12,11.6,11.7,12.1,12.1,11.8,11.9],"paint":[22.9,23,22.5,22.7,22.7,22.6,22.8,22.3,22.8,22.6,22.7,22.6,23.3,22.9,23]}},{"b":2,"v":{"total":[13.9,13.1,14,14.3,15.3,13.6,14.7,14.7,13.7,14.6,13.6,13.2,13.9,13.7,13.7],"script":[2.8,2.7,3,2.2,2.7,2.8,3.2,3.2,2.5,3.3,2.4,2.5,3.1,2.5,3.3],"paint":[10.1,9.4,9.6,11.2,11.1,8.9,10.8,10.3,10,9.9,10.2,9.8,9.4,10.2,8.5]}},{"b":3,"v":{"total":[2.8,2.9,2.9,3.4,3.5,5,6.8,3.4,3.3,2.9,3.2,3.1,2.5,2.8,6.8,3,3,3.3,3.3,2.5,3.9,3.5,3.7,4,2.8],"script":[1.1,0.9,0.9,0.9,1.6,1.2,1.1,1.4,1.2,1,1.1,1,0.6,0.7,0.9,1.4,1.2,1,1.4,0.6,1,1.5,0.9,1.8,0.9],"paint":[1.6,1.9,1.8,1.5,1.5,1.6,1.6,1.1,1.6,1.1,1.9,1.5,1.1,1.6,1.9,1.5,1.2,2.1,1.8,1.1,2.7,1.9,2.6,2,1.1]}},{"b":4,"v":{"total":[15.1,14.1,14.5,14.5,13.7,15.3,14.2,14.1,14.4,15,14.7,14.8,14.8,14.3,14.4],"script":[1.7,1.8,1.5,1.3,1.5,1.8,1.7,1.7,1.9,2.2,1.7,2.1,1.4,1.3,1.6],"paint":[12.4,11.4,12,12.3,11.2,12.3,11.5,11,10.7,11.4,11.7,11.4,12.1,12.3,11.9]}},{"b":5,"v":{"total":[11.5,11.1,11.3,10.9,11.2,11,10.9,11.4,11,10.9,11,11.1,11.5,11.1,11.3],"script":[1.1,0.9,0.9,0.9,0.7,0.9,0.7,0.7,0.7,0.9,1.1,0.8,1,0.9,0.9],"paint":[9.4,9.7,10,9.4,9.8,9.6,9.6,10.3,9.5,9.5,9.4,9.7,9.5,9.5,9.4]}},{"b":6,"v":{"total":[290.8,293,294.2,294.8,294.2,293.7,296.7,294.5,293.5,292.6,295,295.9,294.3,292.3,293.7],"script":[68.6,71.4,71.7,71.9,72.7,72,72.9,70.1,72.1,69.6,71.2,71.2,72.9,70.5,72.1],"paint":[215,214.5,215,215.7,214.3,214.6,216.3,217.1,214.1,215.7,216.3,217.2,214.3,214.5,214.4]}},{"b":7,"v":{"total":[33.2,33.5,34.4,33.3,33.6,34.8,34.4,34.6,33.3,34.5,33.7,34.9,34.7,34.7,34.9],"script":[7.5,7.6,7.7,7.6,7.6,8.3,8,8.1,7.6,7.7,7.6,8.2,7.8,8.1,8.1],"paint":[24.8,25,25.7,24.8,25.1,25.7,25.5,25.6,24.8,25.8,25.2,25.8,25.9,25.7,25.9]}},{"b":8,"v":{"total":[9.7,10,9.9,10.2,9.9,10.6,11.1,9.8,10.4,10,10.6,9.9,10.4,9.6,10.1],"script":[7.8,8.1,8.1,8.5,7.9,8.8,8.5,7.5,8,8.1,8.3,7.8,8.4,8.1,8.3],"paint":[0.6,1.6,1,1,1.1,1,1.6,2.1,1.8,1.2,0.9,1.8,0.9,0.6,1.3]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[4.32]}},{"b":11,"v":{"DEFAULT":[4.42]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[35.38]}},{"b":14,"v":{"DEFAULT":[39.9]}},{"b":15,"v":{"DEFAULT":[11.1]}},{"b":16,"v":{"DEFAULT":[59.6]}}]},
+{"f":140,"b":[{"b":0,"v":{"total":[27.3,28,27.9,27.9,28,27.6,27.6,28.1,27.4,28.4,27.8,27.5,28,27.3,27.3],"script":[5.9,6.3,6.2,6,6.2,6.2,6.2,6.5,5.9,6.3,5.9,6.1,6.3,5.9,5.9],"paint":[20.9,21.1,21.2,21.4,21.2,20.8,20.9,21.1,20.9,21.6,21.3,20.9,21.2,20.9,20.9]}},{"b":1,"v":{"total":[31.1,30.4,30.9,30.4,31.3,31.3,31.1,31.1,31.7,31.4,31.5,31.2,30.5,30.8,30.4],"script":[8.1,7.9,8,7.9,8.2,8.1,8,7.9,8.2,8.2,8.2,8,8.1,7.7,7.8],"paint":[22.4,21.9,22.4,22,22.5,22.6,22.5,22.6,22.9,22.7,22.7,22.6,21.8,22.5,22]}},{"b":2,"v":{"total":[13.3,13.3,12.7,13.3,13.7,12.6,13.4,14,13.6,12.9,12.5,12.3,13.3,13.2,12.5],"script":[2.9,2.2,1.8,2.6,2.7,2.1,2.5,2.4,2.9,2.1,1.8,2.2,2.3,2.2,2.1],"paint":[9.2,9.9,9.6,8.8,10.2,9.3,9.1,10.6,10,9.8,9.9,8.8,10.1,10,9.2]}},{"b":3,"v":{"total":[3.2,3.3,2.8,3,3.2,3.7,3.3,3.6,3.7,4,2.9,3.6,3.2,3.4,3.3,3.7,3.1,3.1,2.8,3.7,3.7,2.9,3.2,3.4,3.8],"script":[1,0.2,1,0.8,1,0.9,0.6,1.2,1.2,1.6,0.9,0.9,0.9,1.2,1.1,1.7,0.7,0.9,0.7,1.9,1.2,1.1,0.8,1.2,1.2],"paint":[1.3,2.9,1.2,1.3,1.3,0.6,1.7,1.5,1.4,2.2,1.1,1,1.4,2.1,2.1,1.8,1.1,0.9,2,1.7,1.6,1.2,1.3,1.1,1.8]}},{"b":4,"v":{"total":[17.1,14.7,14.7,13.8,14.3,14.9,15.4,14.4,14.6,15,15.1,14.6,14.8,14.6,13.8],"script":[1.8,1,1.7,1.2,1.6,1.5,1.6,0.7,1.5,1.9,1.7,1.6,1.6,1.5,1.2],"paint":[14.4,12.5,12,11.5,11.8,11.3,12.8,10.9,11.9,11.9,12,12.3,12.2,11.7,11.5]}},{"b":5,"v":{"total":[12.9,12.7,13.3,12.8,13.1,12.6,12.3,12.8,12.7,12.7,13,12.8,12.9,13,12.7],"script":[2.4,2.3,2.3,2.4,2.4,2.4,2,2.4,2.3,2.4,2.4,2.4,2.2,2.4,2.4],"paint":[8.9,9.4,10.1,9.7,10.2,9.6,9.7,9.5,9.6,9.7,10,9.7,9.9,9.6,9.5]}},{"b":6,"v":{"total":[287.2,287.5,287.2,287,286.9,287.1,287.9,290.3,286.9,287.4,289.1,289.5,291.6,287.7,288.2],"script":[60.9,61.3,62.7,61.4,61.8,61,61.9,62.5,61.4,60.6,63.1,62.4,62.1,61.3,62.3],"paint":[219.1,218.7,217.2,217.8,217.5,218.9,218.6,220.5,218.1,219.7,218.8,219.8,222,218.9,218.8]}},{"b":7,"v":{"total":[32.2,32.7,32,31.7,32.4,32.1,32.3,32.9,32.3,32.4,33.1,32.4,32.2,31.9,31.7],"script":[6.1,5.9,5.9,6.1,6,6.2,6,6.2,6.1,6.1,6.1,6,6.2,5.9,5.9],"paint":[25.1,25.8,25.2,24.7,25.5,25,25.4,25.8,25.3,25.4,26,25.5,25.1,25.1,24.9]}},{"b":8,"v":{"total":[11.9,12.1,12.6,11.5,12.3,12.1,12.1,11.9,12.7,14.3,13.4,11.6,12.4,11.6,12.6],"script":[9.8,9.6,10,10,10.2,10.1,10.1,9.8,10.8,11.8,10.1,9.4,10.2,9.4,9.9],"paint":[1.4,1.5,1.6,0.7,1.4,0.6,1.8,0.9,1,1.1,2.1,0.6,2,0.5,1.6]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[3.82]}},{"b":11,"v":{"DEFAULT":[3.88]}},{"b":12,"v":{"DEFAULT":[1.18]}},{"b":13,"v":{"DEFAULT":[28.67]}},{"b":14,"v":{"DEFAULT":[63.7]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[82.6]}}]},
+{"f":141,"b":[{"b":0,"v":{"total":[29.8,28.8,28.8,29.6,28.6,29.4,28.8,28.6,28.8,28.7,28.7,29.2,28.7,29.8,29],"script":[6.4,6.4,6.3,6.7,6.4,6.5,6.5,6.2,6.4,6.3,6.4,6.7,6.5,6.5,6.5],"paint":[22.8,21.9,21.9,22.3,21.7,22.3,21.8,21.9,21.9,21.9,21.8,22,21.7,22.7,21.9]}},{"b":1,"v":{"total":[31.9,32,32.3,32,32.4,32.6,31.7,32.3,33.3,32.1,31.5,32.8,33.1,32,32.3],"script":[9,9.2,9.4,9.1,9.3,9.6,9.1,9.3,9.6,9.3,9,10,9.6,9.1,9.3],"paint":[22.3,22.2,22.4,22.3,22.5,22.5,22.1,22.4,23.1,22.2,22,22.3,23,22.3,22.5]}},{"b":2,"v":{"total":[20.5,20.4,21.2,21.2,19.8,21.2,19.8,19.2,21.3,19.6,21.4,20,19.5,20.7,19.8],"script":[8.3,8.8,8.6,8.9,8.3,9.9,8,7.7,8.7,8,8.9,8.9,8,8.6,8.4],"paint":[9.7,10.2,10.8,9.9,9.4,9.4,10,9.9,10.2,10,10.8,9.7,10.1,10.1,8.7]}},{"b":3,"v":{"total":[12.2,12.2,12.5,11.9,11.4,12.4,12.9,12.4,12.2,11.7,11.9,11.6,12.4,11.7,11.6,12.2,11.7,12.4,12,12.2,12.1,12.6,11.5,12.4,12.7],"script":[7.8,8.9,9.3,8.4,8.4,9.1,9.6,9.4,8.7,8.3,8.9,8.9,9.4,8.6,8.2,8.5,8.8,8.8,8.6,9.4,8.9,9.4,8.6,8.8,9.6],"paint":[2.6,1.9,2.1,1.5,1.3,2.2,1.5,1.2,1.3,2.2,1.2,1.3,1.2,2.3,1.4,2.9,1.3,2.7,2.4,1.2,1.5,2.2,1.5,2,1.1]}},{"b":4,"v":{"total":[24.1,23,24,23.7,22.5,23.9,22.1,25.1,24.2,24.5,22.5,22.8,23.9,22.7,22.2],"script":[9.2,8.4,9,9.2,8.7,9.4,7.4,9.1,8.7,8.3,8.1,8.2,8.6,7.9,7.7],"paint":[12.8,12.8,13.6,12,11.8,12,11.8,13.2,13.7,14,12.5,12.9,13.9,13.5,13.3]}},{"b":5,"v":{"total":[15.5,15.7,15.7,15.6,15.9,15.4,15,16.3,15.5,16.1,15.6,15.8,15.2,15.6,16.2],"script":[4.5,4.9,4.9,4.8,4.9,4.8,4.5,5.1,4.8,5.2,4.8,4.9,4.7,4.9,5.2],"paint":[9.7,10.3,10,10.1,10.4,9.5,9.6,10.1,10.2,9.9,10.2,10.2,9.8,9.9,9.9]}},{"b":6,"v":{"total":[292,291.3,291.7,289.7,291,289.3,289.3,290.1,291.3,293,291.2,290.3,290.8,292.9,291],"script":[67.4,67.1,66.3,67,67.8,66.7,66.7,66.9,66.5,66.9,68.5,67,67,68.4,65.9],"paint":[217.3,217.1,218.2,215.5,216.2,215.5,215.4,216,217.6,218.4,215.3,216.2,216.7,217.2,217.7]}},{"b":7,"v":{"total":[36.5,36.1,37,37.6,36.2,36.4,36.5,36.5,36.1,37.6,37.3,36.6,36.5,36.7,37.2],"script":[9.4,9.1,9.3,9.5,9.1,9.1,9.3,9.3,9.1,9.5,9.6,9.2,9.1,9.1,9.1],"paint":[26.2,26,26.7,27.1,26.2,26.4,26.2,26.2,26.1,27.1,26.7,26.5,26.5,26.6,27.1]}},{"b":8,"v":{"total":[15.3,13.5,13.7,14.1,14.1,13.9,13.6,14.6,14,14.4,13.4,13.8,13,14.4,13.1],"script":[12.7,11.2,11.7,12.1,12.2,11.4,11.3,12.1,12.2,12.8,11.6,12,10.8,12.4,11],"paint":[2.1,1.3,0.6,0.9,0.8,1.5,2,0.9,1.2,0.5,0.5,0.3,1.2,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[4.24]}},{"b":11,"v":{"DEFAULT":[4.28]}},{"b":12,"v":{"DEFAULT":[1.22]}},{"b":13,"v":{"DEFAULT":[32.45]}},{"b":14,"v":{"DEFAULT":[62.5]}},{"b":15,"v":{"DEFAULT":[22.1]}},{"b":16,"v":{"DEFAULT":[81.1]}}]},
+{"f":142,"b":[{"b":0,"v":{"total":[24.3,24.7,24.5,24.4,24.6,24.7,24.5,24.3,24.7,24.7,24.4,24.6,24.6,24.6,24.2],"script":[3,2.9,3.1,3,3,3,3,3,2.9,3.1,3,3,3,3,2.9],"paint":[20.9,21.4,21.1,21.1,21.3,21.3,21.1,20.9,21.4,21.3,21.1,21.2,21.2,21.2,20.9]}},{"b":1,"v":{"total":[28.6,28.1,27.6,27.9,28,28.4,28.6,28.1,27.9,27.9,27.8,27.7,27.8,27.9,28.2],"script":[5.3,5.4,5.3,5.2,5.2,5.3,5.3,5.3,5.3,5.1,5.3,5.4,5.1,5.2,5.3],"paint":[22.8,22.2,21.8,22.2,22.2,22.6,22.8,22.2,22.1,22.2,21.9,21.8,22.1,22.2,22.3]}},{"b":2,"v":{"total":[11.6,10.9,10.9,11.6,13.4,11.3,10.9,11.5,11.3,11.7,11.3,11.3,10.8,11.5,11.3],"script":[1.5,0.9,1,1.1,0.9,1.2,0.9,1,1,1,1.2,1.1,1.1,1.2,1.2],"paint":[8.8,8.5,8.8,9.8,10.6,8.8,8.7,9.7,9.4,8.5,9.2,7.9,8.8,8.4,8.6]}},{"b":3,"v":{"total":[2.5,2.7,2,2.1,2.4,1.5,2.5,2.5,2.8,2.2,2.5,1.7,2.3,2.4,2.8,2.5,2.7,2,2.6,2.3,2.2,2.6,2.6,2.5,2.4],"script":[0.1,0.8,0.1,0.2,0.1,0.1,0.1,0.5,0.8,0.1,0.4,0.1,0.1,0.1,0.8,0.7,0.8,0.3,0.5,0.1,0.1,0.5,0.1,0.6,0.1],"paint":[1.8,1.8,1.1,1.1,1.4,1.3,1.6,1.5,1.9,1.3,2,0.7,1.1,2.2,1.9,1.6,1.8,1.6,1.4,1.4,1.4,1.5,2,1.7,1.5]}},{"b":4,"v":{"total":[14,12.9,13.8,13,13.4,13.4,12.6,13.4,14.2,14,14.1,13.5,13.7,13.3,13.5],"script":[1.2,0.7,1.1,0.2,0.7,1.3,0.2,0.9,1.5,0.7,1.3,0.5,0.7,0.2,1.1],"paint":[11.9,11.2,11.9,11.9,11.5,11,10.4,11.7,11.4,12.6,11.8,11.7,11.3,11.9,10.5]}},{"b":5,"v":{"total":[10.8,10.3,10.4,10.6,10.9,10.3,10.4,10.6,10.6,10.5,10.4,10.5,10.3,10.7,10.3],"script":[0.5,0.5,0.5,0.4,0.5,0.5,0.5,0.5,0.3,0.4,0.5,0.3,0.4,0.5,0.2],"paint":[9.7,9.2,8.9,9.5,9.7,9.5,9.2,9.3,9.7,9.7,9,9.2,8.7,9.5,9.5]}},{"b":6,"v":{"total":[263.7,263,263.4,262.9,263.9,263.3,263.6,263.6,264.4,264.5,263.5,263.1,263.2,262.9,262.6],"script":[35,34.7,34.4,34.2,34.8,34.3,35,34.8,34.5,34.3,33.9,34.6,34.3,34,33.9],"paint":[221.6,221,222,221.5,221.7,221.8,221.5,221.5,222.7,222.8,222.4,221.1,221.9,221.8,221.5]}},{"b":7,"v":{"total":[28,29.4,29.9,29.2,29.2,30.3,28.9,29.4,28.3,29,29.1,29.7,30,29.6,29.1],"script":[3,3.4,3.2,3.4,3.1,3.7,3.4,3.4,3,3.1,3.4,3.4,3.7,3.3,3.5],"paint":[24.2,25.3,26,25.1,25.3,25.8,24.8,25.1,24.6,25.1,24.9,25.6,25.6,25.5,24.9]}},{"b":8,"v":{"total":[9.8,9.7,10.1,9.6,9.8,9.7,9.7,9.4,9.2,9.8,11.3,10,9.4,9,9.3],"script":[8,7.4,8.3,7.7,7.8,8,7.6,7.8,7.6,7.8,8.5,8.2,7.3,6.9,7.5],"paint":[1.5,1.3,0.8,0.2,0.7,0.5,1.3,1,0.2,1.1,2.2,0.6,1.2,1.2,1.3]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.11]}},{"b":11,"v":{"DEFAULT":[3.12]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[22.25]}},{"b":14,"v":{"DEFAULT":[40.7]}},{"b":15,"v":{"DEFAULT":[14.4]}},{"b":16,"v":{"DEFAULT":[62.8]}}]},
+{"f":143,"b":[{"b":0,"v":{"total":[29.3,29.1,29,28.7,30.2,29.2,29,29.1,28.7,29.3,28.9,29,29.3,28.9,28.3],"script":[7.2,7.2,6.8,6.8,7.2,6.8,7,7.3,6.9,7,6.9,6.8,7.1,7.2,6.8],"paint":[21.5,21.4,21.7,21.3,22.5,21.8,21.5,21.2,21.3,21.7,21.5,21.7,21.6,21.2,21]}},{"b":1,"v":{"total":[32.6,31.8,31.9,31.9,31.2,31.7,31.9,32.1,31.9,31.9,31.7,31.9,31.4,31.7,32.3],"script":[9.3,9,9,9.1,9,8.9,9.3,9.1,8.9,9.2,8.7,9.1,8.8,9.2,9.2],"paint":[22.7,22.2,22.3,22.2,21.6,22.2,22.1,22.4,22.4,22.1,22.4,22.2,22,21.9,22.5]}},{"b":2,"v":{"total":[14.9,15.4,15.5,17.9,15.1,15.8,15.6,15.1,15,15.3,15.1,15.8,15.4,14.6,15.6],"script":[4.4,4.8,5,5.7,4.5,4.8,4.5,4.6,4.5,4.6,4.5,4.6,4.4,4.2,4.6],"paint":[9.6,9.5,9.2,10.1,9.7,8.6,9.7,9.5,9.3,9.3,9.2,9.6,9.2,9.2,9.7]}},{"b":3,"v":{"total":[4.6,4.2,4.7,4.7,6.2,6.9,4.8,4.9,5.2,4.5,4.8,4.5,4.5,5.8,4.2,4.4,4.6,4.6,4.3,4.3,4.7,4.5,4.5,4.8,4.2],"script":[2.1,2.1,2.2,2.2,1.9,2.2,2,2.5,2.4,2.3,1.9,1.9,2.7,3,2.3,2.2,2.7,2.7,2.1,1.6,2.4,2.1,2,2.4,1.8],"paint":[1.7,1.1,2.1,2.4,1.6,1.1,1.8,1.8,1.9,2.1,2.7,2.1,1.6,1.7,1.8,1.4,1.1,1.3,1,1.5,1.5,1.8,2.2,2.1,1.1]}},{"b":4,"v":{"total":[15.8,16.1,16.5,15.6,15.8,15.6,16.1,15.8,16.3,17.1,15.9,15.6,16.2,16.1,15.3],"script":[2.7,2.5,2.8,2.7,3,2.5,2.7,2.8,3,2.9,3,2.7,3.2,2.8,2.2],"paint":[11.8,12.6,12.5,11,11.7,11.9,12.5,12.4,12.1,13.1,11.3,11.7,11.6,11.2,11.5]}},{"b":5,"v":{"total":[15,14.7,14.7,15,14.5,14.1,14.5,14.3,14.8,14.6,15.3,14.6,14.6,14.3,14.6],"script":[4.1,4.3,4.2,4.3,3.8,3.8,4.3,4.2,4.3,4,4.4,4.2,4.2,3.8,4],"paint":[10.5,9.9,9.8,10.3,10.1,9.7,9.3,9.5,9.7,9.7,10.1,9.8,9.4,10,10]}},{"b":6,"v":{"total":[292.2,293.6,292,294,296.4,292.1,292.2,291.5,291.6,291.6,292.8,292.5,292.5,297.2,294.6],"script":[67.7,68.2,67,68.7,68.5,68.3,68.1,67.7,68.3,68.3,68.3,67.6,67.1,67.4,68.1],"paint":[217.3,218.2,217.5,218.1,220.5,216.7,216.9,216.6,216.1,216.1,217.2,217.6,218.1,220.9,219.2]}},{"b":7,"v":{"total":[33.8,33.6,34.3,34.1,34.2,33.9,34.1,35.4,34.5,33.3,34.4,34.2,34.5,34,34.6],"script":[7.6,7.6,7.5,7.5,7.9,7.7,7.8,7.7,7.9,7.6,7.7,7.6,7.7,7.9,7.8],"paint":[25.3,25,25.8,25.7,25.4,25.3,25.4,26.7,25.6,24.7,25.7,25.7,25.9,25.2,25.9]}},{"b":8,"v":{"total":[12.9,12.5,13,12.9,14.3,12.6,13.4,13.4,12.7,14.4,13.5,12.3,13.3,13.6,12.6],"script":[10.9,10.9,11.3,10.6,12.1,11.5,10.4,12,10.9,12,11.2,10.8,11.2,12,11],"paint":[1.4,1,1.1,0.9,2,0.9,1.8,1.2,1,0.5,1.2,0.7,1.8,0.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.89]}},{"b":10,"v":{"DEFAULT":[4.22]}},{"b":11,"v":{"DEFAULT":[4.3]}},{"b":12,"v":{"DEFAULT":[1.38]}},{"b":13,"v":{"DEFAULT":[31.64]}},{"b":14,"v":{"DEFAULT":[66.2]}},{"b":15,"v":{"DEFAULT":[24.1]}},{"b":16,"v":{"DEFAULT":[85.3]}}]},
+{"f":144,"b":[{"b":0,"v":{"total":[24.5,24.5,24.5,24.4,24.4,24.4,24.1,24.3,24.2,24.4,24.4,24.3,24.7,24.8,24.4],"script":[3,2.9,2.9,2.9,2.9,3,3,3,3,3,3,3,2.9,2.9,3],"paint":[21.1,21.2,21.1,21.2,21.1,21,20.8,20.9,20.8,21,21.1,20.9,21.4,21.5,21.1]}},{"b":1,"v":{"total":[27.8,27.4,28,27.2,27.8,29.3,28.9,28.3,28.3,28,28.6,27.8,28.3,27.5,28.8],"script":[5.1,5,5.4,5.1,5.1,5.4,5.3,5.2,5.5,5.5,5.5,5.5,5.6,5.2,5.3],"paint":[22.1,21.7,22.1,21.6,22,23.4,23,22.5,22.2,21.9,22.6,21.7,22.1,21.7,22.9]}},{"b":2,"v":{"total":[11.7,10.7,11.5,10.8,11.1,11.5,10.5,11.5,11.3,11,11.6,11,11.4,11.5,11],"script":[1.2,1.5,1.2,0.9,1.4,0.9,1.1,1.7,1.1,0.9,1.2,1,1.1,1.4,1.4],"paint":[9.1,7.3,8.4,8.8,8.4,9.3,8.3,8.6,8.5,8.7,9.2,9,9,9.1,8.5]}},{"b":3,"v":{"total":[2.8,2.6,2.4,2.8,2.8,2.8,2.2,2.6,2.3,2.5,2.5,2.3,2.3,2.4,2.4,2.6,2.4,2.5,2.5,2.7,2.3,2.9,2.8,2.6,2.4],"script":[1,0.1,0.7,0.8,0.1,0.6,0.4,0.7,0.1,0.1,0.6,0.1,0.1,0.5,0.7,0.1,0.1,0.9,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.1,2.4,1.5,1.3,2.6,2,1.6,1.4,1.6,0.8,0.6,2.1,1.2,1.2,1.6,2.4,1.4,1.1,1.8,1.8,1.1,2.3,2,2.3,1.2]}},{"b":4,"v":{"total":[13.2,13.7,13.3,13.4,13.2,13.4,15.8,13.1,13.2,14.3,12.9,12.8,13.6,13.7,13.5],"script":[0.2,1,0.8,0.8,1,0.6,1.2,1.1,0.6,0.8,0.6,0.7,0.9,0.7,0.9],"paint":[11.6,11.3,11.3,11.6,11.1,11.1,13.2,10.8,11.3,12.2,11.1,11.1,11.8,12,11.9]}},{"b":5,"v":{"total":[10.7,10.4,10.8,10.3,10.4,11,10.9,10.4,10.3,10.5,10.7,10.6,10.7,10.6,10.9],"script":[0.5,0.5,0.5,0.4,0.5,0.6,0.6,0.4,0.5,0.3,0.5,0.5,0.5,0.5,0.5],"paint":[9.8,9.3,9.7,9.5,9.5,9.4,9.7,9.6,9.5,9.1,9.4,9.5,9.7,9.6,9.8]}},{"b":6,"v":{"total":[262,261.6,260.1,262,259.5,261.6,263.2,262.4,260.8,262.1,261.5,260.3,262,264.2,260.4],"script":[34,33.9,33.5,33.6,33.4,34.3,33.7,34,34.1,33.4,33.7,33.9,34.1,34.1,34],"paint":[220.9,220.6,219.4,221.3,218.8,219.9,221.7,221.2,219.5,221.2,220.6,219.4,220.7,223,219.3]}},{"b":7,"v":{"total":[28.7,28.3,28.8,29.1,30.8,29,28.3,28.6,28.8,29.1,28.7,29.5,28.4,28,29],"script":[3.2,3,3.2,3.1,3.3,3.1,3,3,3.1,3.3,2.9,3.1,3,3,3.1],"paint":[24.7,24.6,24.8,25.2,26.7,25,24.6,24.8,24.9,25,25,25.6,24.6,24.2,25.2]}},{"b":8,"v":{"total":[9,9.9,8.9,9.1,8.6,9.2,10,8.9,8.7,9.2,9.7,9.5,9.4,10,8.6],"script":[7.4,7.8,6.8,7.3,6.9,7.7,7.7,7.3,6.9,7.9,7.6,7.9,6.7,8.4,7.5],"paint":[0.6,0.3,1.2,1,1,0.6,2.2,1.1,0.3,0.2,0.4,0.7,1.5,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[0.71]}},{"b":10,"v":{"DEFAULT":[3.03]}},{"b":11,"v":{"DEFAULT":[3.06]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[21.6]}},{"b":14,"v":{"DEFAULT":[40.6]}},{"b":15,"v":{"DEFAULT":[14.3]}},{"b":16,"v":{"DEFAULT":[65]}}]},
+{"f":145,"b":[{"b":0,"v":{"total":[25,25.6,25.1,24.9,24.8,25.2,25.1,24.6,26,25,25.2,24.9,25.2,25.1,24.8],"script":[3.2,3.9,3.6,3.6,3.5,3.7,3.6,3.1,3.7,3.6,3.6,3.5,3.6,3.6,3.2],"paint":[21.3,21.3,21.1,21,20.9,21.2,21.1,21.2,21.9,21,21.2,20.9,21.2,21.1,21.3]}},{"b":1,"v":{"total":[28.7,28.8,28.8,29.9,29.4,29.1,29.4,29.1,28.7,29.1,28.8,28.8,29.1,28.7,29.2],"script":[6.2,6.2,6,6.3,6.3,6.2,6.5,6.3,6.3,6.2,6.4,6.3,6.4,6.2,6.5],"paint":[22,22,22.3,23.1,22.5,22.3,22.3,22.2,21.8,22.3,21.9,21.9,22.1,22,22.2]}},{"b":2,"v":{"total":[11.5,14.4,11.2,11.3,11.8,11.8,11.5,12.2,11.3,11.5,11,12.3,14,11.7,11.6],"script":[1.4,1.8,1.1,1.4,2,1.8,1,1.3,1.6,1.4,1.1,1.5,1.8,1.1,1.4],"paint":[9,11.1,8.8,9.1,8.9,8.8,8.3,9.3,8.5,8.6,8.7,9.5,10.6,9.5,9]}},{"b":3,"v":{"total":[2.6,3.2,2.1,2.4,3.1,2.7,2.6,2.7,2.8,2.9,2.2,2.4,2.4,2.7,2.4,2.5,2.6,2.3,2.1,2.2,2.1,2.9,2.2,2.9,2.5],"script":[0.4,1,0.2,0.1,1,0.5,0.1,0.1,0.1,0.9,0.1,0.5,0.9,1.1,0.4,0.9,0.5,0.4,0.4,0.4,0.6,0.1,0.1,0.8,0.1],"paint":[2.1,2.1,1.1,1.3,2,0.7,1.6,1.8,2.6,1.8,2,1.8,1,0.9,1.2,1.2,0.8,1.8,1.6,1.6,1,2.7,1.3,1.6,1.7]}},{"b":4,"v":{"total":[15.8,15.6,16.1,16.7,17.2,15.7,17.4,16.2,16.5,16.4,17,16.1,16.4,15.9,16.2],"script":[3,2.7,3.3,3.3,3.1,2.7,3,2.9,3.3,2.6,3.6,3.3,3,3.1,3.3],"paint":[11.5,11.7,11.9,12.1,12.8,12.1,13.2,12.1,12.3,12.9,12.5,12,12,11.5,11.5]}},{"b":5,"v":{"total":[11.6,11.1,11.6,11.5,11.5,11.7,11.6,12,11.4,11.9,11.5,11.5,11.5,11.4,11.6],"script":[1.3,1.3,1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.4],"paint":[9.5,8.9,9.5,9.6,9.7,9.7,9.6,9.7,9.5,10,9.8,9.4,9.6,9.7,9.7]}},{"b":6,"v":{"total":[261.7,263.3,261.9,263.3,264.3,263,265.1,260.9,262.4,262.2,262.7,262.9,263,262.4,263.5],"script":[34.6,34.5,35,35.9,34.6,34.5,34.5,34.7,34.5,35.2,34.8,34.3,35.8,34,34.8],"paint":[220,221.2,219.9,220.2,222.5,221.4,222.9,219.1,220.7,219.9,220.5,221,220.1,221.3,221.6]}},{"b":7,"v":{"total":[30.3,30.5,30.5,30.9,31.2,29.5,30.2,30.5,30.3,30.6,30.1,29.5,30.3,29.6,29.3],"script":[4.4,4.4,4.6,4.5,4.5,4.3,4.5,4.5,4.4,4.5,4.4,4.3,4.5,4.2,4.2],"paint":[25.1,25.3,25.1,25.6,25.9,24.4,24.9,25.3,25.1,25.3,24.9,24.4,25.1,24.6,24.3]}},{"b":8,"v":{"total":[10.3,10.3,10.6,10,10.6,9.8,12.1,10.2,10.1,11,10.7,10.3,10.2,10.8,10],"script":[8.5,8.3,8.2,8.5,8.3,8.4,9.9,8.1,8.7,8.8,8.8,8.4,7.9,9,8.4],"paint":[1.1,0.7,1.8,0.3,1.9,0.3,1.1,1.1,0.7,1.1,1.6,0.6,0.9,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.08]}},{"b":11,"v":{"DEFAULT":[3.14]}},{"b":12,"v":{"DEFAULT":[0.98]}},{"b":13,"v":{"DEFAULT":[23.32]}},{"b":14,"v":{"DEFAULT":[21.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[48.4]}}]},
+{"f":146,"b":[{"b":0,"v":{"total":[25.4,25.8,26.1,25.2,25.5,25.6,25.2,25.7,25.5,25.6,25.1,25,25.2,25.3,25.5],"script":[2.9,3,3.3,2.9,3.1,2.9,3,3.2,2.9,3.1,2.8,2.9,2.9,3,3],"paint":[22.1,22.5,22.5,21.9,22,22.4,21.8,22.1,22.2,22.1,21.9,21.8,21.9,21.9,22.1]}},{"b":1,"v":{"total":[28.4,27.7,29.7,27.6,28,27.9,28.3,28.1,28.1,27.9,27.7,27.5,27.9,27.8,27.8],"script":[4.9,4.8,4.8,4.8,4.9,4.9,5.2,4.9,4.9,4.9,4.8,4.8,4.9,4.9,4.9],"paint":[23,22.5,24.4,22.4,22.7,22.6,22.5,22.7,22.9,22.7,22.4,22.4,22.6,22.5,22.5]}},{"b":2,"v":{"total":[12.6,11.8,12.4,12.3,12.3,11.4,12.7,11.7,11.9,12.2,12.4,11.7,12.5,13.2,12.4],"script":[2.3,1.3,2.1,2.1,1.9,1,1.6,1,2.1,2.3,1.8,2,1.9,2.3,2.5],"paint":[8.1,9.3,9.7,9.3,8,9.4,10.1,9.2,8.8,8.1,10.4,8.8,9,10,8.3]}},{"b":3,"v":{"total":[3.3,2.8,3,2.9,3,3.2,2.9,3.4,3.7,3.3,3.1,3.1,2.9,4,3.3,3.4,3,2.7,3.3,3.9,3.3,3.2,3.3,3,3.3],"script":[0.9,1,1.3,0.9,0.8,0.6,0.6,0.9,0.9,1.1,1.3,1.7,1,1.2,1.3,0.9,0.9,1,1.2,1.2,1.1,0.7,0.9,0.3,1.4],"paint":[1.6,1.7,1.5,1.3,1.2,2,0.8,2,1.7,1.1,1.1,1.3,1.3,1.6,1.6,1.5,2,1.5,1.1,2.6,1.4,2.4,1.4,2.4,1.7]}},{"b":4,"v":{"total":[13.6,13.9,12.8,13.8,13.5,13.7,13.6,13.2,13.4,13.2,13.1,13.4,13.9,13.6,13.5],"script":[0.6,1.6,0.7,0.6,1,1,1.4,0.6,0.3,1,0.9,1.2,0.8,0.7,0.3],"paint":[11.5,10.5,11,12.1,11.4,12,11,11.1,12.2,11.3,10.6,10.8,12.1,12.3,11.9]}},{"b":5,"v":{"total":[10.8,10.7,10.7,10.7,10.9,10.7,10.9,10.7,10.6,11.3,10.7,10.8,10.8,11,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.6,9.4,9.6,9.7,9.5,9.7,9.4,9.3,10.1,9.3,9.2,9.8,9.9,9.6]}},{"b":6,"v":{"total":[259.2,257.7,260.6,261.9,258.8,257.8,256.7,257.2,258.9,259.9,260.6,259.7,259.9,263.4,260],"script":[27.5,27.1,27.2,27.4,26.5,26.5,26.8,26.7,27.4,26.8,27.7,27,27.2,27.3,26.9],"paint":[224.5,223.6,225.8,227.4,224.4,224.2,223.1,223.5,224.4,226,225.8,225.6,225.6,228.5,225.9]}},{"b":7,"v":{"total":[30.1,29.9,30.2,30,30.6,29.6,30.1,30,30.3,29.9,30,31.3,30.1,30.3,30.1],"script":[3,3,3,3,3.1,3,3,3,3,3,3.1,3.2,3.1,3,3],"paint":[26.3,26.1,26.4,26.2,26.6,25.8,26.3,26.2,26.5,26.2,26.2,27.3,26.2,26.5,26.3]}},{"b":8,"v":{"total":[11.2,10.4,11.6,9.8,10.7,9,10.6,9.5,9.9,11.1,10.5,10.1,9.9,11,10.1],"script":[9.2,8.4,9.5,8.3,8.3,6.8,8.4,7.7,8.5,9,8.5,8.7,8,9,8.4],"paint":[1.2,1,0.7,0.2,1.7,1,2,0.7,1.2,1.9,0.6,0.3,1,1.1,0.7]}},{"b":9,"v":{"DEFAULT":[1.72]}},{"b":10,"v":{"DEFAULT":[2.95]}},{"b":11,"v":{"DEFAULT":[2.97]}},{"b":12,"v":{"DEFAULT":[1.83]}},{"b":13,"v":{"DEFAULT":[13.92]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[63.4]}}]},
+{"f":147,"b":[{"b":0,"v":{"total":[36.8,36.9,36.6,36.9,37.1,36.8,36.9,36.8,37,36.9,37,37.4,36.7,36.9,36.9],"script":[14.5,14.2,14.5,14.6,14.6,14.4,14.5,14.4,14.6,14.6,14.4,14.8,14.4,14.5,14.3],"paint":[21.7,22.1,21.6,21.7,21.9,21.8,21.8,21.9,21.8,21.7,22,22,21.8,21.8,21.9]}},{"b":1,"v":{"total":[41.9,41.4,41,41.7,41.6,42.2,41.9,41.3,41.3,41.7,41.7,41.3,41.9,41.6,42.2],"script":[19.7,19.3,19.1,19.3,19.3,19.8,19.9,19.6,19.5,19.8,19.9,19.6,19.5,19.7,19.7],"paint":[21.5,21.5,21.3,21.8,21.7,21.8,21.4,21.2,21.2,21.3,21.2,21.2,21.7,21.4,21.9]}},{"b":2,"v":{"total":[19.2,20.2,18.7,19.7,21,19,19.3,19.1,18.8,18.4,18.7,18.9,19.6,19.4,19.9],"script":[7.7,8.3,7.5,7.8,8.4,7.3,8.1,7.8,8,8.1,7.7,7.9,8.6,7.9,7.3],"paint":[9.8,9.3,9.4,10.6,11.5,10.6,9.6,9.7,8.7,9,9.9,9.7,8.9,10.2,10.8]}},{"b":3,"v":{"total":[8.9,8.6,8.8,9.2,8.3,8.2,8.6,8.5,7.8,8.8,9.3,9.8,7.8,8.6,8.5,7.9,8,8,9.9,7.6,8.7,9.2,7.6,8.7,8.5],"script":[6.1,5.6,5.8,5.8,5.7,5.6,6,5.8,6.1,6,5.7,6.5,5.7,5.6,5.9,5.6,5.7,5.9,6.4,5.8,6.1,6.2,5.9,5.1,5.8],"paint":[1.9,0.9,1.6,2.6,0.8,0.8,1.4,1.6,1.6,0.9,2.1,1.5,1.5,2,1.4,1.8,1.5,1.8,3.2,1.2,2.1,1.5,1.6,2.6,1.2]}},{"b":4,"v":{"total":[20.7,20,19.5,19.6,19.3,20.6,19.6,19.2,19.8,19.8,20,21.2,21,20,19.8],"script":[5.2,5.6,5.6,5.4,4.8,5.9,5.1,5.6,6,5.8,5.3,5.8,5.8,5.9,5.8],"paint":[14.4,13.6,12,12.2,13,12.5,13,12.6,11.6,12.5,12.7,13.9,13.3,12.9,13]}},{"b":5,"v":{"total":[13.4,13.4,14.3,13.3,13.9,13.3,13.1,13.3,13.1,13.4,13.2,13.4,13.3,13.3,14.1],"script":[3,3,3.7,3,3,3,3,3,2.8,3,3,3,3,3,3],"paint":[9.6,9.6,10,9.8,10.1,9.7,9.8,9.4,9.2,9.8,9.6,9.5,9.4,9.5,10.4]}},{"b":6,"v":{"total":[443,444.5,437.7,442.4,436.8,445.2,450.6,454.5,440.1,446,438.1,445.6,442.8,437.4,439.9],"script":[192.3,193.5,187.4,194.2,188.7,194.8,200.9,202,192,196.5,187,196.6,189.3,189.6,190.4],"paint":[242.9,243,242.6,240.2,240.2,242,241.9,244.5,240.5,241.4,243.2,241.1,245.7,240.1,241.5]}},{"b":7,"v":{"total":[42.2,42.5,42.3,42.3,42.6,42.7,42.3,42.2,42.3,43,42,42.8,42.1,41.8,42.2],"script":[14.5,14.9,14.6,15,14.6,14.9,14.6,14.8,14.7,15,14.4,14.8,14.7,14.7,14.8],"paint":[26.7,26.7,26.6,26.4,27,27,26.9,26.5,26.6,27,26.7,27,26.7,26.4,26.5]}},{"b":8,"v":{"total":[20.5,21.4,21,21.5,19.9,21,23.2,20,20.4,20.7,20.4,20.1,20.6,21.1,20.3],"script":[18.8,19.1,18.6,19.3,18.3,19.6,21.4,18.4,18.5,19.2,18.4,18.5,19.1,20,18.3],"paint":[1.1,1,1.6,0.8,0.8,0.3,1,0.3,1.7,0.7,1.2,1.6,1.4,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[6.43]}},{"b":11,"v":{"DEFAULT":[6.59]}},{"b":12,"v":{"DEFAULT":[4.95]}},{"b":13,"v":{"DEFAULT":[47.09]}},{"b":14,"v":{"DEFAULT":[207.4]}},{"b":15,"v":{"DEFAULT":[58.5]}},{"b":16,"v":{"DEFAULT":[255.9]}}]},
+{"f":148,"b":[{"b":0,"v":{"total":[36.9,36.4,36.7,36.9,36.9,36.6,37,37,37.2,37.2,36.9,36.9,36.6,36.5,36.7],"script":[14.4,14.2,14.4,14.3,14.5,14.2,14.6,14.7,14.6,14.8,14.3,14.6,14.4,14.3,14.6],"paint":[21.9,21.8,21.9,22,21.8,21.9,21.9,21.7,22.1,21.8,22,21.8,21.6,21.8,21.6]}},{"b":1,"v":{"total":[41.7,41.9,41.7,42.7,41.4,41.8,42,42.1,41.5,41.6,41.3,41.8,41.3,42.1,41.9],"script":[19.8,19.9,19.4,19.9,19.6,19.7,19.8,19.6,19.5,19.7,19.7,19.7,19.3,19.8,19.7],"paint":[21.3,21.4,21.7,22,21.3,21.5,21.7,21.9,21.4,21.5,21,21.6,21.5,21.7,21.7]}},{"b":2,"v":{"total":[23.6,23.5,24,23.9,24.4,22.5,23.3,26.8,22.5,25.7,22.8,22.4,23.6,23,23.5],"script":[12.3,12.5,11.6,11.6,12.1,11.6,12,12.7,11.9,11.9,11.9,11.4,11.7,11.8,12.2],"paint":[9.3,8.9,9.8,10.2,10.8,9.7,9.7,11.9,9,12.3,9.5,9.6,10.2,10.8,9.8]}},{"b":3,"v":{"total":[14.6,15.2,14.1,13.3,13.7,14,13.6,14.7,14.5,13.4,14.1,12.9,14.5,14.7,14.1,13.9,13.4,14.3,14.4,14,13.8,14.2,13.7,15.6,13.7],"script":[11.1,12.1,11,11.1,11.1,11.8,10.9,11.2,11.5,11.1,11.3,11,11.3,11.5,11.2,11.2,10.9,11.2,12,11.2,11.6,11.8,10.7,13,11.5],"paint":[2,1.5,0.8,1.3,1.6,1.4,2.5,1.9,2.4,1.3,2.4,1.7,2.9,1.7,1.3,1.8,1.6,2,1.4,0.6,1.1,2.2,2.3,1.6,1.4]}},{"b":4,"v":{"total":[26.4,26.9,27,25.7,26.2,26.8,26,26.3,26.1,25.6,27,26.4,27.1,25.4,26],"script":[11.5,11.8,12.1,11.9,11.8,11,11.4,11.3,11.8,11.4,11.5,11.2,11.8,11.1,10.7],"paint":[12.8,13.4,12.9,12.4,12.4,14.7,12,13.8,13.7,12.3,13.5,12.5,14.3,13.7,13.9]}},{"b":5,"v":{"total":[16.5,16.3,16.3,17.1,16.7,16.4,16.6,16,16,16.5,16.5,17,16.5,16.2,16.5],"script":[5.9,5.6,5.9,6,5.7,6,5.8,5.6,5.6,5.7,6,5.8,6,5.8,5.8],"paint":[9.4,9.9,9,10.4,9.9,9.3,9.9,9.7,9.6,9.7,9.4,10,9.6,9.8,9.5]}},{"b":6,"v":{"total":[439.7,444.7,441.3,442.8,449.1,437.8,445.9,445.6,444.8,443.6,448.1,445.6,443.6,453.1,442.2],"script":[190.5,194.8,190.8,192.9,197,187.9,195.8,193.8,193.7,194.2,198.2,196.3,191.7,198,192.4],"paint":[241.3,242.2,242.7,242.1,244.3,241.9,242.3,243.5,243.3,241.3,242.3,241.5,244.2,246.4,242]}},{"b":7,"v":{"total":[43.8,44.4,43.6,44.3,44.1,43.5,44.2,44.1,44.4,44.2,43.7,43.5,45,43.4,43.8],"script":[16.3,16.4,16.3,16.4,16.2,16.1,16.5,16.2,16.6,16.1,16.3,16,16.2,16,16.2],"paint":[26.5,27,26.4,27,26.9,26.6,26.9,26.9,26.8,27.2,26.5,26.6,27.8,26.4,26.8]}},{"b":8,"v":{"total":[21.2,21.5,23.6,21.3,20.3,20.2,20.2,21.4,21.5,21.6,21,20.7,21.6,21.1,22],"script":[19.3,19.6,21.5,18.8,19,18.8,18.8,19.7,19.7,19,19.9,19.3,19.5,19.4,20.4],"paint":[1.1,0.3,1.1,0.3,0.3,0.3,0.3,0.4,0.3,1.6,1,1.3,0.7,1.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[6.56]}},{"b":11,"v":{"DEFAULT":[6.83]}},{"b":12,"v":{"DEFAULT":[5.13]}},{"b":13,"v":{"DEFAULT":[48.33]}},{"b":14,"v":{"DEFAULT":[211.9]}},{"b":15,"v":{"DEFAULT":[59.2]}},{"b":16,"v":{"DEFAULT":[262.2]}}]},
+{"f":149,"b":[{"b":0,"v":{"total":[26.2,26.3,26.2,25.7,26,26.1,26.3,26.5,26.2,26.8,26.2,26.5,26.5,26.1,25.9],"script":[4,3.9,4,3.9,3.9,3.9,3.9,4.1,4,4.3,3.8,3.9,3.9,3.9,3.9],"paint":[21.8,22,21.9,21.4,21.7,21.7,22,22,21.8,22.2,22,22.2,22.2,21.8,21.6]}},{"b":1,"v":{"total":[30.3,30.2,30.4,29.7,29.9,30.2,30.8,30.5,31,30.1,29.8,30,29.6,30.3,30.2],"script":[6.5,6.5,6.7,6.4,6.5,6.6,7,6.6,6.9,6.6,6.5,6.6,6.4,6.4,6.6],"paint":[23.2,23.2,23.1,22.8,22.9,23,23.2,23.3,23.4,22.9,22.7,22.8,22.6,23.3,23]}},{"b":2,"v":{"total":[12.9,13.3,11.8,12.4,12.4,12.4,14.2,12.9,12.4,12.5,13.8,12.7,13.4,16,12.8],"script":[1.1,1,0.6,0.9,1.3,1.2,1.3,0.7,1.7,1.4,1.3,1,0.9,1,1.3],"paint":[10.5,11.1,10.2,9.8,10.1,9.9,10.5,11.1,9.9,10.1,11,10.7,11.2,13.6,10.1]}},{"b":3,"v":{"total":[2.4,2.5,2.7,2.1,2.6,2.4,2.5,2.3,2.2,3.3,2.1,2.4,2.1,2.1,3.1,2.4,2.2,2.4,2.5,2.7,1.9,2.5,2.8,2.7,2.2],"script":[0.8,0.4,0.1,0.1,0.1,0.5,0.5,0.1,0.7,0.6,0.1,0.9,0.1,0.3,1,0.9,0.6,0.9,0.9,0.8,0.1,0.6,0.1,0.1,0.1],"paint":[1.1,2,1.7,1.9,1.7,1.1,1.9,1.7,1.4,1.2,1.9,1,1.9,1.5,1.7,1,1.1,1.1,1.4,1.8,1.1,1.8,2.6,2.2,1.2]}},{"b":4,"v":{"total":[15.4,14.1,14,14.9,15.9,14.5,14.6,15.2,15.9,16.4,16.6,15.9,15.1,14,14.8],"script":[0.9,1.3,1,0.7,1,1.5,1,1.7,1,1.2,1.4,1.4,1.4,1.1,1.3],"paint":[13.5,11.5,11.4,13.1,13,12.3,12.1,12.5,13.5,13.9,14.4,12.9,12.3,12,11.3]}},{"b":5,"v":{"total":[11.6,11.5,11.4,12,11.5,11.4,11.5,11.3,12,11.4,11.2,11.3,11.5,11.1,11.2],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.4],"paint":[10.1,10.1,10.1,11,9.9,10.4,10.2,9.7,10.3,10.3,10.2,10.4,10.4,9.7,9.7]}},{"b":6,"v":{"total":[281.2,283.5,282.1,283.1,281.4,281.2,278.7,281.2,278.6,281.4,279.5,281.6,280.9,281.2,282],"script":[48.5,49,48.9,49.5,48.6,48.2,48.9,47.8,48.5,48.8,48.8,48.4,48.6,47.9,48.1],"paint":[225,227.1,225.2,225.9,225.1,225,222.7,225.5,222.6,225.1,223.2,225.6,224.3,225.2,226.2]}},{"b":7,"v":{"total":[31.7,31.7,32.2,30,29.9,31.6,30.9,31.7,31.9,30.6,30.6,31.1,30.9,32.2,31],"script":[4.4,4.2,4.2,4.1,3.8,4.1,4,4.3,4.2,4.3,4,4,4.4,4.3,4.2],"paint":[26.4,26.7,27.2,25.2,25.4,26.6,26.2,26.6,26.9,25.6,25.8,26.3,25.8,27.1,26]}},{"b":8,"v":{"total":[11.5,12.1,12.7,12.6,13.1,11.7,12.2,13.2,11.9,12,13.2,13.1,14.2,12.3,11.3],"script":[9.9,9.2,10.3,10.4,11,9.8,10.1,11.6,10.1,9.8,11.2,11.2,11.9,10.5,9.7],"paint":[0.5,1.2,1.4,1.3,0.8,1.6,0.5,0.3,0.7,2,1.8,1.3,1.4,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.06]}},{"b":11,"v":{"DEFAULT":[3.08]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[24.1]}},{"b":14,"v":{"DEFAULT":[11.1]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[39.1]}}]},
+{"f":150,"b":[{"b":0,"v":{"total":[30.9,30.5,31.4,30.7,31,30.6,30.7,31,30.4,30.4,30.6,30.8,30.6,30.4,30.8],"script":[6.9,6.9,7.1,6.9,7,6.9,7,6.9,6.8,6.8,6.9,6.9,6.9,6.9,7],"paint":[23.4,23.2,23.7,23.2,23.4,23.2,23.2,23.5,23,23.1,23,23.3,23.2,22.9,23.2]}},{"b":1,"v":{"total":[33.8,33.9,34,33.5,33.8,33.9,33.9,33.5,35,34.1,33.6,33.9,34.1,34.1,33.8],"script":[9.2,9.4,9.1,9.2,9.4,9.1,9.4,9.2,9.5,9.3,9.3,9.2,9.3,9.4,9.3],"paint":[24.1,23.9,24.3,23.7,23.9,24.2,23.9,23.7,24.9,24.2,23.7,24.1,24.2,24.1,23.9]}},{"b":2,"v":{"total":[25.5,25.3,25.6,25.5,25.6,26.3,26.1,28,25.5,26.4,25.5,26.1,25.7,24.7,26],"script":[14.2,13.9,14.2,14.3,13.3,14.1,14.2,14.2,14,14.7,14,14,13.8,13.8,13.6],"paint":[9.4,10,9.3,9.2,10.8,9.6,10,12,9.4,9,9.2,10.3,10.2,9.8,11]}},{"b":3,"v":{"total":[4.6,3.8,4.2,4,4.2,4.2,4,4.3,3.9,4,3.6,4.3,4.3,4,4.1,4.1,3.7,3.6,3.5,3.4,3.6,4.3,3.3,4.2,4.5],"script":[2.5,1.7,2.4,1.7,1.8,2.3,1.8,2,1.8,1.8,1.7,2,2.1,1.9,1.8,2.1,1.4,1.5,2,1.3,1.5,1.7,1.6,1.9,1.8],"paint":[1.7,2,1.8,1.7,2.3,1.1,1.5,1.6,1.5,2,1.3,1.6,2.1,1.9,2.2,1.9,1.4,1.3,1,2,1.1,1.7,1.5,2.2,1.7]}},{"b":4,"v":{"total":[15.7,14.7,14.6,14.1,15.8,15.3,14.8,15,15,14.8,14.5,14.9,15.7,15.7,14.7],"script":[1.4,1.1,2,1.8,1.8,2,1.7,2,1.9,1.6,1.3,2.4,2,1.7,1.9],"paint":[13,12.9,11.1,11.2,12,12.4,12.2,11.8,11.9,11.8,12.2,11.3,12.6,12.6,11.2]}},{"b":5,"v":{"total":[14.4,14.1,14.1,15.2,13.8,14.1,15.3,14.6,14.1,13.7,14,13.8,14,13.7,13.9],"script":[3.5,3.2,3.3,3.4,3.2,3.5,3.6,3.6,3.4,3.3,3.5,3.4,3.3,3.4,3.1],"paint":[10.3,10,10.2,10.8,10.3,9.6,11,10,10.1,9.8,9.4,9.8,10.2,9.8,10.2]}},{"b":6,"v":{"total":[316.3,314,312.7,314.9,314,311.9,313.6,315.2,315,311.9,311.8,314.2,349.4,312.1,317.7],"script":[73.8,74,72.7,74.2,73.6,72.5,73.9,74.2,73.6,72.9,72.9,73.5,79.1,72.8,73.9],"paint":[234.4,232.4,232.3,232.4,232.6,231.8,232.2,232.9,233.6,231.3,231.3,233.1,260.5,231.6,236.3]}},{"b":7,"v":{"total":[35.7,36,36.2,36.5,36,36.1,35.8,35.9,36.4,35.9,36.5,36.2,35.8,36,36.2],"script":[7.4,7.6,7.5,7.8,7.5,7.6,7.5,7.5,7.8,7.5,7.7,7.6,7.4,7.6,7.5],"paint":[27.3,27.4,27.7,27.6,27.5,27.5,27.4,27.4,27.6,27.3,27.8,27.6,27.4,27.4,27.7]}},{"b":8,"v":{"total":[11.6,12.2,12.3,11.2,11.9,11.8,11.3,11.6,11.9,12.3,12.5,11.5,11.9,11.4,11.8],"script":[9.7,9.8,10.3,9,9.8,9.9,9.2,10,9.9,9.5,10.9,9.6,10,9.8,9.7],"paint":[0.5,1.7,1.8,2,0.6,1.7,1.2,0.3,1.8,1.7,0.3,1.2,1.7,0.8,1.9]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[2.62]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[18.29]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[40.8]}}]},
+{"f":151,"b":[]},
+{"f":152,"b":[]},
+{"f":153,"b":[]},
+{"f":154,"b":[]},
+{"f":155,"b":[]},
+{"f":156,"b":[]},
+{"f":157,"b":[]},
+{"f":158,"b":[]},
+{"f":159,"b":[]},
+{"f":160,"b":[]},
+{"f":161,"b":[]},
+{"f":162,"b":[]},
+{"f":163,"b":[]},
+{"f":164,"b":[]},
+{"f":165,"b":[]},
+{"f":166,"b":[]},
+{"f":167,"b":[]},
+{"f":168,"b":[]},
+{"f":169,"b":[]},
+{"f":170,"b":[]},
+{"f":171,"b":[]},
+{"f":172,"b":[]},
+{"f":173,"b":[]},
+{"f":174,"b":[]},
+{"f":175,"b":[]},
+{"f":176,"b":[]},
+{"f":177,"b":[]},
+{"f":178,"b":[]},
+{"f":179,"b":[]},
+{"f":180,"b":[]},
+{"f":181,"b":[]},
+{"f":182,"b":[]},
+{"f":183,"b":[]},
+{"f":184,"b":[]},
+{"f":185,"b":[]},
+{"f":186,"b":[]},
+{"f":187,"b":[]},
+{"f":188,"b":[]},
+{"f":189,"b":[]},
+{"f":190,"b":[]},
+{"f":191,"b":[]},
+{"f":192,"b":[]},
+{"f":193,"b":[]},
+{"f":194,"b":[]},
+{"f":195,"b":[]},
+{"f":196,"b":[]},
+{"f":197,"b":[]},
+{"f":198,"b":[]},
+{"f":199,"b":[]},
+{"f":200,"b":[]},
+{"f":201,"b":[]},
+{"f":202,"b":[{"b":0,"v":{"total":[44.7,45.7,45.1,45.4,45.1,46,44.8,44.5,45.3,45.1,44.5,45.6,45,45,45.2],"script":[20.5,21.1,20.6,20.9,21,21.6,20.6,20.2,20.9,20.9,20.5,21.1,20.8,21,21.1],"paint":[23.6,24.1,24,24,23.7,23.9,23.7,23.8,23.9,23.7,23.5,24,23.7,23.6,23.6]}},{"b":1,"v":{"total":[17.7,20.2,18.1,17.1,17.4,17.8,17.8,17.5,17.8,18.4,20.1,18.3,18.1,18.2,17.6],"script":[6.2,6.5,6,5.9,5.8,5.9,5.9,5.9,6,6.2,6.8,6.1,6.1,6.2,5.9],"paint":[11,12.9,11.3,10.7,11.1,11.4,11.3,11.1,11.3,11.6,12.6,11.5,11.4,11.4,11.1]}},{"b":2,"v":{"total":[15,16.5,15.7,15.2,16.4,15.9,16,15.8,16.3,15.1,16.2,15.4,16.5,16.3,15.7],"script":[1.6,2.4,2.6,2.1,1.9,1.8,1.8,1.8,2.2,1.8,2.1,1.5,1.7,1.8,2.1],"paint":[11,12.1,12,12.3,13.1,12.4,13.1,12,11.8,12,12.6,11.4,13,12.7,12.5]}},{"b":3,"v":{"total":[9.7,9.7,9.4,9,10.2,9.7,10.8,9.8,11.1,9.2,9.5,10.5,10.6,9.7,10,9.5,9.9,12.3,10.3,9.3,9.8,10.1,9.2,10,9.6],"script":[6,6.7,6.8,6.4,7,5.9,7.7,6.4,8,6.1,7,7.3,7.6,6.8,6.7,6.9,6.7,8.2,7,6.1,6.9,7,5.9,6.9,6.4],"paint":[1.1,2.5,1.6,1.7,2.2,1.9,2.1,2.2,1.8,1.9,1.5,2.2,2.3,2.3,2.3,1,2.6,2.7,2.4,2.2,1.8,2.3,3,1.9,1.2]}},{"b":4,"v":{"total":[13,13.1,13,13.5,12.5,17.8,13.4,14.1,12.2,13.1,13.2,13.1,13.3,12.8,13.2],"script":[2.3,1.9,2.2,2.1,2.4,3,1.7,3,2.1,2.2,2.2,2.3,2.3,2,1.6],"paint":[9.4,10.1,8.5,9.2,9,11.7,9.2,8.9,8.7,9.3,9.4,8.5,8.8,9.2,9.5]}},{"b":5,"v":{"total":[26.1,25.8,26.1,26,26.4,25.2,25.8,25.9,26.1,25.5,26.2,26.1,25.5,26.3,25.3],"script":[8,8,8,7.9,8.2,7.5,7.9,7.9,8.1,7.8,8.3,7.9,7.9,8.1,7.7],"paint":[16.8,16.6,17.1,16.9,17.2,16.4,16.7,17.1,16.9,16.7,16.7,17.3,16.9,17.3,16.7]}},{"b":6,"v":{"total":[443.6,442,445.4,441.4,440.4,441,441.9,443.8,445.8,440.1,443.9,442.8,441.7,443.3,445.3],"script":[188.8,187.1,190.1,187.9,186.7,187.9,188.8,188.4,190.6,186.8,188.9,187.7,187.5,188.1,189.4],"paint":[245,245.1,245.5,243.8,244,243.4,243.6,245.6,245.5,243.8,245.4,245.5,244.3,245.4,246]}},{"b":7,"v":{"total":[51.9,51.4,50.9,51.6,51.2,51,50.9,52,50.8,50.9,50.9,50.7,51.7,50.8,50.7],"script":[21,21.1,20.9,21,21.2,21,20.8,21,21.1,21,20.9,20.7,20.9,20.7,20.8],"paint":[29.6,29.1,28.8,29.4,28.9,28.9,29,29.9,28.6,28.9,28.9,28.8,29.5,29,28.8]}},{"b":8,"v":{"total":[22.1,22.1,22.7,22,21.6,24.5,22.3,22.6,22.5,24,22.9,22.7,22.9,22,22.2],"script":[20.1,20.9,20.8,21,20.6,22.3,20.5,20.7,20.4,21.7,21.5,20.5,21.6,20.5,20.5],"paint":[1.1,0.3,1.8,0.9,0.3,1.7,1,1.2,2,1.7,0.9,2.1,0.3,1.4,0.9]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[8.44]}},{"b":11,"v":{"DEFAULT":[8.46]}},{"b":12,"v":{"DEFAULT":[1.26]}},{"b":13,"v":{"DEFAULT":[76.75]}},{"b":14,"v":{"DEFAULT":[14.4]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[41.9]}}]},
+{"f":203,"b":[]},
+{"f":204,"b":[]},
+{"f":205,"b":[]},
+{"f":206,"b":[]},
+{"f":207,"b":[]},
+{"f":208,"b":[{"b":0,"v":{"total":[23.3,23.1,23.5,23.5,22.9,23,23.7,24,23.6,23.4,23.1,23.3,25.5,23.3,23.5],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[21.6,21.5,21.8,21.8,21.3,21.4,22,22.3,21.9,21.7,21.5,21.6,23.7,21.6,21.8]}},{"b":1,"v":{"total":[10.9,10.7,10.7,11,11,11,10.6,10.9,10.8,10.8,10.8,11.1,10.9,10.7,11],"script":[1.4,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[9.1,9.1,9.1,9.3,9.3,9.2,9,9.3,9.1,9.2,9.1,9.4,9.3,9,9.3]}},{"b":2,"v":{"total":[11.3,11.5,10.7,11.6,12.1,10.8,12.4,12,11.1,11.6,10.5,10.5,11.1,10.8,11.1],"script":[0.1,0.5,0.1,0.1,1.1,0.1,0.1,0.9,0.5,0.9,0.1,0.4,0.1,0.2,0.7],"paint":[10.3,9.8,9.6,10.2,9,9.5,10.9,10.1,8.5,9.4,9.4,9.1,9.8,9.7,9.8]}},{"b":3,"v":{"total":[2.4,2.3,2.7,2.2,3.2,2.5,2.5,2.8,2.2,1.9,2.4,2.6,1.9,2.6,2,4,2.8,2.9,2.7,3.3,2.2,2.1,2.8,2.5,2.8],"script":[0,0,0,0,1,0,0,0,0,0,0,0.6,0,0,0,0,0.8,0,0,0,0,0,0,0,0],"paint":[2.2,1.5,2.5,2,2.1,2.4,2.1,2.6,1.3,1.7,1.9,1.4,1.1,2.4,1.8,1.9,1.5,2.6,2.4,1.6,1.3,1.7,1.3,2.4,1.5]}},{"b":4,"v":{"total":[24.4,8.5,7.9,12,8.3,7.9,8.9,8.1,8.2,10.4,8.6,9.1,7.9,8.2,8.5],"script":[0.1,0.1,0.1,0.6,0.1,0.1,1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.9],"paint":[6.1,7.4,6.1,9.2,6.8,7,6.4,6.9,6.5,8.9,7.5,8.1,6.8,7.2,6.6]}},{"b":5,"v":{"total":[18.8,18.3,19.5,18.5,18.9,18.7,18.6,18.5,18.8,18.1,18.2,18.2,17.8,18.5,18.3],"script":[2.5,2.1,2.8,2.8,2.5,2.5,2.7,2.4,2.5,2.4,2.4,2.5,2.4,2.4,2.4],"paint":[15.6,15.6,16,15.1,15.8,15.6,15,15.4,15.6,15.1,15.2,15.1,14.7,15.4,15.2]}},{"b":6,"v":{"total":[252.5,250.3,250.3,251.7,249.7,253.1,249.4,250.3,248.6,252.8,253,250.8,248.8,251.1,251.9],"script":[14.8,14.7,14.9,14.8,14.8,14.7,14.6,14.6,14.7,14.8,14.8,14.6,14.5,14.4,15],"paint":[229.7,228.4,228,229.6,227.8,231.1,227.6,228.6,226.6,230.5,230.7,228.9,227.1,229.6,229.8]}},{"b":7,"v":{"total":[27.3,27.3,27.3,27.3,27.4,27.2,27.1,27.2,27.5,26.9,27.3,27.2,27.4,27.2,26.9],"script":[1.3,1.4,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4],"paint":[25.3,25.2,25.3,25.2,25.4,25.1,25.1,25.2,25.4,24.8,25.2,25.2,25.4,25.1,24.8]}},{"b":8,"v":{"total":[10.3,9.5,9.5,9.1,9.2,9,9.9,8.8,9.4,8.9,9.5,8.9,8.8,9.5,9.9],"script":[7.4,7.3,7,7,7.5,6.8,7.8,7.2,7.1,7.3,8.1,7.1,6.8,7.4,7.9],"paint":[1.3,1.1,1.7,0.9,0.2,1.3,1.4,0.3,0.8,0.4,0.2,1,0.9,1.4,0.7]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.89]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[13]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[2.4]}},{"b":16,"v":{"DEFAULT":[40.5]}}]},
+{"f":209,"b":[]},
+{"f":210,"b":[]},
+{"f":211,"b":[{"b":0,"v":{"total":[30.1,31.8,36.1,35.5,35.8,37.5,29.7,34.9,37,36.2,31.6,37.1,34.3,35.5,36.5],"script":[7.4,7.8,6.6,6.7,6.5,7.5,6.9,6.7,6.6,7.4,6.6,6.6,7.4,6.9,7.4],"paint":[22.4,23.6,22.7,22.7,22.3,22.5,22.5,22.6,22.5,22.2,22.8,22.6,22.7,22.3,22.1]}},{"b":1,"v":{"total":[18.9,18.9,19,14.8,19.2,21.1,17.5,18.6,16.5,16.7,16.9,18.1,18.6,17.4,17.7],"script":[3.8,3.7,3.7,3.8,3.9,3.8,3.6,3.7,3.7,3.6,3.7,4,4.3,3.7,3.7],"paint":[8.9,8.7,9,9,9.2,9.1,8.9,8.9,8.8,8.7,9,9.1,10.2,8.8,9]}},{"b":2,"v":{"total":[29.3,30,13.9,30.1,30.1,30,30,31.7,29.6,30.1,31.4,28.5,14.2,32,15.7],"script":[2.8,2.8,2.7,2.7,2,2.6,2.5,2.6,2.5,2.7,2.3,2.5,1.9,2.8,2.6],"paint":[9.7,11.1,11,9.7,12,11.8,11.4,12.2,10,11.8,13,10.6,10.1,12.8,10.4]}},{"b":3,"v":{"total":[3.9,3.9,6.1,3.6,4.1,5,3.7,6.8,7.3,3.4,3.7,4.2,4,4,3.8,4.2,3.4,4,3.5,3.8,4,3.9,3.6,3.7,3.5],"script":[0.6,1.7,0.9,1,0.9,0.9,1.5,1.6,1.9,0.3,1.5,1.9,1.7,1.5,1.6,1.1,1.2,1,0.7,1.4,1.6,0.8,1.3,0.9,1.4],"paint":[2.7,1.4,1.6,2.4,3,1.7,1.3,2.3,1.8,1.4,1.3,1.4,1.4,1.4,1.6,1.6,1.3,1.4,2,1.9,1.4,2.2,1.4,1.7,1.3]}},{"b":4,"v":{"total":[24.8,24.3,9.5,24.9,24.6,9.1,25.5,25.3,9.4,25.1,25.4,25.4,24.4,25.8,25.7],"script":[0.6,0.8,0.6,1.1,0.6,1.1,1.3,1.3,0.7,1.1,1.2,0.7,1.1,1.8,1.5],"paint":[7.7,7.1,7.2,7.9,7.5,7,8,7.6,7.7,7.4,7.8,8.6,7.2,8.4,8.3]}},{"b":5,"v":{"total":[24.5,22.4,21.9,24.6,21.8,21.4,23.3,22.2,22.9,23.8,22.8,24.6,21.6,21.9,24.7],"script":[6.4,6.3,6.3,6.6,6.6,6.2,6.2,6.3,6.3,6.4,6.4,6.4,6.2,6.6,6.7],"paint":[15.3,14.7,14.7,15.5,14.6,14.9,14.7,14.7,15.3,14.5,14.5,15.2,14.8,14.8,15.1]}},{"b":6,"v":{"total":[307,311.7,311.7,310.6,307.6,310.6,306.7,314.4,308.9,310,310.6,312.2,309.6,306.6,313.3],"script":[75.5,78.6,75.9,76,75.7,76.3,77.2,75.2,75.4,75.1,76.7,76.7,76.4,76.2,77.9],"paint":[227.2,224.5,225.9,227.7,226.2,224,223.5,230.9,226.3,224.4,226.5,226.4,223.3,223.7,227.1]}},{"b":7,"v":{"total":[38.2,40.8,34.4,34.1,38.3,38,38.1,34.9,34.1,34,34.5,38.6,38.4,38,39.2],"script":[6.3,6.2,6.6,6.5,6.2,6.3,6.3,6.8,6.3,6.4,6.7,6.4,6.4,6.3,6.4],"paint":[26.7,27.1,27.2,27.1,26.9,26.8,26.7,27.2,27.2,27.1,27.2,26.9,26.9,26.8,27.1]}},{"b":8,"v":{"total":[28,27.6,29.1,28.3,29,26.9,12.4,26.7,27.7,27.2,27.3,10.7,11.6,26.8,27.5],"script":[10.6,9.5,10.8,10.9,11.5,9.7,10.6,9.1,10.1,9.6,9.5,9.6,10,9,9.4],"paint":[1.2,1.2,2.2,0.3,0.7,0.8,0.8,1.1,0.4,0.6,1.2,0.3,1.3,0.9,0.8]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.97]}},{"b":11,"v":{"DEFAULT":[2.95]}},{"b":12,"v":{"DEFAULT":[0.74]}},{"b":13,"v":{"DEFAULT":[22.53]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.4]}},{"b":16,"v":{"DEFAULT":[37.7]}}]},
+{"f":212,"b":[]},
+{"f":213,"b":[]},
+{"f":214,"b":[]},];
+export const frameworks = [{"name":"alpine-v3.14.7-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"issues":[1139],"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v20.0.1-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-new-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-new-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-v20.0.1-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-signals-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v20.0.1-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"apprun-v3.33.9-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia2-v2.0.0-beta.22-keyed","dir":"keyed/aurelia2","keyed":true,"frameworkHomeURL":""},{"name":"blazor-wasm-v9.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v9.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.29-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.11.2-keyed","dir":"keyed/bobril","keyed":true,"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.1-beta.1-keyed","dir":"keyed/cample","keyed":true,"issues":[1139],"frameworkHomeURL":"https://camplejs.github.io/"},{"name":"crank-v0.6.0-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.4.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"deleight-v5.5.8-keyed","dir":"keyed/deleight","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"destam-dom-v0.10.2-keyed","dir":"keyed/destam-dom","keyed":true,"frameworkHomeURL":"https://github.com/Nefsen402/destam-dom"},{"name":"dioxus-v0.5.1-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-next.1-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-lite-keyed","dir":"keyed/doohtml-lite","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v6.4.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"endr-v0.2.1-keyed","dir":"keyed/endr","keyed":true,"frameworkHomeURL":"https://github.com/caseywebdev/endr"},{"name":"fntags-v0.5.1-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"frei-hooks-v1.2.1-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"gxt-v0.0.57-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hellajs-v1.0.8-keyed","dir":"keyed/hellajs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://hellajs.com/"},{"name":"hono-v4.6.13-keyed","dir":"keyed/hono","keyed":true,"frameworkHomeURL":"https://hono.dev/"},{"name":"hydro-js-v1.8.9-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v4.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v4.0.1-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev/"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.17.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev/"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.7.0-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.2.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v2.2.0-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lui-noeval-v2.2.0-keyed","dir":"keyed/lui-noeval","keyed":true,"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v8.12.0-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marko-v6.0.88-keyed","dir":"keyed/marko","keyed":true,"issues":[1139],"frameworkHomeURL":"https://markojs.com/"},{"name":"marko-classes-v5.37.60-keyed","dir":"keyed/marko-classes","keyed":true,"issues":[1139],"frameworkHomeURL":"https://markojs.com/"},{"name":"mettle-v1.7.0-keyed","dir":"keyed/mettle","keyed":true,"frameworkHomeURL":"https://maomincoding.github.io/mettle-doc/"},{"name":"michijs-v2.3.2-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://dev.michijs.com/"},{"name":"mikado-v0.8.400-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.400-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.16.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"nanoviews-v1.0.0-alpha.2-keyed","dir":"keyed/nanoviews","keyed":true,"frameworkHomeURL":"https://github.com/TrigenSoftware/nanoviews/tree/main/packages/nanoviews#readme"},{"name":"native-document-v1.0.34-keyed","dir":"keyed/native-document","keyed":true,"frameworkHomeURL":"https://github.com/afrocodeur/native-document"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.5.1-keyed","dir":"keyed/owl","keyed":true,"issues":[1139],"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v7.2.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.19.206-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.27.1-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.27.1-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","dir":"keyed/preact-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"preact-signals-v10.27.1 + 2.3.1-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"quel-v0.23.1-keyed","dir":"keyed/quel","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"qwik-v1.11.0-keyed","dir":"keyed/qwik","keyed":true,"issues":[1139],"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.4.4-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"re-frame-v1.4.3-keyed","dir":"keyed/re-frame","keyed":true,"frameworkHomeURL":"https://day8.github.io/re-frame/re-frame/"},{"name":"react-classes-v19.0.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org/"},{"name":"react-compiler-hooks-v19.0.0-keyed","dir":"keyed/react-compiler-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-v19.0.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v19.0.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-kr-observable-v19.0.0 + 3.0.8-keyed","dir":"keyed/react-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v19.0.0 + 6.13.5-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-native-onyx-v2.0.108-keyed","dir":"keyed/react-native-onyx","keyed":true,"frameworkHomeURL":"https://github.com/Expensify/react-native-onyx"},{"name":"react-redux-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v19.0.0 + 0.10.7-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-tagged-state-v19.0.0 + 2.1.0-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v19.0.0 + 2.0.1-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v19.0.0 + 5.0.2-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v4.1.5-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-js-v0.25.3-keyed","dir":"keyed/reflex-js","keyed":true,"frameworkHomeURL":"https://github.com/zouloux/reflex"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v9.4.4-keyed","dir":"keyed/riot","keyed":true,"frameworkHomeURL":"https://riot.js.org/"},{"name":"ripple-v0.2.61-keyed","dir":"keyed/ripple","keyed":true,"frameworkHomeURL":"https://ripplejs.com/"},{"name":"rvjs-v0.3.31-keyed","dir":"keyed/rvjs","keyed":true,"frameworkHomeURL":"https://rvjs.xyz/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.15.1 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.15.1 + 2.2.7-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.61.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"silkenweb-v0.9.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.7.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io/"},{"name":"solid-v1.9.3-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.9.3-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"sonnet-v0.0.33-keyed","dir":"keyed/sonnet","keyed":true,"issues":[772],"frameworkHomeURL":"https://sonnet.js.org/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spheres-v0.24.0-keyed","dir":"keyed/spheres","keyed":true,"frameworkHomeURL":"https://github.com/brian-watkins/spheres"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.23.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"svelte-v5.13.0-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.13.0-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"targetjs-v1.0.142-keyed","dir":"keyed/targetjs","keyed":true,"issues":[772],"frameworkHomeURL":"https://targetjs.io/"},{"name":"thyn-v0.0.218-keyed","dir":"keyed/thyn","keyed":true,"frameworkHomeURL":"https://github.com/thynjs/thyn"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"valtio-v18.2.0 + 2.1.2-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-keyed","dir":"keyed/vanillajs-3","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-lite-keyed","dir":"keyed/vanillajs-lite","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-signals-v0.2.2-keyed","dir":"keyed/vanillajs-signals","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/tc39/proposal-signals"},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.5.2-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"viewfly-v1.2.3-keyed","dir":"keyed/viewfly","keyed":true,"frameworkHomeURL":"https://github.com/viewfly/viewfly"},{"name":"vue-v3.6.0-alpha.2-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx-vapor","keyed":true,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-pinia-v3.5.13 + 2.3.0-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.3.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"zess-v1.0.8-keyed","dir":"keyed/zess","keyed":true,"frameworkHomeURL":"https://rpsffx.github.io/zess/"},{"name":"zune-v1.0.8-keyed","dir":"keyed/zune","keyed":true,"frameworkHomeURL":""},{"name":"aberdeen-v1.0.4-non-keyed","dir":"non-keyed/aberdeen","keyed":false,"frameworkHomeURL":"https://aberdeenjs.org/"},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.33.9-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.4.1-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.92.0-non-keyed","dir":"non-keyed/bau","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v23.1.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.9-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"deku-v0.12.1-non-keyed","dir":"non-keyed/deku","keyed":false,"frameworkHomeURL":"http://github.com/mikesol/purescript-deku"},{"name":"deleight-v5.5.10-non-keyed","dir":"non-keyed/deleight","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-next.1-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v5.2.6-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.1-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.2.1-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.8.9-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.2.1-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v4.0.2-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.400-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.28.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.23.1-non-keyed","dir":"non-keyed/quel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.4.4-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"ravel-v0.3.0-non-keyed","dir":"non-keyed/ravel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/kmicklas/ravel"},{"name":"redom-v4.1.5-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev/"},{"name":"riot-v9.4.4-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.15.1-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.35.26-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"skruv-liten-v0.0.4-non-keyed","dir":"non-keyed/skruv-liten","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/skruv/liten"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"sprae-v12.1.0-non-keyed","dir":"non-keyed/sprae","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"svelte-classic-v5.13.0-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-non-keyed","dir":"non-keyed/vanillajs-3","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vode-v1.2.0-non-keyed","dir":"non-keyed/vode","keyed":false,"frameworkHomeURL":"https://github.com/ryupold/vode"},{"name":"vue-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-jsx-vapor","keyed":false,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}];
export const benchmarks = [{"id":"01_run1k","label":"create rows","description":"creating 1,000 rows. (5 warmup runs).","type":0},{"id":"02_replace1k","label":"replace all rows","description":"updating all 1,000 rows. (5 warmup runs).","type":0},{"id":"03_update10th1k_x16","label":"partial update","description":"updating every 10th row for 1,000 row. (3 warmup runs). 4 x CPU slowdown.","type":0},{"id":"04_select1k","label":"select row","description":"highlighting a selected row. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"05_swap1k","label":"swap rows","description":"swap 2 rows for table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"06_remove-one-1k","label":"remove row","description":"removing one row. (5 warmup runs). 2 x CPU slowdown.","type":0},{"id":"07_create10k","label":"create many rows","description":"creating 10,000 rows. (5 warmup runs).","type":0},{"id":"08_create1k-after1k_x2","label":"append rows to large table","description":"appending 1,000 to a table of 1,000 rows. (5 warmup runs).","type":0},{"id":"09_clear1k_x8","label":"clear rows","description":"clearing a table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"21_ready-memory","label":"ready memory","description":"Memory usage after page load.","type":1},{"id":"22_run-memory","label":"run memory","description":"Memory usage after adding 1,000 rows.","type":1},{"id":"23_update5-memory","label":"update every 10th row for 1k rows (5 cycles)","description":"Memory usage after clicking update every 10th row 5 times","type":1},{"id":"25_run-clear-memory","label":"creating/clearing 1k rows (5 cycles)","description":"Memory usage after creating and clearing 1000 rows 5 times","type":1},{"id":"26_run-10k-memory","label":"run memory 10k","description":"Memory usage after adding 10,000 rows.","type":1},{"id":"41_size-uncompressed","label":"uncompressed size","description":"uncompressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"42_size-compressed","label":"compressed size","description":"brotli compressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"43_first-paint","label":"first paint","description":"first paint","type":5}];
diff --git a/webdriver-ts-results/src/store.ts b/webdriver-ts-results/src/store.ts
index 8c0ffc41e..7c782be09 100644
--- a/webdriver-ts-results/src/store.ts
+++ b/webdriver-ts-results/src/store.ts
@@ -49,7 +49,12 @@ for (let result of rawResults) {
results.push({ framework: rawFrameworks[result.f].name, benchmark: rawBenchmarks[b.b].id, results: values });
}
}
-console.log(results);
+
+allFrameworks.forEach((f) => {
+ if (!results.some((r) => r.framework === f.name)) {
+ allFrameworks.delete(f);
+ }
+})
const resultLookup = convertToMap(results);
@@ -86,8 +91,10 @@ interface Actions {
isNoneBenchmarkSelected: (type: BenchmarkType) => boolean;
areAllFrameworksSelected: (type: FrameworkType) => boolean;
isNoneFrameworkSelected: (type: FrameworkType) => boolean;
+ isUnflaggedFrameworkSelected: (type: FrameworkType) => boolean;
selectFramework: (framework: Framework, add: boolean) => void;
selectAllFrameworks: (frameworkType: FrameworkType, add: boolean) => void;
+ selectUnflaggedFrameworks: (frameworkType: FrameworkType) => void;
selectCategory: (categoryId: number, add: boolean) => void;
selectBenchmark: (benchmark: Benchmark, add: boolean) => void;
selectAllBenchmarks: (benchmarkType: BenchmarkType, add: boolean) => void;
@@ -183,7 +190,7 @@ const preInitialState: State = {
benchmarkLists: {
[BenchmarkType.CPU]: rawBenchmarks.filter((b) => b.type === BenchmarkType.CPU),
[BenchmarkType.MEM]: rawBenchmarks.filter((b) => b.type === BenchmarkType.MEM),
- [BenchmarkType.STARTUP]: rawBenchmarks.filter((b) => b.type === BenchmarkType.STARTUP),
+ [BenchmarkType.SIZE]: rawBenchmarks.filter((b) => b.type === BenchmarkType.SIZE),
},
frameworks: mappedFrameworks,
frameworkLists: {
@@ -227,6 +234,9 @@ export const useRootStore = create((set, get) => ({
isNoneFrameworkSelected: (type) => {
return get().frameworkLists[type].every((framework) => !get().selectedFrameworks.has(framework));
},
+ isUnflaggedFrameworkSelected: (type) => {
+ return get().frameworkLists[type].every((framework) => framework.issues.length ? !get().selectedFrameworks.has(framework) : get().selectedFrameworks.has(framework));
+ },
// Actions
selectFramework: (framework: Framework, add: boolean) => {
const newSelectedFramework = new Set(get().selectedFrameworks);
@@ -236,6 +246,23 @@ export const useRootStore = create((set, get) => ({
const t = { ...get(), selectedFrameworks: newSelectedFramework };
return set(() => ({ ...t, resultTables: updateResultTable(t) }));
},
+ selectUnflaggedFrameworks: (frameworkType: FrameworkType) => {
+ const newSelectedFramework = new Set(get().selectedFrameworks);
+ const frameworks =
+ frameworkType === FrameworkType.KEYED
+ ? get().frameworkLists[FrameworkType.KEYED]
+ : get().frameworkLists[FrameworkType.NON_KEYED];
+
+ for (const framework of frameworks) {
+ framework.issues.length ? newSelectedFramework.delete(framework) : newSelectedFramework.add(framework);
+ }
+
+ const t = { ...get(), selectedFrameworks: newSelectedFramework };
+ return set(() => ({
+ ...t,
+ resultTables: updateResultTable(t),
+ }));
+ },
selectAllFrameworks: (frameworkType: FrameworkType, add: boolean) => {
const newSelectedFramework = new Set(get().selectedFrameworks);
const frameworks =
diff --git a/webdriver-ts-results/tsconfig.json b/webdriver-ts-results/tsconfig.json
index 8dfc7fb49..0357259cd 100644
--- a/webdriver-ts-results/tsconfig.json
+++ b/webdriver-ts-results/tsconfig.json
@@ -19,8 +19,8 @@
/* Linting */
"strict": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
+ "noUnusedLocals": false,
+ "noUnusedParameters": false,
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
diff --git a/webdriver-ts/package-lock.json b/webdriver-ts/package-lock.json
index 287f2b511..891f059f4 100644
--- a/webdriver-ts/package-lock.json
+++ b/webdriver-ts/package-lock.json
@@ -9,28 +9,28 @@
"version": "1.0.0",
"license": "Apache-2.0",
"dependencies": {
- "chromedriver": "133.0.3",
- "cross-env": "7.0.3",
- "lighthouse": "12.3.0",
- "playwright": "1.50.1",
- "playwright-firefox": "1.50.1",
- "playwright-webkit": "1.50.1",
- "puppeteer-core": "24.3.0",
- "ramda": "0.30.1",
- "selenium-webdriver": "4.29.0",
- "semver": "7.7.1",
- "yargs": "17.7.2"
+ "chromedriver": "141.0.0",
+ "cross-env": "10.1.0",
+ "lighthouse": "12.8.2",
+ "playwright": "1.56.0",
+ "playwright-firefox": "1.56.0",
+ "playwright-webkit": "1.56.0",
+ "puppeteer-core": "24.23.0",
+ "ramda": "0.31.3",
+ "selenium-webdriver": "4.36.0",
+ "semver": "7.7.2",
+ "yargs": "18.0.0"
},
"devDependencies": {
- "@types/node": "22.13.5",
- "@types/ramda": "0.30.2",
- "@types/selenium-webdriver": "4.1.28",
- "@types/semver": "7.5.8",
+ "@types/node": "24.7.0",
+ "@types/ramda": "0.31.1",
+ "@types/selenium-webdriver": "4.35.1",
+ "@types/semver": "7.7.1",
"@types/yargs": "17.0.33",
- "@vitest/coverage-v8": "^3.0.7",
+ "@vitest/coverage-v8": "^3.2.4",
"ts-node": "^10.9.2",
- "typescript": "5.7.3",
- "vitest": "^3.0.7"
+ "typescript": "5.9.3",
+ "vitest": "^3.2.4"
}
},
"node_modules/@ampproject/remapping": {
@@ -132,10 +132,16 @@
"@jridgewell/sourcemap-codec": "^1.4.10"
}
},
+ "node_modules/@epic-web/invariant": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/@epic-web/invariant/-/invariant-1.0.0.tgz",
+ "integrity": "sha512-lrTPqgvfFQtR/eY/qkIzp98OGdNJu0m5ji3q/nJI8v3SXkRKEnWiOxMmbvcSoAIzv/cGiuvRy57k4suKQSAdwA==",
+ "license": "MIT"
+ },
"node_modules/@esbuild/aix-ppc64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.0.tgz",
- "integrity": "sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.8.tgz",
+ "integrity": "sha512-urAvrUedIqEiFR3FYSLTWQgLu5tb+m0qZw0NBEasUeo6wuqatkMDaRT+1uABiGXEu5vqgPd7FGE1BhsAIy9QVA==",
"cpu": [
"ppc64"
],
@@ -150,9 +156,9 @@
}
},
"node_modules/@esbuild/android-arm": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.0.tgz",
- "integrity": "sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.8.tgz",
+ "integrity": "sha512-RONsAvGCz5oWyePVnLdZY/HHwA++nxYWIX1atInlaW6SEkwq6XkP3+cb825EUcRs5Vss/lGh/2YxAb5xqc07Uw==",
"cpu": [
"arm"
],
@@ -167,9 +173,9 @@
}
},
"node_modules/@esbuild/android-arm64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.0.tgz",
- "integrity": "sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.8.tgz",
+ "integrity": "sha512-OD3p7LYzWpLhZEyATcTSJ67qB5D+20vbtr6vHlHWSQYhKtzUYrETuWThmzFpZtFsBIxRvhO07+UgVA9m0i/O1w==",
"cpu": [
"arm64"
],
@@ -184,9 +190,9 @@
}
},
"node_modules/@esbuild/android-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.0.tgz",
- "integrity": "sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.8.tgz",
+ "integrity": "sha512-yJAVPklM5+4+9dTeKwHOaA+LQkmrKFX96BM0A/2zQrbS6ENCmxc4OVoBs5dPkCCak2roAD+jKCdnmOqKszPkjA==",
"cpu": [
"x64"
],
@@ -201,9 +207,9 @@
}
},
"node_modules/@esbuild/darwin-arm64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.0.tgz",
- "integrity": "sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.8.tgz",
+ "integrity": "sha512-Jw0mxgIaYX6R8ODrdkLLPwBqHTtYHJSmzzd+QeytSugzQ0Vg4c5rDky5VgkoowbZQahCbsv1rT1KW72MPIkevw==",
"cpu": [
"arm64"
],
@@ -218,9 +224,9 @@
}
},
"node_modules/@esbuild/darwin-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.0.tgz",
- "integrity": "sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.8.tgz",
+ "integrity": "sha512-Vh2gLxxHnuoQ+GjPNvDSDRpoBCUzY4Pu0kBqMBDlK4fuWbKgGtmDIeEC081xi26PPjn+1tct+Bh8FjyLlw1Zlg==",
"cpu": [
"x64"
],
@@ -235,9 +241,9 @@
}
},
"node_modules/@esbuild/freebsd-arm64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.0.tgz",
- "integrity": "sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.8.tgz",
+ "integrity": "sha512-YPJ7hDQ9DnNe5vxOm6jaie9QsTwcKedPvizTVlqWG9GBSq+BuyWEDazlGaDTC5NGU4QJd666V0yqCBL2oWKPfA==",
"cpu": [
"arm64"
],
@@ -252,9 +258,9 @@
}
},
"node_modules/@esbuild/freebsd-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.0.tgz",
- "integrity": "sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.8.tgz",
+ "integrity": "sha512-MmaEXxQRdXNFsRN/KcIimLnSJrk2r5H8v+WVafRWz5xdSVmWLoITZQXcgehI2ZE6gioE6HirAEToM/RvFBeuhw==",
"cpu": [
"x64"
],
@@ -269,9 +275,9 @@
}
},
"node_modules/@esbuild/linux-arm": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.0.tgz",
- "integrity": "sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.8.tgz",
+ "integrity": "sha512-FuzEP9BixzZohl1kLf76KEVOsxtIBFwCaLupVuk4eFVnOZfU+Wsn+x5Ryam7nILV2pkq2TqQM9EZPsOBuMC+kg==",
"cpu": [
"arm"
],
@@ -286,9 +292,9 @@
}
},
"node_modules/@esbuild/linux-arm64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.0.tgz",
- "integrity": "sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.8.tgz",
+ "integrity": "sha512-WIgg00ARWv/uYLU7lsuDK00d/hHSfES5BzdWAdAig1ioV5kaFNrtK8EqGcUBJhYqotlUByUKz5Qo6u8tt7iD/w==",
"cpu": [
"arm64"
],
@@ -303,9 +309,9 @@
}
},
"node_modules/@esbuild/linux-ia32": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.0.tgz",
- "integrity": "sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.8.tgz",
+ "integrity": "sha512-A1D9YzRX1i+1AJZuFFUMP1E9fMaYY+GnSQil9Tlw05utlE86EKTUA7RjwHDkEitmLYiFsRd9HwKBPEftNdBfjg==",
"cpu": [
"ia32"
],
@@ -320,9 +326,9 @@
}
},
"node_modules/@esbuild/linux-loong64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.0.tgz",
- "integrity": "sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.8.tgz",
+ "integrity": "sha512-O7k1J/dwHkY1RMVvglFHl1HzutGEFFZ3kNiDMSOyUrB7WcoHGf96Sh+64nTRT26l3GMbCW01Ekh/ThKM5iI7hQ==",
"cpu": [
"loong64"
],
@@ -337,9 +343,9 @@
}
},
"node_modules/@esbuild/linux-mips64el": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.0.tgz",
- "integrity": "sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.8.tgz",
+ "integrity": "sha512-uv+dqfRazte3BzfMp8PAQXmdGHQt2oC/y2ovwpTteqrMx2lwaksiFZ/bdkXJC19ttTvNXBuWH53zy/aTj1FgGw==",
"cpu": [
"mips64el"
],
@@ -354,9 +360,9 @@
}
},
"node_modules/@esbuild/linux-ppc64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.0.tgz",
- "integrity": "sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.8.tgz",
+ "integrity": "sha512-GyG0KcMi1GBavP5JgAkkstMGyMholMDybAf8wF5A70CALlDM2p/f7YFE7H92eDeH/VBtFJA5MT4nRPDGg4JuzQ==",
"cpu": [
"ppc64"
],
@@ -371,9 +377,9 @@
}
},
"node_modules/@esbuild/linux-riscv64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.0.tgz",
- "integrity": "sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.8.tgz",
+ "integrity": "sha512-rAqDYFv3yzMrq7GIcen3XP7TUEG/4LK86LUPMIz6RT8A6pRIDn0sDcvjudVZBiiTcZCY9y2SgYX2lgK3AF+1eg==",
"cpu": [
"riscv64"
],
@@ -388,9 +394,9 @@
}
},
"node_modules/@esbuild/linux-s390x": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.0.tgz",
- "integrity": "sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.8.tgz",
+ "integrity": "sha512-Xutvh6VjlbcHpsIIbwY8GVRbwoviWT19tFhgdA7DlenLGC/mbc3lBoVb7jxj9Z+eyGqvcnSyIltYUrkKzWqSvg==",
"cpu": [
"s390x"
],
@@ -405,9 +411,9 @@
}
},
"node_modules/@esbuild/linux-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.0.tgz",
- "integrity": "sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.8.tgz",
+ "integrity": "sha512-ASFQhgY4ElXh3nDcOMTkQero4b1lgubskNlhIfJrsH5OKZXDpUAKBlNS0Kx81jwOBp+HCeZqmoJuihTv57/jvQ==",
"cpu": [
"x64"
],
@@ -422,9 +428,9 @@
}
},
"node_modules/@esbuild/netbsd-arm64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.0.tgz",
- "integrity": "sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.8.tgz",
+ "integrity": "sha512-d1KfruIeohqAi6SA+gENMuObDbEjn22olAR7egqnkCD9DGBG0wsEARotkLgXDu6c4ncgWTZJtN5vcgxzWRMzcw==",
"cpu": [
"arm64"
],
@@ -439,9 +445,9 @@
}
},
"node_modules/@esbuild/netbsd-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.0.tgz",
- "integrity": "sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.8.tgz",
+ "integrity": "sha512-nVDCkrvx2ua+XQNyfrujIG38+YGyuy2Ru9kKVNyh5jAys6n+l44tTtToqHjino2My8VAY6Lw9H7RI73XFi66Cg==",
"cpu": [
"x64"
],
@@ -456,9 +462,9 @@
}
},
"node_modules/@esbuild/openbsd-arm64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.0.tgz",
- "integrity": "sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.8.tgz",
+ "integrity": "sha512-j8HgrDuSJFAujkivSMSfPQSAa5Fxbvk4rgNAS5i3K+r8s1X0p1uOO2Hl2xNsGFppOeHOLAVgYwDVlmxhq5h+SQ==",
"cpu": [
"arm64"
],
@@ -473,9 +479,9 @@
}
},
"node_modules/@esbuild/openbsd-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.0.tgz",
- "integrity": "sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.8.tgz",
+ "integrity": "sha512-1h8MUAwa0VhNCDp6Af0HToI2TJFAn1uqT9Al6DJVzdIBAd21m/G0Yfc77KDM3uF3T/YaOgQq3qTJHPbTOInaIQ==",
"cpu": [
"x64"
],
@@ -489,10 +495,27 @@
"node": ">=18"
}
},
+ "node_modules/@esbuild/openharmony-arm64": {
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.8.tgz",
+ "integrity": "sha512-r2nVa5SIK9tSWd0kJd9HCffnDHKchTGikb//9c7HX+r+wHYCpQrSgxhlY6KWV1nFo1l4KFbsMlHk+L6fekLsUg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/@esbuild/sunos-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.0.tgz",
- "integrity": "sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.8.tgz",
+ "integrity": "sha512-zUlaP2S12YhQ2UzUfcCuMDHQFJyKABkAjvO5YSndMiIkMimPmxA+BYSBikWgsRpvyxuRnow4nS5NPnf9fpv41w==",
"cpu": [
"x64"
],
@@ -507,9 +530,9 @@
}
},
"node_modules/@esbuild/win32-arm64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.0.tgz",
- "integrity": "sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.8.tgz",
+ "integrity": "sha512-YEGFFWESlPva8hGL+zvj2z/SaK+pH0SwOM0Nc/d+rVnW7GSTFlLBGzZkuSU9kFIGIo8q9X3ucpZhu8PDN5A2sQ==",
"cpu": [
"arm64"
],
@@ -524,9 +547,9 @@
}
},
"node_modules/@esbuild/win32-ia32": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.0.tgz",
- "integrity": "sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.8.tgz",
+ "integrity": "sha512-hiGgGC6KZ5LZz58OL/+qVVoZiuZlUYlYHNAmczOm7bs2oE1XriPFi5ZHHrS8ACpV5EjySrnoCKmcbQMN+ojnHg==",
"cpu": [
"ia32"
],
@@ -541,9 +564,9 @@
}
},
"node_modules/@esbuild/win32-x64": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.0.tgz",
- "integrity": "sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.8.tgz",
+ "integrity": "sha512-cn3Yr7+OaaZq1c+2pe+8yxC8E144SReCQjN6/2ynubzYjvyqZjTXfQJpAcQpsdJq3My7XADANiYGHoFC69pLQw==",
"cpu": [
"x64"
],
@@ -744,21 +767,560 @@
"dev": true
},
"node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.25",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
- "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
+ "version": "0.3.29",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz",
+ "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
+ "node_modules/@opentelemetry/api": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz",
+ "integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/@opentelemetry/api-logs": {
+ "version": "0.57.2",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.57.2.tgz",
+ "integrity": "sha512-uIX52NnTM0iBh84MShlpouI7UKqkZ7MrUszTmaypHBu4r7NofznSnQRfJ+uUeDtQDj6w8eFGg5KBLDAwAPz1+A==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ },
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@opentelemetry/context-async-hooks": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/context-async-hooks/-/context-async-hooks-1.30.1.tgz",
+ "integrity": "sha512-s5vvxXPVdjqS3kTLKMeBMvop9hbWkwzBpu+mUO2M7sZtlkyDJGwFe33wRKnbaYDo8ExRVBIIdwIGrqpxHuKttA==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.0.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/core": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.30.1.tgz",
+ "integrity": "sha512-OOCM2C/QIURhJMuKaekP3TRBxBKxG/TWWA0TL2J6nXUtDnuCtccy49LUJF8xPFXMX+0LMcxFpCo8M9cGY1W6rQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/semantic-conventions": "1.28.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.0.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/core/node_modules/@opentelemetry/semantic-conventions": {
+ "version": "1.28.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.28.0.tgz",
+ "integrity": "sha512-lp4qAiMTD4sNWW4DbKLBkfiMZ4jbAboJIGOQr5DvciMRI494OapieI9qiODpOt0XBr1LjIDy1xAGAnVs5supTA==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation": {
+ "version": "0.57.2",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.57.2.tgz",
+ "integrity": "sha512-BdBGhQBh8IjZ2oIIX6F2/Q3LKm/FDDKi6ccYKcBTeilh6SNdNKveDOLk73BkSJjQLJk6qe4Yh+hHw1UPhCDdrg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/api-logs": "0.57.2",
+ "@types/shimmer": "^1.2.0",
+ "import-in-the-middle": "^1.8.1",
+ "require-in-the-middle": "^7.1.1",
+ "semver": "^7.5.2",
+ "shimmer": "^1.2.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-amqplib": {
+ "version": "0.46.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-amqplib/-/instrumentation-amqplib-0.46.1.tgz",
+ "integrity": "sha512-AyXVnlCf/xV3K/rNumzKxZqsULyITJH6OVLiW6730JPRqWA7Zc9bvYoVNpN6iOpTU8CasH34SU/ksVJmObFibQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-connect": {
+ "version": "0.43.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-connect/-/instrumentation-connect-0.43.1.tgz",
+ "integrity": "sha512-ht7YGWQuV5BopMcw5Q2hXn3I8eG8TH0J/kc/GMcW4CuNTgiP6wCu44BOnucJWL3CmFWaRHI//vWyAhaC8BwePw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/semantic-conventions": "^1.27.0",
+ "@types/connect": "3.4.38"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-dataloader": {
+ "version": "0.16.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-dataloader/-/instrumentation-dataloader-0.16.1.tgz",
+ "integrity": "sha512-K/qU4CjnzOpNkkKO4DfCLSQshejRNAJtd4esgigo/50nxCB6XCyi1dhAblUHM9jG5dRm8eu0FB+t87nIo99LYQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.57.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-express": {
+ "version": "0.47.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-express/-/instrumentation-express-0.47.1.tgz",
+ "integrity": "sha512-QNXPTWteDclR2B4pDFpz0TNghgB33UMjUt14B+BZPmtH1MwUFAfLHBaP5If0Z5NZC+jaH8oF2glgYjrmhZWmSw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-fs": {
+ "version": "0.19.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-fs/-/instrumentation-fs-0.19.1.tgz",
+ "integrity": "sha512-6g0FhB3B9UobAR60BGTcXg4IHZ6aaYJzp0Ki5FhnxyAPt8Ns+9SSvgcrnsN2eGmk3RWG5vYycUGOEApycQL24A==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.57.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-generic-pool": {
+ "version": "0.43.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-generic-pool/-/instrumentation-generic-pool-0.43.1.tgz",
+ "integrity": "sha512-M6qGYsp1cURtvVLGDrPPZemMFEbuMmCXgQYTReC/IbimV5sGrLBjB+/hANUpRZjX67nGLdKSVLZuQQAiNz+sww==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.57.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-graphql": {
+ "version": "0.47.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-graphql/-/instrumentation-graphql-0.47.1.tgz",
+ "integrity": "sha512-EGQRWMGqwiuVma8ZLAZnExQ7sBvbOx0N/AE/nlafISPs8S+QtXX+Viy6dcQwVWwYHQPAcuY3bFt3xgoAwb4ZNQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.57.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-hapi": {
+ "version": "0.45.2",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-hapi/-/instrumentation-hapi-0.45.2.tgz",
+ "integrity": "sha512-7Ehow/7Wp3aoyCrZwQpU7a2CnoMq0XhIcioFuKjBb0PLYfBfmTsFTUyatlHu0fRxhwcRsSQRTvEhmZu8CppBpQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-http": {
+ "version": "0.57.2",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-http/-/instrumentation-http-0.57.2.tgz",
+ "integrity": "sha512-1Uz5iJ9ZAlFOiPuwYg29Bf7bJJc/GeoeJIFKJYQf67nTVKFe8RHbEtxgkOmK4UGZNHKXcpW4P8cWBYzBn1USpg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/core": "1.30.1",
+ "@opentelemetry/instrumentation": "0.57.2",
+ "@opentelemetry/semantic-conventions": "1.28.0",
+ "forwarded-parse": "2.1.2",
+ "semver": "^7.5.2"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-http/node_modules/@opentelemetry/semantic-conventions": {
+ "version": "1.28.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.28.0.tgz",
+ "integrity": "sha512-lp4qAiMTD4sNWW4DbKLBkfiMZ4jbAboJIGOQr5DvciMRI494OapieI9qiODpOt0XBr1LjIDy1xAGAnVs5supTA==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-ioredis": {
+ "version": "0.47.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-ioredis/-/instrumentation-ioredis-0.47.1.tgz",
+ "integrity": "sha512-OtFGSN+kgk/aoKgdkKQnBsQFDiG8WdCxu+UrHr0bXScdAmtSzLSraLo7wFIb25RVHfRWvzI5kZomqJYEg/l1iA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/redis-common": "^0.36.2",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-kafkajs": {
+ "version": "0.7.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-kafkajs/-/instrumentation-kafkajs-0.7.1.tgz",
+ "integrity": "sha512-OtjaKs8H7oysfErajdYr1yuWSjMAectT7Dwr+axIoZqT9lmEOkD/H/3rgAs8h/NIuEi2imSXD+vL4MZtOuJfqQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-knex": {
+ "version": "0.44.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-knex/-/instrumentation-knex-0.44.1.tgz",
+ "integrity": "sha512-U4dQxkNhvPexffjEmGwCq68FuftFK15JgUF05y/HlK3M6W/G2iEaACIfXdSnwVNe9Qh0sPfw8LbOPxrWzGWGMQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-koa": {
+ "version": "0.47.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-koa/-/instrumentation-koa-0.47.1.tgz",
+ "integrity": "sha512-l/c+Z9F86cOiPJUllUCt09v+kICKvT+Vg1vOAJHtHPsJIzurGayucfCMq2acd/A/yxeNWunl9d9eqZ0G+XiI6A==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-lru-memoizer": {
+ "version": "0.44.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-lru-memoizer/-/instrumentation-lru-memoizer-0.44.1.tgz",
+ "integrity": "sha512-5MPkYCvG2yw7WONEjYj5lr5JFehTobW7wX+ZUFy81oF2lr9IPfZk9qO+FTaM0bGEiymwfLwKe6jE15nHn1nmHg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.57.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-mongodb": {
+ "version": "0.52.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mongodb/-/instrumentation-mongodb-0.52.0.tgz",
+ "integrity": "sha512-1xmAqOtRUQGR7QfJFfGV/M2kC7wmI2WgZdpru8hJl3S0r4hW0n3OQpEHlSGXJAaNFyvT+ilnwkT+g5L4ljHR6g==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-mongoose": {
+ "version": "0.46.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mongoose/-/instrumentation-mongoose-0.46.1.tgz",
+ "integrity": "sha512-3kINtW1LUTPkiXFRSSBmva1SXzS/72we/jL22N+BnF3DFcoewkdkHPYOIdAAk9gSicJ4d5Ojtt1/HeibEc5OQg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-mysql": {
+ "version": "0.45.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mysql/-/instrumentation-mysql-0.45.1.tgz",
+ "integrity": "sha512-TKp4hQ8iKQsY7vnp/j0yJJ4ZsP109Ht6l4RHTj0lNEG1TfgTrIH5vJMbgmoYXWzNHAqBH2e7fncN12p3BP8LFg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/semantic-conventions": "^1.27.0",
+ "@types/mysql": "2.15.26"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-mysql2": {
+ "version": "0.45.2",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mysql2/-/instrumentation-mysql2-0.45.2.tgz",
+ "integrity": "sha512-h6Ad60FjCYdJZ5DTz1Lk2VmQsShiViKe0G7sYikb0GHI0NVvApp2XQNRHNjEMz87roFttGPLHOYVPlfy+yVIhQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/semantic-conventions": "^1.27.0",
+ "@opentelemetry/sql-common": "^0.40.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-pg": {
+ "version": "0.51.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-pg/-/instrumentation-pg-0.51.1.tgz",
+ "integrity": "sha512-QxgjSrxyWZc7Vk+qGSfsejPVFL1AgAJdSBMYZdDUbwg730D09ub3PXScB9d04vIqPriZ+0dqzjmQx0yWKiCi2Q==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/core": "^1.26.0",
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/semantic-conventions": "^1.27.0",
+ "@opentelemetry/sql-common": "^0.40.1",
+ "@types/pg": "8.6.1",
+ "@types/pg-pool": "2.0.6"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-redis-4": {
+ "version": "0.46.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-redis-4/-/instrumentation-redis-4-0.46.1.tgz",
+ "integrity": "sha512-UMqleEoabYMsWoTkqyt9WAzXwZ4BlFZHO40wr3d5ZvtjKCHlD4YXLm+6OLCeIi/HkX7EXvQaz8gtAwkwwSEvcQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/redis-common": "^0.36.2",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-tedious": {
+ "version": "0.18.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-tedious/-/instrumentation-tedious-0.18.1.tgz",
+ "integrity": "sha512-5Cuy/nj0HBaH+ZJ4leuD7RjgvA844aY2WW+B5uLcWtxGjRZl3MNLuxnNg5DYWZNPO+NafSSnra0q49KWAHsKBg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.57.1",
+ "@opentelemetry/semantic-conventions": "^1.27.0",
+ "@types/tedious": "^4.0.14"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-undici": {
+ "version": "0.10.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-undici/-/instrumentation-undici-0.10.1.tgz",
+ "integrity": "sha512-rkOGikPEyRpMCmNu9AQuV5dtRlDmJp2dK5sw8roVshAGoB6hH/3QjDtRhdwd75SsJwgynWUNRUYe0wAkTo16tQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.57.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.7.0"
+ }
+ },
+ "node_modules/@opentelemetry/redis-common": {
+ "version": "0.36.2",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/redis-common/-/redis-common-0.36.2.tgz",
+ "integrity": "sha512-faYX1N0gpLhej/6nyp6bgRjzAKXn5GOEMYY7YhciSfCoITAktLUtQ36d24QEWNA1/WA1y6qQunCe0OhHRkVl9g==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@opentelemetry/resources": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.30.1.tgz",
+ "integrity": "sha512-5UxZqiAgLYGFjS4s9qm5mBVo433u+dSPUFWVWXmLAD4wB65oMCoXaJP1KJa9DIYYMeHu3z4BZcStG3LC593cWA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/core": "1.30.1",
+ "@opentelemetry/semantic-conventions": "1.28.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.0.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/resources/node_modules/@opentelemetry/semantic-conventions": {
+ "version": "1.28.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.28.0.tgz",
+ "integrity": "sha512-lp4qAiMTD4sNWW4DbKLBkfiMZ4jbAboJIGOQr5DvciMRI494OapieI9qiODpOt0XBr1LjIDy1xAGAnVs5supTA==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@opentelemetry/sdk-trace-base": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.30.1.tgz",
+ "integrity": "sha512-jVPgBbH1gCy2Lb7X0AVQ8XAfgg0pJ4nvl8/IiQA6nxOsPvS+0zMJaFSs2ltXe0J6C8dqjcnpyqINDJmU30+uOg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/core": "1.30.1",
+ "@opentelemetry/resources": "1.30.1",
+ "@opentelemetry/semantic-conventions": "1.28.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.0.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/sdk-trace-base/node_modules/@opentelemetry/semantic-conventions": {
+ "version": "1.28.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.28.0.tgz",
+ "integrity": "sha512-lp4qAiMTD4sNWW4DbKLBkfiMZ4jbAboJIGOQr5DvciMRI494OapieI9qiODpOt0XBr1LjIDy1xAGAnVs5supTA==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@opentelemetry/semantic-conventions": {
+ "version": "1.36.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.36.0.tgz",
+ "integrity": "sha512-TtxJSRD8Ohxp6bKkhrm27JRHAxPczQA7idtcTOMYI+wQRRrfgqxHv1cFbCApcSnNjtXkmzFozn6jQtFrOmbjPQ==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@opentelemetry/sql-common": {
+ "version": "0.40.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/sql-common/-/sql-common-0.40.1.tgz",
+ "integrity": "sha512-nSDlnHSqzC3pXn/wZEZVLuAuJ1MYMXPBwtv2qAbCa3847SaHItdE7SzUq/Jtb0KZmh1zfAbNi3AAMjztTT4Ugg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/core": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.1.0"
+ }
+ },
"node_modules/@paulirish/trace_engine": {
- "version": "0.0.39",
- "resolved": "https://registry.npmjs.org/@paulirish/trace_engine/-/trace_engine-0.0.39.tgz",
- "integrity": "sha512-2Y/ejHX5DDi5bjfWY/0c/BLVSfQ61Jw1Hy60Hnh0hfEO632D3FVctkzT4Q/lVAdvIPR0bUaok9JDTr1pu/OziA==",
+ "version": "0.0.59",
+ "resolved": "https://registry.npmjs.org/@paulirish/trace_engine/-/trace_engine-0.0.59.tgz",
+ "integrity": "sha512-439NUzQGmH+9Y017/xCchBP9571J4bzhpcNhrxorf7r37wcyJZkgUfrUsRL3xl+JDcZ6ORhoFCzCw98c6S3YHw==",
"license": "BSD-3-Clause",
"dependencies": {
+ "legacy-javascript": "latest",
"third-party-web": "latest"
}
},
@@ -772,18 +1334,30 @@
"node": ">=14"
}
},
+ "node_modules/@prisma/instrumentation": {
+ "version": "6.11.1",
+ "resolved": "https://registry.npmjs.org/@prisma/instrumentation/-/instrumentation-6.11.1.tgz",
+ "integrity": "sha512-mrZOev24EDhnefmnZX7WVVT7v+r9LttPRqf54ONvj6re4XMF7wFTpK2tLJi4XHB7fFp/6xhYbgRel8YV7gQiyA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.52.0 || ^0.53.0 || ^0.54.0 || ^0.55.0 || ^0.56.0 || ^0.57.0"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.8"
+ }
+ },
"node_modules/@puppeteer/browsers": {
- "version": "2.7.1",
- "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.7.1.tgz",
- "integrity": "sha512-MK7rtm8JjaxPN7Mf1JdZIZKPD2Z+W7osvrC1vjpvfOX1K0awDIHYbNi89f7eotp7eMUn2shWnt03HwVbriXtKQ==",
+ "version": "2.10.10",
+ "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.10.10.tgz",
+ "integrity": "sha512-3ZG500+ZeLql8rE0hjfhkycJjDj0pI/btEh3L9IkWUYcOrgP0xCNRq3HbtbqOPbvDhFaAWD88pDFtlLv8ns8gA==",
"license": "Apache-2.0",
"dependencies": {
- "debug": "^4.4.0",
+ "debug": "^4.4.3",
"extract-zip": "^2.0.1",
"progress": "^2.0.3",
"proxy-agent": "^6.5.0",
- "semver": "^7.7.0",
- "tar-fs": "^3.0.8",
+ "semver": "^7.7.2",
+ "tar-fs": "^3.1.0",
"yargs": "^17.7.2"
},
"bin": {
@@ -793,10 +1367,59 @@
"node": ">=18"
}
},
+ "node_modules/@puppeteer/browsers/node_modules/cliui": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@puppeteer/browsers/node_modules/wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/@puppeteer/browsers/node_modules/yargs": {
+ "version": "17.7.2",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
+ "license": "MIT",
+ "dependencies": {
+ "cliui": "^8.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.3",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^21.1.1"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/@rollup/rollup-android-arm-eabi": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.8.tgz",
- "integrity": "sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.46.2.tgz",
+ "integrity": "sha512-Zj3Hl6sN34xJtMv7Anwb5Gu01yujyE/cLBDB2gnHTAHaWS1Z38L7kuSG+oAh0giZMqG060f/YBStXtMH6FvPMA==",
"cpu": [
"arm"
],
@@ -808,9 +1431,9 @@
]
},
"node_modules/@rollup/rollup-android-arm64": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.8.tgz",
- "integrity": "sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.46.2.tgz",
+ "integrity": "sha512-nTeCWY83kN64oQ5MGz3CgtPx8NSOhC5lWtsjTs+8JAJNLcP3QbLCtDDgUKQc/Ro/frpMq4SHUaHN6AMltcEoLQ==",
"cpu": [
"arm64"
],
@@ -822,9 +1445,9 @@
]
},
"node_modules/@rollup/rollup-darwin-arm64": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.8.tgz",
- "integrity": "sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.46.2.tgz",
+ "integrity": "sha512-HV7bW2Fb/F5KPdM/9bApunQh68YVDU8sO8BvcW9OngQVN3HHHkw99wFupuUJfGR9pYLLAjcAOA6iO+evsbBaPQ==",
"cpu": [
"arm64"
],
@@ -836,9 +1459,9 @@
]
},
"node_modules/@rollup/rollup-darwin-x64": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.8.tgz",
- "integrity": "sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.46.2.tgz",
+ "integrity": "sha512-SSj8TlYV5nJixSsm/y3QXfhspSiLYP11zpfwp6G/YDXctf3Xkdnk4woJIF5VQe0of2OjzTt8EsxnJDCdHd2xMA==",
"cpu": [
"x64"
],
@@ -850,9 +1473,9 @@
]
},
"node_modules/@rollup/rollup-freebsd-arm64": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.8.tgz",
- "integrity": "sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.46.2.tgz",
+ "integrity": "sha512-ZyrsG4TIT9xnOlLsSSi9w/X29tCbK1yegE49RYm3tu3wF1L/B6LVMqnEWyDB26d9Ecx9zrmXCiPmIabVuLmNSg==",
"cpu": [
"arm64"
],
@@ -864,9 +1487,9 @@
]
},
"node_modules/@rollup/rollup-freebsd-x64": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.8.tgz",
- "integrity": "sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.46.2.tgz",
+ "integrity": "sha512-pCgHFoOECwVCJ5GFq8+gR8SBKnMO+xe5UEqbemxBpCKYQddRQMgomv1104RnLSg7nNvgKy05sLsY51+OVRyiVw==",
"cpu": [
"x64"
],
@@ -878,9 +1501,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.8.tgz",
- "integrity": "sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.46.2.tgz",
+ "integrity": "sha512-EtP8aquZ0xQg0ETFcxUbU71MZlHaw9MChwrQzatiE8U/bvi5uv/oChExXC4mWhjiqK7azGJBqU0tt5H123SzVA==",
"cpu": [
"arm"
],
@@ -892,9 +1515,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.8.tgz",
- "integrity": "sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.46.2.tgz",
+ "integrity": "sha512-qO7F7U3u1nfxYRPM8HqFtLd+raev2K137dsV08q/LRKRLEc7RsiDWihUnrINdsWQxPR9jqZ8DIIZ1zJJAm5PjQ==",
"cpu": [
"arm"
],
@@ -906,9 +1529,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-gnu": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.8.tgz",
- "integrity": "sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.46.2.tgz",
+ "integrity": "sha512-3dRaqLfcOXYsfvw5xMrxAk9Lb1f395gkoBYzSFcc/scgRFptRXL9DOaDpMiehf9CO8ZDRJW2z45b6fpU5nwjng==",
"cpu": [
"arm64"
],
@@ -920,9 +1543,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-musl": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.8.tgz",
- "integrity": "sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.46.2.tgz",
+ "integrity": "sha512-fhHFTutA7SM+IrR6lIfiHskxmpmPTJUXpWIsBXpeEwNgZzZZSg/q4i6FU4J8qOGyJ0TR+wXBwx/L7Ho9z0+uDg==",
"cpu": [
"arm64"
],
@@ -934,9 +1557,9 @@
]
},
"node_modules/@rollup/rollup-linux-loongarch64-gnu": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.8.tgz",
- "integrity": "sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.46.2.tgz",
+ "integrity": "sha512-i7wfGFXu8x4+FRqPymzjD+Hyav8l95UIZ773j7J7zRYc3Xsxy2wIn4x+llpunexXe6laaO72iEjeeGyUFmjKeA==",
"cpu": [
"loong64"
],
@@ -947,10 +1570,10 @@
"linux"
]
},
- "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.8.tgz",
- "integrity": "sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==",
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.46.2.tgz",
+ "integrity": "sha512-B/l0dFcHVUnqcGZWKcWBSV2PF01YUt0Rvlurci5P+neqY/yMKchGU8ullZvIv5e8Y1C6wOn+U03mrDylP5q9Yw==",
"cpu": [
"ppc64"
],
@@ -962,9 +1585,23 @@
]
},
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.8.tgz",
- "integrity": "sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.46.2.tgz",
+ "integrity": "sha512-32k4ENb5ygtkMwPMucAb8MtV8olkPT03oiTxJbgkJa7lJ7dZMr0GCFJlyvy+K8iq7F/iuOr41ZdUHaOiqyR3iQ==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.46.2.tgz",
+ "integrity": "sha512-t5B2loThlFEauloaQkZg9gxV05BYeITLvLkWOkRXogP4qHXLkWSbSHKM9S6H1schf/0YGP/qNKtiISlxvfmmZw==",
"cpu": [
"riscv64"
],
@@ -976,9 +1613,9 @@
]
},
"node_modules/@rollup/rollup-linux-s390x-gnu": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.8.tgz",
- "integrity": "sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.46.2.tgz",
+ "integrity": "sha512-YKjekwTEKgbB7n17gmODSmJVUIvj8CX7q5442/CK80L8nqOUbMtf8b01QkG3jOqyr1rotrAnW6B/qiHwfcuWQA==",
"cpu": [
"s390x"
],
@@ -990,9 +1627,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-gnu": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.8.tgz",
- "integrity": "sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.46.2.tgz",
+ "integrity": "sha512-Jj5a9RUoe5ra+MEyERkDKLwTXVu6s3aACP51nkfnK9wJTraCC8IMe3snOfALkrjTYd2G1ViE1hICj0fZ7ALBPA==",
"cpu": [
"x64"
],
@@ -1004,9 +1641,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-musl": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.8.tgz",
- "integrity": "sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.46.2.tgz",
+ "integrity": "sha512-7kX69DIrBeD7yNp4A5b81izs8BqoZkCIaxQaOpumcJ1S/kmqNFjPhDu1LHeVXv0SexfHQv5cqHsxLOjETuqDuA==",
"cpu": [
"x64"
],
@@ -1018,9 +1655,9 @@
]
},
"node_modules/@rollup/rollup-win32-arm64-msvc": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.8.tgz",
- "integrity": "sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.46.2.tgz",
+ "integrity": "sha512-wiJWMIpeaak/jsbaq2HMh/rzZxHVW1rU6coyeNNpMwk5isiPjSTx0a4YLSlYDwBH/WBvLz+EtsNqQScZTLJy3g==",
"cpu": [
"arm64"
],
@@ -1032,9 +1669,9 @@
]
},
"node_modules/@rollup/rollup-win32-ia32-msvc": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.8.tgz",
- "integrity": "sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.46.2.tgz",
+ "integrity": "sha512-gBgaUDESVzMgWZhcyjfs9QFK16D8K6QZpwAaVNJxYDLHWayOta4ZMjGm/vsAEy3hvlS2GosVFlBlP9/Wb85DqQ==",
"cpu": [
"ia32"
],
@@ -1046,9 +1683,9 @@
]
},
"node_modules/@rollup/rollup-win32-x64-msvc": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.8.tgz",
- "integrity": "sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.46.2.tgz",
+ "integrity": "sha512-CvUo2ixeIQGtF6WvuB87XWqPQkoFAFqW+HUo/WzHwuHDvIwZCtjdWXoYCcr06iKGydiqTclC4jU/TNObC/xKZg==",
"cpu": [
"x64"
],
@@ -1059,83 +1696,101 @@
"win32"
]
},
- "node_modules/@sentry-internal/tracing": {
- "version": "7.120.3",
- "resolved": "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.120.3.tgz",
- "integrity": "sha512-Ausx+Jw1pAMbIBHStoQ6ZqDZR60PsCByvHdw/jdH9AqPrNE9xlBSf9EwcycvmrzwyKspSLaB52grlje2cRIUMg==",
- "license": "MIT",
- "dependencies": {
- "@sentry/core": "7.120.3",
- "@sentry/types": "7.120.3",
- "@sentry/utils": "7.120.3"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@sentry/core": {
- "version": "7.120.3",
- "resolved": "https://registry.npmjs.org/@sentry/core/-/core-7.120.3.tgz",
- "integrity": "sha512-vyy11fCGpkGK3qI5DSXOjgIboBZTriw0YDx/0KyX5CjIjDDNgp5AGgpgFkfZyiYiaU2Ww3iFuKo4wHmBusz1uA==",
+ "version": "9.45.0",
+ "resolved": "https://registry.npmjs.org/@sentry/core/-/core-9.45.0.tgz",
+ "integrity": "sha512-yTpB53fBEWTMzltD/8f/qI2MFTwgd2vSkn7pOZQusSOMtyt0Bsm/77oqXldIt+eMBAImZalzZaxmaN7RyiRKWQ==",
"license": "MIT",
- "dependencies": {
- "@sentry/types": "7.120.3",
- "@sentry/utils": "7.120.3"
- },
"engines": {
- "node": ">=8"
+ "node": ">=18"
}
},
- "node_modules/@sentry/integrations": {
- "version": "7.120.3",
- "resolved": "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.120.3.tgz",
- "integrity": "sha512-6i/lYp0BubHPDTg91/uxHvNui427df9r17SsIEXa2eKDwQ9gW2qRx5IWgvnxs2GV/GfSbwcx4swUB3RfEWrXrQ==",
- "license": "MIT",
- "dependencies": {
- "@sentry/core": "7.120.3",
- "@sentry/types": "7.120.3",
- "@sentry/utils": "7.120.3",
- "localforage": "^1.8.1"
+ "node_modules/@sentry/node": {
+ "version": "9.45.0",
+ "resolved": "https://registry.npmjs.org/@sentry/node/-/node-9.45.0.tgz",
+ "integrity": "sha512-c0SFcMeZwxLvjC1HrutI8V+Ag8AxENXPiU5PbSmqiTX7p4QnByTcxkENGw5EyLedDZluuEDmmHTBKckCC4X2nA==",
+ "license": "MIT",
+ "dependencies": {
+ "@opentelemetry/api": "^1.9.0",
+ "@opentelemetry/context-async-hooks": "^1.30.1",
+ "@opentelemetry/core": "^1.30.1",
+ "@opentelemetry/instrumentation": "^0.57.2",
+ "@opentelemetry/instrumentation-amqplib": "^0.46.1",
+ "@opentelemetry/instrumentation-connect": "0.43.1",
+ "@opentelemetry/instrumentation-dataloader": "0.16.1",
+ "@opentelemetry/instrumentation-express": "0.47.1",
+ "@opentelemetry/instrumentation-fs": "0.19.1",
+ "@opentelemetry/instrumentation-generic-pool": "0.43.1",
+ "@opentelemetry/instrumentation-graphql": "0.47.1",
+ "@opentelemetry/instrumentation-hapi": "0.45.2",
+ "@opentelemetry/instrumentation-http": "0.57.2",
+ "@opentelemetry/instrumentation-ioredis": "0.47.1",
+ "@opentelemetry/instrumentation-kafkajs": "0.7.1",
+ "@opentelemetry/instrumentation-knex": "0.44.1",
+ "@opentelemetry/instrumentation-koa": "0.47.1",
+ "@opentelemetry/instrumentation-lru-memoizer": "0.44.1",
+ "@opentelemetry/instrumentation-mongodb": "0.52.0",
+ "@opentelemetry/instrumentation-mongoose": "0.46.1",
+ "@opentelemetry/instrumentation-mysql": "0.45.1",
+ "@opentelemetry/instrumentation-mysql2": "0.45.2",
+ "@opentelemetry/instrumentation-pg": "0.51.1",
+ "@opentelemetry/instrumentation-redis-4": "0.46.1",
+ "@opentelemetry/instrumentation-tedious": "0.18.1",
+ "@opentelemetry/instrumentation-undici": "0.10.1",
+ "@opentelemetry/resources": "^1.30.1",
+ "@opentelemetry/sdk-trace-base": "^1.30.1",
+ "@opentelemetry/semantic-conventions": "^1.34.0",
+ "@prisma/instrumentation": "6.11.1",
+ "@sentry/core": "9.45.0",
+ "@sentry/node-core": "9.45.0",
+ "@sentry/opentelemetry": "9.45.0",
+ "import-in-the-middle": "^1.14.2",
+ "minimatch": "^9.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=18"
}
},
- "node_modules/@sentry/node": {
- "version": "7.120.3",
- "resolved": "https://registry.npmjs.org/@sentry/node/-/node-7.120.3.tgz",
- "integrity": "sha512-t+QtekZedEfiZjbkRAk1QWJPnJlFBH/ti96tQhEq7wmlk3VszDXraZvLWZA0P2vXyglKzbWRGkT31aD3/kX+5Q==",
+ "node_modules/@sentry/node-core": {
+ "version": "9.45.0",
+ "resolved": "https://registry.npmjs.org/@sentry/node-core/-/node-core-9.45.0.tgz",
+ "integrity": "sha512-tzt60LO7P1m+0OLEqtL5Fd71PwKpg7dSOn3rqB7T6AJeDDiHsXV/yhUZiye1EWHTi0/yOcb0M1Ncjs8Cdyz9Nw==",
"license": "MIT",
"dependencies": {
- "@sentry-internal/tracing": "7.120.3",
- "@sentry/core": "7.120.3",
- "@sentry/integrations": "7.120.3",
- "@sentry/types": "7.120.3",
- "@sentry/utils": "7.120.3"
+ "@sentry/core": "9.45.0",
+ "@sentry/opentelemetry": "9.45.0",
+ "import-in-the-middle": "^1.14.2"
},
"engines": {
- "node": ">=8"
- }
- },
- "node_modules/@sentry/types": {
- "version": "7.120.3",
- "resolved": "https://registry.npmjs.org/@sentry/types/-/types-7.120.3.tgz",
- "integrity": "sha512-C4z+3kGWNFJ303FC+FxAd4KkHvxpNFYAFN8iMIgBwJdpIl25KZ8Q/VdGn0MLLUEHNLvjob0+wvwlcRBBNLXOow==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
+ "node": ">=18"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.9.0",
+ "@opentelemetry/context-async-hooks": "^1.30.1 || ^2.0.0",
+ "@opentelemetry/core": "^1.30.1 || ^2.0.0",
+ "@opentelemetry/instrumentation": ">=0.57.1 <1",
+ "@opentelemetry/resources": "^1.30.1 || ^2.0.0",
+ "@opentelemetry/sdk-trace-base": "^1.30.1 || ^2.0.0",
+ "@opentelemetry/semantic-conventions": "^1.34.0"
}
},
- "node_modules/@sentry/utils": {
- "version": "7.120.3",
- "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-7.120.3.tgz",
- "integrity": "sha512-UDAOQJtJDxZHQ5Nm1olycBIsz2wdGX8SdzyGVHmD8EOQYAeDZQyIlQYohDe9nazdIOQLZCIc3fU0G9gqVLkaGQ==",
+ "node_modules/@sentry/opentelemetry": {
+ "version": "9.45.0",
+ "resolved": "https://registry.npmjs.org/@sentry/opentelemetry/-/opentelemetry-9.45.0.tgz",
+ "integrity": "sha512-xLH7ZH6xcZBHK77mTa32YjIEL92jmc7i2qkxlchzTNacmTn9BNnuzPFBS7KuISJPXw9R1pXBra6IVEhm6hil/g==",
"license": "MIT",
"dependencies": {
- "@sentry/types": "7.120.3"
+ "@sentry/core": "9.45.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=18"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.9.0",
+ "@opentelemetry/context-async-hooks": "^1.30.1 || ^2.0.0",
+ "@opentelemetry/core": "^1.30.1 || ^2.0.0",
+ "@opentelemetry/sdk-trace-base": "^1.30.1 || ^2.0.0",
+ "@opentelemetry/semantic-conventions": "^1.34.0"
}
},
"node_modules/@swc/core": {
@@ -1236,35 +1891,91 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/@types/chai": {
+ "version": "5.2.2",
+ "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.2.tgz",
+ "integrity": "sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/deep-eql": "*"
+ }
+ },
+ "node_modules/@types/connect": {
+ "version": "3.4.38",
+ "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz",
+ "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@types/deep-eql": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz",
+ "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/@types/estree": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
- "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
"dev": true,
"license": "MIT"
},
+ "node_modules/@types/mysql": {
+ "version": "2.15.26",
+ "resolved": "https://registry.npmjs.org/@types/mysql/-/mysql-2.15.26.tgz",
+ "integrity": "sha512-DSLCOXhkvfS5WNNPbfn2KdICAmk8lLc+/PNvnPnF7gOdMZCxopXduqv0OQ13y/yA/zXTSikZZqVgybUxOEg6YQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
"node_modules/@types/node": {
- "version": "22.13.5",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.5.tgz",
- "integrity": "sha512-+lTU0PxZXn0Dr1NBtC7Y8cR21AJr87dLLU953CWA6pMxxv/UDc7jYAY90upcrie1nRcD6XNG5HOYEDtgW5TxAg==",
+ "version": "24.7.0",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-24.7.0.tgz",
+ "integrity": "sha512-IbKooQVqUBrlzWTi79E8Fw78l8k1RNtlDDNWsFZs7XonuQSJ8oNYfEeclhprUldXISRMLzBpILuKgPlIxm+/Yw==",
+ "license": "MIT",
+ "dependencies": {
+ "undici-types": "~7.14.0"
+ }
+ },
+ "node_modules/@types/pg": {
+ "version": "8.6.1",
+ "resolved": "https://registry.npmjs.org/@types/pg/-/pg-8.6.1.tgz",
+ "integrity": "sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*",
+ "pg-protocol": "*",
+ "pg-types": "^2.2.0"
+ }
+ },
+ "node_modules/@types/pg-pool": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@types/pg-pool/-/pg-pool-2.0.6.tgz",
+ "integrity": "sha512-TaAUE5rq2VQYxab5Ts7WZhKNmuN78Q6PiFonTDdpbx8a1H0M1vhy3rhiMjl+e2iHmogyMw7jZF4FrE6eJUy5HQ==",
"license": "MIT",
"dependencies": {
- "undici-types": "~6.20.0"
+ "@types/pg": "*"
}
},
"node_modules/@types/ramda": {
- "version": "0.30.2",
- "resolved": "https://registry.npmjs.org/@types/ramda/-/ramda-0.30.2.tgz",
- "integrity": "sha512-PyzHvjCalm2BRYjAU6nIB3TprYwMNOUY/7P/N8bSzp9W/yM2YrtGtAnnVtaCNSeOZ8DzKyFDvaqQs7LnWwwmBA==",
+ "version": "0.31.1",
+ "resolved": "https://registry.npmjs.org/@types/ramda/-/ramda-0.31.1.tgz",
+ "integrity": "sha512-Vt6sFXnuRpzaEj+yeutA0q3bcAsK7wdPuASIzR9LXqL4gJPyFw8im9qchlbp4ltuf3kDEIRmPJTD/Fkg60dn7g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "types-ramda": "^0.30.1"
+ "types-ramda": "^0.31.0"
}
},
"node_modules/@types/selenium-webdriver": {
- "version": "4.1.28",
- "resolved": "https://registry.npmjs.org/@types/selenium-webdriver/-/selenium-webdriver-4.1.28.tgz",
- "integrity": "sha512-Au7CXegiS7oapbB16zxPToY4Cjzi9UQQMf3W2ZZM8PigMLTGR3iUAHjPUTddyE5g1SBjT/qpmvlsAQLBfNAdKg==",
+ "version": "4.35.1",
+ "resolved": "https://registry.npmjs.org/@types/selenium-webdriver/-/selenium-webdriver-4.35.1.tgz",
+ "integrity": "sha512-mAt5iZv1D2/9Sb9eCdwxh5ePxbgwvJGTkD7hGdgZOjemABF8Qrde7H0qI5GKSp9f4+wGvOY/yNdBOver817/6A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1273,10 +1984,26 @@
}
},
"node_modules/@types/semver": {
- "version": "7.5.8",
- "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz",
- "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==",
- "dev": true
+ "version": "7.7.1",
+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.1.tgz",
+ "integrity": "sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/shimmer": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@types/shimmer/-/shimmer-1.2.0.tgz",
+ "integrity": "sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==",
+ "license": "MIT"
+ },
+ "node_modules/@types/tedious": {
+ "version": "4.0.14",
+ "resolved": "https://registry.npmjs.org/@types/tedious/-/tedious-4.0.14.tgz",
+ "integrity": "sha512-KHPsfX/FoVbUGbyYvk1q9MMQHLPeRZhRJZdO45Q4YjvFkv4hMNghCWTvy7rdKessBsmtz4euWCWAB6/tVpI1Iw==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
},
"node_modules/@types/ws": {
"version": "8.5.3",
@@ -1309,22 +2036,23 @@
}
},
"node_modules/@vitest/coverage-v8": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-3.0.7.tgz",
- "integrity": "sha512-Av8WgBJLTrfLOer0uy3CxjlVuWK4CzcLBndW1Nm2vI+3hZ2ozHututkfc7Blu1u6waeQ7J8gzPK/AsBRnWA5mQ==",
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-3.2.4.tgz",
+ "integrity": "sha512-EyF9SXU6kS5Ku/U82E259WSnvg6c8KTjppUncuNdm5QHpe17mwREHnjDzozC8x9MZ0xfBUFSaLkRv4TMA75ALQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@ampproject/remapping": "^2.3.0",
"@bcoe/v8-coverage": "^1.0.2",
- "debug": "^4.4.0",
+ "ast-v8-to-istanbul": "^0.3.3",
+ "debug": "^4.4.1",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
"istanbul-lib-source-maps": "^5.0.6",
"istanbul-reports": "^3.1.7",
"magic-string": "^0.30.17",
"magicast": "^0.3.5",
- "std-env": "^3.8.0",
+ "std-env": "^3.9.0",
"test-exclude": "^7.0.1",
"tinyrainbow": "^2.0.0"
},
@@ -1332,8 +2060,8 @@
"url": "https://opencollective.com/vitest"
},
"peerDependencies": {
- "@vitest/browser": "3.0.7",
- "vitest": "3.0.7"
+ "@vitest/browser": "3.2.4",
+ "vitest": "3.2.4"
},
"peerDependenciesMeta": {
"@vitest/browser": {
@@ -1342,14 +2070,15 @@
}
},
"node_modules/@vitest/expect": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.0.7.tgz",
- "integrity": "sha512-QP25f+YJhzPfHrHfYHtvRn+uvkCFCqFtW9CktfBxmB+25QqWsx7VB2As6f4GmwllHLDhXNHvqedwhvMmSnNmjw==",
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.2.4.tgz",
+ "integrity": "sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vitest/spy": "3.0.7",
- "@vitest/utils": "3.0.7",
+ "@types/chai": "^5.2.2",
+ "@vitest/spy": "3.2.4",
+ "@vitest/utils": "3.2.4",
"chai": "^5.2.0",
"tinyrainbow": "^2.0.0"
},
@@ -1358,13 +2087,13 @@
}
},
"node_modules/@vitest/mocker": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-3.0.7.tgz",
- "integrity": "sha512-qui+3BLz9Eonx4EAuR/i+QlCX6AUZ35taDQgwGkK/Tw6/WgwodSrjN1X2xf69IA/643ZX5zNKIn2svvtZDrs4w==",
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-3.2.4.tgz",
+ "integrity": "sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vitest/spy": "3.0.7",
+ "@vitest/spy": "3.2.4",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.17"
},
@@ -1373,7 +2102,7 @@
},
"peerDependencies": {
"msw": "^2.4.9",
- "vite": "^5.0.0 || ^6.0.0"
+ "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0"
},
"peerDependenciesMeta": {
"msw": {
@@ -1385,9 +2114,9 @@
}
},
"node_modules/@vitest/pretty-format": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.0.7.tgz",
- "integrity": "sha512-CiRY0BViD/V8uwuEzz9Yapyao+M9M008/9oMOSQydwbwb+CMokEq3XVaF3XK/VWaOK0Jm9z7ENhybg70Gtxsmg==",
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.2.4.tgz",
+ "integrity": "sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1398,27 +2127,28 @@
}
},
"node_modules/@vitest/runner": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-3.0.7.tgz",
- "integrity": "sha512-WeEl38Z0S2ZcuRTeyYqaZtm4e26tq6ZFqh5y8YD9YxfWuu0OFiGFUbnxNynwLjNRHPsXyee2M9tV7YxOTPZl2g==",
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-3.2.4.tgz",
+ "integrity": "sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vitest/utils": "3.0.7",
- "pathe": "^2.0.3"
+ "@vitest/utils": "3.2.4",
+ "pathe": "^2.0.3",
+ "strip-literal": "^3.0.0"
},
"funding": {
"url": "https://opencollective.com/vitest"
}
},
"node_modules/@vitest/snapshot": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-3.0.7.tgz",
- "integrity": "sha512-eqTUryJWQN0Rtf5yqCGTQWsCFOQe4eNz5Twsu21xYEcnFJtMU5XvmG0vgebhdLlrHQTSq5p8vWHJIeJQV8ovsA==",
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-3.2.4.tgz",
+ "integrity": "sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vitest/pretty-format": "3.0.7",
+ "@vitest/pretty-format": "3.2.4",
"magic-string": "^0.30.17",
"pathe": "^2.0.3"
},
@@ -1427,27 +2157,27 @@
}
},
"node_modules/@vitest/spy": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.0.7.tgz",
- "integrity": "sha512-4T4WcsibB0B6hrKdAZTM37ekuyFZt2cGbEGd2+L0P8ov15J1/HUsUaqkXEQPNAWr4BtPPe1gI+FYfMHhEKfR8w==",
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.2.4.tgz",
+ "integrity": "sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "tinyspy": "^3.0.2"
+ "tinyspy": "^4.0.3"
},
"funding": {
"url": "https://opencollective.com/vitest"
}
},
"node_modules/@vitest/utils": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.0.7.tgz",
- "integrity": "sha512-xePVpCRfooFX3rANQjwoditoXgWb1MaFbzmGuPP59MK6i13mrnDw/yEIyJudLeW6/38mCNcwCiJIGmpDPibAIg==",
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.2.4.tgz",
+ "integrity": "sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vitest/pretty-format": "3.0.7",
- "loupe": "^3.1.3",
+ "@vitest/pretty-format": "3.2.4",
+ "loupe": "^3.1.4",
"tinyrainbow": "^2.0.0"
},
"funding": {
@@ -1455,10 +2185,10 @@
}
},
"node_modules/acorn": {
- "version": "8.11.3",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz",
- "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==",
- "dev": true,
+ "version": "8.15.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
+ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
+ "license": "MIT",
"bin": {
"acorn": "bin/acorn"
},
@@ -1466,6 +2196,15 @@
"node": ">=0.4.0"
}
},
+ "node_modules/acorn-import-attributes": {
+ "version": "1.9.5",
+ "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz",
+ "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "acorn": "^8"
+ }
+ },
"node_modules/acorn-walk": {
"version": "8.3.2",
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz",
@@ -1540,68 +2279,107 @@
"node": ">=4"
}
},
+ "node_modules/ast-v8-to-istanbul": {
+ "version": "0.3.4",
+ "resolved": "https://registry.npmjs.org/ast-v8-to-istanbul/-/ast-v8-to-istanbul-0.3.4.tgz",
+ "integrity": "sha512-cxrAnZNLBnQwBPByK4CeDaw5sWZtMilJE/Q3iDA0aamgaIVNDF9T6K2/8DfYDZEejZ2jNnDrG9m8MY72HFd0KA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/trace-mapping": "^0.3.29",
+ "estree-walker": "^3.0.3",
+ "js-tokens": "^9.0.1"
+ }
+ },
"node_modules/asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
- "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
+ "license": "MIT"
+ },
+ "node_modules/atomically": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/atomically/-/atomically-2.0.3.tgz",
+ "integrity": "sha512-kU6FmrwZ3Lx7/7y3hPS5QnbJfaohcIul5fGqf7ok+4KklIEk9tJ0C2IQPdacSbVUWv6zVHXEBWoWd6NrVMT7Cw==",
+ "dependencies": {
+ "stubborn-fs": "^1.2.5",
+ "when-exit": "^2.1.1"
+ }
},
"node_modules/axe-core": {
- "version": "4.10.2",
- "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.2.tgz",
- "integrity": "sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==",
+ "version": "4.10.3",
+ "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.3.tgz",
+ "integrity": "sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==",
"license": "MPL-2.0",
"engines": {
"node": ">=4"
}
},
"node_modules/axios": {
- "version": "1.7.7",
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz",
- "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==",
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.12.2.tgz",
+ "integrity": "sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==",
+ "license": "MIT",
"dependencies": {
"follow-redirects": "^1.15.6",
- "form-data": "^4.0.0",
+ "form-data": "^4.0.4",
"proxy-from-env": "^1.1.0"
}
},
"node_modules/b4a": {
- "version": "1.6.7",
- "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz",
- "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==",
- "license": "Apache-2.0"
+ "version": "1.7.3",
+ "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.7.3.tgz",
+ "integrity": "sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react-native-b4a": "*"
+ },
+ "peerDependenciesMeta": {
+ "react-native-b4a": {
+ "optional": true
+ }
+ }
},
"node_modules/balanced-match": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "dev": true
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
"node_modules/bare-events": {
- "version": "2.5.4",
- "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.4.tgz",
- "integrity": "sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==",
- "license": "Apache-2.0",
- "optional": true
+ "version": "2.7.0",
+ "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.7.0.tgz",
+ "integrity": "sha512-b3N5eTW1g7vXkw+0CXh/HazGTcO5KYuu/RCNaJbDMPI6LHDi+7qe8EmxKUVe1sUbY2KZOVZFyj62x0OEz9qyAA==",
+ "license": "Apache-2.0"
},
"node_modules/bare-fs": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.0.1.tgz",
- "integrity": "sha512-ilQs4fm/l9eMfWY2dY0WCIUplSUp7U0CT1vrqMg1MUdeZl4fypu5UP0XcDBK5WBQPJAKP1b7XEodISmekH/CEg==",
+ "version": "4.4.5",
+ "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.4.5.tgz",
+ "integrity": "sha512-TCtu93KGLu6/aiGWzMr12TmSRS6nKdfhAnzTQRbXoSWxkbb9eRd53jQ51jG7g1gYjjtto3hbBrrhzg6djcgiKg==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
- "bare-events": "^2.0.0",
+ "bare-events": "^2.5.4",
"bare-path": "^3.0.0",
- "bare-stream": "^2.0.0"
+ "bare-stream": "^2.6.4",
+ "bare-url": "^2.2.2",
+ "fast-fifo": "^1.3.2"
},
"engines": {
- "bare": ">=1.7.0"
+ "bare": ">=1.16.0"
+ },
+ "peerDependencies": {
+ "bare-buffer": "*"
+ },
+ "peerDependenciesMeta": {
+ "bare-buffer": {
+ "optional": true
+ }
}
},
"node_modules/bare-os": {
- "version": "3.5.1",
- "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.5.1.tgz",
- "integrity": "sha512-LvfVNDcWLw2AnIw5f2mWUgumW3I3N/WYGiWeimhQC1Ybt71n2FjlS9GJKeCnFeg1MKZHxzIFmpFnBXDI+sBeFg==",
+ "version": "3.6.2",
+ "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.6.2.tgz",
+ "integrity": "sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A==",
"license": "Apache-2.0",
"optional": true,
"engines": {
@@ -1619,9 +2397,9 @@
}
},
"node_modules/bare-stream": {
- "version": "2.6.5",
- "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.6.5.tgz",
- "integrity": "sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==",
+ "version": "2.7.0",
+ "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.7.0.tgz",
+ "integrity": "sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==",
"license": "Apache-2.0",
"optional": true,
"dependencies": {
@@ -1640,25 +2418,15 @@
}
}
},
- "node_modules/base64-js": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
- "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
+ "node_modules/bare-url": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.2.2.tgz",
+ "integrity": "sha512-g+ueNGKkrjMazDG3elZO1pNs3HY5+mMmOet1jtKyhOaCnkLzitxf26z7hoAEkDNgdNmnc1KIlt/dw6Po6xZMpA==",
+ "license": "Apache-2.0",
+ "optional": true,
+ "dependencies": {
+ "bare-path": "^3.0.0"
+ }
},
"node_modules/basic-ftp": {
"version": "5.0.5",
@@ -1673,35 +2441,10 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
- "dev": true,
"dependencies": {
"balanced-match": "^1.0.0"
}
},
- "node_modules/buffer": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
- "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "base64-js": "^1.3.1",
- "ieee754": "^1.1.13"
- }
- },
"node_modules/buffer-crc32": {
"version": "0.2.13",
"license": "MIT",
@@ -1719,10 +2462,23 @@
"node": ">=8"
}
},
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/chai": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/chai/-/chai-5.2.0.tgz",
- "integrity": "sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==",
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/chai/-/chai-5.2.1.tgz",
+ "integrity": "sha512-5nFxhUrX0PqtyogoYOA8IPswy5sZFTOsBFl/9bNsmDLgsxYTzSZQJDPppDnZPTQbzSEm0hqGjWPzRemQCYbD6A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1733,7 +2489,7 @@
"pathval": "^2.0.0"
},
"engines": {
- "node": ">=12"
+ "node": ">=18"
}
},
"node_modules/check-error": {
@@ -1747,9 +2503,10 @@
}
},
"node_modules/chrome-launcher": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-1.1.2.tgz",
- "integrity": "sha512-YclTJey34KUm5jB1aEJCq807bSievi7Nb/TU4Gu504fUYi3jw3KCIaH6L7nFWQhdEgH3V+wCh+kKD1P5cXnfxw==",
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-1.2.0.tgz",
+ "integrity": "sha512-JbuGuBNss258bvGil7FT4HKdC3SC2K7UAEUqiPy3ACS3Yxo3hAW6bvFpCu2HsIJLgTqxgEX6BkujvzZfLpUD0Q==",
+ "license": "Apache-2.0",
"dependencies": {
"@types/node": "*",
"escape-string-regexp": "^4.0.0",
@@ -1757,21 +2514,21 @@
"lighthouse-logger": "^2.0.1"
},
"bin": {
- "print-chrome-path": "bin/print-chrome-path.js"
+ "print-chrome-path": "bin/print-chrome-path.cjs"
},
"engines": {
"node": ">=12.13.0"
}
},
"node_modules/chromedriver": {
- "version": "133.0.3",
- "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-133.0.3.tgz",
- "integrity": "sha512-wGZUtrSdyqnbweXEDIbn+ndu7memG4SEqG6/D+mSabKUEic0hveMYepAPAhlYtvyOc0X8JbsARYtEalVD3R/Vg==",
+ "version": "141.0.0",
+ "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-141.0.0.tgz",
+ "integrity": "sha512-w0U5jyWlLaRHV+dhaSikDz4x0qOwZcbles2HBu4oRdd+Eq7M43Uns4eoP/6dKu9Uc5ppcK9gA/E9GHROGXhgPg==",
"hasInstallScript": true,
"license": "Apache-2.0",
"dependencies": {
"@testim/chrome-version": "^1.1.4",
- "axios": "^1.7.4",
+ "axios": "^1.12.0",
"compare-versions": "^6.1.0",
"extract-zip": "^2.0.1",
"proxy-agent": "^6.4.0",
@@ -1782,13 +2539,13 @@
"chromedriver": "bin/chromedriver"
},
"engines": {
- "node": ">=18"
+ "node": ">=20"
}
},
"node_modules/chromium-bidi": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-2.0.0.tgz",
- "integrity": "sha512-8VmyVj0ewSY4pstZV0Y3rCUUwpomam8uWgHZf1XavRxJEP4vU9/dcpNuoyB+u4AQxPo96CASXz5CHPvdH+dSeQ==",
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-9.1.0.tgz",
+ "integrity": "sha512-rlUzQ4WzIAWdIbY/viPShhZU2n21CxDUgazXVbw4Hu1MwaeUSEksSeM6DqPgpRjCLXRk702AVRxJxoOz0dw4OA==",
"license": "Apache-2.0",
"dependencies": {
"mitt": "^3.0.1",
@@ -1798,17 +2555,74 @@
"devtools-protocol": "*"
}
},
+ "node_modules/cjs-module-lexer": {
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz",
+ "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==",
+ "license": "MIT"
+ },
"node_modules/cliui": {
- "version": "8.0.1",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
- "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
+ "version": "9.0.1",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-9.0.1.tgz",
+ "integrity": "sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==",
+ "license": "ISC",
"dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.1",
- "wrap-ansi": "^7.0.0"
+ "string-width": "^7.2.0",
+ "strip-ansi": "^7.1.0",
+ "wrap-ansi": "^9.0.0"
+ },
+ "engines": {
+ "node": ">=20"
+ }
+ },
+ "node_modules/cliui/node_modules/ansi-regex": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
+ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
+ "node_modules/cliui/node_modules/emoji-regex": {
+ "version": "10.4.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz",
+ "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==",
+ "license": "MIT"
+ },
+ "node_modules/cliui/node_modules/string-width": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
+ "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^10.3.0",
+ "get-east-asian-width": "^1.0.0",
+ "strip-ansi": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cliui/node_modules/strip-ansi": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
},
"engines": {
"node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
"node_modules/color-convert": {
@@ -1831,6 +2645,7 @@
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "license": "MIT",
"dependencies": {
"delayed-stream": "~1.0.0"
},
@@ -1844,18 +2659,21 @@
"integrity": "sha512-LNZQXhqUvqUTotpZ00qLSaify3b4VFD588aRr8MKFw4CMUr98ytzCW5wDH5qx/DEY5kCDXcbcRuCqL0szEf2tg=="
},
"node_modules/configstore": {
- "version": "5.0.1",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/configstore/-/configstore-7.0.0.tgz",
+ "integrity": "sha512-yk7/5PN5im4qwz0WFZW3PXnzHgPu9mX29Y8uZ3aefe2lBPC1FYttWZRcaW9fKkT0pBCJyuQ2HfbmPVaODi9jcQ==",
"license": "BSD-2-Clause",
"dependencies": {
- "dot-prop": "^5.2.0",
- "graceful-fs": "^4.1.2",
- "make-dir": "^3.0.0",
- "unique-string": "^2.0.0",
- "write-file-atomic": "^3.0.0",
- "xdg-basedir": "^4.0.0"
+ "atomically": "^2.0.3",
+ "dot-prop": "^9.0.0",
+ "graceful-fs": "^4.2.11",
+ "xdg-basedir": "^5.1.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/yeoman/configstore?sponsor=1"
}
},
"node_modules/core-util-is": {
@@ -1868,23 +2686,26 @@
"license": "MIT"
},
"node_modules/cross-env": {
- "version": "7.0.3",
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-10.1.0.tgz",
+ "integrity": "sha512-GsYosgnACZTADcmEyJctkJIoqAhHjttw7RsFrVoJNXbsWWqaq6Ym+7kZjq6mS45O0jij6vtiReppKQEtqWy6Dw==",
"license": "MIT",
"dependencies": {
- "cross-spawn": "^7.0.1"
+ "@epic-web/invariant": "^1.0.0",
+ "cross-spawn": "^7.0.6"
},
"bin": {
- "cross-env": "src/bin/cross-env.js",
- "cross-env-shell": "src/bin/cross-env-shell.js"
+ "cross-env": "dist/bin/cross-env.js",
+ "cross-env-shell": "dist/bin/cross-env-shell.js"
},
"engines": {
- "node": ">=10.14",
- "npm": ">=6",
- "yarn": ">=1"
+ "node": ">=20"
}
},
"node_modules/cross-spawn": {
- "version": "7.0.3",
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
"license": "MIT",
"dependencies": {
"path-key": "^3.1.0",
@@ -1895,15 +2716,10 @@
"node": ">= 8"
}
},
- "node_modules/crypto-random-string": {
- "version": "2.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/csp_evaluator": {
- "version": "1.1.1",
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/csp_evaluator/-/csp_evaluator-1.1.5.tgz",
+ "integrity": "sha512-EL/iN9etCTzw/fBnp0/uj0f5BOOGvZut2mzsiiBZ/FdT6gFQCKRO/tmcKOxn5drWZ2Ndm/xBb1SI4zwWbGtmIw==",
"license": "Apache-2.0"
},
"node_modules/data-uri-to-buffer": {
@@ -1916,9 +2732,9 @@
}
},
"node_modules/debug": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
- "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
+ "version": "4.4.3",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
"license": "MIT",
"dependencies": {
"ms": "^2.1.3"
@@ -1976,14 +2792,15 @@
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
+ "license": "MIT",
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/devtools-protocol": {
- "version": "0.0.1312386",
- "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1312386.tgz",
- "integrity": "sha512-DPnhUXvmvKT2dFA/j7B+riVLUt9Q6RKJlcppojL5CoRywJJKLDYnRlw0gTFKfgDPHP5E04UoB71SxoJlVZy8FA==",
+ "version": "0.0.1507524",
+ "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1507524.tgz",
+ "integrity": "sha512-OjaNE7qpk6GRTXtqQjAE5bGx6+c4F1zZH0YXtpZQLM92HNXx4zMAaqlKhP4T52DosG6hDW8gPMNhGOF8xbwk/w==",
"license": "BSD-3-Clause"
},
"node_modules/diff": {
@@ -1995,13 +2812,32 @@
}
},
"node_modules/dot-prop": {
- "version": "5.3.0",
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-9.0.0.tgz",
+ "integrity": "sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==",
"license": "MIT",
"dependencies": {
- "is-obj": "^2.0.0"
+ "type-fest": "^4.18.2"
},
"engines": {
- "node": ">=8"
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/dunder-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
}
},
"node_modules/eastasianwidth": {
@@ -2032,17 +2868,62 @@
"node": ">=8.6"
}
},
+ "node_modules/es-define-property": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/es-module-lexer": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz",
- "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==",
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz",
+ "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==",
"dev": true,
"license": "MIT"
},
+ "node_modules/es-object-atoms": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-set-tostringtag": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/esbuild": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz",
- "integrity": "sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.8.tgz",
+ "integrity": "sha512-vVC0USHGtMi8+R4Kz8rt6JhEWLxsv9Rnu/lGYbPR8u47B+DCBksq9JarW0zOO7bs37hyOK1l2/oqtbciutL5+Q==",
"dev": true,
"hasInstallScript": true,
"license": "MIT",
@@ -2053,37 +2934,39 @@
"node": ">=18"
},
"optionalDependencies": {
- "@esbuild/aix-ppc64": "0.25.0",
- "@esbuild/android-arm": "0.25.0",
- "@esbuild/android-arm64": "0.25.0",
- "@esbuild/android-x64": "0.25.0",
- "@esbuild/darwin-arm64": "0.25.0",
- "@esbuild/darwin-x64": "0.25.0",
- "@esbuild/freebsd-arm64": "0.25.0",
- "@esbuild/freebsd-x64": "0.25.0",
- "@esbuild/linux-arm": "0.25.0",
- "@esbuild/linux-arm64": "0.25.0",
- "@esbuild/linux-ia32": "0.25.0",
- "@esbuild/linux-loong64": "0.25.0",
- "@esbuild/linux-mips64el": "0.25.0",
- "@esbuild/linux-ppc64": "0.25.0",
- "@esbuild/linux-riscv64": "0.25.0",
- "@esbuild/linux-s390x": "0.25.0",
- "@esbuild/linux-x64": "0.25.0",
- "@esbuild/netbsd-arm64": "0.25.0",
- "@esbuild/netbsd-x64": "0.25.0",
- "@esbuild/openbsd-arm64": "0.25.0",
- "@esbuild/openbsd-x64": "0.25.0",
- "@esbuild/sunos-x64": "0.25.0",
- "@esbuild/win32-arm64": "0.25.0",
- "@esbuild/win32-ia32": "0.25.0",
- "@esbuild/win32-x64": "0.25.0"
+ "@esbuild/aix-ppc64": "0.25.8",
+ "@esbuild/android-arm": "0.25.8",
+ "@esbuild/android-arm64": "0.25.8",
+ "@esbuild/android-x64": "0.25.8",
+ "@esbuild/darwin-arm64": "0.25.8",
+ "@esbuild/darwin-x64": "0.25.8",
+ "@esbuild/freebsd-arm64": "0.25.8",
+ "@esbuild/freebsd-x64": "0.25.8",
+ "@esbuild/linux-arm": "0.25.8",
+ "@esbuild/linux-arm64": "0.25.8",
+ "@esbuild/linux-ia32": "0.25.8",
+ "@esbuild/linux-loong64": "0.25.8",
+ "@esbuild/linux-mips64el": "0.25.8",
+ "@esbuild/linux-ppc64": "0.25.8",
+ "@esbuild/linux-riscv64": "0.25.8",
+ "@esbuild/linux-s390x": "0.25.8",
+ "@esbuild/linux-x64": "0.25.8",
+ "@esbuild/netbsd-arm64": "0.25.8",
+ "@esbuild/netbsd-x64": "0.25.8",
+ "@esbuild/openbsd-arm64": "0.25.8",
+ "@esbuild/openbsd-x64": "0.25.8",
+ "@esbuild/openharmony-arm64": "0.25.8",
+ "@esbuild/sunos-x64": "0.25.8",
+ "@esbuild/win32-arm64": "0.25.8",
+ "@esbuild/win32-ia32": "0.25.8",
+ "@esbuild/win32-x64": "0.25.8"
}
},
"node_modules/escalade": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
- "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+ "license": "MIT",
"engines": {
"node": ">=6"
}
@@ -2092,6 +2975,7 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "license": "MIT",
"engines": {
"node": ">=10"
},
@@ -2161,10 +3045,19 @@
"node": ">=0.10.0"
}
},
+ "node_modules/events-universal": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/events-universal/-/events-universal-1.0.1.tgz",
+ "integrity": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "bare-events": "^2.7.0"
+ }
+ },
"node_modules/expect-type": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.1.0.tgz",
- "integrity": "sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==",
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.2.2.tgz",
+ "integrity": "sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -2202,16 +3095,32 @@
"pend": "~1.2.0"
}
},
+ "node_modules/fdir": {
+ "version": "6.4.6",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz",
+ "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
+ }
+ },
"node_modules/follow-redirects": {
- "version": "1.15.9",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz",
- "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==",
+ "version": "1.15.11",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
+ "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
"funding": [
{
"type": "individual",
"url": "https://github.com/sponsors/RubenVerborgh"
}
],
+ "license": "MIT",
"engines": {
"node": ">=4.0"
},
@@ -2250,18 +3159,27 @@
}
},
"node_modules/form-data": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
- "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
+ "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
+ "license": "MIT",
"dependencies": {
"asynckit": "^0.4.0",
"combined-stream": "^1.0.8",
+ "es-set-tostringtag": "^2.1.0",
+ "hasown": "^2.0.2",
"mime-types": "^2.1.12"
},
"engines": {
"node": ">= 6"
}
},
+ "node_modules/forwarded-parse": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/forwarded-parse/-/forwarded-parse-2.1.2.tgz",
+ "integrity": "sha512-alTFZZQDKMporBH77856pXgzhEzaUVmLCDk+egLgIgHst3Tpndzz8MnKe+GzRJRfvVdn69HhpW7cmXzvtLvJAw==",
+ "license": "MIT"
+ },
"node_modules/fsevents": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
@@ -2275,14 +3193,73 @@
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
}
},
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/get-caller-file": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "license": "ISC",
"engines": {
"node": "6.* || 8.* || >= 10.*"
}
},
+ "node_modules/get-east-asian-width": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz",
+ "integrity": "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/get-stream": {
"version": "5.2.0",
"license": "MIT",
@@ -2330,8 +3307,22 @@
"url": "https://github.com/sponsors/isaacs"
}
},
+ "node_modules/gopd": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/graceful-fs": {
- "version": "4.2.10",
+ "version": "4.2.11",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
"license": "ISC"
},
"node_modules/has-flag": {
@@ -2343,6 +3334,45 @@
"node": ">=8"
}
},
+ "node_modules/has-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-tostringtag": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
+ "license": "MIT",
+ "dependencies": {
+ "has-symbols": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/html-escaper": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
@@ -2382,26 +3412,6 @@
"node": ">= 14"
}
},
- "node_modules/ieee754": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
- "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "BSD-3-Clause"
- },
"node_modules/image-ssim": {
"version": "0.2.0",
"license": "MIT"
@@ -2410,11 +3420,16 @@
"version": "3.0.6",
"license": "MIT"
},
- "node_modules/imurmurhash": {
- "version": "0.1.4",
- "license": "MIT",
- "engines": {
- "node": ">=0.8.19"
+ "node_modules/import-in-the-middle": {
+ "version": "1.14.2",
+ "resolved": "https://registry.npmjs.org/import-in-the-middle/-/import-in-the-middle-1.14.2.tgz",
+ "integrity": "sha512-5tCuY9BV8ujfOpwtAGgsTx9CGUapcFMEEyByLv1B+v2+6DhAcw+Zr0nhQT7uwaZ7DiourxFEscghOR8e1aPLQw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "acorn": "^8.14.0",
+ "acorn-import-attributes": "^1.9.5",
+ "cjs-module-lexer": "^1.2.2",
+ "module-details-from-path": "^1.0.3"
}
},
"node_modules/inherits": {
@@ -2452,6 +3467,21 @@
"node": ">=8"
}
},
+ "node_modules/is-core-module": {
+ "version": "2.16.1",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
+ "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
+ "license": "MIT",
+ "dependencies": {
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/is-docker": {
"version": "2.2.1",
"license": "MIT",
@@ -2473,17 +3503,6 @@
"node": ">=8"
}
},
- "node_modules/is-obj": {
- "version": "2.0.0",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-typedarray": {
- "version": "1.0.0",
- "license": "MIT"
- },
"node_modules/is-url": {
"version": "1.2.4",
"license": "MIT"
@@ -2610,6 +3629,13 @@
"node": ">=12"
}
},
+ "node_modules/js-tokens": {
+ "version": "9.0.1",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.1.tgz",
+ "integrity": "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/jsbn": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz",
@@ -2646,6 +3672,12 @@
"safe-buffer": "~5.1.0"
}
},
+ "node_modules/legacy-javascript": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/legacy-javascript/-/legacy-javascript-0.0.1.tgz",
+ "integrity": "sha512-lPyntS4/aS7jpuvOlitZDFifBCb4W8L/3QU0PLbUTUj+zYah8rfVjYic88yG7ZKTxhS5h9iz7duT8oUXKszLhg==",
+ "license": "Apache-2.0"
+ },
"node_modules/lie": {
"version": "3.3.0",
"license": "MIT",
@@ -2654,36 +3686,35 @@
}
},
"node_modules/lighthouse": {
- "version": "12.3.0",
- "resolved": "https://registry.npmjs.org/lighthouse/-/lighthouse-12.3.0.tgz",
- "integrity": "sha512-OaLE8DasnwQkn2CBo2lKtD+IQv42mNP3T+Vaw29I++rAh0Zpgc6SM15usdIYyzhRMR5EWFxze5Fyb+HENJSh2A==",
+ "version": "12.8.2",
+ "resolved": "https://registry.npmjs.org/lighthouse/-/lighthouse-12.8.2.tgz",
+ "integrity": "sha512-+5SKYzVaTFj22MgoYDPNrP9tlD2/Ay7j3SxPSFD9FpPyVxGr4UtOQGKyrdZ7wCmcnBaFk0mCkPfARU3CsE0nvA==",
"license": "Apache-2.0",
"dependencies": {
- "@paulirish/trace_engine": "0.0.39",
- "@sentry/node": "^7.0.0",
- "axe-core": "^4.10.2",
- "chrome-launcher": "^1.1.2",
- "configstore": "^5.0.1",
- "csp_evaluator": "1.1.1",
- "devtools-protocol": "0.0.1312386",
+ "@paulirish/trace_engine": "0.0.59",
+ "@sentry/node": "^9.28.1",
+ "axe-core": "^4.10.3",
+ "chrome-launcher": "^1.2.0",
+ "configstore": "^7.0.0",
+ "csp_evaluator": "1.1.5",
+ "devtools-protocol": "0.0.1507524",
"enquirer": "^2.3.6",
"http-link-header": "^1.1.1",
"intl-messageformat": "^10.5.3",
"jpeg-js": "^0.4.4",
"js-library-detector": "^6.7.0",
- "lighthouse-logger": "^2.0.1",
+ "lighthouse-logger": "^2.0.2",
"lighthouse-stack-packs": "1.12.2",
"lodash-es": "^4.17.21",
"lookup-closest-locale": "6.2.0",
"metaviewport-parser": "0.3.0",
"open": "^8.4.0",
"parse-cache-control": "1.0.1",
- "puppeteer-core": "^23.10.4",
+ "puppeteer-core": "^24.17.1",
"robots-parser": "^3.0.1",
- "semver": "^5.3.0",
"speedline-core": "^1.4.3",
- "third-party-web": "^0.26.1",
- "tldts-icann": "^6.1.16",
+ "third-party-web": "^0.27.0",
+ "tldts-icann": "^7.0.12",
"ws": "^7.0.0",
"yargs": "^17.3.1",
"yargs-parser": "^21.0.0"
@@ -2698,156 +3729,68 @@
}
},
"node_modules/lighthouse-logger": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-2.0.1.tgz",
- "integrity": "sha512-ioBrW3s2i97noEmnXxmUq7cjIcVRjT5HBpAYy8zE11CxU9HqlWHHeRxfeN1tn8F7OEMVPIC9x1f8t3Z7US9ehQ==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-2.0.2.tgz",
+ "integrity": "sha512-vWl2+u5jgOQuZR55Z1WM0XDdrJT6mzMP8zHUct7xTlWhuQs+eV0g+QL0RQdFjT54zVmbhLCP8vIVpy1wGn/gCg==",
+ "license": "Apache-2.0",
"dependencies": {
- "debug": "^2.6.9",
+ "debug": "^4.4.1",
"marky": "^1.2.2"
}
},
- "node_modules/lighthouse-logger/node_modules/debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "dependencies": {
- "ms": "2.0.0"
- }
- },
- "node_modules/lighthouse-logger/node_modules/ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
- },
"node_modules/lighthouse-stack-packs": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/lighthouse-stack-packs/-/lighthouse-stack-packs-1.12.2.tgz",
"integrity": "sha512-Ug8feS/A+92TMTCK6yHYLwaFMuelK/hAKRMdldYkMNwv+d9PtWxjXEg6rwKtsUXTADajhdrhXyuNCJ5/sfmPFw==",
"license": "Apache-2.0"
},
- "node_modules/lighthouse/node_modules/@puppeteer/browsers": {
- "version": "2.6.1",
- "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.6.1.tgz",
- "integrity": "sha512-aBSREisdsGH890S2rQqK82qmQYU3uFpSH8wcZWHgHzl3LfzsxAKbLNiAG9mO8v1Y0UICBeClICxPJvyr0rcuxg==",
- "license": "Apache-2.0",
- "dependencies": {
- "debug": "^4.4.0",
- "extract-zip": "^2.0.1",
- "progress": "^2.0.3",
- "proxy-agent": "^6.5.0",
- "semver": "^7.6.3",
- "tar-fs": "^3.0.6",
- "unbzip2-stream": "^1.4.3",
- "yargs": "^17.7.2"
- },
- "bin": {
- "browsers": "lib/cjs/main-cli.js"
- },
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/lighthouse/node_modules/@puppeteer/browsers/node_modules/semver": {
- "version": "7.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
- "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
+ "node_modules/lighthouse/node_modules/cliui": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
"license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/lighthouse/node_modules/puppeteer-core": {
- "version": "23.11.1",
- "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-23.11.1.tgz",
- "integrity": "sha512-3HZ2/7hdDKZvZQ7dhhITOUg4/wOrDRjyK2ZBllRB0ZCOi9u0cwq1ACHDjBB+nX+7+kltHjQvBRdeY7+W0T+7Gg==",
- "license": "Apache-2.0",
"dependencies": {
- "@puppeteer/browsers": "2.6.1",
- "chromium-bidi": "0.11.0",
- "debug": "^4.4.0",
- "devtools-protocol": "0.0.1367902",
- "typed-query-selector": "^2.12.0",
- "ws": "^8.18.0"
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
},
"engines": {
- "node": ">=18"
+ "node": ">=12"
}
},
- "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/chromium-bidi": {
- "version": "0.11.0",
- "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.11.0.tgz",
- "integrity": "sha512-6CJWHkNRoyZyjV9Rwv2lYONZf1Xm0IuDyNq97nwSsxxP3wf5Bwy15K5rOvVKMtJ127jJBmxFUanSAOjgFRxgrA==",
- "license": "Apache-2.0",
+ "node_modules/lighthouse/node_modules/wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "license": "MIT",
"dependencies": {
- "mitt": "3.0.1",
- "zod": "3.23.8"
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
},
- "peerDependencies": {
- "devtools-protocol": "*"
- }
- },
- "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/devtools-protocol": {
- "version": "0.0.1367902",
- "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1367902.tgz",
- "integrity": "sha512-XxtPuC3PGakY6PD7dG66/o8KwJ/LkH2/EKe19Dcw58w53dv4/vSQEkn/SzuyhHE2q4zPgCkxQBxus3VV4ql+Pg==",
- "license": "BSD-3-Clause"
- },
- "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/ws": {
- "version": "8.18.1",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz",
- "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==",
- "license": "MIT",
"engines": {
- "node": ">=10.0.0"
- },
- "peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": ">=5.0.2"
+ "node": ">=10"
},
- "peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
- "optional": true
- }
- }
- },
- "node_modules/lighthouse/node_modules/semver": {
- "version": "5.7.1",
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
- }
- },
- "node_modules/lighthouse/node_modules/zod": {
- "version": "3.23.8",
- "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz",
- "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==",
- "license": "MIT",
"funding": {
- "url": "https://github.com/sponsors/colinhacks"
- }
- },
- "node_modules/localforage": {
- "version": "1.10.0",
- "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz",
- "integrity": "sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==",
- "license": "Apache-2.0",
- "dependencies": {
- "lie": "3.1.1"
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
- "node_modules/localforage/node_modules/lie": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz",
- "integrity": "sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==",
+ "node_modules/lighthouse/node_modules/yargs": {
+ "version": "17.7.2",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
"license": "MIT",
"dependencies": {
- "immediate": "~3.0.5"
+ "cliui": "^8.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.3",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^21.1.1"
+ },
+ "engines": {
+ "node": ">=12"
}
},
"node_modules/lodash-es": {
@@ -2861,9 +3804,9 @@
"license": "MIT"
},
"node_modules/loupe": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.3.tgz",
- "integrity": "sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.0.tgz",
+ "integrity": "sha512-2NCfZcT5VGVNX9mSZIxLRkEAegDGBpuQZBy13desuHeVORmBDyAET4TkJr4SjqQy3A8JDofMN6LpkK8Xcm/dlw==",
"dev": true,
"license": "MIT"
},
@@ -2895,35 +3838,25 @@
"source-map-js": "^1.2.0"
}
},
- "node_modules/make-dir": {
- "version": "3.1.0",
- "license": "MIT",
- "dependencies": {
- "semver": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/make-dir/node_modules/semver": {
- "version": "6.3.0",
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
"node_modules/make-error": {
"version": "1.3.6",
"dev": true,
"license": "ISC"
},
"node_modules/marky": {
- "version": "1.2.5",
- "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz",
- "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q=="
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/marky/-/marky-1.3.0.tgz",
+ "integrity": "sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==",
+ "license": "Apache-2.0"
+ },
+ "node_modules/math-intrinsics": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
},
"node_modules/metaviewport-parser": {
"version": "0.3.0",
@@ -2933,6 +3866,7 @@
"version": "1.52.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "license": "MIT",
"engines": {
"node": ">= 0.6"
}
@@ -2941,6 +3875,7 @@
"version": "2.1.35",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "license": "MIT",
"dependencies": {
"mime-db": "1.52.0"
},
@@ -2952,7 +3887,6 @@
"version": "9.0.5",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
- "dev": true,
"dependencies": {
"brace-expansion": "^2.0.1"
},
@@ -2978,14 +3912,20 @@
"integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
"license": "MIT"
},
+ "node_modules/module-details-from-path": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/module-details-from-path/-/module-details-from-path-1.0.4.tgz",
+ "integrity": "sha512-EGWKgxALGMgzvxYF1UyGTy0HXX/2vHLkw6+NvDKW2jypWbHpjQuj4UMcqQWXHERJhVGKikolT06G3bcKe4fi7w==",
+ "license": "MIT"
+ },
"node_modules/ms": {
"version": "2.1.2",
"license": "MIT"
},
"node_modules/nanoid": {
- "version": "3.3.8",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
- "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
+ "version": "3.3.11",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
"dev": true,
"funding": [
{
@@ -3084,6 +4024,12 @@
"node": ">=8"
}
},
+ "node_modules/path-parse": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
+ "license": "MIT"
+ },
"node_modules/path-scurry": {
"version": "1.11.1",
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
@@ -3108,19 +4054,50 @@
"license": "MIT"
},
"node_modules/pathval": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.0.tgz",
- "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==",
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz",
+ "integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 14.16"
+ "node": ">= 14.16"
+ }
+ },
+ "node_modules/pend": {
+ "version": "1.2.0",
+ "license": "MIT"
+ },
+ "node_modules/pg-int8": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz",
+ "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/pg-protocol": {
+ "version": "1.10.3",
+ "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.10.3.tgz",
+ "integrity": "sha512-6DIBgBQaTKDJyxnXaLiLR8wBpQQcGWuAESkRBX/t6OwA8YsqP+iVSiond2EDy6Y/dsGk8rh/jtax3js5NeV7JQ==",
+ "license": "MIT"
+ },
+ "node_modules/pg-types": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz",
+ "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==",
+ "license": "MIT",
+ "dependencies": {
+ "pg-int8": "1.0.1",
+ "postgres-array": "~2.0.0",
+ "postgres-bytea": "~1.0.0",
+ "postgres-date": "~1.0.4",
+ "postgres-interval": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=4"
}
},
- "node_modules/pend": {
- "version": "1.2.0",
- "license": "MIT"
- },
"node_modules/picocolors": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
@@ -3128,13 +4105,26 @@
"dev": true,
"license": "ISC"
},
+ "node_modules/picomatch": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
"node_modules/playwright": {
- "version": "1.50.1",
- "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.50.1.tgz",
- "integrity": "sha512-G8rwsOQJ63XG6BbKj2w5rHeavFjy5zynBA9zsJMMtBoe/Uf757oG12NXz6e6OirF7RCrTVAKFXbLmn1RbL7Qaw==",
+ "version": "1.56.0",
+ "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.56.0.tgz",
+ "integrity": "sha512-X5Q1b8lOdWIE4KAoHpW3SE8HvUB+ZZsUoN64ZhjnN8dOb1UpujxBtENGiZFE+9F/yhzJwYa+ca3u43FeLbboHA==",
"license": "Apache-2.0",
"dependencies": {
- "playwright-core": "1.50.1"
+ "playwright-core": "1.56.0"
},
"bin": {
"playwright": "cli.js"
@@ -3147,9 +4137,9 @@
}
},
"node_modules/playwright-core": {
- "version": "1.50.1",
- "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.50.1.tgz",
- "integrity": "sha512-ra9fsNWayuYumt+NiM069M6OkcRb1FZSK8bgi66AtpFoWkg2+y0bJSNmkFrWhMbEBbVKC/EruAHH3g0zmtwGmQ==",
+ "version": "1.56.0",
+ "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.56.0.tgz",
+ "integrity": "sha512-1SXl7pMfemAMSDn5rkPeZljxOCYAmQnYLBTExuh6E8USHXGSX3dx6lYZN/xPpTz1vimXmPA9CDnILvmJaB8aSQ==",
"license": "Apache-2.0",
"bin": {
"playwright-core": "cli.js"
@@ -3159,13 +4149,13 @@
}
},
"node_modules/playwright-firefox": {
- "version": "1.50.1",
- "resolved": "https://registry.npmjs.org/playwright-firefox/-/playwright-firefox-1.50.1.tgz",
- "integrity": "sha512-cV9mXuhxzoPb7XPzK1gPXCrVhoZOF8tZ9P8Y+f2ziKAoFVkbqUTLVyHy/QL2PLzh44vUI3+dIq7uUd1SgMaQHA==",
+ "version": "1.56.0",
+ "resolved": "https://registry.npmjs.org/playwright-firefox/-/playwright-firefox-1.56.0.tgz",
+ "integrity": "sha512-ZxvGUiANK1kgVFnB/BTU6VTF5b5aIMdhFeqET8+7xUj3tuMrc9u5toVWPwAFmxOH+Pxik6gQxyU0AZNR32h6JA==",
"hasInstallScript": true,
"license": "Apache-2.0",
"dependencies": {
- "playwright-core": "1.50.1"
+ "playwright-core": "1.56.0"
},
"bin": {
"playwright": "cli.js"
@@ -3175,13 +4165,13 @@
}
},
"node_modules/playwright-webkit": {
- "version": "1.50.1",
- "resolved": "https://registry.npmjs.org/playwright-webkit/-/playwright-webkit-1.50.1.tgz",
- "integrity": "sha512-nR0ii0/rqq7BVvgRYdZT8/FaLJmIdQSyiDXMVQ+W5SgrPz2nvCiKFirXmxOE9KvYogRmxoU0+83v0OTY2jxZoQ==",
+ "version": "1.56.0",
+ "resolved": "https://registry.npmjs.org/playwright-webkit/-/playwright-webkit-1.56.0.tgz",
+ "integrity": "sha512-4PyXRrZRxIedII/Eg/hOKW410fOJc1layacpxe+O/5pi01QMKGfhbWaMP7TcPFBpxUGNXZDWn+Va4pPP0TbQRg==",
"hasInstallScript": true,
"license": "Apache-2.0",
"dependencies": {
- "playwright-core": "1.50.1"
+ "playwright-core": "1.56.0"
},
"bin": {
"playwright": "cli.js"
@@ -3191,9 +4181,9 @@
}
},
"node_modules/postcss": {
- "version": "8.5.3",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz",
- "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==",
+ "version": "8.5.6",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
"dev": true,
"funding": [
{
@@ -3211,7 +4201,7 @@
],
"license": "MIT",
"dependencies": {
- "nanoid": "^3.3.8",
+ "nanoid": "^3.3.11",
"picocolors": "^1.1.1",
"source-map-js": "^1.2.1"
},
@@ -3219,6 +4209,45 @@
"node": "^10 || ^12 || >=14"
}
},
+ "node_modules/postgres-array": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz",
+ "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/postgres-bytea": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz",
+ "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/postgres-date": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz",
+ "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/postgres-interval": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz",
+ "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==",
+ "license": "MIT",
+ "dependencies": {
+ "xtend": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/process-nextick-args": {
"version": "2.0.1",
"license": "MIT"
@@ -3272,32 +4301,33 @@
}
},
"node_modules/puppeteer-core": {
- "version": "24.3.0",
- "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-24.3.0.tgz",
- "integrity": "sha512-x8kQRP/xxtiFav6wWuLzrctO0HWRpSQy+JjaHbqIl+d5U2lmRh2pY9vh5AzDFN0EtOXW2pzngi9RrryY1vZGig==",
+ "version": "24.23.0",
+ "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-24.23.0.tgz",
+ "integrity": "sha512-yl25C59gb14sOdIiSnJ08XiPP+O2RjuyZmEG+RjYmCXO7au0jcLf7fRiyii96dXGUBW7Zwei/mVKfxMx/POeFw==",
"license": "Apache-2.0",
"dependencies": {
- "@puppeteer/browsers": "2.7.1",
- "chromium-bidi": "2.0.0",
- "debug": "^4.4.0",
- "devtools-protocol": "0.0.1402036",
+ "@puppeteer/browsers": "2.10.10",
+ "chromium-bidi": "9.1.0",
+ "debug": "^4.4.3",
+ "devtools-protocol": "0.0.1508733",
"typed-query-selector": "^2.12.0",
- "ws": "^8.18.1"
+ "webdriver-bidi-protocol": "0.3.6",
+ "ws": "^8.18.3"
},
"engines": {
"node": ">=18"
}
},
"node_modules/puppeteer-core/node_modules/devtools-protocol": {
- "version": "0.0.1402036",
- "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1402036.tgz",
- "integrity": "sha512-JwAYQgEvm3yD45CHB+RmF5kMbWtXBaOGwuxa87sZogHcLCv8c/IqnThaoQ1y60d7pXWjSKWQphPEc+1rAScVdg==",
+ "version": "0.0.1508733",
+ "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1508733.tgz",
+ "integrity": "sha512-QJ1R5gtck6nDcdM+nlsaJXcelPEI7ZxSMw1ujHpO1c4+9l+Nue5qlebi9xO1Z2MGr92bFOQTW7/rrheh5hHxDg==",
"license": "BSD-3-Clause"
},
"node_modules/puppeteer-core/node_modules/ws": {
- "version": "8.18.1",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz",
- "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==",
+ "version": "8.18.3",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
+ "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
@@ -3316,9 +4346,10 @@
}
},
"node_modules/ramda": {
- "version": "0.30.1",
- "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.30.1.tgz",
- "integrity": "sha512-tEF5I22zJnuclswcZMc8bDIrwRHRzf+NqVEmqg50ShAZMP7MWeR/RGDthfM/p+BlqvF2fXAzpn8i+SJcYD3alw==",
+ "version": "0.31.3",
+ "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.31.3.tgz",
+ "integrity": "sha512-xKADKRNnqmDdX59PPKLm3gGmk1ZgNnj3k7DryqWwkamp4TJ6B36DdpyKEQ0EoEYmH2R62bV4Q+S0ym2z8N2f3Q==",
+ "license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/ramda"
@@ -3328,10 +4359,45 @@
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
"integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
+ "license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
+ "node_modules/require-in-the-middle": {
+ "version": "7.5.2",
+ "resolved": "https://registry.npmjs.org/require-in-the-middle/-/require-in-the-middle-7.5.2.tgz",
+ "integrity": "sha512-gAZ+kLqBdHarXB64XpAe2VCjB7rIRv+mU8tfRWziHRJ5umKsIHN2tLLv6EtMw7WCdP19S0ERVMldNvxYCHnhSQ==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^4.3.5",
+ "module-details-from-path": "^1.0.3",
+ "resolve": "^1.22.8"
+ },
+ "engines": {
+ "node": ">=8.6.0"
+ }
+ },
+ "node_modules/resolve": {
+ "version": "1.22.10",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
+ "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
+ "license": "MIT",
+ "dependencies": {
+ "is-core-module": "^2.16.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/robots-parser": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/robots-parser/-/robots-parser-3.0.1.tgz",
@@ -3341,13 +4407,13 @@
}
},
"node_modules/rollup": {
- "version": "4.34.8",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz",
- "integrity": "sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.46.2.tgz",
+ "integrity": "sha512-WMmLFI+Boh6xbop+OAGo9cQ3OgX9MIg7xOQjn+pTCwOkk+FNDAeAemXkJ3HzDJrVXleLOFVa1ipuc1AmEx1Dwg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/estree": "1.0.6"
+ "@types/estree": "1.0.8"
},
"bin": {
"rollup": "dist/bin/rollup"
@@ -3357,25 +4423,26 @@
"npm": ">=8.0.0"
},
"optionalDependencies": {
- "@rollup/rollup-android-arm-eabi": "4.34.8",
- "@rollup/rollup-android-arm64": "4.34.8",
- "@rollup/rollup-darwin-arm64": "4.34.8",
- "@rollup/rollup-darwin-x64": "4.34.8",
- "@rollup/rollup-freebsd-arm64": "4.34.8",
- "@rollup/rollup-freebsd-x64": "4.34.8",
- "@rollup/rollup-linux-arm-gnueabihf": "4.34.8",
- "@rollup/rollup-linux-arm-musleabihf": "4.34.8",
- "@rollup/rollup-linux-arm64-gnu": "4.34.8",
- "@rollup/rollup-linux-arm64-musl": "4.34.8",
- "@rollup/rollup-linux-loongarch64-gnu": "4.34.8",
- "@rollup/rollup-linux-powerpc64le-gnu": "4.34.8",
- "@rollup/rollup-linux-riscv64-gnu": "4.34.8",
- "@rollup/rollup-linux-s390x-gnu": "4.34.8",
- "@rollup/rollup-linux-x64-gnu": "4.34.8",
- "@rollup/rollup-linux-x64-musl": "4.34.8",
- "@rollup/rollup-win32-arm64-msvc": "4.34.8",
- "@rollup/rollup-win32-ia32-msvc": "4.34.8",
- "@rollup/rollup-win32-x64-msvc": "4.34.8",
+ "@rollup/rollup-android-arm-eabi": "4.46.2",
+ "@rollup/rollup-android-arm64": "4.46.2",
+ "@rollup/rollup-darwin-arm64": "4.46.2",
+ "@rollup/rollup-darwin-x64": "4.46.2",
+ "@rollup/rollup-freebsd-arm64": "4.46.2",
+ "@rollup/rollup-freebsd-x64": "4.46.2",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.46.2",
+ "@rollup/rollup-linux-arm-musleabihf": "4.46.2",
+ "@rollup/rollup-linux-arm64-gnu": "4.46.2",
+ "@rollup/rollup-linux-arm64-musl": "4.46.2",
+ "@rollup/rollup-linux-loongarch64-gnu": "4.46.2",
+ "@rollup/rollup-linux-ppc64-gnu": "4.46.2",
+ "@rollup/rollup-linux-riscv64-gnu": "4.46.2",
+ "@rollup/rollup-linux-riscv64-musl": "4.46.2",
+ "@rollup/rollup-linux-s390x-gnu": "4.46.2",
+ "@rollup/rollup-linux-x64-gnu": "4.46.2",
+ "@rollup/rollup-linux-x64-musl": "4.46.2",
+ "@rollup/rollup-win32-arm64-msvc": "4.46.2",
+ "@rollup/rollup-win32-ia32-msvc": "4.46.2",
+ "@rollup/rollup-win32-x64-msvc": "4.46.2",
"fsevents": "~2.3.2"
}
},
@@ -3384,9 +4451,9 @@
"license": "MIT"
},
"node_modules/selenium-webdriver": {
- "version": "4.29.0",
- "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.29.0.tgz",
- "integrity": "sha512-8XPGtDoji5xk7ZUCzFT1rqHmCp67DCzESsttId7DzmrJmlTRmRLF6X918rbwclcH89amcBNM4zB3lVPj404I0g==",
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.36.0.tgz",
+ "integrity": "sha512-rZGqjXiqNVL6QNqKNEk5DPaIMPbvApcmAS9QsXyt5wT3sfTSHGCh4AX/YKeDTOwei1BOZDlPOKBd82WCosUt9w==",
"funding": [
{
"type": "github",
@@ -3401,17 +4468,18 @@
"dependencies": {
"@bazel/runfiles": "^6.3.1",
"jszip": "^3.10.1",
- "tmp": "^0.2.3",
- "ws": "^8.18.0"
+ "tmp": "^0.2.5",
+ "ws": "^8.18.3"
},
"engines": {
- "node": ">= 18.20.5"
+ "node": ">= 20.0.0"
}
},
"node_modules/selenium-webdriver/node_modules/ws": {
- "version": "8.18.0",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz",
- "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==",
+ "version": "8.18.3",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
+ "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
+ "license": "MIT",
"engines": {
"node": ">=10.0.0"
},
@@ -3429,9 +4497,9 @@
}
},
"node_modules/semver": {
- "version": "7.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
- "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
+ "version": "7.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
+ "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
@@ -3461,6 +4529,12 @@
"node": ">=8"
}
},
+ "node_modules/shimmer": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/shimmer/-/shimmer-1.2.1.tgz",
+ "integrity": "sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==",
+ "license": "BSD-2-Clause"
+ },
"node_modules/siginfo": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz",
@@ -3468,10 +4542,6 @@
"dev": true,
"license": "ISC"
},
- "node_modules/signal-exit": {
- "version": "3.0.7",
- "license": "ISC"
- },
"node_modules/smart-buffer": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
@@ -3556,23 +4626,21 @@
"license": "MIT"
},
"node_modules/std-env": {
- "version": "3.8.0",
- "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.0.tgz",
- "integrity": "sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==",
+ "version": "3.9.0",
+ "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.9.0.tgz",
+ "integrity": "sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==",
"dev": true,
"license": "MIT"
},
"node_modules/streamx": {
- "version": "2.22.0",
- "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.22.0.tgz",
- "integrity": "sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==",
+ "version": "2.23.0",
+ "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.23.0.tgz",
+ "integrity": "sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==",
"license": "MIT",
"dependencies": {
+ "events-universal": "^1.0.0",
"fast-fifo": "^1.3.2",
"text-decoder": "^1.1.0"
- },
- "optionalDependencies": {
- "bare-events": "^2.2.0"
}
},
"node_modules/string-width": {
@@ -3627,6 +4695,24 @@
"node": ">=8"
}
},
+ "node_modules/strip-literal": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-3.0.0.tgz",
+ "integrity": "sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "js-tokens": "^9.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/stubborn-fs": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/stubborn-fs/-/stubborn-fs-1.2.5.tgz",
+ "integrity": "sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g=="
+ },
"node_modules/supports-color": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
@@ -3639,10 +4725,22 @@
"node": ">=8"
}
},
+ "node_modules/supports-preserve-symlinks-flag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/tar-fs": {
- "version": "3.0.8",
- "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.8.tgz",
- "integrity": "sha512-ZoROL70jptorGAlgAYiLoBLItEKw/fUxg9BSYK/dF/GAGYFJOJJJMvjPAKDJraCXFwadD456FCuvLWgfhMsPwg==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.1.tgz",
+ "integrity": "sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==",
"license": "MIT",
"dependencies": {
"pump": "^3.0.0",
@@ -3711,15 +4809,9 @@
}
},
"node_modules/third-party-web": {
- "version": "0.26.5",
- "resolved": "https://registry.npmjs.org/third-party-web/-/third-party-web-0.26.5.tgz",
- "integrity": "sha512-tDuKQJUTfjvi9Fcrs1s6YAQAB9mzhTSbBZMfNgtWNmJlHuoFeXO6dzBFdGeCWRvYL50jQGK0jPsBZYxqZQJ2SA==",
- "license": "MIT"
- },
- "node_modules/through": {
- "version": "2.3.8",
- "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
- "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==",
+ "version": "0.27.0",
+ "resolved": "https://registry.npmjs.org/third-party-web/-/third-party-web-0.27.0.tgz",
+ "integrity": "sha512-h0JYX+dO2Zr3abCQpS6/uFjujaOjA1DyDzGQ41+oFn9VW/ARiq9g5ln7qEP9+BTzDpOMyIfsfj4OvfgXAsMUSA==",
"license": "MIT"
},
"node_modules/tinybench": {
@@ -3736,10 +4828,27 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/tinyglobby": {
+ "version": "0.2.14",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz",
+ "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fdir": "^6.4.4",
+ "picomatch": "^4.0.2"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
+ }
+ },
"node_modules/tinypool": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.2.tgz",
- "integrity": "sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz",
+ "integrity": "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3757,9 +4866,9 @@
}
},
"node_modules/tinyspy": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz",
- "integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==",
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-4.0.3.tgz",
+ "integrity": "sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3767,22 +4876,25 @@
}
},
"node_modules/tldts-core": {
- "version": "6.1.18",
- "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.18.tgz",
- "integrity": "sha512-e4wx32F/7dMBSZyKAx825Yte3U0PQtZZ0bkWxYQiwLteRVnQ5zM40fEbi0IyNtwQssgJAk3GCr7Q+w39hX0VKA=="
+ "version": "7.0.12",
+ "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.0.12.tgz",
+ "integrity": "sha512-3K76aXywJFduGRsOYoY5JzINLs/WMlOkeDwPL+8OCPq2Rh39gkSDtWAxdJQlWjpun/xF/LHf29yqCi6VC/rHDA==",
+ "license": "MIT"
},
"node_modules/tldts-icann": {
- "version": "6.1.18",
- "resolved": "https://registry.npmjs.org/tldts-icann/-/tldts-icann-6.1.18.tgz",
- "integrity": "sha512-G9HkWw/3h/ALDeHH7KUnd+rKy9ksVYMxRNFNxfo9TyPD4+im4JC7vSKnxqHFGJdWVDm4emqWFGQhQB+MbgIhMA==",
+ "version": "7.0.12",
+ "resolved": "https://registry.npmjs.org/tldts-icann/-/tldts-icann-7.0.12.tgz",
+ "integrity": "sha512-Lk1sJ3Soq97iG6gFj95YQWMWCNQD9b9LkZMooM6ojnTdmo8xpGBv6J+ycwTpY98Xz1RTqdzR/tCYpW7e/g+2xw==",
+ "license": "MIT",
"dependencies": {
- "tldts-core": "^6.1.18"
+ "tldts-core": "^7.0.12"
}
},
"node_modules/tmp": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz",
- "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==",
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz",
+ "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==",
+ "license": "MIT",
"engines": {
"node": ">=14.14"
}
@@ -3834,7 +4946,8 @@
"version": "9.6.0",
"resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-9.6.0.tgz",
"integrity": "sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==",
- "dev": true
+ "dev": true,
+ "license": "Apache-2.0"
},
"node_modules/tslib": {
"version": "2.8.1",
@@ -3842,32 +4955,38 @@
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
"license": "0BSD"
},
+ "node_modules/type-fest": {
+ "version": "4.41.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz",
+ "integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==",
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/typed-query-selector": {
"version": "2.12.0",
"resolved": "https://registry.npmjs.org/typed-query-selector/-/typed-query-selector-2.12.0.tgz",
"integrity": "sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==",
"license": "MIT"
},
- "node_modules/typedarray-to-buffer": {
- "version": "3.1.5",
- "license": "MIT",
- "dependencies": {
- "is-typedarray": "^1.0.0"
- }
- },
"node_modules/types-ramda": {
- "version": "0.30.1",
- "resolved": "https://registry.npmjs.org/types-ramda/-/types-ramda-0.30.1.tgz",
- "integrity": "sha512-1HTsf5/QVRmLzcGfldPFvkVsAdi1db1BBKzi7iW3KBUlOICg/nKnFS+jGqDJS3YD8VsWbAh7JiHeBvbsw8RPxA==",
+ "version": "0.31.0",
+ "resolved": "https://registry.npmjs.org/types-ramda/-/types-ramda-0.31.0.tgz",
+ "integrity": "sha512-vaoC35CRC3xvL8Z6HkshDbi6KWM1ezK0LHN0YyxXWUn9HKzBNg/T3xSGlJZjCYspnOD3jE7bcizsp0bUXZDxnQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"ts-toolbelt": "^9.6.0"
}
},
"node_modules/typescript": {
- "version": "5.7.3",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz",
- "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==",
+ "version": "5.9.3",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
"dev": true,
"license": "Apache-2.0",
"bin": {
@@ -3878,32 +4997,12 @@
"node": ">=14.17"
}
},
- "node_modules/unbzip2-stream": {
- "version": "1.4.3",
- "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
- "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
- "license": "MIT",
- "dependencies": {
- "buffer": "^5.2.1",
- "through": "^2.3.8"
- }
- },
"node_modules/undici-types": {
- "version": "6.20.0",
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
- "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
+ "version": "7.14.0",
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.14.0.tgz",
+ "integrity": "sha512-QQiYxHuyZ9gQUIrmPo3IA+hUl4KYk8uSA7cHrcKd/l3p1OTpZcM0Tbp9x7FAtXdAYhlasd60ncPpgu6ihG6TOA==",
"license": "MIT"
},
- "node_modules/unique-string": {
- "version": "2.0.0",
- "license": "MIT",
- "dependencies": {
- "crypto-random-string": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/util-deprecate": {
"version": "1.0.2",
"license": "MIT"
@@ -3914,15 +5013,18 @@
"license": "MIT"
},
"node_modules/vite": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.0.tgz",
- "integrity": "sha512-7dPxoo+WsT/64rDcwoOjk76XHj+TqNTIvHKcuMQ1k4/SeHDaQt5GFAeLYzrimZrMpn/O6DtdI03WUjdxuPM0oQ==",
+ "version": "6.3.5",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz",
+ "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"esbuild": "^0.25.0",
+ "fdir": "^6.4.4",
+ "picomatch": "^4.0.2",
"postcss": "^8.5.3",
- "rollup": "^4.30.1"
+ "rollup": "^4.34.9",
+ "tinyglobby": "^0.2.13"
},
"bin": {
"vite": "bin/vite.js"
@@ -3986,17 +5088,17 @@
}
},
"node_modules/vite-node": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.0.7.tgz",
- "integrity": "sha512-2fX0QwX4GkkkpULXdT1Pf4q0tC1i1lFOyseKoonavXUNlQ77KpW2XqBGGNIm/J4Ows4KxgGJzDguYVPKwG/n5A==",
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.2.4.tgz",
+ "integrity": "sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==",
"dev": true,
"license": "MIT",
"dependencies": {
"cac": "^6.7.14",
- "debug": "^4.4.0",
- "es-module-lexer": "^1.6.0",
+ "debug": "^4.4.1",
+ "es-module-lexer": "^1.7.0",
"pathe": "^2.0.3",
- "vite": "^5.0.0 || ^6.0.0"
+ "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0"
},
"bin": {
"vite-node": "vite-node.mjs"
@@ -4024,31 +5126,34 @@
}
},
"node_modules/vitest": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/vitest/-/vitest-3.0.7.tgz",
- "integrity": "sha512-IP7gPK3LS3Fvn44x30X1dM9vtawm0aesAa2yBIZ9vQf+qB69NXC5776+Qmcr7ohUXIQuLhk7xQR0aSUIDPqavg==",
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/vitest/-/vitest-3.2.4.tgz",
+ "integrity": "sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vitest/expect": "3.0.7",
- "@vitest/mocker": "3.0.7",
- "@vitest/pretty-format": "^3.0.7",
- "@vitest/runner": "3.0.7",
- "@vitest/snapshot": "3.0.7",
- "@vitest/spy": "3.0.7",
- "@vitest/utils": "3.0.7",
+ "@types/chai": "^5.2.2",
+ "@vitest/expect": "3.2.4",
+ "@vitest/mocker": "3.2.4",
+ "@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.0",
- "debug": "^4.4.0",
- "expect-type": "^1.1.0",
+ "debug": "^4.4.1",
+ "expect-type": "^1.2.1",
"magic-string": "^0.30.17",
"pathe": "^2.0.3",
- "std-env": "^3.8.0",
+ "picomatch": "^4.0.2",
+ "std-env": "^3.9.0",
"tinybench": "^2.9.0",
"tinyexec": "^0.3.2",
- "tinypool": "^1.0.2",
+ "tinyglobby": "^0.2.14",
+ "tinypool": "^1.1.1",
"tinyrainbow": "^2.0.0",
- "vite": "^5.0.0 || ^6.0.0",
- "vite-node": "3.0.7",
+ "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0",
+ "vite-node": "3.2.4",
"why-is-node-running": "^2.3.0"
},
"bin": {
@@ -4064,8 +5169,8 @@
"@edge-runtime/vm": "*",
"@types/debug": "^4.1.12",
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
- "@vitest/browser": "3.0.7",
- "@vitest/ui": "3.0.7",
+ "@vitest/browser": "3.2.4",
+ "@vitest/ui": "3.2.4",
"happy-dom": "*",
"jsdom": "*"
},
@@ -4093,6 +5198,18 @@
}
}
},
+ "node_modules/webdriver-bidi-protocol": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/webdriver-bidi-protocol/-/webdriver-bidi-protocol-0.3.6.tgz",
+ "integrity": "sha512-mlGndEOA9yK9YAbvtxaPTqdi/kaCWYYfwrZvGzcmkr/3lWM+tQj53BxtpVd6qbC6+E5OnHXgCcAhre6AkXzxjA==",
+ "license": "Apache-2.0"
+ },
+ "node_modules/when-exit": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/when-exit/-/when-exit-2.1.4.tgz",
+ "integrity": "sha512-4rnvd3A1t16PWzrBUcSDZqcAmsUIy4minDXT/CZ8F2mVDgd65i4Aalimgz1aQkRGU0iH5eT5+6Rx2TK8o443Pg==",
+ "license": "MIT"
+ },
"node_modules/which": {
"version": "2.0.2",
"license": "ISC",
@@ -4124,16 +5241,17 @@
}
},
"node_modules/wrap-ansi": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz",
+ "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==",
+ "license": "MIT",
"dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
+ "ansi-styles": "^6.2.1",
+ "string-width": "^7.0.0",
+ "strip-ansi": "^7.1.0"
},
"engines": {
- "node": ">=10"
+ "node": ">=18"
},
"funding": {
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
@@ -4157,20 +5275,72 @@
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
- "node_modules/wrappy": {
- "version": "1.0.2",
- "license": "ISC"
+ "node_modules/wrap-ansi/node_modules/ansi-regex": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
+ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
},
- "node_modules/write-file-atomic": {
- "version": "3.0.3",
- "license": "ISC",
+ "node_modules/wrap-ansi/node_modules/ansi-styles": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
+ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/emoji-regex": {
+ "version": "10.4.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz",
+ "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==",
+ "license": "MIT"
+ },
+ "node_modules/wrap-ansi/node_modules/string-width": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
+ "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^10.3.0",
+ "get-east-asian-width": "^1.0.0",
+ "strip-ansi": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/strip-ansi": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "license": "MIT",
"dependencies": {
- "imurmurhash": "^0.1.4",
- "is-typedarray": "^1.0.0",
- "signal-exit": "^3.0.2",
- "typedarray-to-buffer": "^3.1.5"
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
+ "node_modules/wrappy": {
+ "version": "1.0.2",
+ "license": "ISC"
+ },
"node_modules/ws": {
"version": "7.5.5",
"license": "MIT",
@@ -4191,44 +5361,120 @@
}
},
"node_modules/xdg-basedir": {
- "version": "4.0.0",
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz",
+ "integrity": "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==",
"license": "MIT",
"engines": {
- "node": ">=8"
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/xtend": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
+ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.4"
}
},
"node_modules/y18n": {
"version": "5.0.8",
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "license": "ISC",
"engines": {
"node": ">=10"
}
},
"node_modules/yargs": {
- "version": "17.7.2",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
- "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
+ "version": "18.0.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-18.0.0.tgz",
+ "integrity": "sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==",
+ "license": "MIT",
"dependencies": {
- "cliui": "^8.0.1",
+ "cliui": "^9.0.1",
"escalade": "^3.1.1",
"get-caller-file": "^2.0.5",
- "require-directory": "^2.1.1",
- "string-width": "^4.2.3",
+ "string-width": "^7.2.0",
"y18n": "^5.0.5",
- "yargs-parser": "^21.1.1"
+ "yargs-parser": "^22.0.0"
},
"engines": {
- "node": ">=12"
+ "node": "^20.19.0 || ^22.12.0 || >=23"
}
},
"node_modules/yargs-parser": {
"version": "21.1.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
"license": "ISC",
"engines": {
"node": ">=12"
}
},
+ "node_modules/yargs/node_modules/ansi-regex": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
+ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
+ "node_modules/yargs/node_modules/emoji-regex": {
+ "version": "10.4.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz",
+ "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==",
+ "license": "MIT"
+ },
+ "node_modules/yargs/node_modules/string-width": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
+ "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^10.3.0",
+ "get-east-asian-width": "^1.0.0",
+ "strip-ansi": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/yargs/node_modules/strip-ansi": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
+ "node_modules/yargs/node_modules/yargs-parser": {
+ "version": "22.0.0",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-22.0.0.tgz",
+ "integrity": "sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==",
+ "license": "ISC",
+ "engines": {
+ "node": "^20.19.0 || ^22.12.0 || >=23"
+ }
+ },
"node_modules/yauzl": {
"version": "2.10.0",
"license": "MIT",
@@ -4246,9 +5492,9 @@
}
},
"node_modules/zod": {
- "version": "3.24.2",
- "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.2.tgz",
- "integrity": "sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==",
+ "version": "3.25.76",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
+ "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
"license": "MIT",
"funding": {
"url": "https://github.com/sponsors/colinhacks"
diff --git a/webdriver-ts/package.json b/webdriver-ts/package.json
index 4b60ceeca..8a82e57d8 100644
--- a/webdriver-ts/package.json
+++ b/webdriver-ts/package.json
@@ -21,27 +21,27 @@
"author": "",
"license": "Apache-2.0",
"devDependencies": {
- "@types/node": "22.13.5",
- "@types/ramda": "0.30.2",
- "@types/selenium-webdriver": "4.1.28",
- "@types/semver": "7.5.8",
+ "@types/node": "24.7.0",
+ "@types/ramda": "0.31.1",
+ "@types/selenium-webdriver": "4.35.1",
+ "@types/semver": "7.7.1",
"@types/yargs": "17.0.33",
- "@vitest/coverage-v8": "^3.0.7",
+ "@vitest/coverage-v8": "^3.2.4",
"ts-node": "^10.9.2",
- "typescript": "5.7.3",
- "vitest": "^3.0.7"
+ "typescript": "5.9.3",
+ "vitest": "^3.2.4"
},
"dependencies": {
- "chromedriver": "133.0.3",
- "cross-env": "7.0.3",
- "lighthouse": "12.3.0",
- "playwright": "1.50.1",
- "playwright-firefox": "1.50.1",
- "playwright-webkit": "1.50.1",
- "puppeteer-core": "24.3.0",
- "ramda": "0.30.1",
- "selenium-webdriver": "4.29.0",
- "semver": "7.7.1",
- "yargs": "17.7.2"
+ "chromedriver": "141.0.0",
+ "cross-env": "10.1.0",
+ "lighthouse": "12.8.2",
+ "playwright": "1.56.0",
+ "playwright-firefox": "1.56.0",
+ "playwright-webkit": "1.56.0",
+ "puppeteer-core": "24.23.0",
+ "ramda": "0.31.3",
+ "selenium-webdriver": "4.36.0",
+ "semver": "7.7.2",
+ "yargs": "18.0.0"
}
}
diff --git a/webdriver-ts/results.json b/webdriver-ts/results.json
index b1bd31de4..c5efe6d46 100644
--- a/webdriver-ts/results.json
+++ b/webdriver-ts/results.json
@@ -1 +1 @@
-[{"framework":"alpine-v3.14.7-keyed","benchmark":"01_run1k","values":{"total":[80.8,81.9,81.4,79.8,79.9,80.3,79.7,78.7,81.6,81.6,79.7,79.5,79.7,81.3,79.3],"script":[54.3,56.1,55.4,54.3,54.5,54.7,54,53.3,55.6,56.1,53.5,53.7,53.7,55.6,53.6],"paint":[25.1,25.2,25.4,25,24.8,25.1,25.2,24.9,25.5,25,25.7,25.3,25.5,25.3,25.2]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"02_replace1k","values":{"total":[100.1,99.1,100.7,99.8,96.7,101.7,100.6,99.4,100,101.1,101.7,99.9,99.7,100.2,100.1],"script":[73.4,73,74.5,73.2,73.6,75,74.2,76,73.8,74.7,75.4,73.5,73.4,74.1,73.8],"paint":[26.2,25.6,25.7,26.1,22.5,26.2,25.9,22.8,25.6,25.9,25.7,25.9,25.7,25.6,25.8]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.4,16.2,16.8,16.8,16.6,16.8,17.2,17.6,17,16,16.8,16.4,16.6,17.1,16.6],"script":[3.7,3.2,3.6,2.9,3.2,3.6,3.6,3.6,3.5,2.8,3.9,2.7,3.3,3.8,3.2],"paint":[12.3,11.3,10.5,12.1,11.3,12.9,12.6,12.2,12.4,12.3,11.9,12.7,11.4,11.9,11.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"04_select1k","values":{"total":[30.6,31.1,30.8,30.6,30.2,29.2,30.6,29.1,30.5,29.8,30.5,30.4,28.8,30.5,30.8,29.1,28.7,29.8,30.8,29.8,31.6,30.3,30,30.2,28.7],"script":[27,27.3,27.4,26.7,26.6,25.7,27.1,26.1,26.9,27,26.9,26.7,25.8,27.4,26.8,25.4,25.2,26.5,27.5,26.4,28.2,27.3,26.3,26.8,25.6],"paint":[2.4,1.5,1.6,1.9,1.1,2.1,2.6,1.5,2.7,1.6,2.7,2.6,2,2.1,2.7,1.6,2.3,1.7,2,1.7,1.6,1.2,2.4,1.2,1.1]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"05_swap1k","values":{"total":[28.8,28.6,28.3,27.6,27.5,27,27,26.2,27,27.4,27.5,28.2,26.3,27.2,26.9],"script":[10.5,10.5,11.1,10.6,9.9,10.3,10.2,9.5,10,10.2,10.1,10.4,9.7,10.5,9.8],"paint":[16.4,17.1,16.1,15,15.8,14.9,15.6,15.2,14.8,15.4,15.7,15.7,14.2,15.1,15.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[20,19.1,18.8,18.8,18.7,18.7,18.7,18.8,18.9,19.1,18.5,18.5,18.5,18.7,18.7],"script":[6.9,6.8,6.9,6.8,6.7,7,6.7,6.6,6.8,6.7,6.8,6.4,6.4,6.6,7],"paint":[11.7,11.6,11.3,11.1,11.6,10.7,11.3,11.2,11.4,11.7,10.9,11.6,11,11.4,11]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"07_create10k","values":{"total":[682.1,683.9,683.4,684.9,684.9,680.6,684.6,683.6,681.5,684.6,691.4,688.1,686.2,688.1,691.3],"script":[427.8,427.8,427.5,427.3,428.6,423.7,427.6,425.9,426,426.3,428.3,429.9,427,428.6,432.5],"paint":[247,248.6,248.2,250.2,248.9,249.9,249.5,250.6,248.4,251.1,255.3,250.8,252,251.9,251.2]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[93.7,93.3,95.6,92.7,93.8,95.4,93.7,95.1,95.2,95,94.6,93.2,95.1,95,95.8],"script":[63,62.4,64.6,62.2,63.3,64.7,62.4,64.5,64.3,64.3,63.5,62.6,64.7,64.2,64.9],"paint":[29.7,29.9,29.9,29.5,29.6,29.7,30.3,29.5,29.8,29.7,30,29.6,29.5,29.8,29.9]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[53.4,55.1,53.7,54.3,54.1,52.5,52.1,53.9,53.5,53,53.7,54.2,52,54.6,51.6],"script":[51.4,53.6,51.8,52.1,52.2,50.3,49.9,52.1,51.4,51.5,51.5,52.3,49.5,52.8,48.9],"paint":[1.3,1.4,1,1.6,0.5,1.8,1.4,0.9,1.9,0.7,2,0.9,1.2,1.1,1.9]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7853240966796875]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[16.740407943725586]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[16.728877067565918]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.521336555480957]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[155.97835159301758]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[69.4]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[36.6,36.5,36.8,37.3,36.5,37.1,37.2,36.7,36.6,36.2,36.9,37,37.2,36.7,37.3],"script":[12.5,12.5,12.4,13.3,12.4,12.8,12.5,12.4,12.5,12.3,12.4,12.6,12.3,12.5,12.7],"paint":[23.5,23.5,23.8,23.4,23.5,23.7,24.2,23.7,23.4,23.4,23.9,23.8,24.4,23.6,24]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[42.9,43.8,43.6,43.4,43.4,42.7,44,43.4,43.3,43.2,43.1,42.4,43.7,42.9,42.9],"script":[18.5,19.4,19.2,18.9,18.7,18.5,19.7,18.9,18.5,18.9,18.8,18.5,19,18.8,19],"paint":[23.8,23.7,23.8,23.8,24,23.7,23.7,23.9,24.2,23.7,23.7,23.3,24.1,23.5,23.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.7,19.7,19.9,19,19.4,20.4,19.6,20.1,19.7,20.6,21.8,19.3,20.6,20,20.1],"script":[7.9,7.1,7.1,6.2,6.8,7.3,7,6.9,7.6,7.5,6.9,6.9,7.2,7.4,7.7],"paint":[10.1,10.3,10.6,10.6,10.8,11.7,11.3,11.4,10.2,11.6,12.1,10.3,12.6,11.2,10.2]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[8.7,8.6,9.3,8.8,9.5,8.7,9,8.8,9,9.1,8.6,9.6,8.8,9.3,9.1,9.2,8.3,9.3,9.4,8.6,8.7,9.4,9.2,9.7,8.9],"script":[6,6.2,6.1,5.9,6.4,5.5,6.2,5.5,5.8,6,5.9,6.3,6.6,6.5,5.9,5.8,6.2,6.3,6.2,5.5,5.5,6.6,6.1,6.6,5.9],"paint":[1.3,1.8,2.2,1.1,1.2,1.7,1.7,2.2,1.4,1.8,2,1.3,1,1.3,2.2,2.3,1.1,2.2,1.8,1.5,0.7,1.2,2.8,1.5,1.7]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[22.4,21.2,22.5,22.6,22.1,21.3,21.7,21.1,22.6,21.5,22.2,22.6,22.1,22,22],"script":[7.1,6.6,7.6,6.7,7,6.7,6.5,6.7,6.8,6.9,7.1,7.2,6.9,6.9,6.9],"paint":[13.6,13.2,13.8,13.9,13.1,13.1,13.3,11.6,13,12.3,12.6,13.8,13.4,13.8,13.9]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[80.5,78.4,80.1,79.5,79.6,79.4,80.3,78.8,79.8,78.8,79.9,79.8,79.8,79,80.1],"script":[30.5,29.8,30.2,29.8,30.8,29.7,30.5,29.7,30.1,29.5,29.9,29.6,29.8,29.8,30.3],"paint":[48.3,47.6,48.1,48.2,47.2,47.6,48.5,47.7,48.4,48,48.8,48.9,48,47.6,48.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[361.8,358.7,362.2,359.7,363.2,359.4,361.7,362.2,358,360,361,361.4,360,359.2,361.9],"script":[123.6,119.6,122.6,121.5,122.7,121.4,122.7,120.1,121,121.7,122.9,122.5,119.9,120.9,121.6],"paint":[232.2,233.2,233.3,232,233.7,232.1,232.7,234.3,230.7,232.1,231.7,232.8,234.1,232.1,233.9]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.8,43.1,42.2,42.4,42.9,43.1,42.8,42.9,42.5,45.7,42.5,43.2,42.2,43.1,42.7],"script":[14.5,14.5,14,14.7,14.4,14.5,14.3,14,14.3,16.4,14.3,14.3,14.3,14.5,14.4],"paint":[27.3,27.6,27.3,26.8,27.6,27.7,27.5,27.9,27.3,28.4,27.2,28.1,26.9,27.7,27.4]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14,13.4,14.6,13.8,13.9,13,13.4,14.1,14,13.9,14,13.8,12.2,13.6,13.5],"script":[11.7,11.4,12.3,11.6,12,11.5,11.5,11.9,11.8,11.5,12,11.3,10.8,11.3,10.7],"paint":[1.3,0.9,2,1.1,1,0.2,0.7,1.1,1.1,1.4,1,1.6,0.2,1.2,1.7]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4719390869140625]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.448925018310547]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.114090919494629]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.859989166259766]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.67127704620361]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[73.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"01_run1k","values":{"total":[35,34.7,34.7,34.9,34.2,34.1,34.4,34.4,34.4,34,35,34.6,33.7,34.5,34.8],"script":[6.3,6.3,6,6.2,5.9,5.7,6,6,6,5.8,6,6.2,5.8,6,6.1],"paint":[25.3,24.9,25.2,25.2,24.9,25,25,24.9,24.8,24.8,25.4,25,24.5,25.1,25.3]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"02_replace1k","values":{"total":[39.4,40.5,38.9,38.7,39.7,40.9,39.3,40,39.9,40,40,40.3,39.9,40.1,39.9],"script":[11.7,12.4,11.5,11.7,12,12.3,11.9,12.1,11.9,12.3,12.1,12.2,12.2,12,11.9],"paint":[24.3,24.7,24.1,23.7,24.4,25.1,24,24.3,24.5,24.4,24.4,24.5,24.3,24.6,24.5]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,12.2,12.9,13.4,12.5,13.1,13.9,12.6,12.9,12.6,12.2,13,12.9,13.8,12.2],"script":[1.2,1.3,1.4,2.3,1.2,1.3,2.3,1,1.5,1.5,1,2,1.4,2.5,1.4],"paint":[10.8,9.7,10,9.9,10,10.9,10.5,10.7,9.9,9.5,10.3,9.7,10.9,10.2,9.5]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"04_select1k","values":{"total":[4.9,4.1,4.4,4.9,3.7,4,5,3.7,4.8,4,4.6,3.4,2.5,3.1,3.6,3.7,4.3,3.6,4.2,4.1,3.4,3.7,3.2,3.9,3.7],"script":[2.5,2,1.6,2.2,1,1.8,2.6,1.4,2.1,2,2.1,0.7,1,1,1.5,1.5,1.5,1.4,1.6,1.7,1.3,1.4,0.9,1.3,0.7],"paint":[1.9,1.1,2.7,2.5,1.2,1.1,1.6,1.2,1.8,1.1,1.4,2.1,1.3,2,1.9,1.4,1.7,1.1,2.2,1.4,1.9,1.3,1.1,1.6,2.9]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"05_swap1k","values":{"total":[16,16.8,15.8,15.9,16.5,16.9,16.4,17.1,17,15.8,16.1,16.7,16.7,15.9,15.6],"script":[1.2,2.4,1.2,1.7,2.2,1.6,2.2,1.8,2.5,1.6,1,1,2.6,1.4,1],"paint":[13.5,12.9,13.3,12.5,13.3,13.3,12.2,14.6,13.5,12.8,13.8,14.8,13.4,13.5,13.3]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.3,12.1,12.7,12.2,12.2,12.6,12.5,12.7,12.2,12.7,12.7,12.4,12.5,12.7,12.7],"script":[0.8,0.9,1.1,0.9,1,0.8,1.2,1.1,0.9,1.1,1.3,1.2,1,0.8,0.8],"paint":[11.1,10,10.9,10.2,10.6,11.1,10.6,11,10.6,10.9,10.4,9.9,10.6,11.6,11.5]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"07_create10k","values":{"total":[371,370.2,374.1,372.5,376.9,371.8,370.1,375.2,372.9,371.6,374.4,373,374.8,372,371.5],"script":[74.4,74.7,75.3,74.2,74.8,74.5,74.9,75.5,74.7,75,75.2,75,75.4,75.2,75.1],"paint":[245.8,244.9,247.2,245.3,248.2,247.4,244.9,247,248,245.9,248.5,246.8,247.9,246.6,244.8]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.2,38.7,38.6,39.7,39.3,38.6,38.5,39.5,40,39.4,38,39,38.4,38.7,39.5],"script":[6.7,6.5,6.4,6.4,6.4,6.5,6.5,6.6,6.6,6.5,6.5,6.5,6.6,6.5,6.5],"paint":[29.5,28.4,28.4,29.2,28.9,28.3,28.2,29.1,29.4,29,27.8,28.6,28,28.4,28.9]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.1,19.5,19.8,18,22.6,20.7,19.9,19.7,18.6,21.3,21.7,20.3,19.3,21.2,17.8],"script":[19.4,17.5,17.7,15.9,20.4,18.4,18.4,17.3,16.6,18.5,19.2,17.9,17,18.8,16.2],"paint":[2.4,0.6,0.6,0.3,2,0.8,0.4,1.3,0.9,1.7,2,1.5,2,2.1,1.3]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5206718444824219]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.790151596069336]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.896474838256836]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1333484649658203]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.318089485168457]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[141]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[43.6]}},{"framework":"angular-cf-v19.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[151.7]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"01_run1k","values":{"total":[33.1,39,39.5,37.9,38.4,39.1,38.4,38.5,38.1,39.2,37.8,40,39,38.3,37.3],"script":[4.9,4.9,5,4.8,4.9,4.8,4.8,4.9,4.9,4.9,5,4.8,5.3,4.9,4.9],"paint":[23.8,23.1,24.4,23.1,23.1,23.1,23.5,23.4,23.2,23.3,23,23.9,23.4,23.3,23.2]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"02_replace1k","values":{"total":[42.6,42,37.8,44.5,42.6,42.6,40.8,43.1,42,42.6,35.7,41.5,41.8,42.3,43.2],"script":[9.4,9.2,9.1,9.9,9,9.2,9.2,9,9.3,9.3,9.1,9.2,9.2,9.4,9.5],"paint":[23.6,24,23.9,24.3,23.5,23.8,23.8,23.8,23.4,23.6,23.6,23.9,24.7,24.1,23.7]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,28.5,12,13.2,12.4,28.6,11.8,28.3,12.3,11.7,28.1,12.4,29.2,11.4,27.8],"script":[2.3,1.7,1.7,3,2.3,1.7,1.5,1,1.8,1.3,1.7,1.4,2.3,1,1.5],"paint":[10.5,10.1,10,10,10,10.2,10.2,10.6,9.9,10.3,10.3,9.4,10.5,9.6,10.2]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"04_select1k","values":{"total":[4.9,5.1,5.5,4.2,4,5.8,5,4.7,4,3.8,4.1,4.6,5.5,4.8,3.9,4.5,4.6,4.3,4.8,4.7,3.3,5.7,4.9,5.4,4.7],"script":[2.4,2.4,3.4,1.8,1.4,3.2,2.7,2.8,1.5,1.4,2.2,2.5,3.2,2.2,1.9,2.1,2,1.5,2.3,2.3,1.5,2.7,1.7,2.6,2.1],"paint":[1.7,1.9,0.8,1.3,1.6,1.8,2.2,1.7,1.7,2.3,1.1,1.4,2.2,1.6,1.1,1.7,2,2.1,2.4,1.9,1.7,2.3,0.9,1.9,2.4]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"05_swap1k","values":{"total":[31.3,16,31.5,15.3,30.9,17,14.4,17.2,32.7,31.6,33.8,15.9,32.8,31.8,32.8],"script":[1.6,2,2.1,1.7,2.4,2.5,1.3,1.8,2.5,2.1,3.2,2.5,2.5,1.3,1.7],"paint":[13.1,13.8,12.7,13.5,12.4,12.3,12,15,14.1,13.4,14.5,12.1,14.5,14.1,15]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.8,16.7,12.3,15.4,13.5,15.8,12.5,13.8,13.2,13,11.4,13.1,16,11.1,13.4],"script":[1.8,1.9,1.1,1.5,1.1,1.1,1.4,1.6,1.2,1,2,0.9,0.9,1.2,1.6],"paint":[10.3,10.2,9.4,9.8,9.8,9.8,9.3,10,9.5,10.1,9.3,9.4,9.9,9.8,9.6]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"07_create10k","values":{"total":[367.8,367.2,365.5,369.4,364,366.5,363.3,366.5,366.1,364.7,367.7,364.2,366.9,366.8,366.2],"script":[60.9,60.1,60.6,60.8,60.2,60.3,60.6,59.7,61,61.2,60.9,61.5,60.9,61,60.8],"paint":[253.1,252,251.7,253.6,251.7,251.5,250.4,253,252.1,251.7,255,250.8,252.6,253,252]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,41.4,41.6,37,44.3,41.3,43,37.3,43.2,37.1,44.2,41.8,37.1,41.7,43.2],"script":[5.9,5.8,6.5,6.6,6.4,6,5.8,6.5,6.5,6.7,5.9,6.4,6.6,6.4,6],"paint":[27.2,27.7,27,27.1,27.9,27,27.4,27.4,27.7,27,27.7,27.4,27.1,27.4,27.1]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.6,32.4,30.5,15.3,32.3,32.2,31.8,16.8,31.3,14.4,16.5,32.9,32.8,32.1,32],"script":[14.7,15.1,13.8,13.5,15,14.7,14.2,14.5,13.7,12.7,14.8,14.6,15.3,15.1,14.5],"paint":[2,1.3,0.7,1.1,1.2,0.5,0.7,0.8,1.5,0.9,1.6,2.2,1.5,0.9,1.4]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0967330932617188]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7332887649536133]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.786985397338867]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.740753173828125]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.834006309509277]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[107.5]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.6]}},{"framework":"angular-cf-new-nozone-v19.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[123.2]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"01_run1k","values":{"total":[32,32.8,32.2,32,31.9,32.1,31.2,32.3,31.6,31.8,33,32,32.5,31.9,32.4],"script":[4.8,4.7,4.9,4.8,4.8,4.9,4.8,5,4.8,4.8,4.9,4.8,4.8,4.8,4.8],"paint":[23.9,24.7,24,23.9,23.8,23.9,23.4,23.8,23.5,23.8,24.7,23.9,24.4,23.8,24.3]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"02_replace1k","values":{"total":[36.5,36.3,37.3,37.6,36.7,36.9,36.8,38,38.1,37.4,36.8,36.6,36.9,36.5,37.4],"script":[9.3,9.3,9.6,9.8,9.2,9.3,9.4,10.1,9.9,9.4,9.3,9.4,9.4,9.2,9.7],"paint":[23.7,23.7,24.2,24.3,24.1,24.2,24,24.6,24.8,24.5,24.1,23.8,24,23.8,24.3]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,14.1,12.6,12.5,12.8,11.7,13.3,12.6,13.4,13.3,13,13.3,12.2,13.1,12],"script":[0.6,2.5,0.6,1.2,1.7,1.1,2.2,0.3,2.4,1.7,1,1.4,0.9,1.8,0.6],"paint":[10.9,10.6,11.1,10,9.8,9.5,10.5,11,9.6,10.2,11.2,10.6,10,9.7,10.1]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"04_select1k","values":{"total":[3.4,4.4,4,4.2,4.8,3.6,4.6,3.2,4.4,3.9,4.1,4.6,4.3,3.6,3.4,4.5,3.8,4.3,2.8,5.3,3.1,3.3,4.6,3,3.2],"script":[0.7,2.2,1.6,1.9,2.4,1.1,2.4,1,1.4,0.7,1.9,2.2,1.6,1.1,0.7,1.8,1.2,2.5,0.9,2.6,1.2,1.4,1,1.3,0.9],"paint":[2,1.4,1.2,1.4,1.9,1.7,1.2,1.4,1.8,3,0.9,2.1,2.5,2.2,2.6,2.5,1.8,1,1.7,2.2,1.7,1.2,1.8,1.1,1.3]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"05_swap1k","values":{"total":[16.3,17.4,16.5,15.9,15.2,15.7,16.5,16.9,15,16.6,16.4,16.7,16.6,16.4,17.1],"script":[1.5,2.9,1.6,1.8,1.5,1.2,0.9,1.1,0.7,2.4,1.7,0.9,2.2,1.1,2.5],"paint":[13.1,13.4,12.5,13,13,13.8,14.4,14.8,13.6,13.5,13.9,14.3,13.4,13.7,13.6]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.4,12,12.1,11.9,11.6,12.2,12.8,11.9,12,11.7,12.2,11.9,11.8,12.4],"script":[0.9,1,1,0.7,0.8,0.8,0.9,1.1,0.7,0.6,0.7,0.7,0.8,0.6,0.7],"paint":[10.4,10.7,10.3,10.5,10.1,10.2,10.7,11,10.5,10.6,10.4,10.5,10.1,10.6,11]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"07_create10k","values":{"total":[367.7,363.9,367.2,360.5,372,363.8,364,367.9,363,363.6,365.9,363.6,364.7,361.8,365.2],"script":[61.7,60.7,60.8,60.2,61,61.5,60.3,61.1,59.6,60.4,60.4,60.9,61.6,60.3,60.4],"paint":[252.2,252.3,253.8,249.7,256.2,251.5,252.5,251.9,251.5,251.2,252.5,250.2,251.8,250.8,252.5]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.1,37.2,37.1,37,37.7,37.3,37.4,37.6,37.8,37.2,36.7,36.9,37.9,38.5,37.4],"script":[6,5.9,5.9,5.7,6,5.9,5.8,5.9,6.1,5.8,6.1,5.8,5.9,5.8,6.1],"paint":[27.2,27.4,27.5,27.5,27.8,27.4,27.7,27.6,27.7,27.5,26.8,27.2,28.2,28.6,27.6]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.9,14.7,17.5,14.6,16.4,16.8,16.4,14.6,16.1,14.2,19.5,17.8,15.5,14.8,16.5],"script":[14,11.6,15.2,12.5,14,15.2,14.3,12.5,13.9,12.3,16.7,15.8,13.7,12.4,14],"paint":[1,2.1,1.5,1,1,0.3,1.1,0.9,0.5,1,1.1,0.9,0.9,2.1,1.3]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1164627075195312]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.703153610229492]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7324953079223633]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.721435546875]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.812878608703613]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[107.8]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.7]}},{"framework":"angular-cf-nozone-v19.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[125]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"01_run1k","values":{"total":[33.6,34.4,34.2,34.5,34.5,34.6,34.2,35.3,34.1,34.8,34.3,33.9,33.6,34.7,34.7],"script":[5.5,5.8,5.8,6.3,5.8,6,5.9,5.8,5.7,6.1,5.8,5.8,5.6,6.1,6.1],"paint":[24.7,25,24.9,24.8,25.2,25,24.8,25.8,24.8,25.2,25.1,24.6,24.5,25.1,25.1]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"02_replace1k","values":{"total":[41.4,39.3,39.4,40.3,39.7,38.7,40.1,39.4,40.1,38.9,39.5,40.7,39.8,39.2,39.5],"script":[12.5,12,12.1,12.1,11.9,11.6,12.1,12,12.1,11.8,11.9,12.4,12,12.2,12.2],"paint":[25.4,23.8,23.9,24.7,24.3,23.8,24.6,23.8,24.4,23.7,24.2,24.7,24.2,23.7,23.9]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.8,12.6,13.3,13.1,13.5,11.9,13.6,13.6,14.4,12.5,13.3,13.9,12.8,12.6,13.1],"script":[1.4,1,2.3,1.6,1.5,1,1.1,1.9,2.1,1.8,2.1,2.1,1,1.3,1.6],"paint":[11.1,9.7,10,10.5,11.1,9.9,11.3,10.2,11.6,9.5,9.7,10.7,10.8,10.1,10.6]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.1,4.2,4.5,5.5,3.4,5,4.1,4.7,4.7,4.1,4.2,4.3,5.6,4.3,4.6,3.3,3.2,4.8,4,3.7,4.3,4.2,5.4,4.5],"script":[2.2,1.3,1.7,1.8,3.5,1.2,2.6,1.2,1.9,2,1.8,1.4,1.8,2.6,1.3,1.6,1.6,1.5,2.2,1.7,1.3,1.8,2.1,2.7,1.6],"paint":[1.6,2,1,1.7,1.9,1.4,2.3,2.3,2.3,1.4,1.8,1.8,1.5,2.8,1.3,1.9,1,0.7,1.5,1.9,2.3,1.7,1.4,2.4,2.7]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"05_swap1k","values":{"total":[15.9,16.7,17,15.8,16.6,17.7,16.7,15.9,16.6,16.3,15.7,16.5,17.2,16.2,15.6],"script":[1,2.5,2.3,1.3,1.6,2.8,0.9,1.7,1.5,2.3,1.8,1.9,1.5,2,1.2],"paint":[13.7,13.2,13.5,13.1,13.3,13.6,14.4,13.3,14.2,12.9,13.5,13.4,14.4,13,12.8]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.7,13.4,14.4,13.9,14,13.5,13.9,13.5,13.7,13.8,14,13.6,13.8,13.6,13.9],"script":[1.8,1.3,2,1.6,1.3,0.8,1.7,1.2,1.8,1.6,1.7,1.1,1.5,1.4,1.6],"paint":[11.4,11,11.2,11.1,11.3,11.3,11.2,11.1,10.9,11.1,11.4,11.3,11.4,10.9,11.2]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"07_create10k","values":{"total":[371.7,374,371.9,375.5,372.1,371.8,369.8,374.1,373,371.8,373.6,374.4,374.6,373.6,372.9],"script":[76.1,75.4,75.5,75.9,74.6,75.5,75.1,75.8,75.9,73.3,76.7,75.7,76.4,75.3,75.5],"paint":[244.3,249,246.2,248.3,247.1,245.4,245.4,248,246.7,247.4,246,248.3,247.7,247.3,246.2]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.9,39.3,39.2,39.8,38.8,39.1,38.4,38.5,38.6,38.9,39.7,38.5,39.2,38.3,38.7],"script":[6.7,6.6,7.2,6.8,6.8,6.7,6.8,7.1,7,7,6.9,6.6,7.2,6.8,7],"paint":[28.3,28.7,28.3,28.9,28.1,28.4,27.8,27.7,27.8,28.1,28.6,28.1,28,27.7,27.9]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,20.2,21.9,19.9,20.1,19.3,19.3,19.8,21.3,22.8,20.6,19.8,18.6,19.1,19.2],"script":[18,17.6,19.4,17.2,17.2,17.3,17.3,18.1,18.9,20.5,18.4,17.9,16.7,17,17.5],"paint":[1.2,1.8,0.8,0.7,2.1,1.1,1.1,1,2.2,0.8,1,0.5,0.3,1.3,0.3]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5217218399047852]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.849112510681152]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.923239707946777]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1977338790893555]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.573803901672363]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.3]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44]}},{"framework":"angular-cf-signals-v19.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[155.4]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"01_run1k","values":{"total":[39,37.9,38.9,38,37.7,39.2,37.8,38.3,38.2,39.4,38.5,38.8,39.1,40,38.5],"script":[5,5,5.4,4.9,4.9,4.9,4.9,4.9,5.1,5.4,5,4.9,5,4.9,5],"paint":[23.3,23.5,23.3,23.9,23.6,24.1,23.5,24,24.1,23.5,23.5,24.1,23.7,23.9,23.5]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"02_replace1k","values":{"total":[36.7,42.5,42.8,42.1,42.1,44.1,42.9,41.1,37.6,42.3,38.4,43.1,43.5,42.4,43.3],"script":[9.3,9.7,9.3,9.1,9.1,9,9.2,9.8,9.2,9,10,9.7,9.2,9,9.6],"paint":[24.1,24.3,24.4,23.7,23.8,24.1,24,24.3,23.9,24.1,24.1,24.1,24.7,24.3,23.9]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.9,12.3,11.9,30.5,28.5,28.9,12.3,12.4,30.1,13.9,28.3,12.8,13.7,12.5,30.9],"script":[3.1,1.5,1,3.1,1.9,2.2,1.9,1.9,3.4,3.3,1.4,1.7,3.5,1.3,2.9],"paint":[9.8,10.7,10.8,11.1,10.5,9.8,10.3,10.3,10.4,9.6,10.8,10,9.7,10.6,11.6]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"04_select1k","values":{"total":[5.5,5.8,4.4,4,5.6,4.3,4.7,5.9,5.7,5,4.6,4.3,4.9,5.8,3.6,5.7,4,3.9,4.3,5.5,4.4,4.2,4.9,4.7,5.6],"script":[3.6,2.9,1.8,1.7,3,1.7,1.7,2.7,3.5,2.1,1.9,1.8,2.4,4.1,1.2,3.1,1.7,1.7,1.7,3.3,2.5,1.5,1.9,2.5,3.3],"paint":[1.8,2.3,2.1,1.4,1.9,2.1,2,2.3,1.1,1.4,2.6,1.3,1.5,1.6,1.3,2,2.1,1.5,1.9,1.3,1,2.2,2.7,1.2,1.4]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"05_swap1k","values":{"total":[15.7,16.2,16.9,34.7,33.6,32.6,32.4,16.6,17.5,33.8,33.1,33.6,32.6,33,33.1],"script":[0.8,2.6,3.3,3.9,2.9,2.9,2.7,2.7,2.3,2.7,3.4,2.8,2.5,1.7,3.4],"paint":[14.2,13.4,12.4,13.5,14.8,13.8,12.7,13.5,11.5,14.6,13.8,14.7,14.4,16,13.4]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,14.6,12.1,12.8,14.2,14.5,13.3,16,13.3,16.3,16.7,14.3,14.1,16.5,16],"script":[1.2,1.6,1.1,2,1.2,1.2,1.4,1.6,1,2.4,2,1.5,1.3,1.8,1.5],"paint":[10.2,10.8,10.3,10.7,10.8,10.7,10.1,10.6,10.6,10.4,10.5,10.1,10.3,10.7,10.4]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"07_create10k","values":{"total":[371.1,368.8,365.2,368.4,372.6,369.7,372.3,367.9,366.8,365.5,367.6,367.4,367.8,364.6,370.6],"script":[60.5,61.5,61.5,61.7,61.2,60.5,61.1,62.1,61,61.4,60.5,60.9,62,62.2,61.1],"paint":[253.8,254.6,251.8,251.7,253.2,255.7,255.9,252.8,251.9,252.1,253,253.2,252.9,251.2,254]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.7,42.6,38.4,42.2,42,41.5,42.3,42.4,43,39,38.3,42.6,44.9,42.5,42.5],"script":[6.6,6.8,6.9,6.7,6.7,6.6,6.6,6.7,6.6,6.6,6.9,6.6,6.7,6.6,6.8],"paint":[27.6,27.6,27.9,27.4,27.1,27,27.4,27.5,28.1,28.7,28.1,27.5,27.5,27.9,27.5]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[33.1,14.4,13.6,15.4,32.8,15.4,33.4,17.5,32.3,31.3,32.8,14.1,15.2,32.8,32.8],"script":[15.5,13.4,12.5,14.4,15.2,13,15.5,15.8,15.3,14,14.8,12.8,13.4,15,14.6],"paint":[0.3,1,0.4,0.9,1.5,1.9,1.7,1.6,0.9,1.3,0.7,1.2,1.6,1,2]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1160593032836914]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.756680488586426]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.827773094177246]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.789494514465332]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.033272743225098]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[108.8]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33]}},{"framework":"angular-cf-signals-nozone-v19.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[127.7]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"01_run1k","values":{"total":[34.3,34.4,34.5,34.8,34,34.1,34.2,34.3,34.3,34.9,34.8,34.2,34.7,34.4,34.4],"script":[6,6,5.9,6.1,6.2,6,6,5.9,6,6,6.1,6,5.8,6,5.9],"paint":[24.8,25,25.1,25.3,24.4,24.5,24.7,24.9,24.7,25.4,25.1,24.8,25.3,24.9,25]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"02_replace1k","values":{"total":[39,37.6,38.8,38.8,38.1,38.8,39,38,38.5,38.2,38.1,38.3,38.3,38.4,38],"script":[11.3,10.6,10.8,10.7,10.6,10.8,11.1,10.6,10.5,10.7,10.7,10.7,10.9,11,10.6],"paint":[24.2,23.6,24.5,24.6,24,24.5,24.5,24.1,24.6,24.1,23.9,24.1,24,24.1,24]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,12.8,12.6,14.2,12.6,12.4,13.5,12.3,14,12.8,13.2,12.7,13.2,14,13.7],"script":[2.4,1,0.9,2.1,1,1.4,1.6,1.2,2.4,1.1,1,1.7,1.7,2.1,2.4],"paint":[9.9,10.3,10.2,10,10.2,9.5,11.3,10.2,10.5,10.4,10.5,9.5,10.3,10.7,10.7]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.8,4.2,4.8,4,3.6,4.4,4.3,4.6,4.1,3.9,3.9,3.9,3.8,4.8,4.6,4.9,3.7,3.5,3.8,3.3,3.1,4,4.1,3.6],"script":[2.1,1.6,1.4,2.4,1.5,0.7,2,0.4,2.1,1.5,1.8,1.3,1.1,1.4,1.9,1.6,2,1.1,1.6,1.6,1.1,1.1,1.8,1.5,1.3],"paint":[1.6,1,1.9,1.2,2.3,2.1,1.6,1.1,2.3,1.6,1.4,1.6,0.6,2.2,2,1.6,2,1.3,1.7,1.4,1.6,1.2,1.3,1.7,1.7]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"05_swap1k","values":{"total":[139,136.8,137.7,135.4,139.1,134.9,135.3,135.6,137,134.3,134.2,139.7,136.2,137.8,137],"script":[25.7,24.9,25.2,24.5,25.6,25.2,24.7,25.2,25.3,24.4,25.9,27.1,25.3,25.9,25.3],"paint":[97.7,96.7,97.6,95.7,97.9,93.6,96.8,94.8,95.4,95.8,94.3,97.6,93.1,96.3,96.7]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12,12.4,12.1,12,12.3,12.2,12,12,12.2,12.3,12.3,12.1,13.4,12],"script":[1.2,0.9,1,0.9,1,1.1,0.8,0.8,0.7,1.3,1.1,1.2,0.8,1.6,0.8],"paint":[10,10.3,10.6,10.3,10.2,10.1,10.5,10.3,10.7,10.1,10.3,10.4,10.8,11.1,10.5]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"07_create10k","values":{"total":[378.4,376.4,375.4,373.9,375.9,375.5,375.4,379.5,379.8,379.8,372.9,371.9,375.4,373.4,376.7],"script":[79.8,79.5,78.5,78.7,79.8,78.3,78.1,78.5,78.4,79.3,77.9,76.8,79,78.7,78.7],"paint":[248,247.6,244.9,243.8,246.2,245.6,247.6,250.2,248.3,247.8,244.1,245.9,246.6,244.8,248.5]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.5,38.1,39.4,39.2,39.4,38.9,37.9,40,39,38.9,39.9,39.2,39.2,39.8,41.7],"script":[6.8,6.5,6.6,6.7,6.5,6.7,6.6,6.6,6.7,6.9,6.9,6.5,6.8,6.6,6.7],"paint":[28.8,27.9,28.5,28.6,28.9,28.3,27.5,29.2,28.2,28,28.8,28.7,28.4,29.1,30.6]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.5,21.8,22.8,20.7,20.6,21.1,21,21,21.5,21,22.5,21.9,20.8,21.8,21.6],"script":[19.9,19.5,20.1,18.4,17.7,19.1,18.5,18.5,19,18.9,19.7,19.4,18.3,19.3,18.8],"paint":[2.4,1.4,1.3,0.9,2,1.1,1.4,1.2,1.4,1.5,2.2,1.1,1.4,1,1.9]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.564896583557129]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.0353498458862305]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.068783760070801]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3855600357055664]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.859222412109375]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[150]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.8]}},{"framework":"angular-ngfor-v19.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[164]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"01_run1k","values":{"total":[33.6,33.2,33.4,33,33,33,33.1,33.2,34,34.1,33.8,33.6,33.9,33.7,33.2],"script":[8.4,8.5,8.7,8.6,8.4,8.3,8.3,8.6,8.8,8.7,8.7,8.6,8.7,8.5,8.7],"paint":[24.5,24.2,24.1,23.7,24,24.1,24.3,24,24.7,24.8,24.5,24.5,24.6,24.6,23.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"02_replace1k","values":{"total":[38.1,37.9,38,37.4,37.5,37.5,37.7,38.1,37.2,37.7,38,38,37.9,37.2,38],"script":[12.9,12.9,12.9,12.5,12.7,12.7,12.7,12.6,12.5,12.7,12.9,12.9,12.8,12.5,12.7],"paint":[24.5,24.4,24.4,24.2,24.2,24.1,24.5,24.9,24.1,24.4,24.5,24.5,24.5,24.1,24.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[41.6,43.1,41.2,41,41.1,40.9,40.7,40.2,40.2,41.6,41,40.9,40.3,41,40.8],"script":[27.7,28.3,27,27.8,27.8,27.4,27.1,27.5,26.5,28.8,28.1,27.8,27.3,27.4,27.3],"paint":[11.2,12.9,11.1,11.2,10.9,12.4,10,10.2,12.6,11.2,11.4,10.9,11.3,10.8,11.4]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"04_select1k","values":{"total":[30,30.2,31.7,30.9,29.8,33.4,31.7,30.8,30,34.1,30.8,30.4,31,30.5,30.3,31,29.8,30.8,31.2,30.4,30.6,31.8,29.3,31.1,30.8],"script":[26.2,26.5,28.1,27.3,26.7,29.8,27.4,26.9,26.8,29.4,27.6,27.2,28.2,27.3,26.6,27.7,26.4,27.3,26.8,26.8,27,28.3,26.1,27.2,27.3],"paint":[2.3,1.8,2.1,2.7,1.5,1.9,2.5,2.4,1.6,2,1.1,1.1,0.9,1.3,1.8,1.4,2,2.7,2.3,1.1,2.2,1.5,1,2.2,2]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"05_swap1k","values":{"total":[41.7,42.9,43.4,42.4,42.9,42.8,46.3,43.1,44.6,42.1,44.7,42.3,43.4,44.1,44.6],"script":[25.9,26.2,27.1,26,27.3,27.5,29.2,27,27.6,27.2,27.9,26.3,27,27.5,28],"paint":[13.2,14.5,13.1,14.2,13.2,13,14.1,14,15.2,12.5,14.6,13.2,13.7,14.5,14.8]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[92.7,91.4,91.9,91.2,92.5,91.8,92,94.2,92.1,92.5,94.2,92.2,92.4,93.1,91.1],"script":[42.9,42.3,41.9,41.9,42.1,41.6,42.2,42.9,41.8,42,43.3,42.4,41.4,42.2,41.7],"paint":[48,47.6,48.4,47.9,49.1,48.5,48.5,49.6,48.8,48.5,49.2,48.8,49.2,49.8,48.2]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"07_create10k","values":{"total":[330.9,334.6,332.1,332.1,328.9,334.5,329.5,330.2,332.9,335.5,330.7,332.5,329.6,329.5,332.9],"script":[87.6,90.1,89,89.9,86.5,90.8,85.1,87,90,89.7,87,87.1,86.3,87.2,86.3],"paint":[237,238,236.6,235.8,235.8,237.1,237.8,236.6,236.7,239.3,236.9,238.9,236.8,236,239.8]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.7,46.2,46.6,46.7,45.5,44.5,44.6,44.6,44.7,44.9,45.6,44.7,44.6,44.4,44.4],"script":[15.9,16,15.8,16,16.1,15.5,15.7,15.7,15.7,15.6,15.5,15.6,15.5,15.6,15.4],"paint":[29.7,29.3,29.7,29.6,28.4,28,27.8,27.9,28.1,28.3,29.1,28.1,28.1,27.8,28.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.2,13.1,12.8,13,12.2,12.1,12.9,12.2,13.1,12.8,12.7,12.6,12.6,12.4,11.6],"script":[10.3,11,10.6,10.5,10.4,10.3,11.1,10.1,10.4,11.1,10.8,10.2,10.4,10,9.6],"paint":[0.6,0.6,1.2,1.8,0.3,0.9,0.3,1.5,1.2,0.3,0.3,0.9,0.9,1.4,0.6]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6589040756225586]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.589975357055664]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6112489700317383]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.502984046936035]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.999284744262695]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"01_run1k","values":{"total":[86.9,82.2,83.3,86.3,86,84.6,83.3,81.9,87.5,84.4,83,84.9,81,83.2,80.3],"script":[50.8,50.7,51.6,50.6,51.3,51.1,51.3,50.7,51.1,51.5,50.7,50.9,51,51.5,51],"paint":[26.4,25.9,26.1,26.3,26.1,26.8,26.3,25.9,26.1,25.9,26.2,25.9,26.1,26.1,25.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"02_replace1k","values":{"total":[87.8,89.1,85.1,83.4,87.5,87.6,89.4,86.4,85.3,84.5,90.3,86.6,86.3,87,92],"script":[53.6,54.7,54.5,54.1,56,55.2,55,54.9,54,55.1,55.7,54.9,54.9,55,55.4],"paint":[26.1,26.1,25.5,25.8,26.2,25.6,25.6,25.6,25.7,25.5,25.9,25.9,25.5,26.1,26]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[55.1,53.3,53.2,53.5,54.9,36.4,54.2,36.8,35.7,55.3,54.3,55.2,38.1,53.7,53.7],"script":[22.8,21.8,21.5,20.8,21.3,21.2,22.9,22.2,20.8,22.2,20.8,22.5,22.4,21.5,21.3],"paint":[13.2,13.6,13.8,13.8,14.8,13.6,14,13.6,13.2,14.5,14.4,14.3,15,14.6,14.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"04_select1k","values":{"total":[12.6,13.4,15.5,10.4,11.8,13.3,9.7,10,10.2,15.5,15.6,11.2,10.5,13.8,12.2,9.6,13.4,10.5,13.1,9.9,9.7,10,10.8,15.5,9.8],"script":[5.8,6.1,6.4,6.3,6.1,5.7,5.2,6.4,5.2,6.1,5.8,5.1,6.3,5.5,5.7,6,6.6,6.1,6.3,5,6.1,6.5,6.1,5.4,5.9],"paint":[3.2,2.3,2.6,2.9,1.9,2.7,2.3,2.6,1.7,3.8,3.6,1.9,3,2,3.9,2.9,2,3.2,3.5,3.2,2,2.4,3.6,3.4,2.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"05_swap1k","values":{"total":[59.4,55.7,40.5,60,39.9,57.1,58.4,56.8,41.7,57,39.6,39.9,40.9,57.5,41.1],"script":[24.3,21.8,22.4,22.5,21.9,23,22.4,22.9,24,22.8,21.2,22.1,22.2,22.7,23],"paint":[15.6,15.7,16.3,15.9,15.2,16,16.8,16.7,16.5,16.4,16.3,16.7,15.8,16.5,17.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[71.3,77.4,70.4,70.7,73,73.9,70.7,71.4,71.6,74.3,71.2,72,73.3,73.6,76.6],"script":[16.9,16.6,16.5,16.9,17.1,18,17,16.8,16.4,16.9,16.7,16.8,17,16,17],"paint":[53.2,53.6,52.2,52.2,54.2,52.4,52.2,53.1,52,53.5,52.9,53.6,53,52.5,54.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"07_create10k","values":{"total":[672.5,682,683.6,687.9,678.7,685.9,674.7,685.2,686.3,676.1,684.7,692.5,675.7,684.8,686.4],"script":[414.8,414.8,415.3,419,412.5,424,411.8,420.4,421.2,414.7,418.5,426.7,412.8,418.9,422.2],"paint":[253.4,262.7,263.9,264.4,261.2,257.4,258.6,260.3,260.7,257,262,261.4,258.6,261.5,259.8]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[94.6,92.2,95.7,92.8,91.7,91.9,90.7,91.9,95.7,91.9,92.2,93.3,95.2,92.6,91],"script":[56.6,55.2,55.7,57.2,56,55.9,55.1,56.1,55.1,55.9,55.3,57.1,56.5,56.7,55.4],"paint":[30.1,30.3,30.1,30.1,30.1,30.5,30.2,30.3,30.5,30.5,30.1,30.5,30.5,30.2,30.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.6,21.8,21.8,20.5,20.3,43.8,22.1,22.1,20.6,21.1,21.6,21.3,20.6,21,44.2],"script":[17.8,16.5,17.4,16.4,16.3,18.1,18.3,18.1,17.3,17.1,17.9,17.1,16.7,18,18.1],"paint":[3,2.2,3.3,2.9,2.9,2.4,2.8,2.9,1.2,3,2.6,2,3,2.6,2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6141252517700195]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.899747848510742]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.070985794067383]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[50.65083122253418]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[103.56539821624756]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.4]}},{"framework":"art-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[41.8,40.1,36.1,41.3,40.9,35.7,41,37.3,33.6,35.6,33.9,32.3,42.5,41,33.4],"script":[6.5,5.8,5.6,5.7,5.3,5.6,5.7,5.7,5.5,5.6,5.5,7.2,6.5,5.6,6],"paint":[22.6,23.2,24,23.9,24.1,24.1,23.9,25.2,24,24.3,24,24,23.5,24.2,24]}},{"framework":"art-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[38.4,37.3,38.3,36.1,37.1,36.8,36.7,38.3,39.8,38.1,41.2,33,36.5,37,38.8],"script":[8.5,8.1,8.5,8.4,9,8.8,8.5,8.7,9,8.4,9,8.3,8.4,8.7,9],"paint":[23.7,23.5,23.4,23.5,23.9,24.1,23.8,23.9,23.4,23.7,23.5,24.3,23.9,23.5,23.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[37.2,17.8,36.1,34.1,36.9,34.2,34.9,35.8,35.8,19.8,34.7,36.5,34.6,35.6,36.8],"script":[6.1,5.1,5.5,5,5.9,5.1,4.8,5,5.1,5.2,4.3,6.4,4.3,4.9,4.7],"paint":[13.2,11.4,12.9,12.2,13,12.3,12,13.4,12.9,12.3,13.1,12.5,12.9,12.4,13.2]}},{"framework":"art-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[15.7,5.6,9.2,6.3,7.6,6.2,12.7,9.5,7.9,6.9,6.6,11.5,6,7.9,12.1,5.9,8,7.2,11.3,8.7,7,6,9.4,5.2,6],"script":[3,1.3,2.3,2.5,2.7,2.5,2.4,2.7,2.5,3,2.7,2.9,3.3,3.4,2.4,2.1,1.6,2.7,2.9,2.4,3,2.6,2.3,2.4,2.3],"paint":[2.7,2.8,3.9,2.2,2,2.4,3.9,2.8,1.7,2,2.8,3.3,2.5,2.8,1.3,2.4,2.3,2.5,3.2,2.8,2.5,2.5,2.5,1.7,1.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[35.9,35.3,35.9,36.4,35.9,36.1,39.4,35.5,36,19.6,35.3,38.6,18.2,34.7,34.3],"script":[1.6,2.2,2.8,2.2,2.1,2.9,3.1,2.4,3.1,1.8,2.1,2.5,2.4,2.7,2.6],"paint":[14.7,15.9,14.9,14.9,15.9,16.3,16.2,15,15.4,15.6,16,13.8,13.6,15.8,14.4]}},{"framework":"art-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,13.9,15.3,17.3,16.4,14.8,16,15.7,16.4,16.9,13.9,16.4,14.1,15.8,14.7],"script":[1.3,1.4,1.3,1.2,1.4,1.4,1.8,1.7,1.5,1.2,1.5,1.4,1.3,1.6,1.2],"paint":[11.3,11,10.9,11.2,11.9,11.1,11,11.8,11.5,11.4,11.1,11,10.8,11,11.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[319.7,317.3,320.5,318,315.5,312.7,313.3,319.5,321.7,317.6,311,319.5,318,317.3,317.2],"script":[74.3,74.7,74.3,74.7,72.3,69.7,71.1,74.5,76.3,73.7,70.1,72,74,75,73.9],"paint":[237.3,235.9,236.8,236.6,238.4,237.9,237.6,236.8,237.8,236.3,237.7,238.3,237,235.2,236.9]}},{"framework":"art-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.4,36.1,37.1,36.8,38,37.5,36.2,36.3,43.5,43.2,37.5,36.5,41.4,41.3,43],"script":[7.1,7.6,7.5,7.4,7.6,7.4,7.5,7.6,7.5,7.6,8.2,7.6,7.5,7.5,7.4],"paint":[28,27.8,29,28.7,29.1,29,28.1,28,27.4,27.3,28.6,28.1,27.8,27.7,27.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[37,12,12.3,11.3,11.3,12.3,13.2,12.8,12.7,12.2,12.9,12.5,12.4,13.8,12],"script":[10.1,7.6,8.4,7.8,7.4,8.2,8.8,8.9,8.8,8.4,7.8,9.4,9,8.8,7.9],"paint":[3,2.3,2.2,3,3.1,2.5,1.2,1.5,1.1,2.3,3.8,1.5,1.8,4.5,2.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5888576507568359]}},{"framework":"art-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.829575538635254]}},{"framework":"art-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.918376922607422]}},{"framework":"art-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8432750701904297]}},{"framework":"art-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.59401035308838]}},{"framework":"art-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"01_run1k","values":{"total":[35.1,35.1,35.1,35.4,34.4,35.1,34.5,34.5,35,34.8,34.5,34.4,33.7,33.7,34.1],"script":[10.1,10.1,10.4,10.1,9.7,9.7,9.7,10,10.4,10.2,10.1,10,9.5,9.4,9.7],"paint":[24.2,24.4,24.1,24.7,24.2,24.9,24.2,24.1,24.1,24.2,23.8,23.9,23.6,23.8,23.8]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"02_replace1k","values":{"total":[40.1,40.3,40.4,40.6,41,39.6,40.2,40.4,40.8,40.1,40.5,40.6,40.2,40.6,40.6],"script":[14.8,15,14.8,15.1,15.7,14.8,15.1,15.1,15.3,15,14.9,15.3,15.3,15,15.3],"paint":[24.7,24.6,25.1,24.9,24.7,24.3,24.5,24.8,24.9,24.5,25,24.7,24.3,24.9,24.6]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.9,25.4,13.3,24.9,14.2,25.2,26.4,13.9,25.1,13.3,26.1,15.1,13.9,26.3,12.9],"script":[1,1.2,1.8,2.1,2,2,1.1,1.2,1.8,1.9,1,2.1,2.1,1.1,2],"paint":[10.5,11.5,10.9,10.3,11.4,10.4,12.1,11.5,11.7,11.2,11.7,11.4,11.2,11.5,10.8]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"04_select1k","values":{"total":[6.9,6.4,6.7,6.6,6.1,5.8,5.6,7.4,6.4,7,6.5,7.6,6.2,5.4,6.7,7.3,6,7.1,5.8,6.4,6.5,6.6,7,6.4,6.7],"script":[4.8,4.7,4.8,4.1,4.3,3.9,3.8,4.2,3.9,4,4.7,4,4,3.3,3.7,4.3,4.1,4.8,4.2,4.5,3.2,3.2,3.9,4.5,4.2],"paint":[1.9,0.9,0.5,1.7,1.6,0.9,1.5,1.7,1.4,1.5,1.2,1.1,1.1,0.9,2.4,0.9,1.8,1.1,0.7,1.3,2.3,1.4,1.9,0.5,0.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"05_swap1k","values":{"total":[18.4,17.2,19.8,17.4,19.1,17.1,16.7,16.8,18,18.8,18,17.5,18.5,17.6,18],"script":[3.2,2.5,2.6,2.5,3,2,1.9,1.6,2,3,2.2,2,2.5,2.5,2.1],"paint":[13.8,13.9,15.5,13.8,14.7,13.5,13.3,14.1,14.4,14.4,14.4,14.2,15.2,13.2,13.6]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,12.6,13.1,12.6,12,12.6,12.5,12.4,12.5,12.4,12.6,12.6,12.4,12.2,12.5],"script":[1.3,1.5,1.6,1.5,1.2,1.3,1.3,1.5,1.2,1.5,1.2,1.5,1.2,1.4,1.5],"paint":[10.6,10.4,10.8,10.5,10.1,10.7,10.7,10.1,10.9,10.4,10.4,10.3,10.6,10.3,10.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"07_create10k","values":{"total":[372,372.3,370.5,371,370.9,368.4,371.6,374.9,371.9,372,368.7,369.9,371.8,372.2,371.2],"script":[117.7,117.5,116.2,117.8,115.8,116.5,117.2,118.6,118.6,117.6,116.6,117.1,116,117.4,117.3],"paint":[247.1,247.8,247.7,246.9,248.3,245.7,247.6,249.7,246.8,247.8,245.9,246,248.6,247.5,246.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.2,41.4,41.3,41,41.6,43,41.1,41.1,41.6,41.2,41.1,41.2,40.1,41.1,41.5],"script":[11.4,11.3,11.4,11.3,11.7,11.8,11.5,11.6,11.7,11.6,11.3,11,10.9,11.5,11.6],"paint":[28.8,29.1,28.9,28.7,28.8,29.7,28.5,28.5,28.9,28.6,28.8,29.3,28.2,28.6,28.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.3,22.3,24.1,23.7,23.9,22.6,22.4,22.8,24.2,24.2,25.5,22.4,26.6,23.1,22.7],"script":[20.6,20,22.4,21.2,21.7,19.7,20.6,20.3,21.8,22,23,20.7,24,20.9,21.4],"paint":[0.3,1.1,0.7,0.9,1.4,0.7,0.5,1.8,2.1,1.2,0.7,1.1,2.2,0.7,1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9622573852539062]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.949180603027344]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.977052688598633]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[7.019225120544434]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.951666831970215]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[203.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[56.3]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[222.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[89.9,91.8,87.9,91,96.4,93.7,96.4,89.2,96.2,88.1,97.8,88.3,97.3,89.2,88.4],"script":[60.2,58.6,58.1,60.9,61.4,61.3,60.5,59.5,60.6,57.9,61.4,58.6,61.6,59,58.5],"paint":[26.2,29.5,26.5,26.7,27.1,27.2,26.6,26.4,27.6,26.8,27.1,26.4,27.4,26.6,26.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[103.7,103.8,104.2,102.8,102.6,104.1,103.1,103.4,104.3,104,104.6,102.3,103.8,104.8,102.8],"script":[72.9,71.9,73.3,72.2,71.9,72.5,72.1,72.7,72.9,73,73.4,71.5,73,72.3,71.6],"paint":[26.8,27.7,27.1,26.8,26.9,27.6,27.1,26.9,27.4,27,27.4,26.9,27,28.4,27.2]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.1,93.8,94.3,94.3,93.8,94,94.4,94.9,94.7,96.1,94.2,95,94.4,95.1,93.4],"script":[48.1,47.6,48.6,47.4,47,47.5,47.4,48.4,47.6,48.6,47.5,47.3,54.8,48.7,48.2],"paint":[12,11.6,13.6,13.3,12.4,14,13.6,12.7,12.2,12,13.9,13.8,13,13.6,12.5]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[90,84,85.9,83,84.5,84.9,85.6,85.9,83.6,85.6,83.7,85.9,83.4,86.1,85.2,81.2,83.9,85.9,85.7,84.4,83.6,81.8,84.8,85.8,84.6],"script":[43.3,44.5,43.1,44,45.6,44.3,42.4,43.3,43.2,42.5,43.1,43.6,43.3,43.7,44.6,42.3,43.7,43.8,43.6,43.7,43.8,44.1,43.5,43.8,43.4],"paint":[2.2,2,2.3,2.5,2.6,1.2,1.9,2.3,0.9,2.3,1.3,1.9,2.2,2.7,1.9,1.4,2.6,2,1.4,2.3,2,1.4,2.3,1.8,1.4]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[95.8,95.3,95.8,94.9,94.9,90.2,84.6,81.6,87.6,83.7,86,89.1,86.7,94.2,86.3],"script":[43.3,42.8,41.6,42.4,42.1,43.1,42.6,42.7,42.2,42.7,41.7,42.8,43.2,43.2,42.1],"paint":[14.9,14.7,16,15.6,16.1,15.6,17,15.3,15.4,15.5,14.2,15.3,14.4,14.3,16.5]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[40.6,42.2,43.4,36.1,36.2,35,34.9,42.8,34.8,38.9,35,41.3,35.3,37,34.9],"script":[21.9,21.8,22.2,21.6,22.9,22,21.6,21.9,22.3,22.5,21.4,21.8,21.8,22.7,22.1],"paint":[11.2,11.7,11.5,11.4,11.4,11.6,10.9,12.6,11,11.9,11.2,10.9,10.9,12.1,11.2]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[816.6,813.5,822.9,822.7,829.2,819.7,827,819.1,824,819.5,827.6,817,822.9,828.3,832.6],"script":[469.6,473.4,474.6,476.3,475,470.5,477.5,471.6,473.7,469.9,476.5,470.2,479.6,478.1,481.9],"paint":[292.4,286.8,294.2,293.6,297.9,295.4,296,291.2,294.5,294.4,296.3,290.4,290.4,294.2,295.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[101.9,103.2,102.8,102.6,102,99.6,102.4,104.9,102.5,102.7,102.2,104,104.4,102.8,104.1],"script":[69.7,70.9,69.9,71.2,70.2,68.3,69.9,71.3,70.6,70.6,70.2,70.6,70.2,70.1,70.9],"paint":[27.6,27.9,28.3,27,27.2,27.3,27.9,28.7,27.5,27.7,27.4,28.8,29.6,28,28.4]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[39.5,39.4,39.6,36.3,36.5,38.1,35.8,38,37.5,38.7,39.6,38.7,36.7,36.8,38.6],"script":[37.4,37.6,37.5,34.7,35.1,36.1,33.8,36.4,36.1,37,37.4,36.8,35.3,35.7,37],"paint":[2,1,1.9,1.1,0.4,1.9,1.2,0.3,0.7,0.5,0.4,1.7,1.5,0.3,1.5]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[41.15411853790283]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[52.806891441345215]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[52.9997034072876]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[49.37551689147949]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[133.79869556427002]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4208.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1377]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[85,94.4,95,90.2,87.5,86.4,95.3,90.9,94.8,94.8,87.3,86.3,95.6,86,88.6],"script":[54.8,58.8,57.5,58.2,56.8,55.8,57.9,59.5,58.4,59,55.1,56.1,58.3,55.7,56.6],"paint":[26.8,27.4,27.8,27.1,26.7,27.3,27.8,27.5,26.7,27.4,27.1,26.9,27.5,27,26.8]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[96.4,94.7,95,94,94.2,93.7,94.5,93.4,93.3,94.7,94.3,94.5,94.1,94.2,92.6],"script":[64.7,63.7,64.5,63.7,63.4,62.5,63.7,63.4,62.9,64.2,63.5,63.9,63.5,63.7,62.2],"paint":[28.2,27.2,27,26.9,27.1,27.6,27.4,26.6,27,27,27.5,27.2,27,27,26.9]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[92.9,94.2,93.7,93.5,93.9,94.2,94.9,95.6,93.8,95.7,95,95.1,94.8,93.1,95],"script":[35,34,34.7,34.5,34.7,34.9,34.9,35.5,34,35.3,34.7,33.8,33.8,33.9,34.3],"paint":[13.8,13.5,13.5,12.9,12.8,13.2,11,12.6,12.4,14.2,13.2,12.8,12.8,12.2,12]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[81.6,89.9,89.3,89,88.3,90,89.1,89.3,89.2,89.8,89.5,83,89.6,89.1,89.2,88.3,83.5,89.5,88.6,88.8,90.1,89.1,89.2,88.7,88.7],"script":[34.8,34.6,36.1,36.3,34.6,34.7,34.9,34.7,35.2,34.6,34.3,35.7,35.5,33.3,34.7,33.6,34.1,37.8,35.3,36,36.6,34.9,34.8,35.1,36.3],"paint":[2.5,2,1.7,2.7,2.3,2.2,1.2,2,1.3,2.4,2.1,2,0.7,2.4,2.5,2.4,1.7,1.9,1.4,2.5,2.3,1.4,1.6,1.7,2.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[94.6,83.9,93.6,93.7,95.1,89.1,83.9,95.1,84.1,94.9,84.7,94.8,86.2,94.2,82.4],"script":[33.1,32.5,33,33.4,34.5,34.1,33,33.2,35,34.2,34.1,33.8,32.6,32.5,32.7],"paint":[15.9,14.7,16.9,15.6,15.5,15,14.6,16.4,15.3,14.3,15,14,14.9,14,15.7]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[31.2,91.3,89.9,91.8,88.2,89.4,94.8,34.1,94.7,89.8,95.3,94.6,95,89.6,89.5],"script":[17.9,17.7,17.8,17.6,18.2,18.5,17.7,17.4,18.5,18.3,18.2,17.7,19.1,17.6,17.8],"paint":[11.3,10.4,11.7,10.5,11,11.8,11.1,10.7,11.2,11.2,11.5,11.2,11.5,11.1,10.8]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[793.3,795.3,785.6,795.1,787.6,789.2,793.4,785.2,786,787.8,790.9,777.1,793.2,787.1,793.3],"script":[447.8,450.1,442.2,449.1,446.9,447.4,445.2,445.1,444.9,444.4,446.2,440,450.1,446.8,445.4],"paint":[288.9,290.3,288,292.1,287.4,285.7,293,287.4,286.4,288.2,289.5,280.2,289,284.5,289]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[116.6,112.8,114,111.9,112.8,119,114.4,113.7,99.8,114.2,116.4,115.2,115.8,101.8,115.7],"script":[60.3,58.7,59.6,59.2,60,59.5,59.6,59.5,60,58.4,60.2,60.2,59.3,62.5,60.1],"paint":[31.1,31.5,31.8,30.9,31,30.4,30.3,31.2,32.3,31,30.7,31.2,31.4,32.1,31]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[38,42.2,41,42.2,41.7,41.8,42.4,41.5,43.4,42.4,42.2,41.9,42,39.6,43.9],"script":[36.5,40.2,40,40.5,40.5,40.2,40.9,39.9,41.8,40.6,40.8,40,40.5,37.8,42.3],"paint":[1.4,1.9,0.6,1.1,1.1,1.5,0.3,0.8,1.5,1.8,0.3,1.7,0.7,1.8,0.7]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[52.36372184753418]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[65.4139986038208]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[65.42212200164795]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[61.93857669830322]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[137.28361797332764]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12639]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2951.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"01_run1k","values":{"total":[26.5,26.1,26.4,26.3,26,25.8,25.7,25.8,25.7,25.9,26,25.9,25.7,25.9,26],"script":[2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.4],"paint":[23.8,23.4,23.7,23.6,23.3,23.2,23.1,23.1,23.1,23.2,23.4,23.1,23,23.3,23.2]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"02_replace1k","values":{"total":[28.9,28.8,29,28.6,28.3,28.6,28.6,28.8,28.7,28.8,28.8,28.5,29.3,29.3,28.7],"script":[4.9,4.7,4.7,4.7,4.5,4.6,4.7,4.8,4.7,4.7,4.8,4.6,4.9,4.6,4.5],"paint":[23.6,23.7,23.9,23.4,23.4,23.6,23.6,23.6,23.6,23.7,23.5,23.5,24.1,24.3,23.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.4,11.9,11.5,11.2,11.8,10.8,11.4,12,10.7,12.4,11.2,12.1,11.4,11.9],"script":[0.6,0.7,0.2,0.6,0.8,1.5,0.2,0.8,1,0.2,1.2,0.2,0.6,0.6,1.4],"paint":[9.4,8.4,9.9,9.9,9.5,9.5,9.4,9.9,10.3,9.5,9.6,8.9,9.4,9.5,8.9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"04_select1k","values":{"total":[3.6,2.1,2.4,2.4,2.5,2.8,2.4,2.5,2.2,2.4,2.1,1.9,2.9,2,2.2,2,3.5,3.9,2.4,2,1.6,2.4,2.6,2.4,3.1],"script":[0.7,0.1,0.6,0.5,0.1,0.6,0.1,0.1,0.1,0.6,0.5,0.8,1.1,0.1,0.1,0.1,0.1,0.9,0.8,0.1,0.1,0.8,0.8,0.1,0.8],"paint":[1.7,1.9,1.6,1,2.2,1.6,1.3,1.4,1.3,1.1,1.5,1,1.2,0.9,1.7,1.6,1.8,1.5,1.5,1,0.7,1.5,1,1.4,1.1]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"05_swap1k","values":{"total":[14.4,13.4,14.6,13.3,13.1,14.2,14,13.4,13.9,14.2,13.5,13.9,14.2,15.1,13.9],"script":[0.9,0.5,0.5,0.1,0.7,0.6,0.5,0.1,0.5,1.2,0.1,0.8,0.8,0.7,0.4],"paint":[12.5,11.8,12.7,11.6,10.4,13.4,12.5,11.9,11.9,12,11.9,12.4,12.4,13.8,12.5]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11,10.7,10.7,10.6,10.7,10.7,10.3,10.9,10.4,10.5,10.4,10.6,10.6,10.8],"script":[0.1,0.3,0.1,0.3,0.3,0.3,0.3,0.1,0.5,0.1,0.1,0.1,0.3,0.2,0.4],"paint":[10.1,9.9,10,9.6,9.3,9.7,9.8,9.9,9.2,9.5,9.7,9.4,9.7,9.7,9.8]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"07_create10k","values":{"total":[278.5,278.3,274.8,277.4,277.7,276.4,277.5,278.2,274.1,274.9,277.4,276.4,276.2,274.9,275.3],"script":[29.9,29.5,29,29.3,30.2,29.7,29.9,29.5,29.6,29.7,31.1,29.6,30.7,29.5,29.6],"paint":[242.6,243,240.3,242,241.8,239.9,241.8,242.7,238.7,239.2,240.5,241,239.8,239.6,240]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.5,28.7,29.3,29.1,28.7,28.2,29.5,28.8,29.4,29.6,29.7,28.9,28.7,28.9,28.9],"script":[2,2,2.1,2,2,2,2.1,2.1,2,2,2.1,2.1,2,2,2],"paint":[25.8,26,26.5,26.4,26,25.6,26.7,26,26.4,26.9,26.8,26.2,26,26.2,26.1]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.9,10,8.7,9.5,9,9.6,9,9.1,8.6,9.4,9.4,9.1,9.5,9.8],"script":[6.8,6.8,8.1,6.6,7.3,7,7.6,6.7,7.2,7.1,7,7.2,6.8,7.1,7.8],"paint":[2.2,1.3,0.3,0.7,0.7,1.1,0.9,1.9,1.6,0.2,1,1.9,2,1.5,1.4]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6519088745117188]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6251373291015625]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6471099853515625]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8051185607910156]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.331555366516113]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"01_run1k","values":{"total":[30.7,36.7,36.1,35.1,34.5,32.7,32.8,32.4,35.2,31.5,31.4,36.6,30.2,32.3,34.2],"script":[5.7,5.7,5.8,5.9,5.8,5.8,5.9,5.8,5.6,5.7,5.8,5.6,5.9,6,6.1],"paint":[23.5,23.7,24.1,23.9,23.5,23.8,24.2,24,23.4,24.1,23.9,23.3,24,24.7,25.1]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"02_replace1k","values":{"total":[34.1,40.3,34.9,38.3,40.3,34.3,39.7,38.2,38.6,38.9,39.9,34.4,39.2,41,34.8],"script":[10,9.7,10.2,10,10.3,10.1,10,9.9,10.3,10.2,10.3,10.2,10,10.2,10.1],"paint":[23.8,23.5,24.4,23.7,24.3,23.9,23.4,23.6,23.6,22.9,23.4,23.9,23.4,23.2,24.4]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.7,13.6,30.4,13.7,14.9,14,15.7,14.6,15.2,14.7,29.8,14.3,13.5,14.7,14.1],"script":[3.3,2.9,3.6,2.6,3.2,2.5,2.8,3,2.9,2.5,3,2.9,2.8,3.6,2.5],"paint":[10.9,10.6,10.7,10.1,11.5,10.2,11.2,10.8,10.1,10.1,10.7,10.5,10.5,10.7,11.4]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.2,3.5,3.6,4.6,3.5,4,4.3,4.2,3.7,3.8,3.2,3.6,3,3.5,4,3.4,6.8,3.3,4.1,3.7,3.3,3.2,3.9,4.1],"script":[1.3,1.6,1.8,1.3,1.6,1.5,1.9,2,1.5,1.5,1.9,1.4,1.2,1.1,1.6,1.1,1.7,1.1,1,1.1,1.3,1.1,2,1.6,1.7],"paint":[1.4,2.5,1.6,1.7,1.6,1.1,1.9,1.3,2.3,1.1,1.2,1.7,1.9,1.7,1.8,1.5,1.5,2.4,1.1,1.3,1.3,0.7,1,2.1,1.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"05_swap1k","values":{"total":[14.7,32.4,31.3,14.1,32.8,16.7,15.1,30.9,32.4,31.4,15.5,32.3,16.1,31.7,31.6],"script":[1.3,1.8,1.5,1,1.5,3.2,2.1,1.3,1.6,1.2,1.7,2.3,1.2,1.7,1.7],"paint":[12.8,14.2,14.2,12.1,16.1,13.4,12.9,14,14.1,13.4,12.8,12.5,14.8,13.1,12.8]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.3,11.3,11.4,10.6,10.3,10.5,10.3,11.3,11.9,10.6,11.1,10.8,10.4,10.2,10.7],"script":[0.9,0.7,1.9,0.8,0.7,0.7,0.6,1.8,2.5,0.9,0.7,0.7,0.7,0.7,0.8],"paint":[9.7,10.3,9.1,9.8,8.9,9.1,9.3,9,9.2,9.3,9.8,9.9,9.3,9.4,9.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"07_create10k","values":{"total":[314.1,311.8,311.1,309.9,309.3,311.9,317.5,317.4,315.5,310.8,309.9,310.4,307.7,310.3,310.2],"script":[64.3,66.2,65.7,66.1,65.2,64.9,66.1,66.2,65.7,65.7,65.7,65.8,65.3,64.3,65.9],"paint":[241.3,241.4,241.1,240.7,240.1,242.8,242.7,242.7,241,240.8,241.3,241.5,239.5,238.4,240]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.1,38.5,38.9,34.2,38.4,39.5,39,42.6,38.6,38.5,38.6,34.6,39,39.5,33.9],"script":[6.5,6.6,6.7,6.9,6.5,6.6,7.2,6.8,6.5,6.7,6.4,6.5,6.6,7,6.8],"paint":[26.2,26.4,26.4,26.9,26.3,26.7,26.2,29.9,26.5,26.2,26.4,27.7,26.8,27,26.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,28.6,12.9,12.9,13.3,10.6,10.8,27.2,11.6,27,11.9,11.7,27.6,12.6,10.3],"script":[8.2,10.6,10.3,10.1,9.9,8.5,9.3,9.2,9.5,9.2,9.3,9,9.8,9,9.3],"paint":[2.1,0.7,2.3,1.5,1,1,1.4,1.9,2,1,1.2,1.7,1,2.5,0.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7164812088012695]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.733156204223633]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9150495529174805]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.6134862899780273]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.026694297790527]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.3]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"01_run1k","values":{"total":[25.4,25,24.8,25.4,25,25.5,26.3,25.8,25.3,24.9,25.1,25,24.8,25,24.7],"script":[1.8,1.7,1.7,1.8,1.8,1.7,1.7,1.8,1.8,1.8,1.8,1.8,1.7,1.8,1.7],"paint":[23.2,22.9,22.7,23.3,22.8,23.4,24.2,23.6,23.1,22.8,23,22.8,22.7,22.9,22.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.7,28.1,27.7,28,27.8,27.7,27.6,28.2,27.7,28.5,27.6,27.8,27.7,27.9],"script":[4,3.9,4,3.9,4.2,4,4,4.1,4.1,4.1,4.1,3.9,3.9,3.9,4],"paint":[23.3,23.4,23.6,23.4,23.4,23.4,23.3,23.2,23.8,23.2,24,23.3,23.6,23.4,23.4]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,12,11,11.3,11.8,12,11.6,11.6,11.6,11.1,11.1,11.6,11.7,12.5,11.3],"script":[0.9,0.7,0.7,0.5,0.9,0.6,1,0.6,0.7,0.2,0.8,0.9,0.9,0.6,0.2],"paint":[9.7,10.1,9.7,9.8,9.9,10.3,10,9.9,10.3,10,9.6,9.6,9.7,9.8,9.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"04_select1k","values":{"total":[3.3,1.7,2.4,1.6,2,2.4,1.7,2.1,2,2.1,1.9,2,3.2,2,1.9,2.7,2.4,3.5,1.6,2.4,2.4,3.1,2.3,2,2.1],"script":[0,0,0.5,0,0.1,0.5,0,0.1,0.4,0.4,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0.3,0],"paint":[1.6,0.7,1.4,1.4,1.2,1.2,1.5,1.2,1.5,1.1,1.1,1.9,1.2,1.1,1.4,1.2,2.1,1.5,1.2,1.7,2.2,1.6,1.4,1.6,1.1]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"05_swap1k","values":{"total":[14.9,13.9,13.9,14.7,13.7,14.7,13.4,13.6,14.6,13.8,13.7,13.6,13.4,13.8,13.5],"script":[0.1,0.6,0.1,0.9,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.5,0.1],"paint":[13.2,12.2,12.8,12.3,11.4,13.9,12.2,13.2,12.7,12,12.3,11.8,12.4,11.3,12.3]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11,11.3,11.5,10.9,10.9,10.8,11,11.2,11,11,11,10.9,11.3,10.5],"script":[0.4,0.3,0.5,0.5,0.5,0.3,0.4,0.3,0.5,0.5,0.5,0.5,0.5,0.4,0.2],"paint":[10.6,10,10.1,10.3,9.9,10,9.8,10.1,9.9,9.9,9.8,10.2,9.8,10.4,9.7]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"07_create10k","values":{"total":[273.1,273.6,275.6,274.1,272.7,274.8,274.4,273.6,274.4,274.6,274.3,272.9,274.4,272.7,272.4],"script":[27.7,27.3,28.4,27.9,27.5,27.9,28.3,27.4,28.2,27.8,28.1,29,27.8,27.9,28.5],"paint":[239.7,240.2,240.8,240.1,239.4,241,240.4,240.1,240,240.6,239.8,237.9,240.8,239.2,238.1]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29,28.6,28.4,28.6,28.5,28.4,29,28.8,28.7,28.9,28.5,28.1,28.6,28.4,28.3],"script":[2,2,2.1,2,2,2.1,2,2.1,2,2,2,2,2,2,2],"paint":[26,25.9,25.6,25.8,25.8,25.6,26.3,26,26,26.1,25.8,25.4,25.9,25.7,25.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,8.9,9.2,8.9,10.2,9.7,8.7,8.9,9.3,9.7,8.9,9.2,9.1,9.3,8.8],"script":[7.4,6.8,7.6,6.7,7.5,7.9,6.7,6.9,7.5,7.3,7.5,6.9,7.4,7.5,7.3],"paint":[1.8,1.2,0.2,1.1,1.9,1,0.9,1.6,1.6,1.4,0.2,1.3,0.7,0.7,0.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.891514778137207]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7346925735473633]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.80172061920166]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.094986915588379]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.600375175476074]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.5]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[82.9]}},{"framework":"crank-v0.6.0-keyed","benchmark":"01_run1k","values":{"total":[52.7,54.1,53.3,53.1,53.3,53.5,53.7,53.2,53.7,53.6,52.7,54.1,53.3,53.9,53.6],"script":[29.1,30.3,29.8,29.4,30.2,30.3,30.1,29.8,30.3,30.2,29.5,30.5,29.8,30.3,30],"paint":[23.1,23.4,23.1,23.3,22.7,22.8,23.2,23,23,23,22.8,23.1,23.2,23.2,23.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[56,57.3,56.7,56.5,55.9,56.7,57.7,56.8,55.9,56.5,56.2,57.1,56.7,56.5,56.7],"script":[31.8,33.1,32.5,32,32.1,32.7,33.5,32.6,31.7,32.3,32.3,32.9,32.5,32.6,32.7],"paint":[23.6,23.7,23.7,24.1,23.3,23.5,23.8,23.8,23.7,23.8,23.5,23.7,23.7,23.5,23.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[102.2,102,100.5,102.4,101,101.6,102.3,101.7,100.8,102.7,101,101.6,101.3,99.6,103.3],"script":[89.3,89.8,87.7,89.7,87.8,88.6,89.4,88.9,87.5,89.5,87.7,88.6,88.9,86.4,90.3],"paint":[11.5,10.3,11.4,11.4,11.1,12,11.2,11.1,11.8,11.7,11.6,10,10.1,11.6,11.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"04_select1k","values":{"total":[90.3,90.7,88.7,88.2,88.6,88,89.4,90.4,89.2,88.8,89.7,89.4,87.8,87.8,88.7,90,89.3,89.7,89.5,89.8,89.7,88.6,89.3,87.1,88.9],"script":[86.7,87,85,85.3,85.5,84.3,85.5,87.1,85.8,85.5,85.4,85.6,84.6,84.7,85.4,86.8,86.1,86.5,86.4,86.5,85.7,84.9,85.5,83.7,85.6],"paint":[2,1.6,1.4,1.6,2,2,2.2,2.2,1.8,1.4,3.2,2.2,1.3,2.1,1.4,1.3,1.5,1,1.2,1.9,1.7,2.3,1.2,1.9,2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[101.5,100.8,101.3,101.3,101.7,100.9,100.9,100.8,101.5,112.5,102.1,100.2,101.7,101.6,101.7],"script":[86,85.9,86,86.2,87,85.5,85.8,85.5,85.9,97.3,86.1,85.6,86.7,86.6,86.6],"paint":[13.1,13.1,13.6,13.3,12.5,13.9,13.6,13.3,13.2,13.7,12.8,12.4,14,13.2,13.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[53.8,58.5,53.8,54.5,53.3,53.1,54.7,53.6,52.3,53.9,53,53.4,54.6,54.9,53.7],"script":[42.1,46.5,41.6,41.7,41.8,41.6,42.7,42,40.5,41.9,41.6,41.9,42.6,42,41.8],"paint":[10.7,11.3,11.4,12,10.6,10.2,11.3,11.1,11,11.1,10.7,10.5,11,11.7,11.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"07_create10k","values":{"total":[550.5,553.3,547.2,544.8,545,548.8,545,546.8,548.6,546.1,546,546,545.2,546.7,549],"script":[304.3,307.3,303.8,301.1,301,304.4,302.4,303.7,303.2,302.5,301.4,301,300.7,302.9,304],"paint":[239.7,240.1,237.6,238,238.4,238.7,237,237.6,239.5,238,239.2,239.5,239,238.3,239]}},{"framework":"crank-v0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[79.8,79.9,79.2,79.8,79.2,79.8,79.2,79.9,78.9,80.6,79.4,79.8,79.7,79.7,80.7],"script":[52.2,51.9,51.4,51.7,51.6,51.8,51.2,51.7,51.3,52.2,51.6,51.7,51.9,51.6,51.9],"paint":[26.9,27.3,27,27.3,26.9,27.2,27.2,27.4,26.9,27.5,27,27.3,27.1,27.3,28]}},{"framework":"crank-v0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,13.1,12.5,11.4,12.2,12.1,11.4,11.8,11.6,11.6,11.9,12.2,13.1,13.4,12.5],"script":[11.3,10.9,11.3,9.8,10.9,10.4,10.1,10,10.6,10,10.6,10.5,11.3,11.8,11.1],"paint":[1.5,2,1,1.4,0.7,1.6,1.2,1.6,0.3,1.2,1.2,1.5,1.7,1.5,1.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6628923416137695]}},{"framework":"crank-v0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.818307876586914]}},{"framework":"crank-v0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.934885025024414]}},{"framework":"crank-v0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1207008361816406]}},{"framework":"crank-v0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.906766891479492]}},{"framework":"crank-v0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"01_run1k","values":{"total":[35.3,34.2,35,34.1,33.7,33.7,34.5,33.9,33.6,33.6,33.4,33.9,34,34.3,33.4],"script":[10.2,10,10.3,10.1,10.4,9.9,10.8,10.6,9.8,9.9,9.8,9.8,10,10.1,9.7],"paint":[24.6,23.7,24.2,23.6,22.9,23.3,23.3,22.9,23.4,23.3,23.3,23.7,23.5,23.8,23.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"02_replace1k","values":{"total":[39.3,38.6,39.9,40.1,39.2,40,39.3,39.1,38.8,39.4,39.3,39.4,39.7,38.9,39.2],"script":[14.2,14.2,14.8,14.7,14.6,14.8,14.7,14.6,14.1,14.4,14.9,14.3,14.8,14.4,14.5],"paint":[24.6,23.7,24.2,24.8,23.9,24.6,24,23.9,23.9,24.4,23.8,24.5,24.3,23.8,24.1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.1,13.9,14.7,13.8,14.2,14.6,15.2,13.6,13.6,13.6,14.3,13.7,14.6,16.1,14.5],"script":[2.2,2.6,2.2,2.6,2.6,2.5,2.6,1.6,2.5,2.7,2.4,2.7,2.6,2.8,3],"paint":[10.8,10.2,11.1,10,10.2,11.1,11.4,10,9.4,9.6,9.8,10.3,10.9,11.6,10.9]}},{"framework":"dark-v1.4.2-keyed","benchmark":"04_select1k","values":{"total":[5.9,3.4,2.9,3,5,3.1,2.8,3.1,3.3,2.9,2.8,3.6,3.3,2.1,6,3,3.3,3.2,5.2,3.7,2.7,2.6,3.1,2.9,5.3],"script":[0.8,1,0.6,0.7,0.2,0.5,0.9,1.1,0.5,1.1,0.9,0.9,0.6,0.2,0.8,1.2,0.6,1,0.2,1.2,0.5,0.2,0.9,0.2,0.2],"paint":[1.2,1.3,1.7,1.8,2.3,1.6,1.7,1.6,0.9,0.7,1.6,1.7,1.5,0.7,1.5,1,2.1,1.5,1.7,1.2,1.2,1,1.4,2,1.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"05_swap1k","values":{"total":[17.4,16.6,16.6,17.3,17.5,17.5,16.7,16.5,17.2,17.4,16.9,17,17.1,17.2,17.3],"script":[3.1,3.2,2.9,3.1,2.8,3,2.7,3,3.1,3.5,2.9,2.9,2.9,3,3],"paint":[12.8,12.1,12.1,13.3,14,12.9,12.8,12,12.6,12.3,12.4,12.1,12.9,13.1,12.8]}},{"framework":"dark-v1.4.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,12.6,12.3,12.1,12.7,12.6,12.7,12.6,13.4,13.4,12.8,12.1,12.4,12.1,12.5],"script":[1.6,1.8,1.5,1.5,1.8,1.8,1.8,1.5,2.8,1.7,1.9,1.5,1.8,1.5,1.8],"paint":[10.3,10.2,9.7,9.8,10.2,10,10.1,10.2,9.8,11,10.2,10,9.8,9.7,9.9]}},{"framework":"dark-v1.4.2-keyed","benchmark":"07_create10k","values":{"total":[337.1,336.3,338.4,337.6,339.1,337.6,335.7,335.8,335.8,335,337.1,338.2,335.2,336.8,339],"script":[99.9,98.2,100,99.3,98.5,99.1,98.2,98.1,98.7,98.1,98.5,98.9,97.2,99,98.8],"paint":[229.4,230.7,230.6,230.5,233.1,231,229.8,230.5,229.6,229.4,230.6,231.7,230.5,230,232.2]}},{"framework":"dark-v1.4.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41,40.7,42.3,40.6,40.4,39.9,40.8,40.7,40,40.3,40.2,40.5,40.1,39.9,39.8],"script":[11.7,12.1,12.1,11.5,12.1,11.7,11.6,11.6,11.7,11.7,11.5,11.5,11.7,11.7,11.7],"paint":[28.2,27.6,29.1,28.1,27.3,27.3,28.2,28.1,27.3,27.7,27.7,27.9,27.4,27.3,27.1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,11.6,12.7,10.9,10.8,11.9,11,11.2,11.7,12,11.2,11.1,11.1,12.1,10.5],"script":[9.2,9.3,10.4,9.4,9.3,9.5,9.2,9,8.6,9.1,9.8,8.8,9,9.8,8.5],"paint":[1.1,1.1,0.9,0.9,0.2,1,0.3,2,2.4,1.8,0.4,2.1,1,1.3,0.9]}},{"framework":"dark-v1.4.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7166309356689453]}},{"framework":"dark-v1.4.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.6477155685424805]}},{"framework":"dark-v1.4.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.644708633422852]}},{"framework":"dark-v1.4.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3343009948730469]}},{"framework":"dark-v1.4.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.39969444274902]}},{"framework":"dark-v1.4.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"dark-v1.4.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"01_run1k","values":{"total":[25.2,25.4,25.2,25.4,25.2,25.3,25.3,25.4,25.1,25.2,25.3,25.1,25.1,25.5,25.3],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2],"paint":[23.7,23.8,23.7,23.8,23.6,23.7,23.7,23.8,23.6,23.7,23.8,23.5,23.6,24,23.8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"02_replace1k","values":{"total":[27.3,27,27.2,27.2,27.2,27.3,27.5,27.3,27,27.4,27.1,27.3,27.2,27.5,27.5],"script":[3,2.9,3.1,3.1,3,3,3.1,3,2.9,3.1,2.9,3,3.1,3.1,3.1],"paint":[23.9,23.7,23.7,23.7,23.9,23.9,23.9,23.9,23.7,23.9,23.8,23.8,23.8,24,23.9]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.2,10.9,11.4,11.7,10.4,12.7,11.2,11,11.1,11.6,11.5,12,11.3,10.7],"script":[0.5,0.8,0.3,0.3,0.7,0.1,0.5,0.5,0.8,0.1,1.1,0.5,0.1,0.1,0.1],"paint":[10.2,9.2,10.3,10.3,9.7,9.3,10.8,10.4,9.3,10.2,9.4,9.9,10.1,9.6,9.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"04_select1k","values":{"total":[1.6,1.7,1.9,1.8,1.6,1.9,2.4,2.2,1.9,2,2.1,1.9,2.1,2.2,2.4,1.9,2.3,2.7,1.4,1.5,2,2.1,1.8,2.2,1.8],"script":[0,0,0,0.7,0,0,0,0,0,0,0,0,0,0,0.5,0,0.4,0.4,0,0,0.9,0,0,0,0],"paint":[1.1,1.6,1.1,1,0.7,1.1,2,1.5,1.4,1.5,0.9,1,1.1,1.3,1.3,1.7,1.7,1.1,1.3,1,1,1.9,1,1.1,1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"05_swap1k","values":{"total":[13.9,13.7,13.7,13,12.7,13.6,14.3,14.1,15,12.9,14.2,13.1,13.8,13.1,14],"script":[0.5,0.1,0.8,0.1,0.1,0.1,0.1,0.6,0.6,0.1,0.1,0.3,0.1,0.1,0.1],"paint":[12.4,12.3,12.2,12.1,11.4,11.9,11.7,11.1,12.5,11.5,12.7,11.6,12,10.9,13]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,9.9,11,10.3,10.8,10.6,10.5,10.6,10.7,10.5,10.4,10.4,10.9,10.3,10.6],"script":[0.2,0.1,0.1,0.1,0.4,0.3,0.2,0.3,0.1,0.2,0.1,0.4,0.4,0.2,0.2],"paint":[9.7,9.3,10,9.6,9.8,9.7,9.6,9.8,10.2,9.7,9.8,9.3,9.5,9.5,9.9]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"07_create10k","values":{"total":[262.4,261.9,261.6,262,260.6,260.6,260.9,260.9,262.5,261.1,260.1,259.7,261.3,260.2,260.4],"script":[14.7,15,14.8,14.7,14.8,14.7,14.9,15,14.9,14.9,15,14.5,14.6,15,15.1],"paint":[241.5,241.1,240.9,241.1,239.9,240.1,240,239.9,241.8,240,239.4,239.1,240.8,239.3,239.6]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.4,28.6,28.3,28.2,28.3,27.7,29.1,28.1,28.7,28.6,28.3,27.9,28.2,29.4,28],"script":[1.3,1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.3,1.3,1.3,1.2,1.3,1.3,1.2],"paint":[27.4,26.6,26.4,26.3,26.3,25.8,27.1,26.2,26.7,26.6,26.4,26,26.3,27.4,26.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.7,9.1,9.5,8.7,9.6,8.9,9.3,8.8,9.2,9.8,9.4,9.9,8.5,8.6],"script":[7,8,7.5,7.6,6.6,7.6,7.2,7.5,6.8,6.8,8,7.6,7.5,7,6.6],"paint":[1.8,0.2,1,1.7,1,1.7,0.9,0.7,0.4,1.5,1.2,1.6,0.8,0.6,0.8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.559138298034668]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.868300437927246]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8697729110717773]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6711950302124023]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.649124145507812]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.9]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.3,27.7,27.5,27.4,27.5,28,27.7,27.7,27.8,27.4,27.9,27.7,27.7,27.6],"script":[3.8,3.9,4,3.9,3.8,3.9,4.3,3.8,3.8,3.9,3.8,3.9,3.9,3.9,4],"paint":[23.2,23.1,23.4,23.3,23.2,23.2,23.3,23.6,23.6,23.5,23.3,23.5,23.4,23.4,23.3]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"02_replace1k","values":{"total":[30.2,30.3,30.7,30.6,31.1,31,30.1,31,31.1,30.9,31,30.1,30.9,30.7,30.7],"script":[6.1,5.7,6,6.5,6.6,6.4,5.7,6.3,6.5,6.2,6.5,5.7,6.3,6.2,6.4],"paint":[23.5,24,24.2,23.5,24,24,23.8,24.1,24,24.1,23.9,23.9,24,23.9,23.8]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,12.5,12.1,11.6,13.2,12.6,12.3,11.8,12.3,12.1,13.1,12.2,12.4,12.6,11.8],"script":[1.3,1.2,0.6,0.2,1,1.2,1,0.9,0.6,1,1,1,1.2,0.9,0.8],"paint":[9,10.3,10.4,9.9,11.6,10.5,9.7,10,10.7,10.1,10.7,9.7,9.8,10.5,9]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.4,1.9,2.9,2.1,2.4,1.7,2.4,1.8,2.4,2.6,2.1,2.4,3.5,2.3,2,4.5,2.2,2.3,2.1,2.3,2.4,2.2,2.6,1.8],"script":[0.1,0.1,0.1,1,0.1,0.1,0.1,0.9,0.1,0.1,0.8,0.8,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.2,0.1],"paint":[1.9,1.8,1,1.3,1.9,1.3,1.5,1,1.6,1.1,1.2,0.7,1.9,2,2.2,1.2,1.7,1.3,1.8,1.3,1.5,1.8,1.4,1.2,1.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.6,13.1,13.9,13.4,13.5,13.4,13.6,13.5,13.7,13.2,13.4,12.9,13.8,13.2],"script":[0.1,0.7,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1],"paint":[13.2,12,11.9,12.8,12.3,12.2,11,12.4,12.5,12.5,12.1,12.2,12.2,13.4,12.1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.8,10.7,10.6,10.7,10.4,10.7,11.6,10.5,10.3,10.7,11.4,10.6,10.4],"script":[0.1,0.3,0.4,0.1,0.2,0.1,0.1,0.1,0.4,0.1,0.2,0.3,0.1,0.3,0.2],"paint":[9.1,9.5,9.7,9.9,9.7,10.1,9.7,9.9,10.3,9.5,9.3,9.9,10.8,9.6,9.5]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"07_create10k","values":{"total":[298,295.6,294.5,295.5,294.8,294.8,293.1,295,294.9,294.9,294.9,293.7,296,295.2,296.5],"script":[52.1,50.5,49.7,49.7,48.8,48.5,48.1,49.9,48.7,48.6,49.1,49.8,50,49.5,49.3],"paint":[240,239.2,239.1,239.2,240.2,240.3,238.8,239.4,239.4,240.1,239.6,238.1,240.2,239.8,240.6]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.3,31.8,32.1,32.8,31.8,32.6,31.8,31.3,31.6,31.6,32.6,31.8,32.3,31.6,31.1],"script":[4.5,4.1,4.3,4.2,4.4,4.3,4.3,4,4.2,4.3,4.5,4.1,4.4,4.1,4],"paint":[28.1,27,27.2,27.9,26.7,27.6,26.8,26.7,26.8,26.5,27.4,27.1,27.2,26.8,26.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.8,10.7,9.7,10.4,10.6,11.1,10.9,9.8,10.1,11.7,9.8,10.9,10.8,10.3],"script":[8.2,8.2,8.5,7.5,8.6,8.8,8.9,8.7,8,8,9.1,8.1,8.7,8.5,8.2],"paint":[1.2,0.2,0.9,1,1.3,1.2,0.8,1.2,0.8,1.5,1.7,0.2,1.9,1.5,0.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6345548629760742]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7700910568237305]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7846155166625977]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8692703247070312]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.87847328186035]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.9]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[30,29.8,30.3,30,30,30.1,30.3,29.9,29.8,30,29.7,29.6,30,30.5,30.2],"script":[6,5.9,5.9,6,5.9,6,5.8,6,6,6,5.8,5.9,6,6,6],"paint":[23.2,23.1,23.7,23.2,23.5,23.2,23.5,23.3,23,23.2,23,22.9,23.2,23.7,23.4]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[34.7,34,34.9,34.6,35.3,34.3,34.1,34.2,34.4,33.9,34.2,34,34.2,34.5,33.7],"script":[9.7,9.3,10,9.7,9.8,9.5,9.5,9.6,9.8,9.6,9.6,9.7,9.6,9.8,9.4],"paint":[24.4,24.1,24.3,24.4,24.8,24.2,24,24,24,23.7,24,23.7,23.9,24.1,23.6]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.1,20,19,18,19.1,18.5,18.7,19,18.3,18.4,18.6,17.8,18.9,19.7,18.8],"script":[6.7,6.9,6.6,6.9,6.7,6.5,7,6.3,6.7,6.2,6.6,6.7,5.7,6.2,7.2],"paint":[10.6,11.8,10.9,10,10.9,9.6,10,10.6,9.2,9.7,10.2,8.5,11.4,10.3,9.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[10.7,10.8,10.1,10.6,10.4,10.1,10.7,10.5,9.8,9.9,9.9,10,9.8,10.2,9.6,10.2,10.6,10.3,10.4,10.6,10.9,10.4,10.6,10.7,9.5],"script":[7.9,7.6,8.1,7.9,7.8,7.9,8.3,7.7,7.3,7.7,7.2,7.9,7.3,7.8,7.1,8,7.9,7.6,8,7.7,7.6,7.7,8.1,8.5,7.3],"paint":[2,2,1.7,2.3,2.2,1.5,0.9,1.5,0.8,1.1,1.6,1.1,0.7,1.3,1.3,1.1,1.8,2,1.3,1.8,1.1,1.2,2,1.1,1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[22.8,22.5,23.3,23,23.3,22.6,23.3,22.3,23,22.9,22.3,23.1,21.7,22.7,23.3],"script":[8.1,8.1,7.9,7.9,8.5,8.2,8.7,8.2,8.7,8.7,8.2,8.3,8,8.6,8.7],"paint":[12.5,12.1,13.9,12.8,12,12.8,13.4,12.5,12.4,11.8,12.3,13,12.3,13.2,12.5]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.9,14.4,14.4,14.6,14.4,15.3,15.7,14.9,14.7,14.8,14.6,14.8,15.1,14.9,14.6],"script":[4.2,4.2,4.1,4.1,4.1,4.3,4.1,4.2,4.2,4.2,4.2,4.2,4.5,4.2,4.1],"paint":[10.2,9.3,9.3,10.1,10,10.3,10.7,10.2,10.1,10.1,10.1,9.9,9.5,10.2,10.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[297.7,294.9,298.4,298.7,297.9,296.4,295.4,294.3,299.6,295.2,297.9,299.1,295.2,295.8,301.6],"script":[47.7,46.4,48.1,48.7,47.4,45.3,45.3,45.5,47.8,46.9,47.9,48.2,46,48.1,48.4],"paint":[243.6,242.3,243.7,243.3,243.9,244.5,243.4,242,245.7,242.1,243.7,244.1,243,241.5,246]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35,34,34.5,34.9,33.8,35,34.6,34.7,34.5,34.3,34.4,35.2,35.4,34.8,35.3],"script":[7.2,6.7,6.7,6.9,6.6,7.5,6.8,7,6.8,6.8,7,7,7.4,7.5,6.9],"paint":[26.9,26.4,26.9,27.1,26.3,26.5,26.9,26.8,26.8,26.7,26.5,27.3,27,26.4,27.5]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.2,21.5,23.7,21.9,23.1,22.7,25,24.5,23.9,24.3,26.3,21.5,21.6,22.6,22.1],"script":[19,19.3,21.4,19.7,20.7,19.8,22.2,22.3,21.8,22.1,23.4,19.6,19.2,20.4,19.9],"paint":[1,0.3,2,2,1.2,0.9,2.5,0.7,1.1,0.7,2.7,1,1.3,1.9,0.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8595447540283203]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.419405937194824]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.455107688903809]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.607850074768066]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.73690700531006]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[276.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[358]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"01_run1k","values":{"total":[26.5,26.6,26.5,26.9,26.8,26.8,26.4,27.2,26.7,27.2,26.9,26.7,27,26.4,26.7],"script":[2.3,2.3,2.3,2.4,2.4,2.6,2.4,2.7,2.5,2.7,2.6,2.6,2.4,2.4,2.4],"paint":[23.8,23.9,23.8,24.1,24,23.8,23.7,24.1,23.8,24.2,23.9,23.7,24.2,23.6,24]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"02_replace1k","values":{"total":[30.4,30.7,30.6,30.4,30.8,30.6,30.7,30.3,30.8,30.9,30.1,30.9,30.7,30.6,30.5],"script":[5.5,5.4,5.4,5.5,5.7,5.6,5.5,5.5,5.5,5.7,5.4,5.5,5.5,5.5,5.3],"paint":[24.4,24.7,24.7,24.3,24.6,24.5,24.6,24.2,24.7,24.6,24.1,24.8,24.6,24.6,24.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,11.5,12.5,11.6,12.4,12.2,11.8,12,11.9,12,11.8,12.2,12.8,11.7,11.5],"script":[0.6,0.3,1.2,0.9,1,0.9,0.6,1.1,1.1,1,0.8,0.6,1.3,1,1.2],"paint":[10.6,10.3,9.6,9.3,10.1,10.5,10,9.7,9.9,10.4,10,10.5,10.9,9.5,9.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.6,1.9,2.6,2.8,2.2,2.5,2,2.2,2.7,2,2.4,1.9,2.2,2.2,2.4,2.5,2.3,2.5,2.7,3.9,2.7,2.4,2.7,3],"script":[0.2,0.7,0.8,0.7,0.7,0.1,0.1,0.1,0.4,0.9,0.1,0.5,0.1,0.1,0.1,0.1,0.5,0.6,0.1,0.8,0.9,0.7,0.6,0.6,0.5],"paint":[1.8,1.8,1,1.7,1.9,2,1.9,1.1,1.4,1.3,1.6,1.3,1.7,1.2,1.9,0.3,1.2,1.3,2.1,1.8,1.3,1.9,1.6,1.6,1.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"05_swap1k","values":{"total":[16.1,16.2,16.3,17,16,16.4,17.4,16.1,16.3,16.1,16.6,16.5,16,16,16.5],"script":[2.6,2.2,3,2.5,2.4,3.4,3.2,2.6,2.7,2.7,2.9,2.8,3.1,2.4,3.1],"paint":[11.8,11.7,11.6,13.8,12.1,11.8,12.4,12,12.9,11.9,12.7,11.6,11.7,12,12.4]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.6,11.4,11.4,11.6,11.1,11.7,11.5,11.9,11.4,11.1,11.2,11.8,11.4,11.5],"script":[1.1,0.8,0.8,1,1.1,0.9,0.8,1.2,1,1.1,0.8,0.9,0.9,0.9,1.1],"paint":[9.8,9.9,9.7,9.8,10.1,9.6,10.3,9.8,10.5,9.7,9.4,9.8,10.1,9.6,9.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"07_create10k","values":{"total":[279.9,276.7,278.8,279.8,277.3,279.5,278.6,276.6,278.5,275.7,276.9,276.7,276.2,278,277],"script":[32,30.5,31.1,31.4,29.9,29.5,30.4,30.2,31.1,30.7,30.4,29.4,29.6,31,30.7],"paint":[242,240.5,241.1,242,240.8,243.3,241.5,240.1,241,239.1,240.5,241.1,240.5,241,240.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,32,31.5,32.2,31.8,32.3,32.4,33.4,31.8,31.8,32.5,32,32.1,32,31.7],"script":[3.7,3.8,3.7,4.1,3.7,4.1,3.8,4,3.7,3.8,3.8,3.7,3.8,3.7,3.8],"paint":[27.7,27.4,27,27.4,27.4,27.5,27.8,28.6,27.4,27.3,27.6,27.5,27.5,27.6,27.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.3,9.8,9,9.2,9.7,7.8,9.2,9.3,9.7,9.1,9.8,8.5,9.1,8.7,8.9],"script":[7.7,8,7.2,7.4,7.9,6.1,6.8,7.9,7.9,7.5,7.7,7.3,7.6,7.1,7.2],"paint":[0.3,0.4,0.7,0.9,1.3,1.4,1,0.2,0.9,1,0.8,0.6,0.2,0.4,1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5669775009155273]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.226140022277832]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.2184371948242188]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7095232009887695]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.967154502868652]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[48.5,48.5,45.8,49.5,49.4,48.7,49.9,48.6,49.4,47.7,49.1,45.9,49,49.7,47.7],"script":[20.1,20,19.8,20.5,20.6,20.1,19.9,20.5,19.9,20.4,20.2,20.3,20.1,20.2,20.1],"paint":[22.9,22.8,23.3,22.6,23,23,22.9,22.8,22.8,22.6,22.7,22.7,22.6,23.3,22.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[58.8,54.3,56.1,56,54.7,53.5,51.8,54.7,57.5,54.1,55.6,54.6,55.2,57.3,52.2],"script":[23.6,24.2,24.1,24.8,24.4,24.6,24.3,24.8,24.6,23.7,23.6,24.4,24.6,24.5,23.8],"paint":[25.2,25,25.2,25.3,24.9,25.2,24.9,25.1,25.1,25.4,26.2,25.1,25.4,25,25.1]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.8,34.6,35.8,35,36.1,19.1,34.2,36,37.3,36.2,19.5,35.4,35.7,35.2,35.3],"script":[7.2,7.4,8.5,7.6,8,7.1,7.6,8.2,8.3,8.9,7.3,7.3,7.3,7.5,8.3],"paint":[11.3,11.1,11.3,11.4,12.3,11.9,9.3,11.2,12.9,10.9,10.2,12.6,11.8,11.5,10.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,7.1,3.4,2.5,2.3,3.6,2.7,6.4,2.7,6,2.3,3.4,4.3,3.3,8.2,4.1,2.8,2.5,3.4,4.7,6.2,2.7,3,2.2,8],"script":[1,1.1,0.2,0.2,0.2,0.2,0.8,0.3,1,0.5,0.2,0.3,0.1,0.8,0.1,0.2,0.5,0.9,0.2,0.5,0.2,1,1.1,0.5,0.2],"paint":[2,1.3,1.3,2.1,1.1,0.4,1.8,2,1.4,2,2,0.6,1.1,1.5,2.2,2.3,0.8,1.4,3.1,1.5,1.1,1.6,1.3,1.3,1.3]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[25,39.7,38.6,40.2,39.9,23.6,25.4,39.6,39.2,40.9,40.9,24.9,39.4,40.1,39.6],"script":[10.4,9.5,9.3,9.9,9.5,9,9.3,9.5,9.4,10.2,10.3,9.5,9.4,10.1,9.7],"paint":[12.5,13.8,12.4,13.9,13.4,12.4,14.2,13.2,13.4,14.7,14.4,13.5,13.7,13.9,13.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.4,11.1,11.5,15.1,11.5,11.8,11.5,11.4,14.7,11.5,13.2,12.8,12.3,12.1,13.2],"script":[0.6,0.2,0.3,0.4,0.5,0.2,0.5,0.4,0.3,0.5,0.4,0.6,0.3,0.2,0.2],"paint":[11.1,10.1,10.2,10.8,9.9,11,10.3,10.6,10.7,10.2,9.8,9.9,10.8,10.2,10.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[428.3,426.8,429.9,425.8,428.1,424.1,428.4,426.3,432.2,427.3,428.7,423.4,426.2,426,426.7],"script":[184.9,179.6,184.3,183.4,184.6,181,184.4,182.2,189.7,184.8,182.5,181.2,183.3,184,182.5],"paint":[237.1,238.8,237.7,236.2,235.2,236.9,236.7,238.2,236.3,236.3,238,237.7,235.7,234.2,239.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.9,51,55.7,55.8,55.4,52.4,55.9,51.2,50.2,55.2,54.9,54.8,50.1,55.9,55.1],"script":[21,21.9,20.9,21.6,21.2,21.3,20.9,21.2,21,21,21,20.5,21.2,21.3,20.8],"paint":[28.9,28.8,29,28.9,28.6,30.7,29.6,29.7,28.8,28.8,28.3,28.8,28.6,29.1,28.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[39,17,39.9,40.1,17.5,39.7,41.4,18,18.8,16.8,40.8,38.8,38.2,38.3,39],"script":[15.9,16.3,15.7,16.8,16.4,16.2,17.3,16.1,17.6,14.4,17,15.4,14.8,14.9,15.9],"paint":[0.5,0.6,1,0.9,0.3,1.2,0.9,0.8,1,1.6,1.3,1.2,1.2,1.7,1.1]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8104791641235352]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.283255577087402]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.393535614013672]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.317347526550293]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.368388175964355]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[66]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"01_run1k","values":{"total":[31.8,31.7,32.4,31.9,31.6,32.3,31.6,31.8,31.8,31.8,31.7,31.7,32.2,31.6,31.6],"script":[7.1,7,7.1,7.2,7.1,7.2,7,7,7.3,7.1,6.9,7.2,7,7,7],"paint":[24.1,24.2,24.7,24.2,24,24.5,24.1,24.2,24,24.1,24.2,24,24.6,24,24]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"02_replace1k","values":{"total":[35.2,35.4,35.2,35.5,35.1,34.9,34.7,35,35.3,34.8,35.4,34.6,34.8,35.3,35.1],"script":[10.3,10.2,10.3,10.4,10,9.9,10,9.9,10,9.8,10,9.8,9.9,10,10.5],"paint":[24.4,24.6,24.3,24.5,24.6,24.4,24,24.5,24.7,24.4,24.8,24.1,24.2,24.7,24]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,14.8,13.6,14,13,13.1,13.4,13,12.9,13.5,13.8,13.4,12.7,14.4,13.2],"script":[2.3,2.1,1.8,2.1,1.6,1.7,1.6,1.5,1.9,1.3,1.8,2.4,1.6,2.3,1.9],"paint":[10.7,10.9,10.5,11.2,10,10.3,10.3,10.6,10,11.4,10.8,10,9.5,11.4,10.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"04_select1k","values":{"total":[5.4,2.8,3.2,2.8,3,2.5,2.8,2.4,3.1,3.2,3,3.2,2.4,2.5,3.5,3.2,3.7,3.9,3,3.2,3,2.4,3,2.8,3],"script":[1.1,1.1,1.2,0.5,0.9,0.8,0.7,0.6,1.1,0.9,0.9,1.3,1.1,1,0.9,0.8,1.2,1.2,1.4,1,1.1,0.2,0.9,1.3,1.4],"paint":[1.5,1.3,1.4,0.4,2,1.6,1.4,1.6,1.2,1.6,1.1,1.7,0.7,1.4,2.5,0.4,1.9,0.9,0.9,2.1,1.4,1.8,1,1,0.7]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"05_swap1k","values":{"total":[15.2,15.2,14.9,14.8,15.4,15.7,15.3,15.5,15.4,15,15.7,15,14.3,14.4,15.4],"script":[1.5,2.1,1,1.1,2.2,1.9,1.4,1.5,2,1.7,2.1,1.9,1.5,2.1,2.2],"paint":[12.5,11.9,13.1,12.7,11.8,12.9,13,12.7,11.9,12.4,12.3,11.4,12.2,10.5,12]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.3,12.8,11.7,11.6,11.6,11.9,12.7,11.5,11.8,11.3,11.6,11.7,11.6,11.6],"script":[1.3,1.3,1.5,1.3,1.3,1.3,1.3,2.4,1.3,1.3,1.3,1.3,1.3,1.3,1.2],"paint":[9.4,9.4,10.8,9.7,9.9,9.7,10.1,9.4,9.6,9.7,9.5,9.7,9.8,9.3,9.7]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"07_create10k","values":{"total":[328.8,325.2,327.9,324,325.8,323.4,326.1,325,324.7,324.3,324.7,324.7,324.4,325,323.5],"script":[79.7,78.3,78.2,77.7,78.3,76.7,79.3,77.6,77.8,77.7,77.2,77.6,78.6,78,77.6],"paint":[242.4,240.7,242.3,239.9,241.6,240.6,240.3,241.1,240.2,240.3,241,241.4,239.3,240,239.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,36.3,35.7,36.1,36.3,36.8,36.1,36.7,35.8,36.7,37.2,37.4,36.6,36.1,36.6],"script":[7.4,7.5,7.5,7.5,7.7,7.5,7.5,7.9,7.6,7.8,7.9,7.8,7.8,7.8,7.4],"paint":[27.3,27.8,27.3,27.6,27.6,28.3,27.7,27.9,27.4,28,28.3,28.6,27.8,27.3,28.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,14,14.2,13.7,15.1,13.7,13.7,13.1,14.4,13.1,14.9,14.7,14.1,15,14.4],"script":[11.6,11.7,12.2,12.1,12.9,11.4,11.7,11.6,11.7,12,12.4,12.6,12,12.9,12.2],"paint":[0.3,0.4,1,0.7,1.8,1.2,0.7,0.4,2.4,0.9,1.4,0.6,0.6,0.6,1.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.748183250427246]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9735794067382812]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9643020629882812]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.6719541549682617]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.980063438415527]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[135.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[182.8]}},{"framework":"doohtml-keyed","benchmark":"01_run1k","values":{"total":[26.1,26.1,25.7,26.2,26.3,25.9,25.9,25.6,25.8,26.1,25.7,26,26.2,26.1,26],"script":[1.7,1.7,1.7,1.6,1.7,1.7,1.7,1.6,1.7,1.6,1.7,1.7,1.7,1.7,1.6],"paint":[23.8,24,23.7,24.2,24.2,23.8,23.8,23.6,23.8,23.8,23.7,23.9,24.1,24,23.7]}},{"framework":"doohtml-keyed","benchmark":"02_replace1k","values":{"total":[28.5,28.4,28.3,28.4,28.5,28.5,28.3,28.4,28.8,28.3,28.7,28.3,28.2,28.5,28.8],"script":[3.8,3.7,3.7,3.6,3.8,3.7,3.6,3.6,4.1,3.5,3.7,3.7,3.6,3.6,3.8],"paint":[24.3,24.4,24.1,24.4,24.3,24.4,24.3,24.3,24.2,24.4,24.5,24.2,24.2,24.5,24.3]}},{"framework":"doohtml-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,10.9,11.8,10.9,11.3,11,12,11.8,11.7,11.3,11,11.3,11.7,11.2,11],"script":[0.1,0.1,0.5,0.5,0.7,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.9,0.1,0.1],"paint":[9.4,10,10,9.8,9.3,9.4,9.5,10.6,10.1,9.6,9.6,9.8,9.6,9.9,9.9]}},{"framework":"doohtml-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.8,2.1,2.7,2,2.3,2.1,1.6,2,2,1.6,2,2,1.7,2.2,2.1,2.5,2.1,2.4,1.4,2.2,1.9,2.1,2,2.4],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[1.4,2.6,1.3,2.5,1.4,2.2,0.5,1.5,1.7,0.9,1.4,1.2,1.3,1.6,1.2,1.9,1.4,1.9,1.9,0.7,0.8,1.8,1.9,1.9,2.1]}},{"framework":"doohtml-keyed","benchmark":"05_swap1k","values":{"total":[14.1,13.2,13.6,12.6,12.9,13.7,14,13.9,13.3,13.2,13.7,13.5,13.6,13.5,12.9],"script":[0.8,0.1,0,0,0.1,0,0.1,0.4,0,0.1,0.6,0,0.3,0,0],"paint":[12.1,11.2,12,11.2,11.9,12.6,13.3,12.5,12.1,12.2,12.4,12.8,12.1,12.3,11.8]}},{"framework":"doohtml-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.9,10.4,10.7,10.5,10.2,10.4,10,10.6,10.6,10.4,10.8,10.6,10.4],"script":[0.2,0.1,0.1,0.2,0.3,0.1,0.1,0.2,0.1,0.3,0.1,0.1,0.2,0.3,0.1],"paint":[9.8,10,10,9.5,9.8,10,9.9,9.3,9.3,9.7,9.7,9.9,9.8,9.8,9.7]}},{"framework":"doohtml-keyed","benchmark":"07_create10k","values":{"total":[268.7,266,267.5,266.8,269,268.9,267.8,268.3,267.3,268.7,266.4,273,266.3,267.7,266.7],"script":[17.6,17.5,17,17.2,17.4,17.6,17.5,17.1,17.4,17.4,17.1,17.4,17.4,17.2,17.2],"paint":[244.7,242.3,244.3,243.4,245.3,244.8,243.9,244.7,244,245.3,243,249,242.6,244.2,243]}},{"framework":"doohtml-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.5,29.1,28.5,29.4,29.1,29.1,29.8,29.3,29.1,29.9,29.4,28.7,29.2,29.2,29],"script":[1.8,1.7,1.7,1.7,1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.7,1.7],"paint":[26.1,26.6,26.2,27,26.7,26.7,27.3,26.8,26.7,27.4,27,26.3,26.8,26.7,26.6]}},{"framework":"doohtml-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.8,11.5,9.5,9.5,10.3,9.5,10.1,9,10.9,9.8,9,9.4,9.9,9.4,9.1],"script":[6.9,8.8,7.5,7.6,8.1,7.7,7.8,6.9,8.6,7.7,7.4,7,7.6,7.5,7.2],"paint":[1,0.4,0.3,1.1,1.1,0.5,1,1.5,1.6,1.3,0.7,1.4,1.5,0.3,0.3]}},{"framework":"doohtml-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6547346115112305]}},{"framework":"doohtml-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9348344802856445]}},{"framework":"doohtml-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9823503494262695]}},{"framework":"doohtml-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.700322151184082]}},{"framework":"doohtml-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.083725929260254]}},{"framework":"doohtml-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.3]}},{"framework":"doohtml-dom-keyed","benchmark":"01_run1k","values":{"total":[25.6,25.6,25.6,25.5,25.4,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.4,25.6,25.5],"script":[1.7,1.7,1.7,1.7,1.6,1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.7],"paint":[23.5,23.5,23.5,23.5,23.4,23.5,23.5,23.6,23.5,23.5,23.6,23.6,23.4,23.6,23.5]}},{"framework":"doohtml-dom-keyed","benchmark":"02_replace1k","values":{"total":[28.3,27.9,28.1,28.7,28.2,28.1,28,27.8,28.1,27.7,28.2,27.9,27.6,27.8,27.9],"script":[3.5,3.5,3.6,3.6,3.6,3.5,3.6,3.4,3.6,3.6,3.5,3.5,3.6,3.4,3.5],"paint":[24.4,24,24.1,24.7,24.2,24.2,24,24,24.1,23.7,24.3,24,23.6,24,24]}},{"framework":"doohtml-dom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.5,11.3,11,11.7,11.2,11.5,12.1,11.8,11,11.3,11.2,11.3,10.7,11.5],"script":[1,0.1,0.1,0.5,0.4,0.9,0.1,0.1,1,0.1,0.1,0.7,0.8,0.1,1.1],"paint":[9,9.8,10.1,9.4,10,9.6,10,10.5,9.4,9.8,10,9.1,9.3,9.7,10.1]}},{"framework":"doohtml-dom-keyed","benchmark":"04_select1k","values":{"total":[1.3,1.9,2,2.4,1.8,2,1.9,2.3,2.3,3,1.6,1.8,2,1.7,2.4,3.7,1.9,2,2.4,2.4,1.6,1.8,2.4,3.2,1.9],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0.8,0,0,0,0,0,0.7,0,0,0],"paint":[0.6,1.4,1.2,2.3,1.3,1.4,1.7,2.2,1.3,1.7,0.7,1,1.8,1.5,1.2,1.4,1.7,1.9,2.2,1.3,1.4,1,1.1,1.6,1.1]}},{"framework":"doohtml-dom-keyed","benchmark":"05_swap1k","values":{"total":[13.3,12.9,12.6,13,13.4,13,13.8,13,13.5,13.4,12.5,14,13.2,13.4,13.2],"script":[0,0.1,0,0.1,0.1,0.2,0.1,0,0,0.3,0.1,0.1,0.5,0.1,0],"paint":[12,11.2,11.3,11.7,11.6,11.7,12.6,12.1,12.2,11.9,11.1,13,11.9,12.3,12.4]}},{"framework":"doohtml-dom-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.6,10.4,10.7,10.5,10.3,10.4,10,10.4,10.9,10.3,10.9,10.9,10.8],"script":[0.3,0.3,0.2,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.6,0.1,0.4],"paint":[9.3,9.4,9.7,9.8,9.9,10,9.7,9.6,9.3,10,9.9,9.6,9.7,10,9.5]}},{"framework":"doohtml-dom-keyed","benchmark":"07_create10k","values":{"total":[264.4,263.2,264.2,266.5,265.4,266.8,266,265.6,265.4,265.2,265.8,265.2,270.6,264.6,264.7],"script":[17.4,17.4,17.3,17.4,17.5,17.1,17,17.3,17.4,17.2,17.4,17.5,17.4,17.6,17.4],"paint":[241.1,239.8,240.9,243,241.5,243.5,243.1,242.3,242.2,242,242.5,241.6,246.8,241.1,241.2]}},{"framework":"doohtml-dom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.7,28.4,28.8,29.9,28.6,28.9,29.5,28.8,28.9,28.9,28.8,28.6,28.7,28.5],"script":[1.7,1.6,1.7,1.7,1.7,1.7,1.7,1.8,1.8,1.7,1.8,1.7,1.7,1.7,1.7],"paint":[26.7,27.3,26,26.4,27.5,26.2,26.2,27,26.4,26.4,26.4,26.3,26.2,26.2,26.1]}},{"framework":"doohtml-dom-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9,8.8,8.6,8.5,8.8,9.6,8.6,8.9,10,9.3,8.5,8.6,9,8.7],"script":[7.5,7,6.7,6.8,7,7.2,7.1,6.7,7,8,6.9,7.1,6.7,7.1,6.2],"paint":[1,1.8,1.1,1,0.6,0.2,1.4,1,1.7,1.6,1.3,1.1,0.9,1,1.4]}},{"framework":"doohtml-dom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.568242073059082]}},{"framework":"doohtml-dom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9016332626342773]}},{"framework":"doohtml-dom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.920405387878418]}},{"framework":"doohtml-dom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6603231430053711]}},{"framework":"doohtml-dom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.986348152160645]}},{"framework":"doohtml-dom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-dom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-dom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50]}},{"framework":"doohtml-lite-keyed","benchmark":"01_run1k","values":{"total":[25.9,25.7,25.6,25.6,25.7,25.7,25.4,25.6,25.5,25.3,25.5,25.6,25.9,25.5,25.5],"script":[1.7,1.7,1.7,1.7,1.7,1.7,1.6,1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.7],"paint":[23.8,23.7,23.6,23.6,23.7,23.6,23.4,23.5,23.5,23.3,23.5,23.6,23.8,23.4,23.5]}},{"framework":"doohtml-lite-keyed","benchmark":"02_replace1k","values":{"total":[28.3,28.1,28.1,28.3,27.9,28.1,27.9,27.8,28.4,28,28.2,28.2,28.3,28.1,28.5],"script":[3.6,3.5,3.5,3.6,3.4,3.6,3.6,3.5,3.6,3.6,3.6,3.5,3.5,3.5,3.8],"paint":[24.3,24.2,24.1,24.3,24.1,24.1,23.9,23.9,24.3,24.1,24.2,24.3,24.3,24.2,24.2]}},{"framework":"doohtml-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.8,10.8,11.1,11.6,10.7,11.2,11.1,11,10.8,11.4,11.7,10.9,11,10.4,11.5],"script":[0.1,0.1,0.1,0.9,0.1,0.1,0.6,0.6,0.1,0.6,0.1,0.5,0.3,0.3,0.5],"paint":[9.8,9.4,8.8,9.5,9.3,8.9,9.5,9.8,9.3,9.7,9.8,9,9.8,9.1,9.5]}},{"framework":"doohtml-lite-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.3,2.2,2.6,2.1,1.8,2.8,1.7,1.9,3,1.6,3.1,3.1,1.9,2.6,2.5,2.4,1.5,2.4,1.6,2.3,3.7,2.6,1.9,2.1],"script":[0,0,0,0.8,0.6,0,0.6,0,0,0.9,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0.5],"paint":[1.6,1.5,0.3,1,0.8,1,0.9,0.7,1.7,2,0.7,0.6,1,1.1,2.1,2.4,0.9,1.1,1.3,0.7,2.1,1.3,2.5,0.4,0.7]}},{"framework":"doohtml-lite-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.9,14.1,14.2,12.9,13.5,13.1,13.1,13.7,12.9,12.8,12.9,13.7,13.1,13.1],"script":[0.3,0,0.1,0.1,0.2,0.1,0,0.1,0.1,0.1,0.1,0.1,0.9,0.1,0.4],"paint":[12.3,12.8,12.1,12.6,11.5,12.1,12.1,12.2,12.7,12.5,11.5,11.3,11.8,12.4,11.8]}},{"framework":"doohtml-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.7,10.8,10.6,10.8,10.4,10.8,10.3,10.5,10.8,10.6,10.4,10.3,10.5,10.5],"script":[0.1,0.3,0.3,0.3,0.1,0.1,0.3,0.3,0.1,0.4,0.4,0.2,0.4,0.1,0.1],"paint":[9.7,9.5,9.9,9.7,10.1,9.7,10.1,9.4,9.5,9.4,9.7,9.6,9.3,9.8,9.8]}},{"framework":"doohtml-lite-keyed","benchmark":"07_create10k","values":{"total":[270.2,268.9,263,264,271,269.7,262.5,263.6,272,261.5,262.9,271.5,265.3,272.1,262.2],"script":[17.3,16.9,17.5,17.3,17.3,17,17.1,17.2,17.3,17.2,17.1,17,16.6,17.3,17.3],"paint":[246.7,245.8,239.4,239.8,247.5,246.6,239.4,239.3,248.1,238.6,240,248.3,242.7,248.6,239]}},{"framework":"doohtml-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.9,28.7,29.6,28.8,28.5,28.8,28.3,29.4,29,28.5,29.8,28.9,28.7,28.8,28.7],"script":[1.7,1.8,1.7,1.8,1.7,1.8,1.6,1.7,1.7,1.7,1.7,1.7,1.8,1.8,1.7],"paint":[26.4,26.1,27.3,26.3,26,26.3,26,27,26.5,26.1,27.4,26.5,26.2,26.3,26.3]}},{"framework":"doohtml-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.3,8.6,8.4,8.9,8.5,9.1,8.7,8.9,8.9,9.2,9.6,9.2,8.4,8.8,8.8],"script":[7.2,7,6.5,6.9,7,7,6.6,6.9,7,7.8,7.8,7,6.7,7.3,6.8],"paint":[0.9,0.2,0.5,0.7,0.8,1.2,0.3,1.7,1.6,0.2,0.8,2,1.1,0.8,1.3]}},{"framework":"doohtml-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.594904899597168]}},{"framework":"doohtml-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9040307998657227]}},{"framework":"doohtml-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9482812881469727]}},{"framework":"doohtml-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6704301834106445]}},{"framework":"doohtml-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.977785110473633]}},{"framework":"doohtml-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.2]}},{"framework":"doohtml-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6]}},{"framework":"doohtml-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"01_run1k","values":{"total":[35.5,35.4,35.6,36.1,34,34.8,36.7,36.6,34.7,33.8,36.7,35.2,33.8,35.3,35],"script":[11.6,12.1,11.9,11.7,10.5,11.2,11.6,12.1,11.5,10.1,12.1,11.6,10.1,11.9,11.3],"paint":[23.2,22.8,23.2,23.9,23.1,23,24.6,24,22.8,23.2,24.1,23.1,23.3,23,23.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"02_replace1k","values":{"total":[37.2,38.4,38.7,37.8,37.2,37.9,37.3,37.9,37.9,37.6,37.8,37.3,37.4,37.9,37.4],"script":[13.1,14,13.8,13.5,13.2,13.3,13.1,13.3,13.3,12.9,13.3,13,13.3,13.5,13.1],"paint":[23.5,23.8,24.3,23.8,23.4,24,23.6,24.1,24.1,24.2,23.9,23.6,23.5,23.8,23.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,11.6,11.9,11.7,11.2,11.6,12.2,12.5,11.7,12.3,12,13.2,11.9,11.7,11.9],"script":[0.8,0.6,0.9,0.3,0.9,0.9,0.2,1,0.2,0.5,1,1.2,0.2,0.5,0.7],"paint":[10.7,9.8,9.8,10.2,9.3,10.1,10.6,10.7,9.6,10.6,9.4,10.4,10.8,10.2,10.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"04_select1k","values":{"total":[4.5,1.8,2.3,2.5,1.9,1.7,1.6,1.9,2.2,2.1,1.9,1.9,2.3,1.2,2.1,2.1,2.1,1.5,2.2,2.7,2.3,1.7,2.4,1.9,2.8],"script":[0.1,0.3,0.6,0.1,0,0,0.1,0.1,0,0.7,0.1,0.1,0,0.2,0.7,0.1,0.4,0,0.1,0,0.4,0.1,0.1,0,0],"paint":[2.1,1.4,1.6,2.4,1,1.6,1.5,1.7,1.3,1.3,1,1.1,2.1,1,1.3,1,1.6,1.4,1.3,1.3,1.8,0.7,2.2,1.1,1.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"05_swap1k","values":{"total":[14.1,14,12.8,13.1,13.1,14.4,13.7,14.3,13.3,13.9,14.2,12.9,13.7,13.8,13.6],"script":[0.1,0.4,0.1,0.1,0.6,0.8,0.1,0.8,0.4,0.1,0.9,0.1,0.8,1,0.1],"paint":[12.4,13,11.7,11.8,11.6,12,12.1,12.5,12,12,12.1,12.3,11.8,11.8,12.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.5,10.3,10.4,10.7,10.8,10.8,10.7,10.4,10.8,10.6,11.6,10.9,10.7,11],"script":[0.1,0.1,0.1,0.2,0.1,0.1,0.4,0.1,0.2,0.1,0.2,0.3,0.1,0.3,0.3],"paint":[9.7,9.7,9.6,9.6,10.2,9.9,9.7,9.9,9.4,10,9.8,10.4,10.1,9.5,10]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"07_create10k","values":{"total":[354.6,351.1,350.7,350.8,351.3,347.5,343.9,345.6,350.5,354.4,351.6,348.8,351.5,350,347.6],"script":[111.5,111.7,110.6,111.7,111.1,107,106.2,106.2,110.9,109,111.4,108.9,110.6,110.4,110.1],"paint":[237.1,232.9,233.9,233.3,233.3,233.9,231.8,233.5,233,238.2,234.6,234.2,233.9,233.6,231.8]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,38.5,39,39.1,38.3,38.5,38.4,38.1,38.2,38.1,38.8,39,38,38,38.3],"script":[10.6,10.7,11,11.1,10.4,10.6,10.5,10.6,10.6,10.6,10.9,10.6,10.7,10.6,10.4],"paint":[27.4,27,27.1,27.1,27.1,27.2,27,26.6,26.8,26.5,27,27.5,26.5,26.6,27]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,11.6,13,11.2,10.5,12.5,12.4,12.5,12.2,11.3,11.5,11.7,13.3,11,13.5],"script":[10.4,9.2,11.7,9.3,9.2,9.8,10.7,9.8,10.4,10.2,10.6,10.3,11.2,9.2,11.2],"paint":[0.7,1.4,1.2,1.1,0.2,1.1,1,1.6,1.6,0.7,0.9,1.4,0.5,0.9,1.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6624307632446289]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.684140205383301]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.692268371582031]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9264631271362305]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.87011241912842]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.7]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"01_run1k","values":{"total":[29.7,34.9,35.1,35.3,32.5,35.2,35.1,30.1,31.1,31.5,30.2,36.5,31.5,37,37.4],"script":[5.7,5.5,5.5,5.4,5.6,5.5,5.5,5.6,5.6,5.8,5.6,5.3,5.7,5.4,5.5],"paint":[23.4,23.2,23.8,23.5,23.6,23.8,23.7,23.8,23.8,24,23.9,23,24,23.3,23.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"02_replace1k","values":{"total":[33.9,35.1,37.8,33.8,37.1,36.5,35.9,33.2,34.3,34,33.1,34.6,35,36.1,35.2],"script":[7.8,8.3,8,7.6,8.6,8.2,7.9,8.2,7.6,7.9,8.1,8,7.5,7.6,8.1],"paint":[23.7,24.2,24.1,23.7,24.4,24.3,23.8,23.7,24.2,24.4,23.6,23.8,23.9,24.1,24.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.5,29.6,14.2,29.6,13.5,14.2,15.5,30.6,14.7,15,13.8,13.3,13.8,14.8,13.9],"script":[2.1,2.4,3.1,2.1,2,3.2,3.4,3.4,3.4,2.8,2.1,2.3,2,2.4,2.1],"paint":[10.2,10.5,10.8,10,9.9,10.7,10.1,10,9.8,11.2,10.2,9.5,10.7,11.4,10.8]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"04_select1k","values":{"total":[9.4,12.7,2.9,4.4,4.6,8.6,3.1,5.5,5.5,3.2,3.4,8.4,3.3,4.1,7.9,9.5,3.1,8.2,8.5,3.9,6.5,8,3.3,9.1,7.6],"script":[0.6,0.6,0.6,1.5,1.1,0.9,0.6,0.9,0.9,0.8,0.6,0.6,0.7,1.3,1.5,0.3,1.6,0.7,2.1,0.9,1.2,1,1.6,1.2,0.7],"paint":[1.2,1.6,1.9,1.9,1.3,2.1,2,1.9,1.5,2,1.1,1.4,1.3,1,1.1,1.9,1.3,2,1.5,1.5,1.3,1.6,1.1,2.4,1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"05_swap1k","values":{"total":[34.1,14.4,14.7,15.7,31.8,15,31.3,15.5,30.7,15.2,31.8,15.2,14.1,31.1,16.3],"script":[1,1,1.5,1.7,1.5,0.9,1,2.1,1.3,0.8,1.2,1.5,0.9,1.9,1.2],"paint":[15.6,11.5,11.7,12.4,13.1,13.1,14.1,12.9,12.4,12.7,13.5,12.5,12.3,13.5,12.7]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,16,15.4,13,11.6,12.7,15,15.1,12,13.9,13.1,12.1,11.8,14.5,15.3],"script":[0.3,0.7,0.6,0.6,0.4,1.4,0.4,0.8,0.6,0.9,0.6,0.6,0.6,0.4,0.5],"paint":[10.3,10.5,9.7,10.6,10,10.3,10.3,10.3,10.7,10.7,10.9,10.7,10.4,10.6,10.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"07_create10k","values":{"total":[738,311.8,755.2,743,314.5,309.3,315.8,317.1,751.9,313.6,312,314.4,311,311.4,315],"script":[64,66.4,64.7,64.5,66.2,65.2,67.1,66.8,64.7,64.6,66.1,64.6,64.2,63.6,68.1],"paint":[245.7,239.1,245.1,242.7,238.4,237.1,239.7,241.1,244.1,239.6,239.3,240.4,240.1,241.2,239.7]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.6,39.4,39.7,38.9,40.6,41,40.7,39.3,39.7,39.5,40.8,40.5,34.6,41.7,40.8],"script":[7,7,6.8,7.1,7.3,7,7.3,7.1,7.2,6.9,7.2,7.1,6.7,6.9,6.9],"paint":[26.5,26.6,27.3,26,26.4,26.9,26.3,26.5,26.7,26.4,27.6,26.6,27,27.5,26.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[32.1,30.7,31.5,30.9,10.7,10.9,10.5,11.8,30.3,29.5,32.2,31.2,30.6,30.2,11.4],"script":[8,7.7,7.9,9,9.2,8.3,7.9,9.5,8.6,7.6,9.2,8.2,7.7,8.7,8.2],"paint":[1.7,0.9,1.9,1.3,0.4,0.3,1.9,0.3,0.3,0.9,1.1,1.2,2,1.3,0.7]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6535167694091797]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.749561309814453]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8187942504882812]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0434322357177734]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.2033052444458]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53.2]}},{"framework":"ember-v6.4.0-keyed","benchmark":"01_run1k","values":{"total":[46.4,46.3,46.4,46.7,46.4,46,46.2,46.5,46.3,46.3,45.7,46.5,46.5,45.8,46.8],"script":[22.6,23,22.8,23.1,23.1,22.9,22.4,23,23,23.3,22.7,23.1,23.3,22.5,23.5],"paint":[23.4,22.9,23.2,23.2,22.9,22.7,23.4,23.1,22.9,22.7,22.6,22.9,22.8,22.9,23]}},{"framework":"ember-v6.4.0-keyed","benchmark":"02_replace1k","values":{"total":[58.3,59.1,59.6,58.2,58.4,58.9,59.3,57.9,58.7,58.8,58.9,58.2,59.2,58.7,58.5],"script":[32.8,33.5,33.9,32.7,33.2,33.3,33.6,32.5,33.1,33.2,33.2,32.8,33.6,32.9,33.1],"paint":[25.1,25.1,25.3,25,24.8,25.1,25.1,24.9,25.2,25.1,25.3,24.9,25.1,25.4,25]}},{"framework":"ember-v6.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.8,18.4,18.6,19,19.5,18.8,19.8,19.5,20.3,18.2,19,19.4,19.9,19.9,18.9],"script":[6.3,6.9,7.3,6.4,7.3,6.6,7,7.8,7.6,6.6,7.2,7,7.6,7.1,7.6],"paint":[11.6,10.1,10.6,11.4,11,10.9,11.5,10.4,11.1,10.4,11.1,10.9,11,10.9,10.2]}},{"framework":"ember-v6.4.0-keyed","benchmark":"04_select1k","values":{"total":[15.2,15.8,17.2,15.4,15.6,15.7,15.4,15.2,16.4,15.6,15.1,16.5,14.8,15.3,15.5,15.4,16.1,15.7,15.3,15.9,15.5,16.8,15.1,16.7,15.7],"script":[12.7,13,13.2,12.6,12.7,12.4,12.5,12.3,12.6,11.9,11.6,12.7,12.4,12.2,13,12.7,12.8,13,12.2,12.5,11.9,13.3,12.4,12.5,12.7],"paint":[1.4,1.9,2.6,1.9,1.6,2.1,2.1,1.8,1.7,2.8,2,2.5,1.6,1.2,1.9,2,2.5,2,2.2,1.9,2.1,3.2,1.8,2.1,2.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"05_swap1k","values":{"total":[23.5,24.3,25.9,23.9,24.1,24.1,23.5,24.4,24.2,25.8,24.3,24.4,24.2,24.4,24.7],"script":[8.1,8.8,9.1,9,8.7,8.6,8.5,8.8,8.8,9.1,8.3,8.4,8.2,8.7,9.1],"paint":[14.5,13.6,15.7,13.7,14,14.5,14,13.6,14.3,14.8,14.4,14.5,14.9,14.7,13.9]}},{"framework":"ember-v6.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.2,17.8,17,17,16.7,16.8,17.4,17,16.9,17,16.8,16.8,16.4,16.5,16.4],"script":[5.3,5.1,5.1,5.5,5.2,5.3,5.5,6,5.3,5,5.2,5.3,5.3,5.3,5.3],"paint":[11.1,12,11.5,10.8,10.5,10.9,11,10.5,10.6,11.6,10.6,10.9,9.9,10.1,9.8]}},{"framework":"ember-v6.4.0-keyed","benchmark":"07_create10k","values":{"total":[423.4,425.4,422.3,424.9,426,426.2,422.6,427.6,424.7,423.4,423.6,426.5,425,427.4,426.2],"script":[174.9,176.1,175.6,175.2,176.5,177.6,175.5,179.3,176.4,176.3,175.4,177.4,175.1,177.1,179.4],"paint":[242.7,242.4,241.2,244.1,243.6,242.6,241.5,242.6,242.6,241.9,242.5,243.6,243.6,244.6,241.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57,57.3,57.3,58,57.7,57.2,56.9,57.3,57.3,57.6,56.4,56.7,56.7,57.2,56.8],"script":[28,28,28.3,27.5,28.4,28.3,28.1,28.4,28.3,28.5,27.9,28.1,27.9,28.1,28.1],"paint":[28.2,28.4,28.2,29.6,28.5,28.1,28,28,28.2,28.3,27.7,27.7,28,28.3,27.8]}},{"framework":"ember-v6.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,20.8,20.9,20.8,20.1,20.8,20.5,21.5,21,21.5,22.9,20.5,21.9,21.5,21.8],"script":[19.1,18.7,19.6,18.5,18.1,19.3,18.4,19.9,19.1,19.7,20.6,18.6,20.4,19.3,19.9],"paint":[1.8,0.7,1.2,1.4,1.7,0.8,2,1.1,0.6,1.7,0.8,1.8,0.4,2,1.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[8.31749153137207]}},{"framework":"ember-v6.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[14.210481643676758]}},{"framework":"ember-v6.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[14.219021797180176]}},{"framework":"ember-v6.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.102871894836426]}},{"framework":"ember-v6.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.77283763885498]}},{"framework":"ember-v6.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[1109.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[223.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[1002.3]}},{"framework":"endr-v0.1.3-keyed","benchmark":"01_run1k","values":{"total":[31.7,31.4,32.1,31.6,31.2,31.9,31.3,31.5,31.9,31.1,31.1,31.6,31.5,31.7,31.4],"script":[7.2,7,7,7,7.1,7.1,7,7.1,7.5,7.1,7.1,7.3,7.1,7.3,7.1],"paint":[23.9,23.9,24.6,24,23.6,24.3,23.8,23.9,24,23.5,23.4,23.7,23.9,23.9,23.8]}},{"framework":"endr-v0.1.3-keyed","benchmark":"02_replace1k","values":{"total":[34.9,34.8,34.7,34.6,34.1,34.4,34.5,34,34.3,33.8,34.8,34.6,35.2,34.7,34],"script":[9.5,9.5,9.9,10.1,9.4,9.5,9.5,9.4,9.6,9.2,9.5,9.6,9.8,9.6,9.7],"paint":[24.8,24.6,24.3,23.9,24.1,24.3,24.5,24,24.1,24,24.8,24.4,24.8,24.6,23.7]}},{"framework":"endr-v0.1.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.7,13.4,14.6,14.5,14.3,13.8,14,15,14.1,13.8,14.1,14.5,14.9,14.6,14.2],"script":[2.1,2.1,2.5,2.7,2.4,2.4,2.3,2.5,2.5,2.6,2.5,2.7,2.5,2.1,2.7],"paint":[10.3,9.8,10.8,10.4,10.9,10.1,10.4,10.8,10.3,10.3,10.5,10.3,10.9,11.6,9.2]}},{"framework":"endr-v0.1.3-keyed","benchmark":"04_select1k","values":{"total":[4.1,3.3,3,3.1,2.7,2.8,3.2,3.3,4,3.1,3,3.1,3.1,3.5,3.5,3.4,3.3,3.3,3.1,3.3,4,3.4,3.3,3.4,2.9],"script":[1.4,1.4,1.1,1.4,0.6,0.9,1,1,1.7,1,1.2,1,1.3,1.5,1.3,1.5,1.2,1.6,1.3,0.9,1.8,0.9,1.4,1.3,0.6],"paint":[1.5,1.2,0.3,1.5,2,1.7,1.8,1.8,2.1,1.9,1.7,1.2,1.1,1.4,2.1,1.1,1.2,1.5,1.2,2.3,1.8,1.4,1.5,1.4,1.3]}},{"framework":"endr-v0.1.3-keyed","benchmark":"05_swap1k","values":{"total":[14.8,15.3,15.2,14.3,14.8,14.4,14.8,14.7,15.6,16.7,15.7,14,15,15.9,14.3],"script":[1.7,1.5,1,0.9,1.1,1,1.4,1.2,0.9,1.4,1.7,0.9,1.1,1.4,0.9],"paint":[12.3,13.1,13.4,12.6,12.6,11.8,12.8,12.5,12.9,13.6,12.4,12,12.5,13.4,11.5]}},{"framework":"endr-v0.1.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.3,10.9,11.5,11.5,11,11.1,11.3,11.6,11.2,11.2,12.3,11.3,11.2,11.4,11.4],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.8,0.6,0.6,1.6,0.6,0.6,0.6,0.6],"paint":[11.1,10,10.5,10.5,9.9,9.8,10.1,10,10.2,10,10.1,9.9,10,10.2,10.1]}},{"framework":"endr-v0.1.3-keyed","benchmark":"07_create10k","values":{"total":[321.7,322.7,319,322.7,322.9,320.6,319.9,320.2,322.6,321.7,320.7,321.5,322.4,319.6,320.8],"script":[77.5,79,77.6,80.1,78.3,78.4,77.9,77.8,78.9,79.2,78,79.5,79.4,77.8,76.9],"paint":[238.2,237.3,235.4,236.4,238.6,236.2,236.1,236.3,237.5,236.4,236.7,236.5,236.8,236,237.7]}},{"framework":"endr-v0.1.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,35.2,34.9,35.1,34.6,35.2,36.2,35,34.9,34.8,35.3,34.8,35.8,35.1,35.1],"script":[7.6,7.5,7.5,7.5,7.2,7.4,7.7,7.9,7.3,7.5,7.6,7.5,7.4,7.6,7.6],"paint":[26.8,26.7,26.4,26.7,26.4,26.7,27.6,26.3,26.7,26.4,26.9,26.4,27.5,26.6,26.6]}},{"framework":"endr-v0.1.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.4,11.3,10.6,11.9,12,10.7,10.6,11,11.2,12.2,12,11.4,10.7,11.6],"script":[8.8,8.3,8.8,8.5,9.7,10,9.1,8.3,8.8,9.5,10,9.4,9.5,8.8,9.4],"paint":[0.3,1.3,2.2,1.2,1.1,0.8,0.7,1.8,0.7,0.3,1.3,1.2,0.4,0.9,1.5]}},{"framework":"endr-v0.1.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5854873657226562]}},{"framework":"endr-v0.1.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5646286010742188]}},{"framework":"endr-v0.1.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.612424850463867]}},{"framework":"endr-v0.1.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6877193450927734]}},{"framework":"endr-v0.1.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.65976905822754]}},{"framework":"endr-v0.1.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.7]}},{"framework":"endr-v0.1.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.1]}},{"framework":"endr-v0.1.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.8]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[32.8,32.8,32,33.4,32.3,32.8,32.1,32.9,32.4,31.4,32.2,32,33,32.3,32.1],"script":[6.9,7,6.6,7.5,7,7,6.9,6.9,6.9,6.6,6.8,6.6,7.1,7,6.6],"paint":[25.3,25.2,24.8,25.3,24.7,25.2,24.7,25.5,25,24.2,24.9,24.9,25.3,24.7,24.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[37.3,35,35.9,35.7,37.2,36.5,36.2,35.6,36.7,35.6,35.6,34.8,35.6,36,36],"script":[11.1,9.6,10,9.8,11.1,10.6,10.5,9.9,10.5,9.9,9.9,9.9,9.9,9.9,10.1],"paint":[25.6,24.8,25.3,25.2,25.5,25.3,25.1,25.1,25.6,25.1,25,24.4,25.1,25.4,25.3]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,12.4,14.4,12.9,12.5,11.4,12.8,12.7,13.9,12.6,12.2,12.7,12.1,13.3,13.4],"script":[0.6,0.2,0.8,0.9,0.6,0.2,1,0.7,0.9,0.5,0.6,0.6,0.6,0.8,1.5],"paint":[10.3,11,12.5,11,10.9,9.5,10.6,10,11.4,10.8,10.8,10.9,10.9,10.9,10.1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.1,2.1,2.2,2.6,1.9,2.3,2,1.9,2.1,2.5,2.7,2.1,1.6,1.7,2.1,2.8,2.1,2.8,2.1,1.8,2.3,2.4,2,2.1],"script":[0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0],"paint":[1.7,1.3,1.9,1.4,2.4,1.8,2.1,1.5,1.1,1.4,1.9,2.2,0.6,0.7,0.7,1.4,1.5,1.5,1.8,1,1,2.1,2.2,1.2,1.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[15,15.5,15.4,15.8,14.9,15.1,15.4,16.4,15.6,15.5,14.8,15.2,15.1,14.9,16.3],"script":[0.7,1.5,1.1,1.3,1.2,1.1,1.9,1.1,1.1,0.9,0.8,1.1,1.1,1.2,1.6],"paint":[13.1,12.7,12.8,13.3,12.3,12.7,12.3,14,13.3,13.6,13.7,12.6,12.6,12.7,13.7]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.2,11,11.5,11.2,11.6,11.2,11.4,11.2,11.2,11.5,11.3,11.5,11.5,11.6],"script":[0.6,0.4,0.3,0.6,0.6,0.6,0.4,0.6,0.6,0.4,0.6,0.5,0.6,0.5,0.4],"paint":[10.1,10.4,9.8,10.3,10,10.6,10.4,10.2,10.1,10.4,10.1,10.2,10,10.3,10.7]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[337,334,335.3,333.1,331.6,332.3,331.6,335.3,336.2,331.7,334.8,335.8,334.9,335.9,334.3],"script":[81.3,78.6,79.2,79.1,77,80,78.4,80.3,80.1,79.2,79.1,80.8,79.6,79.7,81.2],"paint":[249,248.7,249.4,247.3,247.8,245.7,245.9,248.2,249.2,246.1,249.1,248.1,248.4,249.5,246.2]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.7,37.6,37.9,37.6,38,38.4,38.4,37.3,37.9,37,37.2,38,37.5,38.4,38.1],"script":[7.1,7.2,7.2,7.4,6.9,7.5,7.6,7,6.9,7,7.4,7.2,7.1,7.2,6.9],"paint":[29.6,29.4,29.7,29.3,30.2,29.9,29.8,29.4,30.1,29.1,28.8,29.9,29.5,30.2,30.2]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.8,8,9.5,9.2,10,9.3,9.8,9.6,9.6,10.1,10.9,9.9,10.1,10,9.5],"script":[7.2,5.9,7.8,7.4,7.3,7.4,7.2,7.1,7.6,7.7,8.7,7.8,7.9,8.5,7.8],"paint":[0.8,0.4,1.1,0.9,1.4,0.3,1.8,1.7,1.5,1.1,1,1,1.1,0.2,1.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5809841156005859]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1773109436035156]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1892518997192383]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.810572624206543]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.860660552978516]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"01_run1k","values":{"total":[41.2,35.7,35.9,33.3,35.3,36.6,39.9,38.3,35.1,46.6,39.5,38.3,38.8,38.2,36.2],"script":[9.1,10.5,10.2,10,9.8,9.6,9.8,10.1,10.3,9.5,9.8,9.8,10,9.8,9.7],"paint":[22.1,22.9,23.3,22.9,22.9,23,22.9,22.9,23.2,22.5,22.6,23.3,23.1,23.1,23.5]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"02_replace1k","values":{"total":[45.1,39.9,39.1,40,38.8,39.2,48.5,47.6,46.7,42.1,45.9,39.6,40.1,39.6,39.2],"script":[13.6,13.9,13.6,13.5,14.1,13.4,14.4,14,14.4,14.2,13.7,13.4,13.6,13.7,13.8],"paint":[24.3,23.8,23.7,24.6,24.1,24,25.8,26.4,26,26.3,25.6,23.8,23.9,24.2,24.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[49.1,16.7,17.2,17.1,50.1,50,16.3,17.8,48.4,17.9,50.5,16.8,49.3,48.9,49.3],"script":[3.9,4.2,4.2,4,4.2,4.6,3.5,4.5,4.3,4.4,3.7,3.9,4,4.9,4],"paint":[12.6,11.9,11.8,11.3,12,13.1,12.5,11.5,11.8,12.6,11.8,12.2,13.6,11.9,12.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"04_select1k","values":{"total":[11,8.3,8.5,8,10,14.1,6.6,7.4,9.4,10.5,16.1,8.6,8.9,12.3,12,7.2,10.1,12.8,10.4,7.9,11.3,8.3,10.6,7.8,11.6],"script":[2.9,2.1,2.5,2.9,2.5,2.7,2.7,2.7,2.8,2.2,2.5,2.5,2.9,2.3,2.4,2.6,1.9,3.3,3.2,2.6,2.4,2.4,2.6,3.1,2.8],"paint":[2.8,2.8,1.4,4.1,2.4,3.4,2.8,2.2,2.4,2.5,3.1,2.1,3.5,3.2,2.8,4,3.1,2.8,3.2,2.4,2.6,3,3.4,3.1,3.7]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"05_swap1k","values":{"total":[49.7,50.6,51,53.6,54.4,54.6,50.6,54.1,50.7,51.1,51.5,53.4,50.2,51,50.2],"script":[2.9,2,2.8,2.8,2.4,2.5,2.3,2.1,2.5,2.8,2.7,1.6,2.1,2.4,2.7],"paint":[14.1,14.1,15.1,14.7,14.7,14.7,15.2,17.5,13.5,14.2,14,16,15.5,16,14.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,15.9,17.7,14.1,14.3,13.7,14.4,14.6,17.4,13.4,14.1,15.8,16.3,13.9,17.9],"script":[6,6.1,6.6,6.4,6.7,6.3,6.2,6.2,6.1,6.3,6.1,6.1,6.2,6,6.9],"paint":[11.3,10.9,11.5,11.4,11.3,10.8,11.4,11.4,11.5,10.3,11.1,11,11.3,11.3,11.9]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"07_create10k","values":{"total":[322.7,318,318.7,317.2,323.3,324.3,322,317.8,335.5,313.5,318.5,320.2,321.9,317.4,332.8],"script":[70.5,86.4,71.9,81.7,88.3,92.6,70.4,71.4,89.1,71,73.5,73.3,87.9,73.7,89.9],"paint":[232.7,218.2,232.3,218,220.1,219.5,230.9,230.6,224.5,228.4,230,230.1,218.8,230.9,223]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.3,47.5,47.3,38.5,47,47.3,47.7,46.2,38.5,46.7,46.7,47.4,47.4,47.4,46.7],"script":[10.8,10.9,10.6,10.8,10.6,10.5,11.1,10.2,10.4,10.2,10.5,11.3,11.1,10.7,10.4],"paint":[27.2,27.1,27.2,27.2,27,27.5,27.1,26.7,27.4,27,27,26.8,26.7,27.3,27]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.7,11.6,11.3,11.1,11.7,12.4,13,11.7,11.2,10.4,10.8,12,12.1,12.8,10.9],"script":[8.9,8.7,7.9,8.1,7.9,8.4,8.9,8.2,7.3,7.1,7.3,7.9,8.6,7.7,6.9],"paint":[2.2,1.8,2.3,1.1,1.7,1.7,3.2,2.7,1.5,2.1,2.5,2.1,3,1.4,2.9]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6750297546386719]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.6788482666015625]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.718066215515137]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0024986267089844]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.44849109649658]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.5]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"01_run1k","values":{"total":[56.4,55.5,57.9,51.6,56.5,54.6,51.2,58.8,58.5,56.5,56,54.9,56.5,55.8,56.4],"script":[26.6,27.7,27.7,27.5,26.6,26.9,27.7,27,27.8,27.4,27.2,27.3,28.5,27,27.1],"paint":[22.5,22.7,22.7,22.7,22.7,22.6,23.2,22.9,22.4,22.6,22.7,23.5,22.7,22.5,22.6]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"02_replace1k","values":{"total":[66.1,70.3,64.8,63,60.4,60.1,64.1,66.2,69.7,59.9,71.7,67.3,65.8,65.8,63],"script":[35.4,35,35.2,35.1,34.8,34.9,34.7,35.3,34.8,34.7,35.3,35,35.3,35.7,37.3],"paint":[25,25.5,25.3,25,25.3,24.8,24.6,24.8,24.6,24.8,24.8,24.7,25.3,25,25.3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[37.9,39.5,41.1,37.9,37.5,37.6,39.7,37.3,39,40.2,38.2,40,38.7,38.8,38.4],"script":[4.4,4.5,4.6,4.6,4.5,5,4.6,5.1,4.2,4.5,4.7,5.1,4.5,5.1,3.8],"paint":[12.1,12.4,14.5,12.7,13.5,12,11.6,11.1,12.6,13.3,11.3,11.6,13.2,12.3,13.5]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"04_select1k","values":{"total":[23.7,19,20.5,18.7,18.6,17.6,19.1,16.2,18.2,17.4,18,19.4,17.1,20.4,17.3,16.2,19.8,17.8,17.7,17.5,19.8,20,18.1,16.4,16.6],"script":[13.1,13.3,13.8,12.8,11.5,13.3,11.5,11.3,12.8,12.3,12.7,13,12.9,12.4,12.3,11.8,13,13.2,13,12.4,12.7,12,12.1,11.5,11.6],"paint":[3.1,1.8,2.6,2.7,3.4,2.9,2.8,2.7,2.6,3.1,3.6,2.4,2.4,3,2.8,3.3,2.4,2.6,2.8,1.7,2.5,1.9,3.1,2,3.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"05_swap1k","values":{"total":[42.6,41.7,45.4,43.8,45.6,22.3,41.6,41.5,42.6,43.9,41.6,43.2,42.9,43.9,42.9],"script":[5.6,5.1,4.9,4.5,5.2,4.9,5.1,4.7,5.5,5,5.5,5.1,4.9,5.1,4.9],"paint":[15.8,15.1,16.1,15.4,16.9,16.1,15.3,15.9,15,15.4,15.6,16.2,15.9,15.8,16.6]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.2,22.7,21.9,19.6,21.9,20.2,22.1,19.4,20.4,20,20.3,22.7,20.5,24.1,20.1],"script":[7.2,7.1,7.6,7.4,7.6,7.6,7.9,7,7.5,7.4,7.4,7.2,7.7,7.2,7.3],"paint":[11.8,11.4,11.5,11.4,12,11.9,11.5,11.5,11.6,11.3,11.6,12.7,11.5,11.9,12.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"07_create10k","values":{"total":[442.3,444.6,441.7,444.1,443.7,445.9,443.9,441.5,446.2,444.8,443.2,446.5,442.2,445.3,445.3],"script":[189.6,196.3,196.4,198.4,197,197.9,195.3,197.3,196,195.6,194.5,195.7,192.9,197.4,195.7],"paint":[245.4,241.9,242.6,242.8,242.4,244.3,243.7,241.4,244.2,242.1,243.8,244.5,243.5,243.7,244.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.9,66.4,69.5,70.4,63.8,64.5,66,69.5,71.1,66.8,63.7,68.8,69.5,63.9,62.5],"script":[31.2,30.9,32.1,30.3,30.9,31.8,32,31.1,31.2,30.9,31.1,30.7,30.9,31,30.4],"paint":[27.9,28,28,28.1,27.8,27.8,29.1,28.2,28,27.2,27.7,27.7,27.7,27.8,27.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[21,19.1,42.2,43.2,20.1,21.4,19.7,21.3,20.2,43.3,21.7,43.1,20.5,19.6,40.6],"script":[17.6,15.8,18.6,18.7,16.8,17.6,15.4,18,16.7,21,18.2,20.4,16.7,16.8,18.9],"paint":[2.4,2.3,3.4,2.3,2.5,3.6,2.8,2.6,2.5,1.8,2.7,1.2,2.3,1.4,1.7]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.271097183227539]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[11.259284973144531]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.206208229064941]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.305533409118652]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[60.999759674072266]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[111.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[28.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[123.9]}},{"framework":"goui-v0.1.2-keyed","benchmark":"01_run1k","values":{"total":[31.9,32.4,31.8,32.1,32,32.6,31.8,32.3,32,31.5,32.1,32.3,31.9,32.3,32],"script":[7.9,8.3,7.8,7.9,7.8,8.2,7.7,8.1,7.9,7.7,7.8,7.9,7.9,8,8],"paint":[23.5,23.6,23.4,23.6,23.7,23.8,23.5,23.6,23.6,23.3,23.8,23.9,23.5,23.7,23.4]}},{"framework":"goui-v0.1.2-keyed","benchmark":"02_replace1k","values":{"total":[40.3,40.3,39.9,41.7,40.6,40.5,40.2,39.7,40.8,40.6,40.6,40.5,41.6,40.5,41.1],"script":[15.9,16,15.6,17.2,16,16.2,15.9,15.6,16.2,16.1,16.2,16,16.4,16.1,16.3],"paint":[23.8,23.7,23.7,23.8,24,23.8,23.7,23.6,23.9,23.9,23.9,23.8,24.6,23.7,24.2]}},{"framework":"goui-v0.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.7,13.8,15.4,14.8,14.8,14.2,15.1,15.7,15,14.6,14.5,13.9,14.7,14.9,15],"script":[3.6,3.6,3.3,3.7,3.8,3.2,3.9,4.8,3.4,4.2,3.7,3.6,3.9,3.8,4.1],"paint":[9.4,9,11.1,10,10,10,10.2,10.3,10,9.8,9,8.9,9.7,9.9,9.9]}},{"framework":"goui-v0.1.2-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.4,5.2,4.9,5.8,4.7,4.6,4.4,4.7,4.9,5.1,4.9,4.3,4.2,4.3,4.8,4.6,4.8,4.9,4.4,4.8,4.5,4.6,4.4,4.3],"script":[2.8,2.5,3.1,3,4.1,3,3.1,2.6,2.7,3.1,3,3,2.5,2.6,2.8,3.4,2.8,2.5,2.8,2,2.3,2.6,2.9,2.3,3],"paint":[1.4,1,2,1.3,1.5,1.5,1.3,1.6,1.9,0.3,1.7,1.7,0.9,0.7,1.4,1.3,1.4,1.3,1.9,1.8,1.7,0.9,0.7,2,0.7]}},{"framework":"goui-v0.1.2-keyed","benchmark":"05_swap1k","values":{"total":[17,16.6,16.6,15.7,16.5,15.7,16.2,16.7,16.9,16.6,16.1,15.8,16.3,16.2,15.8],"script":[3.4,3,2.8,3.2,3,2.8,2.6,3,3,2.5,2.7,2.7,2.8,2.6,2.9],"paint":[12.5,12.4,12.5,11.1,12.7,11.1,12.6,12.9,12.7,12.4,12,11.9,11.6,12.5,12.6]}},{"framework":"goui-v0.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,11.7,12,12.8,12.2,12.2,12.1,12.2,11.9,12.2,12.1,11.7,11.9,12.2,12.2],"script":[1.4,1.3,1.5,1.3,1.4,1.5,1.4,1.3,1.6,1.4,1.3,1.4,1.3,1.3,1.4],"paint":[10.7,9.7,9.7,10.8,10.3,10.1,10.1,10.1,9.7,10.3,10.2,9.4,10,10.1,10.1]}},{"framework":"goui-v0.1.2-keyed","benchmark":"07_create10k","values":{"total":[323.1,322.8,321.3,322.2,321.2,322.9,322.6,320.3,320.2,319.5,322.6,321.6,321.9,323.3,321.5],"script":[83.9,83.6,83.5,83.5,84.1,83.7,84.5,83.3,83.4,84,83.2,83.2,83.7,83.6,83.7],"paint":[232.5,233.5,232.3,233.2,231.4,233.6,232.7,231.5,231.2,230.1,233.2,232.8,232.4,234.1,232.2]}},{"framework":"goui-v0.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.8,37.5,37.1,36.3,36.9,37.8,37.7,37.5,36.5,38.4,36.6,36.9,37.6,37.2,38.2],"script":[9.1,9.3,8.9,9.1,9.2,9.4,9.3,9.3,8.8,9.4,9.1,9.3,9.6,9.1,9.7],"paint":[27.8,27.3,27.3,26.3,26.8,27.5,27.5,27.1,26.8,28.1,26.6,26.7,27.1,27.2,27.6]}},{"framework":"goui-v0.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,15,15.5,15.5,15.5,14.7,15.7,15.7,15.8,15.4,16.3,15.5,15.5,15.8,15.5],"script":[13.5,13.2,13.9,13.3,13.7,13.4,13.4,13.9,13.9,13.1,14,13.4,13.2,13.8,13.6],"paint":[0.6,0.2,0.2,1,0.7,1.1,2.1,1,1,1.1,1.2,1.6,0.2,1.6,1.6]}},{"framework":"goui-v0.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7190704345703125]}},{"framework":"goui-v0.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.216662406921387]}},{"framework":"goui-v0.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.227274894714355]}},{"framework":"goui-v0.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[16.69994354248047]}},{"framework":"goui-v0.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.50929546356201]}},{"framework":"goui-v0.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.3]}},{"framework":"goui-v0.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.5]}},{"framework":"goui-v0.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[124.5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"01_run1k","values":{"total":[34.9,34.4,34.6,34.6,34.9,34.6,34.6,34.3,34.5,34.9,34.3,34.7,34.6,34.6,34.2],"script":[10,9.8,10.2,10.1,10.1,10,10.1,9.6,10.1,10.2,9.9,10,9.7,10.2,9.7],"paint":[24.4,24,23.8,24,24.2,24.1,24,24.2,23.9,24.1,23.9,24.1,24.3,23.9,23.9]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"02_replace1k","values":{"total":[34.7,36.6,34.7,36,34.7,34,35.3,35.6,34.5,35.6,35.5,34.3,35.3,35.1,35.5],"script":[10.8,11.4,10.8,11.1,10.8,10.5,10.9,11.1,10.5,11,11.1,10.5,10.9,11.2,11],"paint":[23.3,24.6,23.3,24.3,23.3,22.9,23.8,24,23.3,24,23.8,23.2,23.8,23.3,23.9]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,12.4,12.7,13.1,12.1,12.6,12.5,12.2,12.7,12.8,12.2,12.2,12.9,14,13.6],"script":[1.8,1,1.4,1.2,1.1,1.7,0.9,0.9,1.9,1,1.1,1.5,1.3,2,1.6],"paint":[10,10.3,10.1,10.8,9.3,9.8,10.7,10.7,10.1,10.5,9.8,9.4,10,9.9,9.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"04_select1k","values":{"total":[5.7,4,3.9,4,4,4.4,4,4.4,4.9,4.1,4,4.7,4.2,4.6,4,4,3.6,4.5,4.4,4.3,4,3.8,3.8,4.2,4.7],"script":[2.1,1.9,1.5,2.3,1.7,2.2,2.4,2.1,3,1.6,1.3,2.7,2,2.6,2,2.4,1.4,2.5,2.3,2.1,1.7,1.9,2.1,2.3,2.7],"paint":[0.8,1.1,1.8,1.1,2.2,2,1.1,2.1,1.8,1.4,2.2,1.5,1.3,1.3,1.9,1.1,1.1,1.9,2,2.1,1.5,0.7,0.7,1.7,1.3]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"05_swap1k","values":{"total":[15,14.8,14.9,14.7,13.7,13.7,14.8,14.3,14.3,13.9,13.7,14.2,14.9,14.5,15],"script":[0.9,1.2,0.7,0.9,0.6,0.6,1.6,0.6,1.4,1.3,0.6,0.6,0.9,1,1.5],"paint":[13.1,12.5,13.2,13.1,12.1,11.9,11.8,13,11.6,11.7,12.5,12.6,12.5,12.6,12.5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11,10.8,11.2,10.9,10.9,11.6,10.9,11.5,11,11.4,10.8,10.6,11.6,11.1],"script":[0.4,0.6,0.6,0.6,0.6,0.2,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.6,0.6],"paint":[10.1,9.8,9.6,10.1,9.8,9.7,10.1,9.7,10.2,10,10.2,9.6,9.3,10.3,9.8]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"07_create10k","values":{"total":[345.2,344.7,340.9,345.1,343.3,345.4,349.1,346,344,347,342.8,344,343.7,343.8,343.7],"script":[100.1,98.9,97.3,99.8,99.3,100.3,100.3,100.4,100.2,101.3,99.5,99.9,99.3,97.8,99.8],"paint":[239.2,239.8,237.5,239,238,238.9,242.9,239.5,238,239.8,237.5,238,237.9,239.6,238.3]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.3,38,37.1,38.1,37.5,37.5,38.4,37.9,37.2,37.7,37.8,39.3,38,37.8,38.8],"script":[9.8,9.8,9.5,9.8,10,10,9.8,10.3,9.7,9.8,9.8,10.3,9.7,10.2,10.3],"paint":[27.6,27.3,26.8,27.4,26.6,26.6,27.7,26.7,26.5,27,27.1,28.1,27.4,26.7,27.5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.6,11.8,14,12.3,12.2,11.8,13,11.1,11.2,12.2,14.5,11.8,12,11.6,11.8],"script":[10.8,9.9,12.5,9.8,10.3,10.1,11.3,9.5,9.2,10.8,11.9,10.2,10.4,9.7,9.9],"paint":[1,1.5,0.6,1.4,1,0.6,0.6,0.6,0.9,0.2,1.3,0.2,0.4,1.7,1.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6245098114013672]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.235416412353516]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.274599075317383]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1177120208740234]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.0599422454834]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.2]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"01_run1k","values":{"total":[35.4,35.3,34.5,34.6,34.9,34.9,34.9,36.2,35.7,35.2,35.2,35.7,36,34.9,35.6],"script":[9.7,10,9.5,9.6,9.6,9.7,9.8,10.6,10.1,9.5,9.8,10.2,10.2,9.7,10.1],"paint":[25.1,24.8,24.4,24.5,24.7,24.7,24.5,25,25,25.2,24.8,24.9,25.2,24.7,24.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"02_replace1k","values":{"total":[41.1,41.1,40.3,40.7,40.9,41.2,40.9,41,40.7,41.8,40.4,41,40.5,41.8,41],"script":[15.3,15.6,14.7,15.1,15.2,15.4,15.5,15.2,15.3,15.1,14.7,15.6,15,16.1,15.5],"paint":[25.2,25,25,25,25.1,25.3,24.8,25.2,24.8,26.1,25.1,24.9,25,25.2,24.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.7,20,19.4,19.9,19.8,19.8,20.1,19.1,20.6,20.3,19.8,20.2,20.5,19.9,18.8],"script":[7.6,7.6,7.7,7.2,8.1,7.5,8.8,7.2,8.1,8.3,7.3,7.7,7.8,7.5,6.5],"paint":[11.1,10.3,10.3,9.8,9.5,9.9,9.7,10.4,11.3,10.2,10.3,9.8,10.1,9.8,11.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"04_select1k","values":{"total":[6.9,7.2,5.8,6.6,7.2,6.9,8.4,8.9,7.9,7.9,8.5,9.1,6.7,6.5,7.9,6.4,7.4,8,7.1,7.5,7.7,6.6,6.8,6.4,6.8],"script":[4.3,4.8,4.1,4.3,4.7,4.5,5.2,5.7,5,5.5,5.5,3.9,4.8,4.6,5,4.6,5.1,5,4.8,5.1,4.9,4.2,4.6,4.3,4.4],"paint":[2,1.1,0.7,1.5,1.6,1.9,2.1,2.3,0.9,0.9,1.7,1.7,1.2,1.7,1.1,1.7,0.4,1.9,1.1,0.4,1.9,1.9,1.2,1.9,1.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"05_swap1k","values":{"total":[18.2,18.5,18.6,18.1,18.3,20.1,18.1,19.2,18.1,18,20.4,19.6,19.5,19.4,20.1],"script":[4.5,4.1,4.2,4.8,4.2,5,4.5,5,4.3,4.7,5.7,5.2,5.2,4.9,5.6],"paint":[12.7,13.7,13.4,12,13.2,14.1,12.3,13.1,13.1,11.7,12.9,11.9,12,13,12.2]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.5,15.3,15.6,15,15.2,17.1,15.6,15.5,15,15.3,15.5,15,15.1,15.5,15.3],"script":[4.8,4.8,4.9,4.3,4.6,5.8,4.8,4.5,4.7,4.5,4.8,4.2,4.6,5,4.6],"paint":[10,9.5,9.7,10.2,10.1,10,10.1,9.7,9.7,10.1,10,10.2,9.8,9.7,10.2]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"07_create10k","values":{"total":[355.1,355.3,357.6,355.6,354,353.9,355.6,353.6,354.9,357.6,355.8,353.1,354.7,355.8,352.4],"script":[104.5,104.1,105,103.8,103.9,104,104.9,103.8,105.3,105.5,105,105.1,104.5,104.6,103.5],"paint":[244.1,244.8,245.7,245.6,243.7,243,244.5,243,243.3,244.5,245,241.9,243.8,244.5,242.7]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.8,41.6,40.8,41.7,42,41.9,41.2,41.6,41.1,40.9,41.3,41,41.2,41.8,41.3],"script":[12.4,12.8,12.3,13.2,13.2,13.1,12.4,12.7,12.8,12.5,12.9,12.6,12.8,12.9,12.6],"paint":[27.5,27.9,27.5,27.6,27.9,27.8,27.9,28,27.4,27.5,27.4,27.5,27.5,27.9,27.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.8,14.6,14.8,14.1,15,14.3,14.9,15.1,14.1,14.5,15.2,15.5,14.6,14.5,14.4],"script":[13.3,12.5,12.4,12.2,13.3,11.9,13,12.2,12.1,12.4,13.3,13.5,13.2,12.4,11.9],"paint":[1.4,1,1.1,0.6,0.7,2,0.5,1.9,0.3,1.1,0.3,1.1,0.3,0.8,1.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7042922973632812]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.995144844055176]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.246772766113281]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.310516357421875]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.9622859954834]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"01_run1k","values":{"total":[32.7,31.9,32.8,32.9,32.3,31,32.5,32.4,31.8,33.1,32.8,32.9,32.7,31.2,32.2],"script":[8.7,8.9,9,8.9,8.7,8.2,8.7,8.8,8.5,9,9,8.8,9,8.6,8.9],"paint":[23.4,22.4,23.3,23.4,23,22.3,23.3,23.2,22.8,23.5,23.3,23.6,23.2,22.1,22.8]}},{"framework":"helix-v0.0.10-keyed","benchmark":"02_replace1k","values":{"total":[33.9,33.7,36.1,34.2,33.7,34,34.7,34.7,33.8,33.8,33.3,33.8,34.2,34,33.9],"script":[10.5,10.1,10.6,10.6,10.6,10.5,10.5,10.8,10.5,10.4,10.2,10.3,10.6,10.1,10.4],"paint":[22.9,23,25,23.1,22.6,23,23.7,23.3,22.7,22.8,22.6,23,23,23.4,23]}},{"framework":"helix-v0.0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.8,19.2,18,19.5,19.1,18,17.5,19.4,19,19.2,18.8,18.2,18.5,19,19.2],"script":[6.1,5.9,5.9,5.3,6.1,6.1,5.6,7.2,5.8,6.5,5.9,5.9,5.8,5.8,6.2],"paint":[10.6,10.4,10.4,11.9,10.2,9.3,10.6,9.9,11,10.4,10.3,10.9,10.5,12.4,10.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"04_select1k","values":{"total":[5.2,5.2,5.2,5.6,7.2,4.9,4.8,6,4.7,5.9,5.1,4.9,5.4,5.1,4.8,4.8,5.8,5.7,5.4,5,4.9,5,6.1,5.2,4.7],"script":[2.3,2.6,3.1,3.2,3.3,3,2.8,3.8,3,3.3,3,3,3,3.5,3,3.2,3.1,3.5,3.3,3.3,3.1,3.5,3.1,2.9,2.8],"paint":[2.4,2.3,1.8,1.5,1.4,1.7,1.2,2,1.5,2,1.2,1.1,1.5,1.6,1.7,1.2,2.5,1.5,1.5,1.6,1,1,1.7,2,1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"05_swap1k","values":{"total":[119.5,116.9,119.7,117.1,118.1,116.8,115.7,126.5,125.3,124.6,126.9,119.6,120.4,122,115.6],"script":[20.9,19.1,21.5,18.8,19.5,18.5,18.7,20.3,20.9,20.3,19.8,20.8,21.3,20.8,19.2],"paint":[96.4,96.2,95.5,95.7,95,95.5,93.7,103.5,101.8,101.9,104.5,96.9,97.4,98.3,93.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,12.5,12.5,12.6,12.7,12.1,12.3,12.6,12.3,12.2,12.3,12.4,12.3,12.7,13.2],"script":[2,2.1,1.9,2.2,2.1,1.8,1.9,1.8,1.9,1.9,2,2.1,1.9,2,2.3],"paint":[10.1,9.4,10.1,9.7,10,9.7,9.9,10.1,9.7,9.7,9.5,9.6,9.7,9.8,10.3]}},{"framework":"helix-v0.0.10-keyed","benchmark":"07_create10k","values":{"total":[472.7,473.7,470.7,479.1,473.5,473.6,456.1,470,476.8,470.9,483.3,453.6,480.2,449.2,478.1],"script":[229.6,230.9,227.8,235.2,229,230.3,214.7,227.7,230.6,228.3,235,208.6,235.3,207.8,229.5],"paint":[237,236.7,236.6,237.8,238.4,237.2,235.4,236.3,240.2,236.4,242,238.7,238.7,235.3,242.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.4,38,38.8,37.3,37.6,38.2,36.8,36.9,39.4,36.8,37.5,37,37.6,37.9,38],"script":[9.8,9.9,10.3,10.2,10,10,9.9,9.8,9.9,9.8,10,9.9,10.2,10.5,10.2],"paint":[26.6,27.2,27.6,26.1,26.7,27.3,26,26.2,28.6,26.1,26.5,26.1,26.4,26.5,26.8]}},{"framework":"helix-v0.0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.5,11.5,13.1,13.1,13.5,10.5,10.9,13.1,11.8,11.1,12.8,11.5,11.6,10.9,12.3],"script":[9.1,9.6,10.7,10.2,10.3,9.1,9.5,11,9.6,9.1,11.1,9.5,9.1,8.5,10.2],"paint":[1.2,1,1.4,0.7,0.4,0.6,0.2,0.9,1.2,0.6,0.7,0.6,0.9,1.6,0.7]}},{"framework":"helix-v0.0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2854461669921875]}},{"framework":"helix-v0.0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.794005393981934]}},{"framework":"helix-v0.0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.309374809265137]}},{"framework":"helix-v0.0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.154587745666504]}},{"framework":"helix-v0.0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.274672508239746]}},{"framework":"helix-v0.0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[269.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"01_run1k","values":{"total":[36.3,33.8,33.8,33.8,33.5,35.2,35.1,33.2,34.9,34.5,35.3,33.5,35.2,33.3,35.2],"script":[9.1,8.6,8.8,8.9,8.6,10.6,10.1,8.4,10.2,10.1,10.5,8.8,10.3,8.7,10.4],"paint":[26.5,24.7,24.4,24.3,24.3,24,24.4,24.2,24.2,23.9,24.2,24.1,24.3,24.1,24.2]}},{"framework":"hono-v4.6.13-keyed","benchmark":"02_replace1k","values":{"total":[46.7,46.8,45.9,46.2,44.9,45.1,46.1,45.2,45.4,45.6,45.7,46,45.3,45.5,45.2],"script":[19.7,20.3,19.8,20.6,19.8,19.8,20.3,20,20.6,19.9,19.9,20.8,19.7,20,20],"paint":[26.5,25.9,25.6,25.1,24.6,24.7,25.3,24.7,24.2,25,25.3,24.7,25,24.9,24.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.7,17.4,18.7,18.5,17.6,19.4,18.2,18.1,18.4,17.4,18.4,17.7,19.5,19.3,17.7],"script":[5.8,6,6.5,6.6,6.1,7,6.3,6.3,6.8,5.9,6.7,5.8,7,6.7,6.2],"paint":[9.9,8.9,11.1,10,10.4,10.7,10.2,9.5,9.5,9.2,10.3,9.8,10.4,10.4,10.1]}},{"framework":"hono-v4.6.13-keyed","benchmark":"04_select1k","values":{"total":[6.1,6.4,5.9,6.2,6.6,6.9,7.7,6.9,6.4,6,6.9,7.2,5.8,6,7,6.9,6.2,6.9,6.4,6.9,7.8,6.9,6.3,6.8,6.4],"script":[4.2,4.4,4,4,4.6,4.9,5.1,4.8,4.3,4.1,4.4,4.8,4.1,3.7,4.9,4.5,4.3,4.6,4,4.5,4.8,3.8,3.9,4.7,4.1],"paint":[1,1.4,1,2,1.2,1.4,1.9,1.3,2,1,1.7,0.4,0.7,2.1,2,1.3,1.1,2.1,2.2,1.7,1.6,2.9,0.9,1.3,2.2]}},{"framework":"hono-v4.6.13-keyed","benchmark":"05_swap1k","values":{"total":[19.9,18.1,17.8,18.6,18.1,18.4,18.8,18.7,18.2,18,18.7,18.8,19.2,19.6,18.7],"script":[4.4,4.4,4,4.6,4,4.2,4.8,3.8,4.5,3.9,4.5,4.4,4.8,4.4,3.7],"paint":[14.6,12.4,12,12.8,13.2,13.6,12,13.3,12.3,12.3,13,13.1,13.3,13.8,12.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,12.5,12.8,12.4,13.5,12.5,13.3,13.7,12.7,12.6,12.4,12.6,12.9,12.8,12.8],"script":[2.2,2.1,1.9,2,2.1,2.1,2.1,2.8,2.1,2.1,2.2,2.1,2,2.4,2.2],"paint":[9.8,9.8,9.7,9.7,10.5,9.8,10.3,10.3,9.9,9.7,9.7,9.6,10.2,9.8,9.8]}},{"framework":"hono-v4.6.13-keyed","benchmark":"07_create10k","values":{"total":[338.4,340.1,339.1,340,340.6,340.5,339.1,340.7,341.2,341.6,339.8,340.3,346.8,340.6,343.8],"script":[97.4,96,95.6,95.6,95.9,94.4,94.5,95,95.2,96.2,96.8,96,100.5,95.5,100.9],"paint":[235.1,236.9,237.8,238.1,238.8,239.4,239,240,240.2,238.3,236.9,238.2,239.5,237.9,236.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.4,37.4,40.6,36.7,38.2,36.8,37.4,37.8,39.4,37.8,37.2,37.5,37,38,38.7],"script":[9.7,9.2,11.6,9.1,9.4,9.1,9.4,9.4,11,9.3,9,9.7,9.3,9.2,10.8],"paint":[26.8,27.3,28,26.7,27.9,26.9,27,27.5,27.5,27.5,27.3,26.9,26.9,27.8,26.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.7,27.1,26.1,25.4,28.1,27.6,25.9,26.6,28.5,27.8,27.3,28.3,28.1,24.4,26.7],"script":[24.3,24.2,23.7,23.1,25.8,25.4,24.2,24.1,25.8,25.7,24.7,25.6,25.7,22.6,24.6],"paint":[1.3,1.7,1.7,0.3,0.3,0.4,0.7,1.5,2.4,0.3,2.3,1.4,1.2,1,1.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6375980377197266]}},{"framework":"hono-v4.6.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.353621482849121]}},{"framework":"hono-v4.6.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.984763145446777]}},{"framework":"hono-v4.6.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9909429550170898]}},{"framework":"hono-v4.6.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.41082954406738]}},{"framework":"hono-v4.6.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53.7]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"01_run1k","values":{"total":[38.6,38.5,38.5,38.3,38.9,38.7,38.5,38.7,39.4,38.7,38.3,38.6,37.9,39,38.9],"script":[14.8,14.7,14.7,14.7,15,15.1,14.7,14.8,14.9,15,14.8,14.7,14.7,15,14.9],"paint":[23.4,23.4,23.4,23.2,23.5,23.3,23.4,23.4,24,23.3,23.1,23.4,22.8,23.6,23.6]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"02_replace1k","values":{"total":[43.8,41.8,42.7,42.8,42.9,43.1,42.9,42.5,42.6,44,42,43.7,43.9,43.5,42.5],"script":[19.2,18.2,18.7,18.4,19,19,18.9,18.7,18.7,19.2,17.9,19.1,19.4,19,17.9],"paint":[24.1,23.1,23.6,23.9,23.6,23.7,23.6,23.4,23.5,24.3,23.7,24.1,24.1,24.1,24.1]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,12.4,12.2,12.3,12.8,12.6,12.6,12,12.3,12.7,12.7,13,12.7,13,12.2],"script":[1,1,1.1,0.9,1.4,1.3,1.3,1,1.3,1.5,1.3,1.6,1.3,1.7,1],"paint":[10,11.1,9.4,9.2,10,10.3,10.2,9.4,9.8,9.8,11,9.5,10.5,10.3,9.8]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.7,3.4,3.8,4.1,3.9,4.1,4.2,4,4.2,3.5,3.9,3.5,4.3,3.7,3.6,3.4,3.1,4,4.4,3.6,4,4.2,3.6,3.9],"script":[1.2,1.8,1.4,1.5,1.7,2.1,1.2,2.1,1.2,2.3,1,1.7,1,2.8,2,2,1,1,1.7,1.5,1.7,1.7,1.4,1.9,1.8],"paint":[1.9,0.3,1.1,1.2,1.5,1,1.7,1.3,1.8,1.5,1.3,1.1,1.4,1.4,1.6,0.9,2.2,1.9,1.3,1.3,1,1.2,1.6,1.5,1]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"05_swap1k","values":{"total":[14.8,13.5,13.7,13.1,14.3,13.4,14.1,13.9,13.8,13.7,14.9,13.9,13.4,13.8,14.1],"script":[0.8,0.1,0.1,0.1,0.8,0.1,0.5,0.4,0.1,0.2,0.1,0.9,0.1,0.1,0.1],"paint":[13,11.8,12.9,12,11.7,12.3,12.6,12.4,13.1,12.4,13,12.1,11.8,12.7,13]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.6,11.3,10.5,10.4,10.4,10.8,10.6,10.2,10.4,10.6,10.5,10.8,10.9,10.4],"script":[0.3,0.3,0.1,0.2,0.1,0.1,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1],"paint":[9.9,9.6,10.4,9.8,9.7,9.7,9.8,9.9,9.5,9.7,9.8,9.7,9.9,10.2,9.4]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"07_create10k","values":{"total":[406.6,407.3,406.3,409.6,407,404.7,407.7,408.2,404.8,403.3,403.9,404.2,405,405.1,407.1],"script":[155.1,154.4,154.7,154.3,154.9,152.8,152.4,156.8,154.7,152.8,153,153.1,153.3,153.8,154],"paint":[245.9,247.1,246.1,249.5,246.4,246.4,249.7,246.1,244.6,244.9,245.4,245.3,245.3,245.7,248]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.9,47.7,47.8,47.3,47.1,47.5,48.2,47.6,47.9,47.7,48.1,47.6,47.6,47.9,47.5],"script":[19.7,19.8,19.9,20,20,19.9,20.6,19.8,20.2,19.8,20.2,19.8,20.1,20,20],"paint":[26.5,27,27,26.6,26.5,26.8,26.6,27.1,26.9,27.1,27.1,27.1,26.7,27.1,26.8]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.5,12,10.7,10.7,10.9,11.3,12.1,10.9,11.4,12.6,11,10.8,10.5,10.4],"script":[9.6,9.6,10.6,9.2,9.1,9,9.9,10.5,9.8,9.6,10.9,9.5,9.4,9.1,9.4],"paint":[0.9,0.3,1.3,1.2,1.4,1.9,0.9,0.7,0.3,0.9,0.8,1.2,1.4,0.2,0.2]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6173677444458008]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.054830551147461]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.125507354736328]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2305164337158203]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.89083194732666]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.9]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.8,34.7,32.9,33.4,34.1,32.1,32.4,31.8,33.1,34.6,32.1,32.9,34.6,31.9],"script":[5.5,5.2,5.1,5.5,5.6,5.1,5.1,5.4,5.3,5.5,5,5.6,5.2,5.1,5.5],"paint":[23.7,24.1,24.4,23.7,24.4,23.7,24.3,24.2,23.7,25.1,24.4,24.3,24.4,24,24.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"02_replace1k","values":{"total":[36.9,34.8,33.8,34.5,35.7,34.5,34.4,36,35.5,35.7,33.9,36,36.9,36.6,36],"script":[7.6,8,7.9,7.9,7.6,7.2,8.3,7.3,7.3,7.2,7.6,8,7.4,7.8,7.5],"paint":[24.4,24.1,24.3,24.7,24.2,24.3,24.4,24.6,24.3,24.3,24.4,25.1,25,24.1,24.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.5,29.9,13.8,14,29.4,14.2,30.2,29.4,16,13.1,31.6,13.8,30.9,13.3,30.3],"script":[2.4,3.1,2,2.6,2.9,2.7,3,2.8,3.3,2.5,3.9,2.4,2.3,2.9,2.5],"paint":[10,10.7,10.1,10.4,9.9,10.6,10.5,9.8,12.3,10.5,10.9,10.7,12.5,10.3,11.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.3,3.2,3,3.2,2.8,4.2,2.1,2.4,2.6,3.3,2.4,3.1,5.7,2.9,2.8,2.6,3.2,8.4,3.3,2.7,3.4,2.2,2.4,2.5],"script":[1.6,1.6,1.2,1.2,1.3,0.6,1,0.6,0.7,0.6,1.3,0.5,0.2,0.3,0.2,1.2,0.8,1.3,1,0.5,1,0.8,0.8,0.6,1],"paint":[1.6,1.6,1.9,1.7,1.4,1,1.7,1,1.1,1.5,1.1,1.7,2,1.5,2.3,0.9,1,1.8,1.6,1.4,1.2,1.6,1.3,1.1,1.4]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"05_swap1k","values":{"total":[30.4,31.7,15.6,30.3,30.4,30.1,31.3,15.4,30.9,15,15.5,14.9,30.6,15.3,14.5],"script":[1.4,1.3,0.9,1.9,1.4,1,1.8,2.2,1.3,1.4,2.3,1.4,1.5,1.1,0.9],"paint":[12.9,13.6,14,11.5,12.6,13,13.3,12.1,13.4,13.3,13,13.4,12.9,12.3,13]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.3,14.6,10.4,11.3,10.2,14.4,10.1,10,10,10.8,13.9,11,11,11.7],"script":[0.7,1.6,0.8,0.7,1.4,0.7,0.7,0.9,0.8,0.7,1.4,1.5,1.7,1.5,1.9],"paint":[8.9,9.8,9.2,9.4,9.4,8.5,9.2,9.1,8.7,9.1,9.1,9.1,8.8,9.3,9.1]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"07_create10k","values":{"total":[313.9,313.3,315.5,316.9,316.8,321.2,316.1,317.6,320.8,315.1,316.5,316.7,320,318.5,316.8],"script":[64.6,69.6,65.1,65.8,70.3,65.8,66.1,64.5,64.5,69.3,65.5,66.6,68.8,66.6,65],"paint":[246.1,239.5,247,247.9,241.7,245.4,246.9,247.2,246,240.6,246.8,244.9,241.4,247.7,246.9]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.7,37.1,38.4,38.6,34.1,38.9,37.9,33.4,34.3,38.6,38.2,37.9,38.7,39,39.3],"script":[6.1,5.7,5.7,6.2,6.1,5.9,6.1,5.6,5.9,6,6.1,6.1,5.7,5.4,6.1],"paint":[28.6,26.6,27.8,27.5,27.5,28.3,27,27.3,27.9,27.5,26.9,26.9,28.1,28.4,28.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.1,25.4,9.9,9.4,9,25.3,27.3,9.1,25.7,9.1,25.8,25.9,8.6,25.6,8.6],"script":[7.3,8,7,7.5,7.8,8.1,10.1,7.7,8.2,7.5,8.2,8.3,7.3,8,6.3],"paint":[0.9,1.1,0.3,0.7,0.5,1.2,1.1,0.4,1.3,0.7,0.2,0.9,0.3,1.1,0.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5564174652099609]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9894886016845703]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1406784057617188]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6459865570068359]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.876578330993652]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.4]}},{"framework":"imba-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[35,36.7,31.8,36.7,38.8,33.8,38.4,34.6,35.1,31.1,34.1,35,35.5,34.7,34.1],"script":[6,6,6.3,6.3,6.1,6.3,6.6,6.8,6.1,6.7,6.2,6.2,6.2,6.3,6.2],"paint":[23.7,24.1,23.4,24,24.2,22.9,23.5,24.2,23.9,24.1,23,24.1,23,22.9,22.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[34.6,37.6,33.7,37.4,37.1,37.4,37.4,37.5,37.5,36.8,38,37.8,37.1,32.6,39.1],"script":[8.2,8.4,8.7,8.2,8.5,8.4,7.7,8,8,8.3,8,8,8.2,8.6,8.7],"paint":[23.5,22.7,22.9,23,22.7,22.9,22.6,23.2,23,23.2,23,23.2,22.9,23.6,23.3]}},{"framework":"imba-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.5,27.5,12.2,13.8,28.9,27.4,28,12.7,28.6,11.7,12,11.5,27.4,28,11.2],"script":[1.3,0.9,1,1.9,1.5,1.4,1.3,1.5,1.4,1.2,1.1,1.4,0.7,1.4,1.3],"paint":[9.3,10.4,10,11.8,9.5,9.9,10.6,11.1,10.4,10.1,10.7,10,10.7,9.6,9.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[8.3,5.2,3.3,4.8,3.7,3.2,5.5,7.6,3.7,4.3,6.8,6.2,3.5,3.5,4,7.8,3.6,5.5,7.8,4.6,3.5,3.1,3.9,3.7,3.3],"script":[0.3,0.3,0.5,0.7,0.8,1,1.7,0.2,1,1,0.9,0.9,0.3,1.2,0.3,1.2,1,1.1,0.6,0.2,1.2,0.2,0.7,1.2,0.6],"paint":[0.4,1.4,1.9,1.3,1.7,1.1,1,1.9,1.6,1.5,1.1,1.1,1.4,1.1,1,1.3,1.2,1,1.8,1.3,1.7,1.5,1.1,2.3,0.5]}},{"framework":"imba-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[31.8,15.3,17.6,14.7,15.6,31.2,15.6,16.2,15.2,14.8,15.4,31.4,32.2,15,32.1],"script":[1.4,2.1,2,1.1,2.5,1.7,1.8,1.6,1.5,0.9,1.4,2,1.4,1.8,1.5],"paint":[13.4,13.1,14.2,12.1,12.8,13.8,12.6,14,12.1,13.8,13.8,13.3,14.7,12.9,13.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,13.1,10.8,11.7,12.5,12.7,12.1,13.8,11.8,13,12.7,13.4,13.9,14.5,13.3],"script":[0.8,1.1,0.5,0.6,1,0.6,0.4,0.5,1.1,0.7,0.5,0.3,1.1,0.2,0.4],"paint":[9.2,9.4,9.2,8.9,9.6,9.3,9.6,8.9,9.2,9.6,9.2,9.1,9.6,9.5,9.5]}},{"framework":"imba-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[328,327.9,325.9,326.1,326.9,330.2,322.7,325.8,327.9,325.7,326.1,323.1,322,325.1,326.9],"script":[83.6,77.9,80,80.9,79.3,80.3,80.4,82,79.5,80.9,78.6,80.1,80.1,79.2,78.8],"paint":[236.6,240,240.1,237.8,239.7,241.5,238.7,240.6,239.5,237.3,239.4,237.3,237.6,236.5,239.8]}},{"framework":"imba-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[70.5,70.6,71.2,72.7,73.1,69.9,74,71.5,71.3,69.5,73.3,70.5,72.4,70.4,70.5],"script":[14.9,14.9,15.3,15.6,15.4,15.2,15.5,14.9,15.9,14.5,15.7,15.1,14.9,14.9,15.3],"paint":[50,50.1,50.7,51.4,50.7,49.5,51.7,50.2,50,49.6,49.8,49.8,49.8,50.1,49.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,25.9,10.5,9.3,9.9,9,27.2,26.7,25.1,9.9,26.5,27.6,10.2,10.2,26],"script":[7.6,8.9,8.5,7.5,7.9,7.7,8.8,8.4,8.1,8.7,8.3,9.4,7.7,8.6,8.4],"paint":[1,0.8,1.8,1.3,0.9,0.9,0.8,2.1,1.5,1.1,2.8,1.2,0.9,1.5,1.5]}},{"framework":"imba-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8623323440551758]}},{"framework":"imba-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6562023162841797]}},{"framework":"imba-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6315155029296875]}},{"framework":"imba-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.075453758239746]}},{"framework":"imba-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.987226486206055]}},{"framework":"imba-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[81]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[31.4,31.5,31.4,30.8,31.2,31.1,31.2,31.2,31.8,31.4,31.2,31.1,31,31.8,30.9],"script":[7.8,7.9,8.1,7.2,7.7,7.7,7.8,7.8,8,8.1,7.8,7.8,7.9,8.2,7.3],"paint":[23,23.1,22.8,23,22.9,22.9,22.9,22.8,23.2,22.9,22.9,22.8,22.6,23,23]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[61.5,61.7,62.3,63.3,63.6,63.1,61.6,61.8,63.5,61.7,63.5,63.3,62.3,61.6,61.7],"script":[38.3,38.2,38.7,38.3,38.5,39.7,38.2,38.4,40.1,38.6,40.4,38.5,39,38.1,37.9],"paint":[22.8,23,23.2,24.5,24.6,23,23,23.1,23,22.7,22.6,24.4,22.8,23.1,23.4]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.5,21.2,21.6,21.6,22.7,22,21.6,21.5,21.9,22.9,21,20.8,21.6,21.5,22.9],"script":[10,9.1,9.1,9.5,10.4,9.7,9.2,9.2,9.2,10,9.1,8.6,8.8,9.5,8.7],"paint":[10.5,9.4,11.4,10.9,10.4,10.4,11.6,10.1,10.9,11.7,10.9,10.5,10.3,10.9,12.3]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[11.9,11.9,11.8,11.6,10.8,11.8,12,11.6,11.6,11.6,11,13,11.3,11.9,12,12.3,12.5,11.9,12.6,11.2,12.9,12,11.1,12.2,11.5],"script":[8.5,8.9,9.2,8,8.3,8.9,8.5,8.8,8.8,8.5,8.6,9.8,8.9,8.8,9.4,9.1,9.2,9,10,8.8,9.9,8.8,8.5,9.5,8.6],"paint":[1.7,1,1.1,2.4,1.3,1.7,3,1.1,1.1,1,1.4,1.1,1.2,2.1,1.8,2.8,1.7,1.7,1,0.8,2.7,1.4,1.1,1.1,1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[119,116.6,118.9,116.4,119.4,118.9,119.1,117.2,118,119.5,118,117.8,117.4,120.1,119.9],"script":[21.1,19.6,20.4,19.8,21.3,20.5,21.1,20.3,21.1,19.8,20.4,19.7,20.2,22.3,19.9],"paint":[94.9,94.4,97.5,94.7,96.6,96.5,95.4,95.2,95.2,96.5,94.2,95.8,94,96.3,97]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[63.4,62.2,62.1,66.3,63,61.9,64.5,62.5,62.9,63.8,62.3,63.6,63.2,62.9,65],"script":[12.8,12.6,12.9,13.4,12.8,12.4,14,12.8,12.8,13.4,12.7,13,13.1,13.2,13.3],"paint":[48.8,47.9,47.5,51.5,48.7,47.4,48.7,48,48.2,48.5,48.2,49.2,48.1,48.1,49.9]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[324.9,323.5,323.8,324.2,324.3,325.4,327.3,323.7,323.2,324.7,323.2,323.8,322.2,321.6,328.9],"script":[79.3,78.8,80.3,80,79.7,80.5,80.5,79.1,80.6,80.6,79.8,80.3,79.3,78.5,83.1],"paint":[239.6,238.7,237.4,238.2,238.5,239,241.1,238.4,237,238.4,237.8,237.4,236.8,235.8,239.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.1,37.1,37.3,36.4,36.5,37.2,36.2,36.4,36.6,38.3,37.4,37.6,36.6,37.2,37.4],"script":[9.7,9.3,9.6,9.2,9.4,9.4,9.1,9.3,9,9.7,9.6,9.8,9.3,9.7,9.6],"paint":[26.5,26.9,26.8,26.4,26.2,26.8,26.2,26.3,26.7,27.8,27,26.9,26.4,26.5,26.9]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.3,12,10.2,10.6,10.2,10.9,10.2,10.9,10.1,10.8,10.2,10.7,10.8,10.9],"script":[8.2,7.7,9.9,8.4,9.1,8.8,8.2,8.6,8.7,8.7,8.8,7.9,8.5,8.8,8.9],"paint":[1.4,1.5,1.8,0.9,0.6,0.6,1.8,0.3,1.3,0.3,0.7,1.2,0.2,0.9,1.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6357965469360352]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0606460571289062]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0783843994140625]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9095830917358398]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.366291046142578]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"01_run1k","values":{"total":[27,27.1,27.5,27.1,27.2,26.7,27,27.2,27,27.3,27.1,26.8,26.9,27.2,27],"script":[3.3,3.3,3.6,3.3,3.2,3.2,3.2,3.3,3.4,3.4,3.3,3.2,3.3,3.3,3.3],"paint":[23.3,23.4,23.5,23.4,23.6,23.2,23.4,23.5,23.3,23.5,23.4,23.2,23.3,23.6,23.3]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"02_replace1k","values":{"total":[30.2,29.6,29.8,29.8,29.8,29.9,29.5,30.9,30.1,30.2,29.4,29.8,30.1,30.1,29.9],"script":[6,5.4,5.8,5.7,5.7,5.8,5.7,5.9,5.7,5.8,5.3,5.8,5.8,5.8,5.7],"paint":[23.7,23.7,23.5,23.5,23.5,23.6,23.3,24.5,23.8,23.8,23.6,23.5,23.7,23.6,23.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,13.3,12.1,14,13.9,12.4,14.1,11.9,13.2,12.4,13.1,12.5,13.9,13.2,12.4],"script":[2,0.9,1,3.1,2.4,1.1,2.6,0.9,2.2,1.2,1.7,0.9,2.5,1.1,1.2],"paint":[9.4,10.3,9.6,8.8,10.3,9.6,10.3,9.7,9.9,9.9,9.5,10,10.1,10.9,10.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"04_select1k","values":{"total":[3.5,2.7,2.3,3.1,2.9,2.5,2.6,3.5,2.6,3,3,2.6,3,3.1,2.4,3,2.6,2.5,2.9,2.4,3.3,4.4,2.8,2.2,2.5],"script":[1.4,0.9,0.1,0.2,0.3,0.9,0.5,0.5,0.8,0.5,0.6,0.9,0.9,1.1,0.8,0.8,0.6,0.2,0.9,1,0.9,0.8,0.1,0.6,0.2],"paint":[1.3,1,2,1.7,1.7,1.1,0.3,1.2,0.7,0.9,1.6,1.5,1.4,1.3,0.7,2.1,1.9,1.3,1.3,1.3,1.9,1.5,1.6,1,2.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"05_swap1k","values":{"total":[15.2,14.5,14.1,13.8,14,13.9,13.8,14,14.1,13.8,14.3,14.8,13.8,14.2,14],"script":[0.9,0.5,1,0.6,0.9,1.3,1.1,1.4,1,1,1,0.6,0.9,1,0.6],"paint":[12.9,12.6,12,11.7,12.2,11.7,11.8,11.3,11.7,11.5,12.3,13.2,11.9,12.2,12.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.9,10.7,10.7,11,10.8,10.7,10.9,11.6,10.9,10.8,10.4,10.6,10.9,10.7],"script":[0.2,0.3,0.2,0.3,0.5,0.5,0.1,0.3,0.3,0.4,0.2,0.2,0.2,0.4,0.5],"paint":[9.8,9.8,9.8,9.7,9.7,9.6,10.1,9.8,10.8,9.9,10.1,9.6,9.8,9.9,9.7]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"07_create10k","values":{"total":[285.8,286.2,287.4,288.3,288.2,287.7,284.9,284.9,282.4,285.6,284.5,284.3,285.6,283.9,285.1],"script":[39.5,38.9,38.8,39.5,39.1,38.2,38.6,38.1,37.4,38,38.2,36.7,38.5,38,38.4],"paint":[240.2,241.5,242.6,242.8,243.1,243.5,240.7,240.8,239.3,242,240.7,241.4,241.2,240.3,241.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.8,31,31.3,31.2,32,30.8,30.7,31.6,31.6,30.5,31.1,30.9,31.1,32.5,30.6],"script":[3.5,4.4,4.4,3.6,4.5,3.6,3.8,4.4,4.5,3.8,4.4,3.8,4,3.9,3.8],"paint":[26.5,25.9,26.1,26.7,26.5,26.4,26.3,26.4,26.3,26,25.9,26.3,26.4,27.8,26.1]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,9.6,9.4,9.7,9.9,10.2,9.6,8.9,9.4,9.3,10.2,9.4,8.9,9.5,9.5],"script":[8.1,7.8,7.1,7.1,8,7.8,7.9,7.9,7.9,7.4,7.9,7.5,7.4,7.3,7.7],"paint":[1.1,0.9,1.7,1.7,1.4,0.2,1,0.2,0.7,1,1.3,0.4,0.8,2,0.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5935688018798828]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.796942710876465]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8863706588745117]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7072219848632812]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.134389877319336]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[26,26,26,26,25.9,25.9,26.1,25.9,26.3,26,27.2,26.5,25.8,26.1,26],"script":[1.9,1.9,1.8,1.9,1.9,1.8,1.9,1.8,1.9,1.9,2.2,1.9,1.9,1.9,1.9],"paint":[23.8,23.7,23.8,23.8,23.7,23.7,23.9,23.7,24,23.7,24.7,24.2,23.5,23.8,23.8]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[28.6,28,29,28.4,28.9,28.9,28.6,28.9,28.5,29,28.7,30.2,28.5,28.6,29.5],"script":[4,3.9,4.1,4,4,4,4,4.1,4,4.2,3.9,4.4,3.9,3.9,4],"paint":[24.2,23.8,24.4,24,24.6,24.4,24.2,24.4,24.1,24.4,24.3,25.3,24.1,24.2,24.8]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,13,13.5,12.5,13.1,12.7,13.4,12.2,12.3,12.9,12.9,12.8,12.7,12.8,13.3],"script":[1.2,1.5,1.5,1.1,0.8,1,1.3,0.8,1,1.4,1,1,1.2,1.5,1.5],"paint":[10.6,10.1,10.9,10.4,10.8,10.4,10.3,10.4,9.1,10.3,10.8,10.5,10.1,10.4,10.4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[3,3.3,3.7,3,3,2.8,3.2,2.5,2.5,2.8,2.4,2.6,2,2.8,3.7,3.1,3.1,3.6,3.4,5.3,2.2,3.6,3.2,2.7,2.2],"script":[1,0.6,1.6,0.6,0.2,0.7,1.2,0.6,1,1.1,1,1.2,0.9,0.2,2,1.1,1.1,2,1.4,2.1,0.6,1.2,0.6,0.9,0.2],"paint":[1.9,1.4,1.6,1.9,1.3,1.7,1.7,1.1,1.4,1.5,1.3,0.7,1,2.2,1.1,1.4,1.9,1,1.8,2,0.7,1.4,2.5,1.6,2]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[16.8,15.2,14.1,14.6,14.3,15.4,14.7,14.8,14.8,14.7,16,14.5,15.1,16,14.9],"script":[2.8,1.6,0.7,0.9,0.7,2.6,1.3,1.4,0.9,1.2,2.7,1.6,1.2,2.6,1.5],"paint":[13.3,12.4,12.2,12.7,12.7,11.3,12.8,12.4,12.8,12.7,11.7,11.9,13.2,12.2,12.4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.7,10.9,10.9,11,11,10.6,11,11,11.1,10.9,10.9,10.5,10.5,11.6],"script":[0.4,0.3,0.3,0.5,0.6,0.5,0.3,0.3,0.6,0.3,0.5,0.5,0.2,0.2,0.3],"paint":[9.8,9.9,10,9.6,9.8,10,9.9,10.1,9.3,10.2,9.8,9.9,9.4,9.6,10.8]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[277.2,274,273.1,275.3,275,274.1,275.9,274.7,275.7,275,275.5,273.1,275.8,274.3,274.4],"script":[26.4,26.5,25.6,26.5,25.9,26.7,25.9,25.7,26,26.2,25.4,25.9,25.8,26.1,26],"paint":[244.2,241.8,241.7,242.4,242.5,241.2,244.3,242.7,243.5,243.2,244.1,241.5,244,242.2,242.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.8,29.7,29.8,30.5,30.5,30,30.5,30,30.6,31.5,29.4,30.6,29.6,30.3,29.4],"script":[2.2,2.1,2.5,2.1,2.1,2.2,2.1,2.1,2.3,2.2,2.1,2.2,2.1,2.3,2.1],"paint":[27.9,26.9,26.7,27.6,27.6,27.2,27.6,27.1,27.6,28.5,26.6,27.7,26.8,27.4,26.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,10.4,10.5,9.4,9.5,10.3,9.9,11,9.5,9.4,10.3,9.7,10,10,11],"script":[7.4,8.3,8.4,7.8,7.7,8.3,8.2,8.3,7.7,7,7.8,6.9,8.8,7.9,8.9],"paint":[1.1,0.8,1.9,1.1,1.2,0.2,1.1,1.4,1,1.2,1.7,2,0.4,0.3,0.7]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6069211959838867]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2938356399536133]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3059816360473633]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6879720687866211]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.459632873535156]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.7]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"01_run1k","values":{"total":[34.8,35.1,34.9,34.9,34.7,34.5,34.6,34.7,34.7,34.4,35.1,35.3,34.5,34.6,34.9],"script":[10,10.2,10,10.1,9.9,9.9,10,9.9,10,10,10.6,10.2,9.8,10.2,9.9],"paint":[24.3,24.4,24.4,24.3,24.3,24.1,24.1,24.2,24.2,23.9,23.9,24.5,24.2,23.9,24.5]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"02_replace1k","values":{"total":[39.9,40.4,41.3,39.9,39.6,39.7,39.2,39.4,40.4,40.8,39.6,39.1,40.3,39.9,39.7],"script":[14.6,14.4,14.7,14.3,14.3,14.3,14.2,14.3,14.5,15.5,14.2,14.3,14.5,14.5,14.6],"paint":[24.8,25.5,26,25,24.7,24.8,24.4,24.6,25.3,24.8,24.9,24.3,25.3,24.9,24.6]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.9,11.6,11.4,12,13.7,11.9,11.9,13.4,11.9,12.3,10.7,11.9,11,11.2],"script":[0.9,1,1,0.3,0.2,1.8,0.8,0.5,1,0.2,0.9,0.8,0.6,0.7,0.6],"paint":[9.9,9.5,9.5,9.6,10.8,10.8,9.6,9.6,11,10.5,10.2,8.4,9.8,9.1,9.7]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.6,2.5,2.7,2.2,1.9,1.9,1.7,2.6,2.8,2.6,2.7,2.3,1.9,1.9,2,2.3,2.4,2,1.9,1.8,2.3,2.4,3,3.2,1.9],"script":[0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.9,0.9,0.4,0.5,0.4,0.1,0.1,0.5,0.1,0.2,0.1,0.1,0.1,0.9,0.9,0.1,0.8],"paint":[1.5,1.6,1.2,2,0.3,1.1,1.5,2.4,1.6,0.9,1.2,1.1,1.3,1.5,1.2,1.1,2.2,1,1.7,1.6,1.3,1,2,1.5,1]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"05_swap1k","values":{"total":[16.2,15.6,16,16,16.4,16.3,15,15.6,16.9,15,16.4,16,15.6,16.1,16.5],"script":[2.2,2.5,2.3,2.1,2.1,2.3,1.9,2.5,2.5,2.2,2.1,2.2,2.1,2.9,2.5],"paint":[12.9,11.9,12.2,12.4,13.3,13.8,12.1,11.3,13.1,11.9,13.1,12.7,12.2,11.4,12.7]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12.2,11.9,12,12,11.8,11.6,11.9,12.4,11.8,12.2,11.9,11.7,11.8,12.1],"script":[1.3,1.3,1.5,1.4,1.6,1.3,1.3,1.5,1.6,1.3,1.3,1.4,1.3,1.3,1.3],"paint":[10.2,10.2,9.7,9.8,9.8,9.7,9.4,9.6,10.2,9.6,10.1,10,9.8,9.7,10.2]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"07_create10k","values":{"total":[342.5,343,343.7,342.3,347.4,342.6,342.2,344.9,342.5,343.3,342.8,341,345,340.8,342.9],"script":[98.3,98.4,99.1,99.6,102.6,98.4,97.8,98.1,99.1,98.2,98.2,97.8,100.1,97.9,97.9],"paint":[238.1,238.7,238.7,237,238.8,238.5,238.3,239,237.7,239.3,237.8,236.3,238.8,237,237.5]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.2,42.1,42.9,43.4,43.5,43.6,43.4,43.4,42.1,43.6,43.1,43.8,43.8,44.2,42.6],"script":[14.3,14,13.9,14.2,14.8,14.3,14.6,14.8,13.5,14.2,14.7,14.3,14.4,15,13.9],"paint":[28.1,27.2,28.1,28.3,27.8,28.1,27.9,27.7,27.8,28.5,27.5,28.6,28.6,28.3,27.9]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.3,18.1,17.9,17.8,18.7,20.1,18.2,18.6,17.4,17.3,21.4,17.9,18.9,18.6,18.5],"script":[16.4,16,16.3,15.7,16.4,18.2,16.4,16.1,15.3,15.7,18.5,16.1,17,16.8,16.4],"paint":[1.1,1.7,0.4,1,0.8,1.6,0.9,1.2,1.2,1.1,1.1,0.7,0.3,0.9,1.2]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6839942932128906]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.494220733642578]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.528404235839844]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0689697265625]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.89248180389404]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1]}},{"framework":"karyon-v3.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.6]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"01_run1k","values":{"total":[51.9,53,52.3,52.1,52.6,53,52.4,52.8,53.6,51.9,52.4,52.8,52.6,52.4,52.4],"script":[27.4,28.1,27.3,27,27.5,28,27.6,27.8,28.9,27.2,27.6,27.9,27.9,27.2,27.7],"paint":[24,24.4,24.5,24.7,24.4,24.4,24.3,24.6,24.3,24.2,24.3,24.4,24.2,24.7,24.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"02_replace1k","values":{"total":[71.6,69.3,71.1,70.9,71,71.2,70.6,70.4,70.8,71,71.2,71,72.7,71.5,71],"script":[45.9,43.6,45.2,45.1,45.1,45.2,44.8,44.6,44.9,44.8,45.2,45.1,45.3,45.7,44.9],"paint":[25.2,25.2,25.4,25.3,25.4,25.6,25.4,25.3,25.5,25.7,25.5,25.4,26.8,25.4,25.6]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.2,14,14.3,14.2,13.3,14.3,14,14.2,14.2,14.8,13.7,15.8,13.9,14,14],"script":[1.4,2.1,1.3,1.3,1.9,1.8,1.7,2.1,1.5,2.3,1.7,2.1,1.8,1.7,2],"paint":[12.1,10.3,11.4,11.5,10.4,11.1,10.7,10.4,11.8,11,10.4,12.1,10.8,11.3,10]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"04_select1k","values":{"total":[11.7,11.5,10.5,12.6,12.6,11.2,11.7,12.5,12.3,12.2,12.3,10.4,10.3,11.4,10.6,11.7,10.7,11.9,11.1,11.6,12.8,10.6,11.6,10.8,11],"script":[8.4,8.6,7.8,9.1,9,8.3,8.7,8.4,9.3,8.5,9.4,7.5,7.9,8.6,7.6,8.6,8.2,8.8,7.9,8.4,9.8,8.3,8.4,7.3,7.8],"paint":[2.2,1.6,1.8,2.4,2,1.7,1.7,2.6,2.1,2.5,2,2.2,1.3,1.2,2.2,1.9,1.5,1.3,1.4,2.2,1.7,0.8,1.6,2.2,2.3]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"05_swap1k","values":{"total":[124.1,122.4,120.7,123.2,121.5,122.1,123.4,121.3,124,120,123.8,121.9,126.1,122.5,122.5],"script":[22.2,20.5,21.3,22.7,21.9,21.8,21.1,20.6,22,20.3,22.9,20.7,23.3,22.7,21.1],"paint":[98.3,100.9,97.4,99.2,98,97.7,100.8,99.1,100,98.5,98.9,98.9,100.8,98.6,99.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.9,13.6,14,13.3,13.1,13.3,13.6,13.4,13.2,13.3,13.4,13.3,12.8,13.6,12.8],"script":[1.6,1.7,2.6,1.4,1.7,1.7,1.6,1.6,1.6,1.7,1.7,1.6,1.7,1.8,1.7],"paint":[11.4,11.2,10.8,11.1,10.8,10.6,10.9,11.1,11.2,10.7,10.7,10.7,10.4,11,10.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"07_create10k","values":{"total":[510.2,509.2,505.8,508.7,509.2,508.7,508.2,508.1,505.2,518,508,506.8,507.4,511,512.3],"script":[253.4,250.4,249.7,250.8,251.6,248.2,250.5,249.4,250.1,251.3,251.1,248.9,250.1,250.9,249],"paint":[250,252.3,249.5,251.3,251.1,254.1,250.8,252.2,248.2,259.8,250.4,251.2,250.5,253.2,256.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.8,61.3,60.4,61.5,62.5,60.6,61.9,60.9,61.9,62.3,61.2,61.7,61.4,62.8,62.8],"script":[33,31.9,30.9,32.3,31.9,31.5,32.4,31.9,31.7,32.6,32.1,32,32,32.3,33.8],"paint":[28.9,28.5,28.6,28.4,29.7,28.2,28.5,28.1,29.2,28.7,28.2,28.7,28.4,29.6,28.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[38.5,38,42.4,46.4,39.8,42.3,42.5,43.3,40.7,45,41,39.1,37.9,40.1,42.4],"script":[36.7,36.1,40.6,44.1,38.1,40.3,41.1,41.4,39.3,42.9,38.3,37.4,36.2,38.7,40.6],"paint":[1.6,1.8,1.7,2.2,0.3,1.8,0.3,1.8,1.3,2,1.2,1.1,1.1,0.3,1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8441972732543945]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.622179985046387]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.600759506225586]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3311271667480469]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.27942562103271]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[70.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[89.2]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.8,26.7,26.7,26.7,26.6,26.8,27,26.9,27,27.1,26.7,26.8,27.1,27],"script":[3.8,3.7,3.7,3.6,3.8,3.6,3.6,3.7,3.8,3.7,3.7,3.6,3.7,3.8,3.6],"paint":[22.6,22.7,22.6,22.7,22.6,22.6,22.8,22.9,22.7,22.9,23,22.7,22.8,22.9,23]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"02_replace1k","values":{"total":[30.1,30,30.5,31.1,30.1,32.2,29.9,29.8,30.2,31.6,30.4,30.2,29.8,30.1,29.8],"script":[6.3,6.2,6.4,6.4,6.6,6.8,6.2,6.1,6.2,6.5,6.6,6.4,6.4,6.2,6.1],"paint":[23.2,23.2,23.6,24.1,23,24.8,23.1,23.1,23.5,24.6,23.2,23.2,22.9,23.4,23.2]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,12.7,13.1,12.8,13.1,13,13,12.5,14.1,12.7,12.9,14,13.3,13.4,12.5],"script":[1.9,1.2,1.7,1.8,1.8,1.7,1.5,1.6,1.8,1.5,1.7,2.6,1.8,1.5,1.6],"paint":[9.9,9.3,9.9,8.9,9.2,9.8,9.5,9.5,11.6,9.9,10,10.2,10,10.7,9.4]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.4,2.5,2.5,2.5,2.2,2.4,2.1,1.6,2.4,1.6,1.9,2.1,7.3,2.7,2.6,1.9,2.7,2.2,2.2,2.5,2.7,2,1.9,1.6],"script":[0.9,0.5,0.1,0.1,0.1,0.9,0.9,0.2,0.1,0.8,0.1,0.6,0.7,0.5,0.8,0.5,0.1,0.8,0.1,0.1,0.1,0.1,0.5,0.3,0.1],"paint":[1.7,1.7,2.2,1.7,1.4,0.7,1.3,1.1,1.3,1.5,0.7,0.8,1.2,1.1,1.1,1.4,1.6,1.2,1.3,1,1.4,2.2,0.7,1.4,1.4]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"05_swap1k","values":{"total":[14.8,14.2,14.4,13.8,13.8,14.3,15.1,15.7,14.8,14.6,14,15.2,15.9,13.7,15.2],"script":[1,0.9,1.5,0.9,1,0.9,1,1.7,1.1,0.6,0.9,1.1,1.2,0.9,1.2],"paint":[12.5,12.6,11.1,11.7,11.8,12.3,12.4,13,12.2,12.5,11.9,13,13.4,11.4,13]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.8,10.8,10.6,10.8,10.7,10.9,11.1,10.9,10.9,11,11.5,10.5,11,11],"script":[0.2,0.4,0.5,0.2,0.3,0.2,0.2,0.3,0.5,0.4,0.3,0.2,0.2,0.4,0.4],"paint":[9.8,9.8,9.7,9.8,10,9.6,10.1,10.3,9.8,10,10.2,10.6,9.4,10,10]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"07_create10k","values":{"total":[289.6,289,289.7,291.5,289.6,289.6,289.9,288.4,289.7,293.8,291.2,291,291.6,292.2,291.9],"script":[50.3,49.8,48.9,49.5,49.7,49,49.3,49,50,49.5,49.7,49.7,50,45.7,49.5],"paint":[233.6,233.5,235.3,236.3,234.5,235.1,235,233.6,233.9,238.2,235.9,235.7,235.7,240.7,236.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.4,30.2,30.2,30.7,29.9,29.8,30,30.2,30,31.6,30.5,30.9,30.9,30.8,30.5],"script":[3.5,3.6,3.8,3.7,3.9,3.7,3.6,3.7,3.8,3.7,3.8,3.7,3.6,3.7,3.7],"paint":[25.2,25.9,25.7,26.3,25.3,25.4,25.7,25.7,25.5,27.2,26,26.4,26.6,26.3,26.1]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.5,10.1,10,10.9,10.2,10.8,10.6,9.7,10.2,11,10.5,10.3,10.3,10.3,9.8],"script":[9,8.3,8.1,9.1,8.5,8.5,8.7,7.9,8.5,8.9,8.8,8.1,8.4,8.2,8],"paint":[0.9,1,0.9,0.7,0.2,1.9,1.7,1,0.7,0.6,1.1,0.7,0.6,1.1,1.1]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7618961334228516]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.208065032958984]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.225750923156738]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0857791900634766]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.14147663116455]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[95.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"01_run1k","values":{"total":[58.7,58.9,58.8,59.5,58.9,58.3,58.2,58.3,59.1,59.1,56.5,58.8,58.9,58.7,58.1],"script":[33.9,34.2,34,34.9,34.2,33.8,33.6,33.5,34,34.5,31.8,34,34.3,34.1,33.6],"paint":[24.3,24.2,24.3,24.2,24.2,24.1,24.1,24.2,24.7,24.1,24.2,24.3,24.2,24.1,24]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"02_replace1k","values":{"total":[86.7,86.6,85.7,89.2,86.3,88.9,87.1,88.6,88.1,87.5,84.9,87.3,89.4,87.4,86.5],"script":[61.1,61.1,60.4,62.9,60.9,63.4,61.3,62.7,62.7,61.7,59.2,61.4,67.2,62.1,61],"paint":[25.1,25.1,24.8,25.8,24.8,25.1,25.2,25.4,24.9,25.2,25.2,25.4,21.8,24.8,25.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.6,19.1,17.6,18.8,18.4,18.3,18.7,17,16.9,17.9,18.5,17.5,18.8,18.5,18.4],"script":[5.2,5.8,5.8,6.1,5.6,6,5.7,5.5,4.9,5.6,6.3,5.3,5.8,6.3,5.2],"paint":[12,12.1,10.8,10.6,11.9,11.4,11.9,10.1,10.7,10,10.9,11.6,11.8,11,11.6]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"04_select1k","values":{"total":[7.3,6.8,6.1,5.9,6.1,6.3,7.3,6.1,6.7,6.1,6.1,6,6.3,6.7,6.6,7.2,6.8,6.3,7,7.3,6.9,6.2,6.7,6.3,5.9],"script":[5.1,4.3,4,4.3,3.9,4.1,4.6,4.6,4.5,4.3,4.5,4.4,4.4,4.8,4.6,4.9,4.1,4,4.3,5.5,4.3,4.5,4.3,3.9,4.3],"paint":[1.2,1.5,1,1,2,1.1,1.9,1.3,2,1.2,0.7,0.7,1.8,1.1,1.8,1.7,2.1,1.3,2.1,1.7,2,0.7,1.3,1.3,1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"05_swap1k","values":{"total":[127.5,131.4,122.8,127.7,126.7,124.6,127,124.3,123.3,128.3,123,126.8,125.4,125.3,127.7],"script":[23.6,23,21.3,24.3,23.3,21.8,23.8,22.2,22.5,22.6,23.6,24,21.3,22.2,24.2],"paint":[101.7,105.7,100.2,101.5,102,101.1,101.2,100,99.2,104.1,97.8,100.5,102.8,101.2,102.2]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.5,13.4,13.3,13.4,13.4,13.4,13.5,13.7,13.5,13.8,13.6,13.4,13.4,13.3],"script":[2.1,2,2.2,2.2,2.3,2.2,2.1,2,2.2,2.3,2.3,2.2,2.3,2,2.1],"paint":[10.4,10.6,10.6,10.1,10.1,10.1,10.8,10.8,10.5,10.2,10.5,10.6,9.9,10.5,10.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"07_create10k","values":{"total":[472.9,471.7,474.2,473.3,473.4,474.3,469.9,473.8,473,472.5,475.7,476.5,476.1,475,472.5],"script":[219.3,218.7,219.4,217.8,218.3,218.3,215,220.4,219.9,218.5,219.5,221.7,220.6,217,218.6],"paint":[247.6,247,248.7,249.2,248.6,249.6,248.7,247.4,246.9,247.7,249.7,248.2,248.5,251.5,247.9]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.5,65.2,65.9,65.7,65.5,66.2,66.6,66,66.7,65.5,66.1,65.5,66.5,65.3,67.1],"script":[37.9,36.9,37.3,37.2,37.1,37.7,37.8,37.4,38.2,36.7,37.7,37.1,37.9,36.9,37.7],"paint":[27.8,27.5,27.8,27.6,27.6,27.8,28,27.8,27.7,28,27.6,27.5,27.7,27.5,28.6]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[33.4,32.3,34.5,31,34.5,33.4,32.4,32.6,32.3,33.2,34.7,32.5,35.2,34.5,32.7],"script":[31.5,30.4,32.6,29.2,32.6,31.6,31,30.3,30.2,31.8,33.2,31,32.9,32.2,30.7],"paint":[1.8,1.7,1.1,0.8,1.3,1.1,1.3,2.2,1.3,1.3,0.6,0.6,1.8,2.2,1.8]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.3432016372680664]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[15.287055969238281]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.3612699508667]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.097419738769531]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[114.87747192382812]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[720.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[647]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"01_run1k","values":{"total":[34.9,34.2,34.2,34.6,33.9,34.1,34.3,34.1,34.2,34,33.7,34.5,34.6,34.2,34.1],"script":[11.3,10.7,10.6,11,10.7,10.6,10.8,10.7,10.5,10.4,10.4,11.1,11.1,10.7,10.7],"paint":[23.2,23,23,23.1,22.7,23,23,22.8,23.1,23,22.8,22.8,22.9,23,22.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"02_replace1k","values":{"total":[37.7,37.9,38.5,37.5,37.7,38,37.5,38.2,39.1,39.6,38,37.8,37.4,37.9,37.9],"script":[13.2,13.4,13.6,13.3,13,13.6,13.2,13.6,14.1,13.7,13.3,13.5,13.1,13.7,13.5],"paint":[23.9,23.9,24.2,23.6,24.2,23.9,23.7,24,24.5,25.2,24,23.7,23.7,23.6,23.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.4,17.3,17.6,20.8,16.9,16.9,18.3,17.5,20,19.4,19.3,18.2,16.8,20.1,19.5],"script":[6.6,4.7,5.6,7.5,5,5,5.5,5.6,6.7,7.6,6.6,6.2,4.8,6.6,6.4],"paint":[10.4,10.7,9.3,9.9,11,9.8,10.5,10.5,10.7,9.5,10.7,9.8,10.1,12.3,10.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"04_select1k","values":{"total":[6.1,4.1,4.8,4.6,5.3,5.2,4.2,4.7,4,5.4,5.7,4.5,4.6,4.7,5.8,5.6,5.2,4.5,5.4,4.4,6.8,5,5.6,5.4,4.9],"script":[2.6,1.9,2.1,2.4,1.9,2.4,2.3,1.7,2,2.1,3.4,1.5,1.3,2.5,3.7,2.8,2.9,1.8,2.9,1.5,1.7,2.9,3.5,3.1,2.2],"paint":[1.1,1.1,1,0.4,2.5,2.6,1,2.9,1.1,2.1,2.1,2.8,2.4,1.3,1.9,2.2,0.6,2.5,1.3,2.3,2.5,1.9,0.4,1.4,2.6]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"05_swap1k","values":{"total":[121.1,120.3,121.2,118.1,120.6,120.5,119.3,122.3,121.5,121.2,118.2,116.6,122.2,120.9,118.2],"script":[22.7,22.9,23.1,20.7,22.4,23.5,22,21.2,22.4,23.4,20.7,22.2,22.9,22.1,21.8],"paint":[96.8,95.9,95.9,95.1,96.5,93.5,94.8,98.2,96.2,95.4,94.1,92.8,96.7,97.2,93.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.8,13.8,14.6,14.2,14,13.9,14,14.2,14,14,13.9,13.5,14.5,14.4,13.3],"script":[2.7,3,3.8,3,3,2.9,3,3.1,2.7,2.9,2.9,2.8,3.7,2.8,2.8],"paint":[10.4,10.1,10.2,10.4,10.6,10.1,10.2,10.5,10.4,10.4,10.5,10,10.2,10.9,9.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"07_create10k","values":{"total":[430.4,436.8,438,432.7,427.6,438.4,432.4,434.1,441.9,441.4,440.4,432,433.7,435.2,441],"script":[187,190.5,190.5,189,184.7,190.6,187.5,187.2,196.2,192.5,190.7,185.9,187.3,189.5,194.6],"paint":[237.2,240.4,241.2,237.4,237.2,241.1,238.9,240.3,239.6,242.1,243.9,239.2,240,239.6,240]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.9,38,38.5,38.2,38.3,38,38,38.6,38.2,38.2,37.8,37.9,38.6,38.1,37.5],"script":[10.1,10.2,10.5,9.7,10.2,9.9,10.1,10.5,10.3,10.5,10.2,10.3,10.2,10.3,10],"paint":[26.9,26.9,27.1,27.7,27.2,27.2,27,27.1,27.1,26.8,26.7,26.7,27.5,27,26.6]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.3,14,14.1,14,13.7,12.2,12.4,14.3,13.2,14.7,13.3,12.4,14.4,12],"script":[11.2,11.2,11.9,11.5,11.9,10.7,10.1,10.4,12.2,11.7,11.8,11.4,10.1,11.7,9.4],"paint":[0.4,0.7,1,2,1.1,1,0.6,0.5,1.5,0.6,1.9,1.6,0.9,2.1,1.9]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.154092788696289]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.806255340576172]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.366591453552246]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.644753456115723]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.58111000061035]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[179.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[31.6,31.1,31.2,31.4,31.9,32,31.3,31.8,31,31.3,31.2,31.3,31.5,31.4,31.2],"script":[6.7,6.7,6.8,6.7,7.3,6.7,6.7,6.8,6.5,6.8,6.7,6.7,6.7,6.7,6.6],"paint":[24.2,23.9,23.8,24.1,23.9,24.6,24.1,24.4,23.8,24,23.9,24,24.2,24.1,23.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[36.8,36.5,35.8,36.3,36.4,35.4,35.8,35.6,35.6,36.1,36.6,36.7,35,36,35.6],"script":[12,11.8,11.1,11.6,11.4,11.1,11.4,11.2,11.4,11.5,11.1,11.2,10.7,11.3,11.1],"paint":[24.3,24.1,24.1,24.1,24.4,23.8,23.8,23.8,23.7,24.1,24.9,24.9,23.8,24.2,23.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.5,14,14.5,15.4,15,14.8,15,13.9,15.5,14.2,14.7,14.4,14.1,16,15.2],"script":[3,3,3.7,3.9,3.8,3.6,3.6,2.7,4,2.8,3.3,3,3.1,4.3,3.8],"paint":[9.7,9.6,9.4,10.3,10.2,9.7,10.2,10.1,10.6,10.2,10.4,10.1,9.4,9.9,10]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[5.3,4.8,5.4,4.8,5.1,4.6,5.4,5,5.1,4.6,4.3,5,4.7,4.7,4.8,4.6,5.2,5.1,4.5,6.4,4.9,4.8,4.6,5.6,4.3],"script":[3,2.8,3.2,2.8,2.7,2.3,2.7,2.9,3,2.8,3.1,2.6,3.4,2,2.8,2.8,2.9,3.1,3.2,4,2.6,2.6,3,4,2.8],"paint":[1.6,0.3,2.1,1.7,1.4,1.3,2.6,2,2,1.7,0.6,1.6,1.2,2.3,1.9,1,1.2,1.8,0.7,1.2,1.3,0.4,0.9,1,1.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[16.7,16.5,15.8,15.9,15.5,17.3,17.5,16.7,16,16,15.6,16.4,16.9,17.2,16.2],"script":[2.7,2.7,2.4,2.7,2.9,3.3,3.2,3.1,2.9,2.8,2.8,3.6,2.7,3.6,2.4],"paint":[12.9,12.7,12.3,12.6,11.5,12.2,13.6,12.3,12.2,11.6,11.9,12.5,13.3,12.6,13]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.7,12.3,12.1,12.7,12.7,12.5,12.5,12.6,12.6,12.5,12.7,12.8,12.5,12.1],"script":[2.2,1.9,1.9,1.9,1.9,2.3,1.9,1.9,2.2,2.2,2.1,1.9,2.3,2.1,2.1],"paint":[9.8,10.1,9.8,9.4,9.9,9.9,10.1,10.1,9.7,9.9,9.8,9.9,9.9,9.8,9.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[316,316.2,318.6,318.6,317.2,318.6,318.2,319,316,317.9,318,317.8,317.8,313.9,317.4],"script":[69.7,69.8,69.8,69.2,69.1,69.1,70,68,68.4,70,69.4,69.4,71.2,68.9,69.4],"paint":[240.7,241,243.1,243.6,242.7,243.7,241.5,244.4,242,242.4,242.8,242.7,241.1,239.3,242.2]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,34.2,34.5,34,34.8,35.5,34.4,34.7,34.2,34.8,35,34.8,34.6,35.2,34.3],"script":[6.8,6.9,6.9,6.7,6.9,6.8,6.8,6.7,6.8,6.9,6.8,6.9,7,7,6.8],"paint":[26.8,26.4,26.8,26.4,27,27.7,26.7,27,26.4,27,27.2,27,26.8,27.2,26.5]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,16.1,18.5,18.6,16.8,19.1,16.7,17.3,17.1,17.4,19,16.2,16,17,16.5],"script":[15.1,14.3,16.6,16.1,14.7,16.7,15.3,14.8,14.7,14,16.9,13.8,13.9,14.8,14.7],"paint":[1.6,0.9,0.9,1.5,1.9,1,1.2,1.9,1.1,2.7,0.3,2.2,0.6,1.5,1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7603425979614258]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.514830589294434]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.525961875915527]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.566409111022949]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.2214879989624]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[189.6]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[48.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[232.2]}},{"framework":"lit-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[28.8,28.3,28.3,28.4,28.2,28.7,28.4,28.8,28.6,28.5,28.6,28.6,29,28.8,29],"script":[4.7,4.5,4.6,4.6,4.6,4.7,4.6,4.7,4.6,4.5,4.7,4.6,4.7,4.6,4.7],"paint":[23.6,23.3,23.4,23.3,23.2,23.6,23.4,23.7,23.6,23.6,23.5,23.6,23.9,23.8,23.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[30.3,30.6,30.6,30.6,30.8,31,30.6,31.1,30.7,30.9,31.3,30.7,30.6,30.3,30.3],"script":[6.1,6.2,6.2,6.3,6.2,6,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.1,6.1],"paint":[23.6,23.8,23.9,23.8,24,24.3,23.9,24.3,23.9,23.9,24.5,23.8,23.9,23.6,23.6]}},{"framework":"lit-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,13.2,14,13.5,13,13.7,14.4,13.3,13.8,13.5,13.2,13.7,13.7,14.1,12.6],"script":[1.8,1.7,2.3,1.8,1.5,1.8,2.5,1.7,1.5,1.8,1.3,1.9,2.3,1.7,1.8],"paint":[10,10.8,10.6,10.6,10,10,10.8,10.6,10.7,10.6,10.4,10.9,9.8,10.9,9.5]}},{"framework":"lit-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.6,4.7,4.3,6.1,6,6,5.5,5.7,6.2,5.3,5.9,5.6,5,5.3,5.3,4.8,6.2,5,5.3,5.7,6.4,5,5.5,4.9,4.5],"script":[3.4,2.5,2.2,3,3.4,2.9,3,3.2,3.6,3.4,3.6,2.8,3.3,3.2,2.5,3,3.6,2.8,2.9,3.3,3.8,2.9,3.4,2.8,2.2],"paint":[1.2,1.4,1.6,2.5,1.6,2.9,2.3,2.3,1,1,2.1,2.6,0.8,1.6,2.7,1.7,0.6,1.1,1.4,1.6,1.8,1.9,1.5,1.3,1.2]}},{"framework":"lit-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[16.9,15.9,17.2,17.8,15.9,17.8,16,16.7,17.7,17.7,17.5,15.7,17.3,16.4,18.1],"script":[2.3,2.1,2.6,2.7,2.3,2.7,1.5,2.9,2.2,3.4,1.7,1.6,2,2.5,3.4],"paint":[13.7,12.4,13.5,13,12.5,13.7,13.3,12.5,14.5,13.3,13.8,13.3,14.9,11.8,13.5]}},{"framework":"lit-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,12.8,12.8,13.4,12.5,13.4,13.1,12.9,12.5,12.3,13.2,12.2,12.3,13.3,13.4],"script":[0.9,1.9,1.8,2.4,1.5,2,2.1,1.8,1.2,1.2,1.9,1.2,1.4,1.9,2.1],"paint":[10.2,9.6,10,10.4,10.3,10.8,10.5,10.1,10.6,10.4,10.7,10.4,10.4,10.2,10.5]}},{"framework":"lit-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[303.6,302.5,304.8,306.8,305.5,303.7,304,303.9,306,305.5,303.5,305.6,303.5,303.9,302.4],"script":[51,49.8,50.2,50.5,50,51.1,50.1,50.7,51,51,49.9,51.2,50,50.3,50.4],"paint":[245.9,245.6,247.6,248.9,248.7,246,247.2,246.2,247.6,247.4,246.5,246.7,246.2,246.9,245.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.9,33.4,35,32.9,32.8,33.1,35.3,34.4,34.2,34.2,33.6,34.4,33.6,33.2,33.7],"script":[5,4.9,5.1,5,5,4.9,5,5,5,5.1,5,5.1,5.1,4.8,5],"paint":[27.2,27.6,28.8,27.2,27,27.4,29.5,28.5,28.2,28.2,27.8,28.4,27.6,27.5,27.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,12,11.8,11.5,12.3,12.3,14,13.3,12,11.7,14.2,11.4,11,12.3,11.3],"script":[9.8,9.7,9.6,10,10.4,10.4,11.6,11.1,9.8,9.3,11.8,9.5,9.7,9.9,9.4],"paint":[1.2,1.1,1.3,0.6,1.7,0.8,1.5,2,1.7,1.4,1.3,0.3,0.3,0.3,1.6]}},{"framework":"lit-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6810073852539062]}},{"framework":"lit-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.833608627319336]}},{"framework":"lit-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.887934684753418]}},{"framework":"lit-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8155946731567383]}},{"framework":"lit-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.09239673614502]}},{"framework":"lit-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[66]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[27.2,26.8,27,27.5,27.4,27.3,27.2,27.1,27.1,27.5,26.8,27.4,27,27.2,27.1],"script":[3.4,3.3,3.3,3.3,3.3,3.4,3.2,3.2,3.4,3.4,3.2,3.4,3.3,3.4,3.4],"paint":[23.5,23.2,23.4,23.8,23.7,23.6,23.6,23.5,23.3,23.7,23.2,23.7,23.3,23.4,23.4]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.9,30.2,30.2,30.2,30.3,30.1,30,30,30.2,30.1,29.9,30.1,30.6,30.2,29.9],"script":[5.7,5.7,5.8,5.8,5.7,5.7,5.6,5.7,5.7,5.9,5.6,5.5,5.7,5.7,5.6],"paint":[23.7,23.9,23.9,23.8,24.1,23.8,23.9,23.8,24,23.7,23.8,24.1,24.4,23.9,23.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.2,12.9,13.3,12.8,13.8,13,12.7,13.3,13.7,12.2,13.3,13.1,13.4,13.6],"script":[1.7,1.8,1.3,1,1.4,1.7,1.5,1,1.5,2,1.6,1.8,1.4,1,2],"paint":[10.3,10.5,11.2,10.9,9.8,11,10.6,11.4,10.5,10.6,9.6,10.5,10.5,10.8,9.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[3.2,3.6,3.7,3.2,3.9,4.3,2.9,3.1,3.1,3.8,4.6,3.7,3.4,3.8,3.7,3.6,3.2,3.7,4,3.8,2.9,4,3.7,3.2,3.4],"script":[1,1.3,1.7,1.1,1.7,2.1,1,1.2,1.2,1.7,2,1.7,1.1,1.7,1.7,1.5,1.3,1.1,1.5,1.7,1.2,2,2,1.4,1.8],"paint":[1.2,1.4,1.2,1.6,1.2,2,1.2,1.6,1.8,0.5,1.6,1.2,1.7,1.1,1.2,1.4,1.7,2.3,1.8,1.3,0.7,1.1,1.5,1,1.4]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[16.6,16.1,15.5,15.3,16.9,16.5,17.9,15.2,15.4,15.7,16.1,16.3,15.5,16.6,16.2],"script":[2.2,2.2,1.5,1.6,1.6,2.5,2.7,1.1,1.4,1.5,2.5,1.7,1.5,2.3,2.4],"paint":[13.1,12.6,13.7,12.4,13.5,12.2,13.1,12.9,12.6,13.5,12.6,13.2,12.8,13.2,12.3]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,12.2,12,12.7,12.7,12.3,12.3,12.2,13.1,11.2,11.7,13.6,13,12.9,11.9],"script":[1.5,1.5,0.9,1.8,1.8,1.7,1.6,1.6,1.8,0.6,0.7,2,1.9,1.9,0.9],"paint":[10,9.8,10.4,10,10.3,10,10.2,10.2,10.6,10,10.4,11,9.8,10.3,10.4]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[291.7,295.7,293.5,295.5,294.7,292.5,294.7,294.5,294.7,294.7,293.1,293.4,294.6,294.3,292.7],"script":[42.6,43.5,43.5,43.5,43,42.6,43.2,42.9,43,44,42.4,42.9,42.9,43.1,42.8],"paint":[243.3,245.9,244.1,245.1,245.2,243.5,244.7,244.7,245.6,244.5,244.3,244.1,245.4,244.4,243.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.6,32.8,33.7,32.3,32.1,32.1,33.8,32.5,32.5,32.2,33.1,32.3,33.5,32.7,33.7],"script":[4.2,4.3,4.3,4.2,4.3,4.1,4.3,4.2,4.4,4.2,4.4,4.3,4.5,4.4,4.5],"paint":[27.6,27.7,28.6,27.4,27.1,27.3,28.7,27.6,27.3,27.2,27.9,27.2,28.2,27.5,28.4]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.7,11.6,11.5,11.4,11.2,11.6,11.3,11.9,12,13,11.1,11,11.9,11.2],"script":[9.1,9.3,9.6,9.6,9.5,9.6,9.8,9.2,10,9.7,10.9,9.6,8.9,10.5,9.7],"paint":[1,0.6,0.9,0.7,1,1.3,0.9,1.4,1.7,2.1,1,0.3,0.8,0.2,0.2]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6114139556884766]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6828575134277344]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.708637237548828]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7824163436889648]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.035913467407227]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[29.6,29.8,29.5,29.9,29.3,29.7,29,29.8,30,29.3,30.2,29.2,30.3,30.1,29.7],"script":[5.2,5.3,5.3,5.7,5.3,5.5,5.2,5.3,5.8,5.3,5.9,5.2,5.8,5.7,5.5],"paint":[23.8,23.9,23.8,23.7,23.5,23.7,23.2,23.9,23.6,23.4,23.7,23.4,24,23.9,23.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[33.6,33,33.4,33.1,33.8,32.7,33.4,33.2,33.3,32.8,32.8,33.1,33.2,33.8,33],"script":[8.5,7.9,8.4,8.3,8.1,8.1,8.7,8.2,8.2,8.1,7.9,8.4,8.4,8.5,8.3],"paint":[24.5,24.5,24.4,24.3,25.1,24,24.1,24.4,24.5,24.2,24.3,24.2,24.2,24.7,24.1]}},{"framework":"lui-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.2,13.6,14.5,14.3,14,14.2,14.3,13.9,13.1,14.3,14.5,13.6,14.5,13.5,13.1],"script":[2.7,2.1,2.3,2.5,2.4,2.2,1.9,2.4,2.2,2.9,3.3,1.8,2.8,2.1,2.4],"paint":[10.4,10.8,11.6,10.3,9.3,10.6,10.2,10.3,9.7,10,9.9,10.7,10.7,10.3,9.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[8.8,8.8,7.9,8.4,9.2,8.3,8.7,8,8.7,8.4,9,8.4,9,8.6,8.3,8.1,9.9,8.9,8.3,8.7,8.1,9.1,8.2,8.6,9.4],"script":[5.9,6.2,5.4,5.4,6.1,5.2,5.7,5.8,5.6,5.8,6,5.2,5.7,5.9,5.8,5.9,7.2,5.9,5.7,6.1,5.6,6.1,5.7,6,6.2],"paint":[1.8,0.9,1.6,1,2.1,2,1.9,1.1,1.9,0.6,1.4,2.9,2.2,1.9,1.4,0.8,1.2,1.5,0.8,1.3,0.4,0.9,0.9,0.7,2.1]}},{"framework":"lui-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[109.7,109.5,108.1,108.6,109.6,107.1,110.1,107,109.9,108.2,109.5,107.5,107.9,107.8,107.1],"script":[10.7,11.7,12.1,11.5,11.3,11.4,12.2,10.9,12.2,11.5,10.9,10.8,10.6,11,10.6],"paint":[96.7,95.4,94.1,94.1,94.4,94.4,95.3,93.8,94.5,92.9,96.8,92.5,94.8,94.3,94]}},{"framework":"lui-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,11,11.3,11.1,12.1,12.2,12.2,12.6,12.2,11.4,11.2,11,11.5,11.6],"script":[0.5,0.6,0.6,0.5,0.6,0.5,0.6,0.6,1.1,0.4,0.6,0.6,0.4,0.6,0.4],"paint":[9.5,9.8,9.8,10.2,9.7,11.1,11.1,10.5,10.9,11.1,10.2,10,10,10.3,10.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[310.6,311.4,309.6,306.7,308.9,309.3,310.3,307.9,307.2,310.3,309.4,310.6,310.3,309.7,306.1],"script":[63,62,61.6,60.1,60.7,61.4,60.9,59.7,60,63.4,60.3,61.7,59.6,62.1,59.6],"paint":[241.1,242.6,241.8,240.2,242,240.8,242.5,242.1,240.9,240.8,242.5,242.4,244.4,241,240.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,34.9,35.8,34.7,34.5,34.4,34.9,33.9,34.7,35,34.6,34.2,35.6,34.2,34.4],"script":[5.8,5.6,6.1,6,6,5.9,6,5.8,6.2,5.5,6.2,5.9,6.1,5.7,5.7],"paint":[27.5,28.4,28.9,27.8,27.6,27.7,27.9,27.1,27.6,28.5,27.5,27.4,28.6,27.7,27.9]}},{"framework":"lui-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,11.7,12.5,12.2,11.7,11.6,12.6,12,11.9,12.1,13.6,13.5,11.4,11.5,12.8],"script":[9.9,10.3,10.3,9.8,9.6,9.7,9.8,10,9.9,9.5,11.3,11.6,9.3,9.2,10.3],"paint":[1.7,0.2,1.1,1.2,0.4,1,1.5,1.2,1.1,1.6,0.6,0.7,1,1.3,1.5]}},{"framework":"lui-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5392665863037109]}},{"framework":"lui-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.050737380981445]}},{"framework":"lui-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.02610969543457]}},{"framework":"lui-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.724003791809082]}},{"framework":"lui-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.90646457672119]}},{"framework":"lui-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"lui-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lui-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.8]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"01_run1k","values":{"total":[29,29.7,28.6,29.6,29.2,29.7,29.3,29.7,29.2,28.9,29.9,29.6,28.8,28.9,29.4],"script":[4.5,5.3,4.2,5.1,4.8,5.1,4.7,5.2,4.6,4.6,5.1,5.1,4.7,4.6,4.7],"paint":[24.2,23.9,24,24,24,24.1,24.2,24,24.2,23.9,24.3,23.9,23.8,23.9,24.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"02_replace1k","values":{"total":[32.8,32.4,32.5,32.4,31.9,32,33,32.6,32.5,33.1,33.5,33.7,33.2,32.5,32.9],"script":[8.2,8,7.8,7.8,7.5,7.5,8.1,7.9,7.9,7.5,7.9,7.7,8,7.7,7.9],"paint":[24,23.8,24.1,24,23.9,24,24.4,24.2,24,25,25,25.4,24.7,24.2,24.5]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.9,15.5,16.9,15.7,16,15.4,17.4,18.5,15.9,16.7,15.3,16.2,16.5,16.2,16.3],"script":[5,4.6,5,4.4,4.3,4.6,5.1,6.4,4.6,4.7,4.3,4.6,4.9,5,4.6],"paint":[10.5,9.7,9.3,9.9,10.8,9.5,9.2,10.7,9.9,11,10,10.3,10.5,10,9.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"04_select1k","values":{"total":[6,6.9,6.6,6.3,9.2,6.2,6.2,6.6,5.6,6.1,6.7,6.9,7.4,5.6,6.5,6.2,8.2,7.1,6.7,6.9,6.6,6.6,5.8,6.7,6.4],"script":[4.2,4.5,4.2,4.6,5.8,4.3,3.9,4.5,4,4.2,4,4.7,5.4,4.1,4.6,4.7,5.6,4.8,4.2,4.8,4.8,4.9,4.2,4.5,4.4],"paint":[1.2,2.2,1.6,0.7,2.2,1.7,1,1.5,0.7,1,1.8,2.1,1.1,1.3,0.9,1.3,0.3,1.4,1.3,1.2,1,1,0.7,1.1,1.4]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"05_swap1k","values":{"total":[18.4,18,17.1,18.2,19.2,17.1,17.5,17.3,20.5,17,16.6,21,17.4,20.4,20.4],"script":[4.4,4.4,4.2,4.8,3.9,4.3,4.3,4.3,5.8,3.8,3.8,6.2,4.2,6.8,5.3],"paint":[13.3,12.1,11.3,12,14.3,10.9,11.9,12.1,12.5,12.9,11.6,12.7,11,12.2,12.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,15.5,14.3,14,14.5,14.1,15.2,14,14,15.5,15.2,14,14.1,14.1,14.6],"script":[3.7,4.6,3.5,3.6,4,3.6,4.2,3.6,3.5,4.7,4.4,3.3,3.3,3.2,3.6],"paint":[9.9,10.1,10.2,9.8,9.8,9.9,10.1,9.8,10.2,9.8,10.2,10.1,10.2,10,10.3]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"07_create10k","values":{"total":[283,284,285.1,283.5,286.3,283.9,285.4,281.9,284.4,285,283.3,287.9,283.5,291.8,282.7],"script":[39.7,41.7,39.2,37.8,39.2,38.9,40.3,39.1,39.5,42.1,39.6,42.2,39.2,42.2,38.2],"paint":[237.6,236.7,240,239.7,241.3,239.2,239.4,237,239.4,237.1,238,239.2,238.2,243.3,238.7]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.6,34.1,33.8,34,33.8,34.1,33.9,34.3,34.3,34,33.8,33.6,33.8,33.6,33.7],"script":[6.6,6,6.3,6.1,6.2,5.8,6.2,6.1,6.4,6.3,5.9,5.7,6.2,5.7,6.1],"paint":[27.1,27.2,26.7,26.9,26.7,27.5,26.8,27.4,27.1,26.7,27,27,26.6,26.9,26.7]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,10.6,11.1,10.7,10.1,11.1,10.4,10.3,11.2,10.3,11.5,11,11.1,11,11],"script":[9.7,8.2,8.6,9,8.5,8.8,8.3,8,8.9,8.8,9.4,9.2,8.2,8.9,8.7],"paint":[0.9,1.5,1.7,1,1.4,1.4,1,2.1,0.9,0.7,1.3,0.5,2,1.2,0.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.818115234375]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.396617889404297]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.391298294067383]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4334745407104492]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.68881320953369]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[58.4]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[27.1,26.6,27.3,26.9,27,27.1,27,26.9,26.9,27.1,27.1,26.7,27.2,27,26.8],"script":[2.8,2.5,2.8,2.5,2.7,2.5,2.8,2.5,2.8,2.8,2.8,2.5,3,2.8,2.5],"paint":[23.9,23.7,24.2,24.1,24,24.3,23.8,24.1,23.7,23.9,23.9,23.8,23.8,23.8,23.9]}},{"framework":"malina-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[29.8,28.8,29,29.2,28.8,29.1,28.4,28.9,28.5,30.1,29.2,30.1,30,28.9,29.1],"script":[4.6,4.4,4.5,4.4,4.3,4.4,4.3,4.4,4.4,4.7,4.6,4.7,4.8,4.5,4.6],"paint":[24.7,24.1,24,24.4,24.1,24.3,23.7,24.1,23.7,24.9,24.2,24.9,24.8,24,24.1]}},{"framework":"malina-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,12.6,12.4,12.1,11.7,11.7,11.3,11.6,12.2,12,11.9,12.3,12.1,12.3,11.5],"script":[1.2,1.2,0.6,1,1.2,1,1,0.7,1.2,1.1,0.9,0.9,1,0.6,0.6],"paint":[9.5,10,10.3,10.1,9.2,9.1,9.4,9.3,10,9.8,9.5,9.3,9.9,10.5,10.3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[7.3,2.9,2.5,2.2,3.1,2.2,2.6,2.9,2.6,2.6,2.1,2,2.6,2.5,3.8,3.1,2.5,2.2,3.1,2.7,2.2,2.3,2.4,2.6,2.2],"script":[1.2,0.9,0.3,0.6,1.1,0.9,0.6,0.9,0.6,0.1,0.8,0.1,0.7,1,1.1,0.8,0.7,0.1,1.1,1.1,0.8,0.5,0.1,0.6,0.1],"paint":[1.3,1.3,2,0.9,1.2,0.7,1.3,1.4,1.5,1.3,0.7,1.1,1,1.1,1.5,1.5,1.4,1,1.3,0.8,1.3,1,2.1,1.9,0.8]}},{"framework":"malina-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[14.9,15.2,14,14.4,14.5,14.4,14.1,15.2,15.2,14.9,14.7,15.1,14.5,14.4,14.4],"script":[1.6,1.7,0.7,1.1,1.1,1,1,1.2,1.3,0.7,1,1.7,1.3,1.5,1],"paint":[11.8,12.1,11.9,11.6,12.4,11.9,12.1,13,12.3,13.3,12.6,12.1,11.8,11.5,12.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.2,11.2,11,11.4,10.9,11.7,11.2,11.3,11.5,11.3,11.4,11.4,11.1,11.5],"script":[0.6,0.7,0.7,0.7,0.9,0.7,1,0.8,0.9,0.7,0.7,0.7,0.7,0.8,0.7],"paint":[9.9,9.7,10,9.7,9.8,9.9,10.3,10,9.8,10.2,10,10,10.1,9.8,10]}},{"framework":"malina-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[281,280.1,276.9,278.4,278.6,279.9,280.6,279.2,279.8,279.1,280.2,279.8,280.1,280.1,280.9],"script":[30.6,29.4,28.5,29.7,29.1,30.2,30.1,29.4,29.2,29.7,30.2,30.1,30,29.5,29.7],"paint":[244.3,244.8,242.3,242.9,243.8,244.1,244.7,243.7,244.7,243.6,244,244,244.1,244.8,244.8]}},{"framework":"malina-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.1,31.6,32.4,31.6,31.5,31.2,31.4,31.4,32.3,31.2,32.6,31.4,31.1,31.1,31.6],"script":[3.2,3.7,3.7,3,3.4,3.1,3.4,3.1,3.2,3,3.7,3.4,3,3,3.3],"paint":[27.2,27.1,28,27.8,27.4,27.4,27.3,27.6,28.4,27.5,28.1,27.2,27.3,27.3,27.5]}},{"framework":"malina-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.5,8.7,8.9,10,8.9,9,9,8.7,8.9,9.7,9.4,9.1,9,9.1],"script":[6.8,7.9,6.3,7,7.9,6.8,7.4,6.6,6.9,7.2,7.4,7.9,7.1,7.3,7.2],"paint":[0.9,0.2,1.2,1.1,1.7,1.1,0.2,1.2,1,0.2,0.8,0.2,0.9,1,0.9]}},{"framework":"malina-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5474233627319336]}},{"framework":"malina-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6144838333129883]}},{"framework":"malina-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6324567794799805]}},{"framework":"malina-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7767248153686523]}},{"framework":"malina-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.144177436828613]}},{"framework":"malina-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.3]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[30.3,30.3,30.1,30.7,30.4,30.7,30.3,30.4,29.7,30.5,30.4,29.9,29.8,30.5,30.4],"script":[6.1,6,5.9,6.3,6.1,5.9,5.9,6.1,5.5,6,6.1,5.6,5.6,5.6,5.8],"paint":[23.7,23.7,23.6,23.9,23.8,24.3,24,23.8,23.6,23.9,23.8,23.7,23.6,24.3,24]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[32,32.2,33.2,32.2,32.4,32,32.1,33.1,31.6,32.7,31.7,31.6,32.4,32.5,32.1],"script":[7.7,7.9,8,7.7,8.2,7.8,7.8,8.2,7.6,8.2,7.7,7.5,7.8,8.1,7.7],"paint":[23.6,23.7,24.5,24,23.7,23.6,23.7,24.3,23.4,24,23.4,23.5,24.1,23.9,23.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,15.2,15.1,16,15.9,15.2,16.1,15.8,15,15.3,15.4,15.3,16.2,15.5,14.8],"script":[4.2,4.3,4,4.5,4.6,4,4.2,4.3,3.8,4.1,4.2,4.4,4.5,4,4],"paint":[9.8,9.1,10.1,10.1,10,9.6,10.7,10.7,10.1,10.6,10.1,9.9,10,10.4,9.4]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.4,3.2,1.9,2.2,2.8,2.3,2.4,2.4,2.2,2.4,3.4,2.7,1.9,2.9,2.1,2.2,2.5,3,2.2,2.9,2.6,2.4,4,2.6,3.4],"script":[0.2,1.1,0.6,1,0.1,0.9,0.5,0.8,0.9,0.5,1.1,0.5,0.1,0.9,0.1,0.1,0.1,0.9,0.1,0.9,0.9,0.5,0.9,0.7,0.9],"paint":[1.3,1.2,0.7,1.1,1.4,1.3,1.1,1.5,0.7,0.3,1.3,1.4,1,1.4,1,1,1.8,1.1,1.9,1.3,1,1.8,1.9,1.4,1.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.7,13.7,13.6,14.3,14.3,14.6,13.4,13.2,13.8,14,13.6,13.1,16.3,14.1],"script":[0.5,0.1,0.8,0.6,0.7,0.7,0.1,0.5,0.1,0.1,0.7,0.1,0.1,0.9,0.9],"paint":[12.2,12.7,12.1,12,11.7,12.1,11.9,11.8,12.3,12.4,12.3,12.5,11.8,13.6,12]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.5,10.4,11.6,10.5,10.7,10.4,10.7,10.6,11,10.4,10.5,10.7,10.6,10.5],"script":[0.4,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1,0.3,0.3,0.2],"paint":[9.5,9.7,9.6,10.9,9.8,9.6,9.7,10,9.7,10,9.7,10,9.8,9.7,9.9]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[297.7,298.4,297.7,302,299.5,299.3,300.9,302.2,298.3,297.9,299.5,300.9,301,298.6,300.6],"script":[50.4,49.7,49.1,49.6,50.2,50,51.4,49.8,49.8,49.4,48.9,50.3,51.2,49.3,49.5],"paint":[241.6,242.4,242.3,246.6,243.2,243.5,243.1,246.1,242,242.9,244.7,244.6,243.6,243.4,245]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,32.3,33.3,32.6,33.3,32.5,32.6,32.2,33.3,34.8,32.7,32.5,34,33.5,33.2],"script":[5.4,4.8,5.4,5.3,5.4,5.4,5.1,4.7,5.4,5.7,5.3,5.3,5.6,5,4.8],"paint":[26.7,26.9,27,26.5,26.9,26.2,26.4,26.8,27,28.2,26.5,26.3,27.5,27.5,27.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.6,14.3,13.9,13.4,12.7,14.5,13.2,13.4,15.1,15.2,13,13.6,13.4,13],"script":[11.3,11.3,11.6,11.7,11.1,10.9,12,11.4,11.6,13,13,10.9,11.5,11.6,10.9],"paint":[1.3,0.9,1.7,1.5,0.9,1,1,0.7,0.3,0.3,0.9,1.2,1.2,1.6,1.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7605495452880859]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.739330291748047]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.924798011779785]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0990715026855469]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.59368133544922]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[65.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[81.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[42.4,42.3,42.3,42.7,41.8,42.1,42.5,42.1,42.5,41.8,42.2,42.8,42.6,42.9,42.1],"script":[18.2,18.3,18.3,18.3,17.8,18.1,18.1,17.8,18.1,17.8,18.1,18.4,18.4,18.4,17.8],"paint":[23.7,23.4,23.5,23.8,23.5,23.5,23.9,23.8,23.7,23.4,23.6,23.8,23.6,23.9,23.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[45.5,45.1,46.7,44.9,45.3,44.7,45.2,45.1,45.4,44.8,45.5,45.2,46.3,45.6,45],"script":[20.6,20.4,20.6,20.3,20.7,20.2,20.8,20.2,20.3,20.2,21.2,20.5,20.8,20.5,20.4],"paint":[24.3,24.1,25.5,24,24,24,23.8,24.4,24.4,24,23.8,24.2,24.9,24.5,24]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,12.7,12.4,12.8,12.2,12.4,11.6,12.7,12.6,13.1,12.5,12.4,12.8,12.1,12.1],"script":[1.2,0.9,0.8,1,1.1,0.6,1,1.3,1.2,1.4,1.7,1.2,1.4,0.6,0.9],"paint":[10.8,10.7,10.3,10.4,10.8,10.6,10,10.3,10.3,9.7,9.3,10.2,10.1,10.4,10.3]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[1.5,1.5,2.5,2.1,1.8,4.9,2.4,2.5,2.1,1.5,1.8,2.5,1.6,2.6,2.1,1.8,2.5,2.4,2.1,2.1,2.5,2.5,1.8,3.5,3.3],"script":[0,0,0.1,0,0,0,0.1,0.5,0,0,0,0,0.1,0.9,0,0.3,0.1,0.2,0.1,0,0.1,0.1,0.7,0,0.1],"paint":[1.2,1.3,1.4,0.3,0.9,1.8,1.5,1.9,1.6,1.3,0.9,1.3,0.6,0.6,1.9,1.3,1.5,1.4,1.2,1.9,2.3,0.6,0.9,1.3,1.3]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[13.4,13.8,13,13.2,12.9,13.2,12.8,13,15.5,12.6,14,13.3,13,13,13],"script":[0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.6,0.3,0.5,0.5],"paint":[11.8,12.4,11.3,11.5,12.5,12.1,12.4,12.7,13.5,11.6,13.3,11.6,11,11.6,11.4]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.7,10.5,10.5,10.9,10.5,10.7,10.5,10.8,10.6,10.6,10.4,10.4,11,10.8],"script":[0.1,0.5,0.1,0.3,0.4,0.3,0.3,0.3,0.4,0.3,0.4,0.3,0.1,0.3,0.5],"paint":[9.3,9.6,10,9.6,9.9,9.6,9.5,9.6,9.7,9.8,9.6,9.6,9.5,10.1,9.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[420.1,420,425.1,423.9,425.6,416.3,421.5,421.4,421.1,417.9,421.8,416,424.3,424.4,418.3],"script":[178.3,178.5,179,180.4,182,175.1,181.4,180.7,178.3,177.9,179.8,175.6,180.2,182,179.4],"paint":[235.9,236,239.7,237.6,237.6,235.6,234.7,235,237.1,234.6,235.7,234.1,238.1,236.6,233.4]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.3,46.4,46.1,46.6,45.8,46.5,46.1,46.2,45.8,45.2,46.2,46.1,46,46.4,46.2],"script":[18.4,18.5,18.5,18.6,18.4,18.8,18.5,18.5,18.3,18,18.9,18.3,18.3,18.7,18.9],"paint":[27,27,26.7,27.1,26.5,26.7,26.7,26.8,26.6,26.3,26.5,26.8,26.8,26.8,26.3]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.5,14.2,14.3,14.5,15.4,15.4,15.2,15,13.8,15.3,17.3,15.2,15.5,14.6,16.1],"script":[12.7,12.1,12.2,11.9,13.3,13,12.7,12.4,11.5,12.9,14.8,12.6,13.3,12.6,13.8],"paint":[0.5,0.9,0.9,1.7,0.6,1.2,1.5,1.7,0.9,0.6,1.1,0.7,1.1,1.2,1.1]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8450231552124023]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2199954986572266]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2493724822998047]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2311458587646484]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.726144790649414]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[96.3]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"01_run1k","values":{"total":[30.3,30.2,29.3,29,29.3,29.6,29.6,30.2,29.8,28.6,29.8,29.5,29.4,29.6,29.4],"script":[5.2,5.4,5,5,5,5.1,5.1,5.5,5.2,4.8,5,5,5.1,5.1,5],"paint":[24.5,24.2,23.9,23.6,23.9,24,23.9,24.1,24.1,23.4,24.2,24.1,23.8,23.9,23.8]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"02_replace1k","values":{"total":[31.4,31.6,31.7,31.8,31.8,31.6,31.8,31.7,31.3,31.5,31.6,31.7,31.9,31.7,32],"script":[7.1,7.1,7.2,7.2,7.2,7,7.2,7.1,6.9,7.1,7.2,7.3,7.1,7.2,7.1],"paint":[23.7,23.9,24,24,24.1,24,24,24,23.8,23.8,23.8,23.9,24.3,24,24.3]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.1,21.2,21.2,19.9,21.5,19.1,19.3,20.5,20.2,19.8,21,20.2,20.6,19.5,19.3],"script":[7.8,8.8,7.9,7.7,8,7,7.3,8,8.1,7.1,8.4,7.9,8,7.7,7.5],"paint":[9.4,10.9,11.1,10.2,10.8,9.5,10.5,9.5,10.3,10.3,10.4,10.2,10.6,9.8,9.6]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"04_select1k","values":{"total":[9.8,10.9,11,10.7,10.9,10.7,10.8,10.6,10.8,10.4,10.6,10.7,10.4,10,9.9,10.5,10.2,9.8,10.6,10.1,10.3,10,10.4,10.3,9.5],"script":[6.8,8.2,8.2,7.8,8.2,7.5,7.8,7.6,7.6,7.9,8,7.6,8,6.7,7.3,7.8,7.3,7.5,8,7.2,7.8,7.5,7.3,7.9,6.6],"paint":[2,1.2,1.3,1.5,1.8,2.5,2,0.4,2.2,1.5,1.9,1.5,1.5,1.7,1.4,1.1,2,1,1.3,1,1.3,0.7,1.2,1.4,1.6]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"05_swap1k","values":{"total":[21.7,20.8,23.3,22.1,21.8,21.1,22.4,22.6,23.9,22.4,23.1,23.4,22.3,22.6,22.1],"script":[7.4,7.3,8.1,7.6,7.2,7.3,7.4,8.3,8.6,7.3,8.6,8,8,7.8,7.7],"paint":[11.8,12.4,13.4,13,12.9,12,13.8,12.9,13.3,12.1,13.4,13.5,11,11.8,12.5]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,14.6,14.5,14,14.9,14.1,14,14.2,14.8,14.4,14.4,14.2,14.4,14.3,14.3],"script":[4.2,4,3.7,3.4,4.1,3.3,3.7,3.7,3.7,3.9,3.5,3.9,3.8,3.6,3.7],"paint":[9.9,9.6,9.9,10,10.2,9.5,9.7,9.7,10.5,9.6,10.2,9.8,9.8,10.1,9.6]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"07_create10k","values":{"total":[300.4,299.9,302.3,299.2,301.6,301.1,301.4,299.3,301.3,300.6,301.2,298.6,298.2,301.1,299.3],"script":[51.6,51.2,51.9,51.5,50.9,51.7,51,50.4,51.9,51.1,52.2,51.4,51.2,51.2,51.7],"paint":[243.4,242.6,244.6,242,244.4,243.5,244.4,242.9,243.9,243.7,242.9,241.4,241.1,244,241.4]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.8,35.2,35.1,34.8,35.4,34.8,34.9,34.5,35,35.7,35.2,35.2,35.7,35,35.2],"script":[7.3,7.1,7.1,7,7.4,7.1,7.1,7.1,7.1,7.6,7.2,7.2,7.1,7.1,7.1],"paint":[26.7,27.2,27.1,27,27.1,26.8,26.9,26.6,27,27.3,27.1,27.1,27.7,27,27.2]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.9,9.7,9.2,10.1,9.8,10,10,9.5,10.4,10.3,11,9.5,10.2,9.8],"script":[7.6,7.7,8.2,7.9,8.3,7.7,8.3,7.4,8.2,8.4,8.4,8.6,7.6,8.2,7.8],"paint":[1.1,0.7,0.6,0.2,0.6,0.8,1.1,0.7,0.7,1,0.7,1.4,0.2,0.9,0.9]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5112600326538086]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.366612434387207]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3897857666015625]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6706056594848633]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.613160133361816]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.8]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.9]}},{"framework":"mettle-v0.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"01_run1k","values":{"total":[31.2,30.4,30.4,30.6,31,30.6,30.4,30.9,30.4,30.9,30.9,31.2,31.3,31,30.9],"script":[6.7,6.5,6.5,6.7,6.5,6.6,6.5,6.6,6.5,6.6,6.6,6.8,6.9,6.6,6.6],"paint":[23.9,23.5,23.4,23.3,23.9,23.4,23.2,23.8,23.4,23.6,23.7,23.8,23.8,23.8,23.7]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"02_replace1k","values":{"total":[32.5,32.3,33,32.8,32.8,32.3,32.4,32.3,32.8,32.3,33.4,32.7,32.5,32.8,31.9],"script":[8.7,8.4,8.6,8.5,9,8.5,8.5,8.2,8.2,8.4,9,8.2,8.3,8.4,8.1],"paint":[23.3,23.3,23.8,23.7,23.2,23.3,23.4,23.5,24,23.4,23.8,23.9,23.6,23.9,23.2]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.5,12.4,11.2,11.6,10.9,11.4,11.4,12.1,11.6,11,11.7,12.8,11.2,12.1],"script":[0.6,0.5,0.7,0.6,0.2,0.6,0.8,0.8,0.5,0.8,0.6,0.9,1.1,0.6,1.1],"paint":[10.2,10.3,10.5,9.5,9.9,9.4,9.3,9.7,10.3,9.8,9.2,9.6,9.6,9.9,10.1]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"04_select1k","values":{"total":[3.6,3,1.9,2.4,2.4,2.5,2.4,1.9,1.9,1.7,1.3,2.4,1.8,2.3,1.8,1.6,2.2,1.9,2.4,2.5,2.2,2.3,2.4,1.9,1.9],"script":[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],"paint":[1.9,1.7,1.6,2.2,1.3,2.3,1.8,1,1,1,0.7,1.8,1,2.1,1.2,1.5,1.7,1.7,1.8,2.4,1.3,2.1,1.3,1.1,1]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"05_swap1k","values":{"total":[12.6,13.3,13.7,13.5,13.1,14.2,13.9,13.8,13.9,13.4,13.1,13.3,15.2,13.2,14.1],"script":[0.1,0.1,0.1,0.5,0.1,0.1,0.9,0.4,0.4,0.1,0.1,0.1,0.9,0.1,0.1],"paint":[11.1,11.7,12.4,11.6,11.8,12.8,12,12.5,12.3,12.2,12.4,11.7,12.7,11.6,13.1]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,10.6,10.7,10.3,10.4,10.2,10.4,10.3,10.3,10.4,10.5,10.4,10.4,10.4],"script":[0.3,0.3,0.2,0.1,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.1,0.2,0.1,0.3],"paint":[9.7,9.5,9.4,10.1,9.6,9.7,9.3,9.5,9.6,9.6,9.7,9.8,9.6,9.8,9.4]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"07_create10k","values":{"total":[312.5,310.7,313.4,312.5,311.4,310.6,314.1,312.3,310.5,312.7,312.6,310.4,312.2,311.1,313.1],"script":[71,69.3,70.4,69.9,71.6,70,70.8,69.9,70,69.5,70.2,69.8,69.6,70.6,69.5],"paint":[235.9,235.9,237,236.9,234.4,235,237.3,236.7,234.9,237.3,236.8,234.9,236.6,234.4,237.7]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,34.9,35.5,35.1,35.7,35.5,35.9,35,34.9,36.2,34.7,35,35,34.8,34.9],"script":[7.5,7.4,7.3,7.2,7.3,7.7,7,7.2,7.2,7.4,7.3,7.4,7.3,7.4,7.6],"paint":[27,26.6,27.3,27.1,27.6,26.9,28,27,26.8,27.9,26.5,26.7,26.8,26.5,26.5]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.5,8.9,8.4,8.3,8.6,8.3,8.2,8.4,9.3,9.1,8.9,8.8,8.5,8.6,8.8],"script":[6.8,6.5,6.7,6.9,7,6.8,6.6,6.8,6.7,7.2,7,6.5,7.5,6.8,6.5],"paint":[1.5,1.5,0.2,0.2,0.4,0.6,1,0.2,1.3,0.9,0.2,1.3,0.9,0.7,2.1]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6095428466796875]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.376523017883301]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3685836791992188]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8799009323120117]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.91963768005371]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"michijs-v2.1.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.1]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[25.4,25.7,25.2,25.7,25.4,25.2,25.3,25.2,24.9,25.3,25.3,25.5,25.2,25.4,25.1],"script":[1.5,1.6,1.5,1.5,1.5,1.4,1.6,1.5,1.6,1.6,1.4,1.5,1.5,1.5,1.5],"paint":[23.5,23.7,23.3,23.8,23.5,23.4,23.4,23.3,23,23.4,23.6,23.6,23.3,23.5,23.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[27.7,28.1,27.9,28.6,27.8,27.6,27.7,27.4,28.1,27.5,27.4,27.4,27.7,28,27.6],"script":[3.4,3.4,3.4,3.4,3.5,3.3,3.4,3.3,3.4,3.3,3.3,3.4,3.3,3.3,3.2],"paint":[23.9,24.3,24.1,24.7,23.9,23.9,24,23.8,24.3,23.9,23.7,23.7,24,24.3,23.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.7,11.3,11.1,11.6,11.9,11.3,11.4,11.6,14.2,11,11.3,11.5,11.9,11.1],"script":[0.9,0.3,0.6,0.1,0.7,0.5,0.6,0.1,0.1,0.9,0.8,0.1,0.6,0.6,0.1],"paint":[9.6,10.2,10,9.4,9.8,9.7,9.1,10.6,10.1,12,9.3,9.7,10,9.9,9.8]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.1,1.9,2.4,3.1,1.7,2.7,2.4,1.6,2,2.8,2.5,2.4,1.7,1.9,1.7,2.3,2.4,1.8,1.5,2.3,2.9,2.1,2.4,2.4],"script":[0.1,0.7,0.1,0.6,0.1,0.1,0.1,0.6,0.1,0.1,0.8,0.1,0.1,0.2,0.1,0.1,0.7,0.1,0.8,0.1,0.1,0.9,0.1,0.1,0.8],"paint":[1.2,1.3,0.7,1.7,1.2,0.7,2.2,0.5,1.4,0.9,1.8,2.3,1.5,1,0.7,0.7,1.5,2.2,0.3,1.3,2.1,1.8,1.9,2.2,1.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.6,13.6,13.7,13.5,14.5,13.9,14.3,14.2,15.5,13.6,13.9,14.2,15.1,13.9],"script":[0.3,0.7,1,0.6,0.9,0.7,0.2,0.9,1.2,1.5,0.2,0.2,1.4,0.8,0.6],"paint":[12.2,12.4,11.5,11.5,11.5,12.5,12.2,12.1,11.4,12.8,12.5,12,11.8,12.3,11.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.6,11,10.3,10.6,10.7,10.5,10.8,10.2,10.7,10.3,10.5,10.6,10.4,10],"script":[0.1,0.2,0.1,0.1,0.2,0.2,0.2,0.1,0.1,0.4,0.3,0.1,0.1,0.1,0.1],"paint":[9.9,9.9,10.3,9.5,9.8,9.5,9.6,10.1,9.6,9.7,9.5,9.7,10,9.7,9.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[267.5,266,264.6,264,266.1,267.5,266.6,265.5,266.6,267.4,265.7,267.8,265.7,265.1,264.8],"script":[16.4,18.3,16.4,16.8,16.8,17.6,17,16.7,17.5,16.9,16.8,18,16.6,17.2,16.6],"paint":[244.2,241.9,242.3,241.2,243.5,242.9,243.4,242.8,243.4,244.7,243,244,243.3,241.7,242.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.2,28.3,28.5,28.3,28.8,28.3,28.5,28.9,27.9,29.2,28.5,28.2,28.1,28.2,27.8],"script":[1.6,1.7,1.6,1.5,1.7,1.5,1.7,1.6,1.5,1.8,1.6,1.6,1.6,1.5,1.5],"paint":[26,25.9,26.1,26,26.4,26.1,26.1,26.5,25.7,26.6,26.1,25.9,25.8,26,25.7]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.2,9.6,8.8,9,9.6,9.4,9.5,9.3,9.2,9,8.7,9.5,9.2,9],"script":[6.6,7.3,7.3,7.2,7.2,7.8,7.3,8,7.4,7.4,7.3,6.9,7.3,6.6,7.2],"paint":[1.5,1.1,2.1,1,0.7,1.6,1.9,0.4,0.2,1.7,0.2,0.3,1.4,1.6,0.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6189432144165039]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0460901260375977]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0765275955200195]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.772984504699707]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.236895561218262]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.3]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[26.1,25.8,26.2,25.9,25.9,26.1,25.9,26,25,26,26,25.9,25.9,25.9,26.2],"script":[2.1,2.3,2.3,2.2,2.1,2.3,2.2,2.3,2.2,2.3,2.3,2.2,2.1,2.2,2.2],"paint":[23.6,23.2,23.5,23.3,23.4,23.4,23.3,23.3,22.5,23.3,23.4,23.3,23.5,23.3,23.6]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[28.4,27.9,28.3,29.3,28.3,28.3,28.3,28.9,28.4,28.5,28,28.1,28.3,28.1,28.6],"script":[4.1,4,4.1,4.1,4,4,3.9,4.5,4,4.1,4,4,4.4,4.1,4.2],"paint":[23.8,23.5,23.8,24.8,23.9,23.9,24,23.9,23.9,23.9,23.5,23.7,23.5,23.6,24]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,13.2,12.1,11.1,11.9,11,11.8,12.2,11.4,11.8,12.2,11.5,11.6,11.8,11.6],"script":[0.9,0.9,0.8,0.1,0.6,0.1,1.3,0.1,0.1,0.5,1.1,0.5,0.1,0.9,0.6],"paint":[10.3,10.7,9.8,9.9,9.6,8.9,9.3,11,9.4,10.2,9.8,10.6,10.4,9.9,9.8]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.2,1.8,2.3,2.5,2.1,2.3,2.3,2.4,1.6,3,2.4,2.3,2.3,2.9,1.6,2.8,2.1,2.1,2.4,2.2,2.7,2.9,1.9,2.1,2.4],"script":[0.1,0.4,0.6,0.1,0.1,0.1,0.1,1,0.1,0.8,0.1,0.1,0.5,0.1,0.1,0.5,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[1.2,1.3,1.1,2.3,1.9,2.1,1.8,1.3,1.4,1.3,1.4,1,1.8,1.6,1,1.4,1,0.3,1.2,1.3,1.9,1.9,1,1.9,2.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.4,13.3,13.5,13.1,13.9,13.3,13.8,13.8,13.5,13.4,13.2,12.9,13.7,13.8],"script":[0.6,0.1,0.3,0.7,0.1,0.7,0.5,0.1,0.3,0.4,0.1,0.1,0.1,0.6,0.1],"paint":[11.8,12,11.4,11.8,11.1,12.2,10.9,12.7,12.4,11.6,12.1,11.7,11.3,12.5,12.8]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.5,10.6,11.3,10.4,10.4,10.3,10.4,10.8,10.5,10.4,10.7,10.6,10.4,10.4],"script":[0.2,0.2,0.2,0.1,0.1,0.1,0.4,0.2,0.3,0.1,0.2,0.4,0.3,0.1,0.1],"paint":[9.3,9.5,9.6,10.8,9.8,9.7,9,9.6,9.4,9.7,9.6,9.7,9.8,9.8,9.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[273.3,274.3,273.2,274.1,274.5,276.7,275.7,276.5,274.4,274.5,274.3,274.1,275.3,274.3,279],"script":[27.9,27.2,27.5,28.3,27.2,27.8,27.9,27.8,27,29,28.6,27.5,27.3,27.7,28.5],"paint":[239.8,241.2,240.2,239.9,241.5,242.6,241.7,242.7,241.3,240.1,240.1,240.6,242.2,241,243.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.3,28.8,28.7,28.6,28.6,29.4,28.7,29.1,29.3,29.7,28.8,29.6,29.3,28.8,28.6],"script":[2.2,2.3,2.2,2.2,2.1,2.2,2.2,2.2,2.2,2.2,2.1,2.4,2.3,2.1,2.2],"paint":[26.3,25.8,25.8,25.8,25.8,26.4,25.8,26.2,26.4,26.8,26,26.5,26.3,26,25.6]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,10.1,9,9.5,9.5,9.4,9.1,10.4,10.1,9.8,10.6,10,9.3,10.8,9.7],"script":[7.6,8,6.9,7.3,7.6,7,7.9,8.2,8.2,7.5,9.1,7.9,7.5,8.5,8],"paint":[0.4,0.3,0.2,0.2,0.8,1.3,0.2,1.5,0.9,1,0.7,0.6,0.8,1.5,0.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6328868865966797]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.442901611328125]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4191856384277344]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.832916259765625]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.178543090820312]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.9]}},{"framework":"miso-v1.4.0-keyed","benchmark":"01_run1k","values":{"total":[48.3,45,49.4,47.7,47.6,48.1,55.5,42.2,49.6,49.1,48.6,47.1,48.3,46,41.9],"script":[17.3,17.4,18.1,17.7,17.5,17.8,18.1,18.2,18.2,17.7,17.7,17.9,18,17.7,18],"paint":[23.3,23.3,23.7,23.4,23.5,23.5,20.3,23.6,23.7,23.9,23.3,23.4,23.1,23.1,23.5]}},{"framework":"miso-v1.4.0-keyed","benchmark":"02_replace1k","values":{"total":[63.5,60.3,61.7,60.7,62.8,61.2,58.9,62.7,63.5,61.9,59.9,61.1,62.9,62.9,60.1],"script":[31.2,31.7,33.1,31.7,32.1,31.4,31.6,31.6,32,32.1,31.4,32.2,31.9,32.2,32.4],"paint":[24.4,24.3,24.3,24.2,24.6,23.9,24.2,24,24.5,24.1,23.6,24,24.3,24.4,24.4]}},{"framework":"miso-v1.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[64.2,64.3,65.4,49.4,48.5,64.9,64.7,48,63.9,65,62.9,65.5,64.9,49.3,62.2],"script":[34.2,33.2,34.7,35.3,34.9,34.4,33.3,35,33.5,35.6,33.4,34.4,33.7,34.2,33.9],"paint":[13,13.8,12.4,12.3,12.7,13.7,14.2,12.7,15,13.7,12.9,12.4,13.2,14.5,13]}},{"framework":"miso-v1.4.0-keyed","benchmark":"04_select1k","values":{"total":[41,40.3,43.2,39.4,45.7,41.4,39.2,40.8,39.3,40.6,40.7,40.1,39.8,44.1,42.4,42.7,40.1,45.5,39.1,40,41.3,44.4,39.7,46.1,44],"script":[35.5,34.6,37.5,33.3,38.6,35.6,34.2,36.9,33.8,35.6,34.4,35,34.2,35.6,35.7,36.9,33.9,35.1,33.9,35.1,34.4,35.7,34.6,40,35.3],"paint":[2.4,3.5,1.6,3.8,3.7,3.8,2.5,2.7,3.2,3.1,1.9,3.6,3.7,2.7,4.3,3,3.9,2.9,3.2,2.2,3.6,3.4,2.6,3,2.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"05_swap1k","values":{"total":[49.3,62.8,63.4,62.8,63.7,47.5,65.6,47.2,64.6,64.8,65.1,61.4,48.5,45.6,65.1],"script":[31.9,30.3,31,30.1,28.5,30.3,32.3,29.9,30.5,31.6,30.7,28.6,29.6,28.9,31.2],"paint":[15.7,16,15.6,16.4,17,15.8,15.7,16.1,16.7,15.8,15.7,14.4,15.2,15.3,15.4]}},{"framework":"miso-v1.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[40.7,40.4,36.3,37.6,39.5,42.9,42,36.2,33.8,37.8,37,36.4,34.2,35,36.7],"script":[16.4,15.1,16.1,16.5,17.4,17.5,16.9,16.2,15.9,15.8,16.7,15.5,17.5,15.6,15.3],"paint":[12.4,12.1,12.4,12.4,11.9,12.6,12.7,12.4,12.3,12.9,12.2,12.6,12.6,11.8,12.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"07_create10k","values":{"total":[431.3,428.5,428.1,430.2,432.5,432,432.3,430.4,428.7,431.3,428.5,430.3,433.8,431,430.5],"script":[181.3,179.9,181.2,182.5,183.7,182.1,182.8,182.4,184.6,181.4,176.3,180.5,184.5,181.8,180.9],"paint":[239.9,238.3,238.4,238.2,239.2,239.9,238.2,243.5,240.7,240.4,242.9,240.3,239.8,238.2,240.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.9,61.4,61.4,66.9,64.7,66.8,66.4,63,61.7,66.5,65.1,68.1,69,61.9,63.2],"script":[27.6,27.3,27.5,27.2,29,28.3,27.2,28.6,27.9,28.3,27.7,27.5,28.5,27.9,27.5],"paint":[28.3,28.3,28.3,28.3,29.9,28,28.2,28.5,28.1,28.3,27.8,28.7,28.3,28.4,28.4]}},{"framework":"miso-v1.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.3,40.4,44.2,40.4,41.7,44.3,46.5,21.2,40.3,41.3,40.5,41.9,41.1,40.8,42],"script":[18.3,17.2,18.1,17.9,17.6,18.1,17.7,18.5,16.6,17.4,17.3,17,16,17,17.7],"paint":[3.1,2.1,2.2,2,2.4,2.4,1.9,1.3,2.2,2.1,2,2.4,2.5,2.3,2.4]}},{"framework":"miso-v1.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.5686044692993164]}},{"framework":"miso-v1.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.166836738586426]}},{"framework":"miso-v1.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.603864669799805]}},{"framework":"miso-v1.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.1569242477417]}},{"framework":"miso-v1.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.693281173706055]}},{"framework":"miso-v1.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[489.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"01_run1k","values":{"total":[31.4,30.9,31,30.8,30.7,31,30.8,30.9,31,31.1,31.3,31.2,31.1,31.7,30.3],"script":[6.5,6.3,6.5,6,6.3,6.3,6.4,6.2,6.5,6.2,6.4,6.5,6.2,6,5.6],"paint":[24.2,24,23.9,24.2,23.8,24.1,23.9,24.2,23.9,24.4,24.3,24.2,24.3,24.9,24.2]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"02_replace1k","values":{"total":[35.2,35.2,36.7,34.6,34.9,34.6,34.5,34.6,34.7,34.4,34.2,34.6,35.3,36.6,34.5],"script":[11.2,11.2,11.1,11.1,11.3,10.9,11,11.1,11.1,10.9,10.8,11.2,11.2,11.1,10.9],"paint":[23.5,23.3,25,22.9,23,23.1,22.8,22.9,23,22.9,22.9,22.8,23.5,24.9,23]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.7,23.2,23.4,24,24.2,23.5,23.3,24.1,22.4,24.6,22.9,22.4,23,23.9,24.5],"script":[6.2,6.7,6.5,6.7,7.8,6.7,6.1,6.7,6,7.4,6.7,6.4,7.3,6.9,6.8],"paint":[14.4,14.1,14.7,15.7,14.2,13.9,15.7,15.6,14.8,14.7,14.6,14,12.8,14.4,15.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"04_select1k","values":{"total":[12.2,12.1,12.5,12.4,12.8,12.2,12.7,12.5,12.4,12.8,12.8,12.5,13.2,12.8,11.9,12.3,12.5,12.9,12.3,12.4,12.7,12.5,12.6,13.2,12.4],"script":[6.2,6.3,6.3,6.4,7.1,5.2,7.1,6.7,6.5,6.1,6.7,5.8,6.7,6.7,6.2,6.5,7,5.8,5.5,6.5,6.5,6.9,6.1,6.6,6.1],"paint":[5.2,4,4.6,4.1,3.5,4.7,3.8,3.5,3.7,4.7,4.6,4.9,4.9,4.1,4,4.3,3.9,5,5.3,4.3,3.8,4.1,4.8,5.2,4.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"05_swap1k","values":{"total":[21.9,21.8,22.5,21,22.2,22,22.5,21.6,21.9,22.8,22,21,21.5,22.9,21.7],"script":[5.8,6,6.8,6.6,5.9,6,6.4,6.3,5.5,6.9,5.9,5.2,6,5.9,6],"paint":[13.8,13.6,12.9,12.8,14.2,13.3,13.3,13.3,14.5,14.1,14.9,14.1,13.6,14.7,13]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.2,15.6,15.3,14.8,15.1,15.1,14.8,15.1,14.7,15.8,15.3,14.9,15,15.4,14.7],"script":[3.5,3.4,3.6,3.7,3.5,3.5,3.4,3.6,3.6,3.6,3.2,3.4,3.9,3.6,3.5],"paint":[11,11.6,10.9,10.1,10.9,10.9,10.6,10.7,10.1,11.3,11.5,10.5,10.6,11.3,10.5]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"07_create10k","values":{"total":[305,303.3,308.5,313.6,305.4,306.4,308.5,306.9,308,306.9,309.1,308.9,306.3,309.9,304],"script":[53.8,53.6,54.4,54.6,54.8,53.5,53,53,55,54.4,54.9,54.5,55.1,55.2,53.7],"paint":[244.3,242.7,247.6,252.4,243.7,246.2,248.7,247.1,246.2,246.3,247.4,247.3,245,248,243.2]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.4,38.1,38.3,38.6,38.7,38.3,37.5,38.6,38.5,38.3,37.8,38.3,38.5,38.2,38.6],"script":[8.9,9.3,9.2,9.4,9.6,9.3,9,9.7,9.2,9.3,9.2,9.3,9.5,9.3,9.4],"paint":[28.6,27.9,28.2,28.2,28.2,28.1,27.6,28,28.3,28.1,27.7,28.1,28.1,28,28.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.3,14.9,12.8,13.2,13.4,13.6,13.7,13.4,13.5,14.2,13.4,14,13.2,13.7],"script":[11.1,11.3,12.8,11.5,11.3,11.9,11.3,11.8,12,11.1,11.9,11.7,11.8,11.1,11.6],"paint":[1.5,1.1,1,0.7,1,0.2,0.7,0.8,1.2,1.9,1.9,1.1,1.5,0.2,0.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5716743469238281]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.368659019470215]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3979063034057617]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7181177139282227]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.22053050994873]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"01_run1k","values":{"total":[34.5,35.2,34.7,38.1,32.7,34.4,38.1,35.6,32.6,31.7,33.8,33.9,38.1,35.4,37.8],"script":[6.5,7,7,7.3,6.9,7,6.8,7.4,6.5,6.6,6.9,6.4,7,6.5,6.6],"paint":[23.3,23.9,23.4,24.2,24.3,23.7,23.7,23.8,24,23.8,23.7,23.9,23.4,23.6,23.9]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"02_replace1k","values":{"total":[37.1,37.6,36.9,38.9,38.5,37.1,37.2,37.2,39.3,38.3,35.9,36.5,36.8,38.4,38.9],"script":[9.9,9.2,9.1,9.4,9.2,8.7,9.1,8.9,9.7,9,8.9,9.3,9.2,8.7,8.9],"paint":[23.6,24,23.8,23.9,24,24.5,24.1,24.7,24,24.3,24.5,24.4,24.3,23.5,25]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[36.1,37.4,37.3,38.4,38.4,36.6,36.5,37.4,21.9,20.7,39.2,37.5,37.3,35.4,37.8],"script":[8.3,8.7,9.4,8.8,10,8.5,8.4,9.1,8.9,9.4,11,8.5,9.9,8.1,9.6],"paint":[11.3,11.6,11.7,13.6,11.5,12,12.1,12,12.7,10.3,11.6,12.3,11.1,11.4,9.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"04_select1k","values":{"total":[14.9,10.6,10.7,12,10,15,9.9,14.9,10.3,13.8,9.4,12.2,13.7,9.8,13.5,10.9,13.4,14.2,12.6,10.7,11,12.5,10.2,10.7,15.5],"script":[6.6,6.6,7.1,7,7.7,7.4,7.6,7.5,8,7.6,7.3,6.8,7.8,7,6.4,6.7,7.4,7.3,7,7.7,7.1,6.9,7.3,7.9,6.9],"paint":[1.5,0.9,2.8,1.6,1.4,1.5,1.7,2,1.4,2.1,1.5,2.2,0.4,1.9,2.9,0.9,1.7,1.8,1.8,1.9,1,1.5,1.4,1.8,2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"05_swap1k","values":{"total":[23.1,36.9,24.1,38.1,38,38.2,38.3,38,36.5,38.5,37.6,38.1,38.9,39.2,37.2],"script":[7.4,6.8,7.1,7.6,7.9,7.7,6.4,7.2,6.4,8.1,7.3,6.5,8.9,8.1,7.2],"paint":[12.6,12.6,15.4,13.8,14.3,13.7,14.6,14,13.2,14.2,14,14.9,13,14.2,13]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.8,17.3,13.4,13.7,16.6,12.7,15.2,16.1,13.7,13,17.6,15.3,15.4,16.2,16.1],"script":[3.7,3.6,3.3,3.9,3.1,3.5,3.4,3.4,3.7,3.5,3.7,3.4,3.5,3.4,3.3],"paint":[9.4,9.4,9.5,9.7,9.5,9.1,9.2,9,9.9,8.8,8.7,9.4,9.1,9.4,9.1]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"07_create10k","values":{"total":[321.1,317.7,321.2,319.3,320,318.7,319.8,320.9,312.6,316.1,317.2,314.9,321.2,324.6,320],"script":[77.8,74.8,77.1,74.7,74.1,74.1,74.5,74.9,73.7,75.2,77.6,74.3,75.3,75.2,74.6],"paint":[234.7,239,240.7,237.7,236.1,236.2,236.8,239.5,236,238,236.9,235.4,237.1,239.9,239.5]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.1,43.7,43.5,44.2,38.6,43.4,44.7,44.4,38.3,42.9,43.3,38.6,38.1,38.7,43.4],"script":[10.2,10.1,10,10.1,10.2,10,10.1,9.8,9.9,9.8,10.1,10,10,9.9,10],"paint":[27.1,28.1,28,27.8,28.1,28,27.6,28,27.8,28.4,27.7,28.1,27.8,28.5,28]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11,28,12.5,27.1,27.6,12.2,28.8,28.7,27.6,9.9,11,27.2,10.4,11.4],"script":[9.6,8.9,10.8,9.6,9.4,9.4,9.3,10.6,10.4,9.7,8,8.7,9.4,9,8.9],"paint":[0.9,1.6,1.1,0.3,1.5,1.6,0.3,1.6,1.8,1.1,1.9,1.4,1.6,0.3,0.3]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6379928588867188]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.070364952087402]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.475386619567871]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9619464874267578]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.19459247589111]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"01_run1k","values":{"total":[28.5,28.5,28.4,28.5,28.4,28.9,28.2,28.2,28,28.1,28.3,28.7,28.3,28.3,28.1],"script":[4.8,4.9,4.8,4.8,4.9,5.2,4.7,4.7,4.7,4.7,4.7,4.7,4.8,4.7,4.8],"paint":[23.2,23.2,23.3,23.3,23.2,23.2,23.1,23,22.9,23,23.2,23.6,23.2,23.2,22.8]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"02_replace1k","values":{"total":[32.4,32.4,32.4,31.8,31.8,32,32.2,31.9,32.4,32.5,32,31.8,31.6,31.8,31.8],"script":[8.4,8,7.8,7.9,7.4,7.6,7.9,7.6,7.6,7.9,7.7,7.8,7.4,7.6,7.9],"paint":[23.5,23.7,24,23.3,23.9,23.9,23.7,23.7,24.2,24.1,23.8,23.5,23.6,23.7,23.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,13,11.4,12.2,12,12.2,13,12.3,14.1,12.4,12.2,12.7,12.7,11.9,12.7],"script":[1.4,1.4,1,1.6,1,1,1.2,1.1,1.5,1.1,1.1,1.4,1.3,1.2,1.5],"paint":[9.6,11.4,9.1,9.9,10,9.6,10.2,9.6,11.5,10.6,9.8,9.9,10.7,9.7,10.1]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.4,2.5,2.4,2.6,2,2.6,2,2.5,2.6,2.4,1.6,2.7,2.4,2.4,2.4,2.6,2.6,2.5,2.3,2.7,2.7,2.5,2.5,2],"script":[0.1,0.9,0.1,0.1,0.5,0.1,0.6,0.1,0.5,0.1,0.1,0.1,1.1,0.7,0.1,0.1,0.6,0.9,0.6,0.6,0.8,0.6,0.1,0.1,0.1],"paint":[2,1.3,1.2,2.2,1.4,1.1,0.6,0.9,1.2,2.1,1.3,1.4,1.5,1.5,1.8,0.4,1.5,0.8,0.4,1,1.4,1.5,1.4,2.3,1.1]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"05_swap1k","values":{"total":[15.7,15.5,16,15.7,15.3,15.4,15.1,14.6,15.9,14.9,15.6,15.2,15.3,15.2,14.9],"script":[1.9,1.1,2.1,1.8,2.3,1.5,1.7,1.5,1.8,1.5,1.5,1.5,2.2,1.8,1.3],"paint":[12.9,13.1,12.9,12.6,12.4,12.9,12.6,11.6,13.3,11.6,12.8,12.8,12.2,12.4,12.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.3,11.1,11.3,12,11,11.2,11.2,10.9,11,11,11,11.1,11.2,11],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6],"paint":[9.9,10.1,9.7,10.1,10.5,9.8,10,9.7,9.4,9.5,9.6,9.7,9.9,9.9,9.8]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"07_create10k","values":{"total":[297.2,298.3,298.6,298.4,297.3,298.3,294.4,295.8,296.5,300.9,298.4,297.8,293.5,296.9,297.6],"script":[51.9,56.1,54.6,57.3,55.6,55.7,53.9,55.4,54.2,57,54.9,56.1,53.2,56,55.7],"paint":[239.5,236.7,238.2,235.5,236.3,236.9,235,234.7,236.5,238.2,237.6,236.1,234.5,235.4,236.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.4,32.8,33.6,33,33.6,33.7,32.8,32.9,34,33.2,33,33.1,33.2,33.3,33.5],"script":[5.3,5,5.5,4.8,5.3,5.4,5.3,5.3,5.5,5.4,4.8,5.4,5.3,5.1,5.6],"paint":[27.2,26.8,26.9,27.2,27.4,27.4,26.6,26.6,27.7,27,27.6,26.8,27.1,27.2,26.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.5,9.1,9.7,10.5,10.6,10.4,10,11,10.3,9.3,11.2,10.1,9.9,10.4,10.1],"script":[8.4,7.2,8.2,8,8.4,9,7.9,8.3,8.2,7.7,9,8.2,7.8,7.9,8.2],"paint":[1.6,1.3,0.2,0.4,1.1,0.2,0.9,1,1.8,0.5,2,1.1,1.5,1.2,1.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8982038497924805]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.015995025634766]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.049654960632324]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.201371192932129]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.85549831390381]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[71.9]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.4,30.4,30.8,30.5,30.3,31,30.9,30.4,30.6,30.6,30.7,30.2,30.3,30.5],"script":[6.1,6,6,6.1,6,6.1,6.1,6.1,6,6.1,6.2,6.1,5.9,6,6],"paint":[24.3,24,24,24.2,24.1,23.9,24.5,24.3,23.9,24.2,24,24.2,23.9,23.9,24]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33,34.8,34.2,33.8,33.3,33.2,33.5,33.4,33,33.2,33.4,33.4,33.3,33.4],"script":[8.3,8.4,9.4,8.5,8.6,8.6,8.6,8.4,8.5,8.3,8.5,8.5,8.5,8.8,8.8],"paint":[24.3,24.1,24.9,25.2,24.7,24.3,24.2,24.7,24.4,24.2,24.3,24.5,24.4,24,24.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,14.1,14,13.4,14.4,14.3,14.9,14.2,13.6,14.4,13.9,13.9,15,14.6,14.3],"script":[2.3,3.2,2.5,2.5,3.2,2.9,3.2,3,2.7,3.2,2.9,2.8,3.1,2.8,2],"paint":[10.3,10.5,9.7,9.9,9.7,10,11,10,9.6,9.9,10.1,10.2,10.9,10.7,11.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"04_select1k","values":{"total":[7.5,6.6,6.2,6,6.1,5.5,6.8,7.7,7.2,7.1,6.9,6,6.1,6.6,5.7,6.4,6.6,6.3,6.1,7.6,6.5,6.6,6.3,5.8,6.5],"script":[5.6,4.5,4.5,4,4.3,4,4.4,5.4,4.5,5.1,5.2,4.1,3.5,4.5,4.2,4.2,4.2,4,4.1,5.6,5.1,4,4.4,4.3,4.1],"paint":[1.3,1.2,1.6,1.5,1.7,1.4,2.3,1.5,2.3,1.4,1.5,0.9,1.7,1.2,1.4,0.8,1.4,2,1.9,1.2,1.3,2,1.8,0.7,1.4]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"05_swap1k","values":{"total":[19,18.8,18.9,18.5,18.6,18.6,18.7,19.6,18.7,19,19,17.9,18.3,18.1,18.2],"script":[5.1,5.1,5.1,5.1,5.3,4.9,4.6,6,4.9,5.2,5.3,4.7,5.1,4.5,4.8],"paint":[13.1,12.7,11.8,12,11.9,12.6,13,12.1,12.8,12,12.5,12.5,11.7,12.6,12.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,13,13.1,13.2,12.8,12.9,12.9,12.8,13.1,13.1,14,12.9,13.3,13.3,13.1],"script":[2.5,2.6,2.4,2.4,2.4,2.4,2.5,2.4,2.7,2.4,2.8,2.5,2.5,2.7,2.5],"paint":[9.8,9.5,10,10.1,9.7,9.7,9.9,9.5,9.7,10.1,10.7,9.8,10,10.2,10]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"07_create10k","values":{"total":[388.4,392.8,386.7,388.1,388.1,388.6,388.3,387.6,387.7,388.7,389.5,388.8,387.8,394.6,388.2],"script":[147.2,149.1,147.2,147.4,147.8,146.1,146.6,146.9,146.8,147.7,147.1,148.2,147.9,146,146.9],"paint":[235.2,236.2,233.3,234.6,233.8,236.2,235.2,234.6,234.8,234.9,235.2,234.5,233.6,242.5,234.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49,49.1,49.1,49.2,48.9,49.1,49.3,49.7,49.7,48.8,49,48.9,49,48.5,48.8],"script":[19.9,20.2,20.6,20.3,20.3,19.7,20.5,20.4,20.6,20.1,20.1,20.1,20.3,20.1,19.9],"paint":[28.3,28.1,27.6,28.1,27.7,28.5,28,28.5,28.3,27.9,28.1,28.1,27.9,27.6,28]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.2,17.9,17.8,16.8,18.6,16.2,17.8,18.5,17.3,16.4,18.4,18,18.9,16.4,16.5],"script":[15,16.3,16.5,15.2,16.4,15.5,16.6,17.5,15.8,15.1,16.5,16.5,17.3,14.5,15.4],"paint":[0.8,0.3,0.7,1.5,2.1,0.6,0.3,0.3,0.6,1.2,1.4,0.9,1.4,1.8,0.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.836533546447754]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.761117935180664]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.764520645141602]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.286153793334961]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.50405502319336]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[232.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[66.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[297.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"01_run1k","values":{"total":[42.3,33,34.8,35.5,37.4,37.7,36.2,35.9,34.2,33.8,35.5,34.3,30.7,36.8,33.6],"script":[26.3,26.9,27,27,26.3,27.5,27.1,26.9,27.6,27.3,26.9,26.9,27,27.3,27],"paint":[22.2,22.4,22.7,22.4,22.1,22.5,22.6,22.3,22.8,22.6,22.4,22.4,22.9,22.7,22.4]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"02_replace1k","values":{"total":[46.8,42.5,43.5,40,39.1,40.7,38.6,36.5,37,42,35.9,38,41.8,43.2,39.3],"script":[32.9,32.8,32.5,32,32.1,32.2,32.1,31.1,31.9,32.4,32.1,32.6,31.8,31.6,32],"paint":[24.3,24,23.6,23.3,23.4,23.5,23.3,22.9,23.5,23.8,23.3,23.6,23,23,23.4]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[60.4,44,60.1,60.1,60.8,60.5,44.4,43.5,44.3,60.3,61.9,60.8,60.5,60,59.5],"script":[37.1,36.6,38.1,37.7,38.1,36.4,37.6,35.4,36.5,38.1,39.3,36.9,38.6,37.8,37.2],"paint":[12.7,12,11.8,11.9,11.3,13.2,11.6,13.8,13.8,12.3,12.4,12.8,11.7,13.2,13.1]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"04_select1k","values":{"total":[36.3,39.2,35.5,36.7,36.1,36.5,35.1,35.5,35.2,35.1,36,35.1,38.4,35.7,36.5,35.9,35.8,34.4,34.6,37.3,36.5,35,36.2,34.8,35.4],"script":[30.6,31.6,30.6,31.2,31,30.7,29.4,29.7,29.4,29.6,30.8,30.3,32.5,30.7,30,29.9,30,28.8,29.9,29.4,31,29.6,30.6,30,29.6],"paint":[2,3,2,3.1,1.8,3.4,2.2,3.3,1.8,1.8,3,3.4,2.7,2.4,2.7,2.2,4.9,2.8,2.7,2.5,2.7,2.2,2.1,3.2,2.8]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"05_swap1k","values":{"total":[164.1,142.1,158.6,163,148.5,144,143.8,161.6,143.4,145.2,160.7,162.4,161.3,160.1,158.7],"script":[128.9,124.9,126.5,129.5,133,127.8,127.1,129.2,126.8,128.2,127.5,128.5,129.4,125.8,126.9],"paint":[99.2,96.2,95.6,101.6,100,99.3,100.3,99.8,100,98.7,99,96.6,96.3,97.2,96.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[72.3,73.3,76.5,73.8,75.3,73.6,77.6,76.1,74.8,78.8,73.5,72.9,72.8,72.3,71.4],"script":[22.1,22.1,22.1,21.3,21.1,21.6,21.7,22.1,21.8,21.7,22.5,21.9,21.6,21.5,21.2],"paint":[48.3,48.7,48.3,47.6,48.2,48.6,49.8,48.5,48.5,49.2,48.9,47.9,48.7,48.6,48.2]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"07_create10k","values":{"total":[322.2,314.6,318.5,315.5,317.8,313.6,317.4,317.9,317.4,317,322.8,314.9,315,314.6,318.5],"script":[271.8,270.7,275,271.2,272,272,273,272.9,272.3,270.7,278.9,271.3,272.2,271.8,274.7],"paint":[242.3,243.9,244.5,242.8,243,242.4,242.6,243.6,243.5,241.9,245,241.7,240.9,241.9,244]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.6,40.4,47.1,40.9,41.3,45.9,47.4,41.2,45.6,40.4,41.3,46,46.8,40.6,47.1],"script":[34.9,35.2,34.5,35.4,35.8,35.7,35.3,36,35.3,35.3,36.1,35.5,36.1,35.5,35.2],"paint":[26.7,26.9,26.3,26.8,27.1,27,26.8,26.9,26.6,26.5,27.1,26.8,27.3,26.5,26.5]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[41,19.1,22.1,41.3,18,42.5,42.1,40.1,19.4,42,21,40.9,18.4,40.8,19.7],"script":[16.8,15.9,16.7,17,15,17.2,16.2,15.6,15.3,17,17.6,15.8,15.7,16.1,15.5],"paint":[1.5,1.8,2.5,1.2,1.9,2.2,2.4,2.6,2.3,2.3,1.5,2.4,2,2.7,2.4]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.4767541885375977]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.85682487487793]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.015353202819824]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.6582107543945312]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.3599796295166]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[115.7]}},{"framework":"owl-v2.5.1-keyed","benchmark":"01_run1k","values":{"total":[34.3,29.5,29.1,34.6,34.5,30.4,32.5,28.9,30,34.5,28.7,30,29.7,29.6,29],"script":[4.4,5.7,5.1,4.9,4.7,4.5,4.9,4.5,4.7,4.9,4.5,5.6,5.1,5.8,5],"paint":[23.6,23.6,23.8,23.4,24.2,24.2,23,24.2,23.9,23.5,24.1,24.2,23.8,23.6,23.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"02_replace1k","values":{"total":[31.8,31.6,31.5,32.7,35.3,31.9,32.1,31.3,33.9,31.2,31.6,30.7,32.1,35.2,32.6],"script":[7.7,7.5,7.3,7.1,6.8,7.8,7.8,7.6,7.3,7.1,7.5,7,7.5,6.7,6.9],"paint":[23.8,23.7,23.8,24.4,23.9,23.8,24,23.5,24.9,23.8,23.7,23.5,24.2,23.3,23.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.4,19.3,17.7,18.5,18.4,19.1,19.5,19.4,17.8,32.4,18.1,18.3,18.5,17.9,18.9],"script":[7.6,7.7,7.1,6.8,7.3,5.9,7.6,7.8,6.9,6.5,6.8,6.9,6.5,6.8,6.5],"paint":[12.8,10,10.3,10.2,10,10,11.1,9.4,10.8,9.8,10.8,9.9,10.7,9.9,10.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"04_select1k","values":{"total":[7.6,7.6,7.8,9.4,8.3,7.3,7.5,7.7,7.3,7,6.5,7.2,6.9,8.5,7.1,7.7,6.7,7.1,7.6,7.3,8.9,6.6,7.9,6.8,7.9],"script":[5.1,5.5,5.9,4.8,4.6,5.6,5.2,4.9,5.1,5.1,5,4.9,4.8,4.6,5,4.9,5.1,3.8,5.4,4.5,5.5,5,5.2,3.8,5.9],"paint":[1.3,1.5,1,2,1.4,1.6,1.5,1.1,1.7,0.9,1.4,1.6,2,1.2,1.8,0.7,0.7,1.2,2,2.4,1.7,1.4,2.2,2,1.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"05_swap1k","values":{"total":[20.3,17.8,20.1,20.5,18.7,18.2,18,19.5,17.6,34.6,19.8,17.7,19.1,17.4,21.4],"script":[5.2,5.4,5.6,5.2,4.9,4.7,4.7,4.8,4.7,5.1,6.2,5.2,4.8,5.5,5.1],"paint":[12.8,11.2,13.2,14,13.2,13.4,11.8,13.7,11.9,13.4,13.5,12.4,12.7,11.7,13.6]}},{"framework":"owl-v2.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.4,14.5,14.5,14,14.5,14.1,14.6,15.1,14.4,14.5,14.3,14.4,14.5,13.9,13.9],"script":[4.8,5.1,4.6,4.6,4.9,4.5,5.2,5.3,4.8,4.9,4.8,4.9,4.8,4.6,4.5],"paint":[9.3,9,9.4,9.3,9.4,9.4,8.9,9.5,9.4,9.5,9.2,9.3,9.1,8.9,9.3]}},{"framework":"owl-v2.5.1-keyed","benchmark":"07_create10k","values":{"total":[298.7,298.9,298.3,302.4,296.7,297.5,301.6,298,300.7,298.8,300,301.2,297.3,297.4,297.9],"script":[49.6,49.2,49.5,51.9,48.6,49.6,51.4,50,50.2,52,51.8,52.4,50,50.2,51],"paint":[245.3,246.1,245.8,246.8,244.3,244.8,247.3,244.6,246.5,243.6,245.2,245.7,244.4,244.1,243.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.2,34.6,38.9,34.6,35.3,34.8,34.8,34.6,35.7,38.6,34.7,38.9,34.5,34.9,35.5],"script":[6.2,7.4,6.7,7.5,7.8,6.6,7.7,7.5,7.7,6.2,7.2,6.6,7.5,7.5,7.5],"paint":[26.3,26.8,27.1,26.8,27.2,27.3,26.9,26.7,27.7,26.5,27.2,26.7,26.6,27.1,27.6]}},{"framework":"owl-v2.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.4,11.4,11.4,11.2,9.8,25.9,10.8,26.1,10.8,10.9,10,26.6,26.9,10.8,27.9],"script":[8.6,9.6,9.8,9.3,7.4,8.5,9,8.5,8.6,8.9,7.7,8.6,8.8,9,10],"paint":[0.7,1.1,0.6,0.6,1.4,0.3,1.6,0.3,1.9,1.7,0.2,0.7,1.4,0.9,1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8773784637451172]}},{"framework":"owl-v2.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.424036979675293]}},{"framework":"owl-v2.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.452005386352539]}},{"framework":"owl-v2.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2984561920166016]}},{"framework":"owl-v2.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.908504486083984]}},{"framework":"owl-v2.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[79.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[99.2]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.2,29.6,28.7,28.7,28.4,28.5,28.6,28.5,28.9,28.5,28.6,28.5,29,28.6,28.7],"script":[5,5.1,4.7,4.8,4.5,4.4,4.6,4.5,4.7,4.5,4.5,4.4,4.6,4.5,4.8],"paint":[23.8,24,23.6,23.6,23.5,23.6,23.6,23.7,23.8,23.6,23.7,23.7,24,23.7,23.6]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"02_replace1k","values":{"total":[31.9,31.7,31.3,31,31.1,31.4,31.5,31.2,32.1,31.5,31.6,31.3,31.2,31.8,31.4],"script":[6.9,7,6.8,6.9,6.9,7,7,6.8,6.9,7,6.9,6.9,6.8,7,6.8],"paint":[24.4,24.1,23.9,23.6,23.7,23.8,24,23.9,24.6,23.9,24.2,23.9,23.8,24.2,24.1]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.4,13.5,13.3,13.5,13.1,13.9,13.7,14.6,13.8,13.3,13.3,14.3,14.1,14.3],"script":[1.9,1.1,1.2,0.6,1.1,0.7,1.4,0.9,1.8,1.2,1.4,1.3,1.4,1.2,1.2],"paint":[10.3,10.7,11,11.9,11.1,11.3,11.4,10.1,11.8,11.3,11.1,10.8,11.8,11.7,11.7]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"04_select1k","values":{"total":[4,1.7,2.6,2.2,3.1,2.3,2.5,2.7,2,2.2,1.9,2.4,2.6,2.8,2.4,2.4,3,2.8,2.8,2.6,2.3,1.8,2.7,2.7,1.6],"script":[0.1,0.1,0.1,1,1,1,0.1,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.8,0.5,0.9,0.1,1,0.5,0.1,0.5,0.8,0.8,0.1],"paint":[2.3,0.7,2,0.7,1.5,1.1,1.8,2.5,0.7,1,0.9,1.4,1.7,1.6,1.5,1.1,1.4,2.5,1,1.3,0.3,1.2,1.1,1.2,1.4]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.4,14.7,14.4,14.6,13.9,14,14.3,14.3,13.6,15.3,15.2,14.6,14.1,14.8],"script":[0.2,0.6,0.6,1.3,1,1.1,1.1,1.1,1.1,0.9,1.2,1.1,0.9,1.3,0.6],"paint":[12.5,12.3,13.2,11.7,12.3,11.8,11.6,12.5,11.5,11.3,13,13.1,12.4,11.6,13.3]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.8,11.3,10.7,10.9,11.8,10.9,10.3,10.5,11,10.7,10.8,10.7,11,10.6],"script":[0.4,0.4,0.9,0.3,0.4,0.3,0.4,0.4,0.2,0.1,0.1,0.4,0.3,0.1,0.2],"paint":[9.9,9.7,9.9,9.9,9.8,10.7,9.9,9.3,9.7,10,9.9,9.9,10,9.7,9.7]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"07_create10k","values":{"total":[306.7,303.6,304.1,306.7,304.4,305.9,303.9,302.9,303.7,302.2,302,303.3,304.7,302.2,305.4],"script":[55,53.4,54.3,54.4,53.7,53.5,53.9,54.3,54.1,53.2,53.7,54.2,53.9,53.8,53.8],"paint":[245.1,244.2,243.8,246.3,245.1,246.3,244.4,242.8,243.3,242.7,242.6,242.8,243.9,242.4,245.6]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.8,34.1,33.3,33.7,33.6,34.9,33.6,34.2,32.9,33.9,35.1,33.8,34,33.9,33.7],"script":[5,5.2,5,4.9,5.3,5.2,5.1,5.2,4.9,5.3,5.2,5.2,5.1,5.1,5.3],"paint":[27,27.9,27.6,28,27.5,28.9,27.6,28.1,27.3,27.8,28.9,27.7,28,27.9,27.6]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.5,11,9.8,10,11,9.5,9.4,10.5,10.7,10.6,11.7,10.6,10.9,10.7,10.2],"script":[9,9,8.3,7.7,8.7,7.1,7.5,8.3,8.9,8.3,9.6,8.3,9.2,8.6,9.1],"paint":[0.6,1.7,1.1,1.3,0.3,1.4,0.6,1.1,0.8,1.3,1.1,1.3,1.3,0.9,0.9]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.596318244934082]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.152416229248047]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.260669708251953]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9447021484375]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.028545379638672]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.3]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.9]}},{"framework":"pota-v0.17.177-keyed","benchmark":"01_run1k","values":{"total":[30.1,29.2,28.9,28.9,29.7,29.2,29.4,28.8,29.5,28.4,29.2,29.5,29.8,29.6,28.8],"script":[5.2,4.7,4.6,4.6,5.2,5.1,5,4.7,4.8,4.6,4.8,4.8,5.2,5.2,4.6],"paint":[24.3,24.1,23.9,23.9,24,23.5,24.1,23.8,24.3,23.4,24.1,24.3,24.1,23.9,23.8]}},{"framework":"pota-v0.17.177-keyed","benchmark":"02_replace1k","values":{"total":[31.3,32,31.6,32.7,31.7,31.4,31.2,31.7,31.4,31.1,31.6,31.7,31.4,31.6,31.5],"script":[7.5,7.6,7.6,7.6,7.8,7.7,7.4,7.5,7.5,7.3,7.5,7.6,7.5,7.6,7.5],"paint":[23.3,23.8,23.5,24.5,23.3,23.1,23.3,23.6,23.4,23.2,23.5,23.5,23.3,23.4,23.5]}},{"framework":"pota-v0.17.177-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,12.5,12.1,11.2,12.4,12.2,12.7,12.9,12.7,11.7,12.2,12.1,12.6,12.7,12.3],"script":[0.9,0.9,0.7,0.5,1.3,1.3,1.1,1.5,0.7,0.2,0.9,0.6,1.3,1.5,1],"paint":[11.1,10.4,10.5,9.1,10,9.9,11.4,10.4,10.9,10.9,10,10.4,10.2,9.9,10.4]}},{"framework":"pota-v0.17.177-keyed","benchmark":"04_select1k","values":{"total":[3.1,2.8,2.2,1.5,5,2.1,2.7,2.4,2.5,3.1,2.3,2.2,1.9,2.1,3.2,2.2,2.4,2.2,2.4,1.8,1.8,3,2.1,2.6,2],"script":[0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.6,0.6,1,0.1,0.1,0.1,0.1,0.9,0.1,0.7,0.1,0.7,0.5,0.5,0.9,0.1,0.1,0.1],"paint":[2,2.6,1.7,1.3,1.4,1.9,2.4,1.7,1.4,1.9,1.1,1.5,1.6,1,2.2,1.9,1.5,1.5,1.6,0.7,0.7,1.7,2,2.4,0.7]}},{"framework":"pota-v0.17.177-keyed","benchmark":"05_swap1k","values":{"total":[16.9,16.4,17,17.4,17.4,19.5,16.3,17.5,16.7,17,17.2,17.6,16.5,17.6,16.4],"script":[3.3,2.8,2.8,2.5,3.4,3.3,2.7,3.5,3.3,3.5,3.7,3.7,3,3.2,3],"paint":[12.4,12.1,13.1,13.4,12.9,14.8,12.8,12.7,12.5,12.5,12.2,12.4,12,13.3,11.8]}},{"framework":"pota-v0.17.177-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.6,12,11.9,11.6,12.2,11.9,11.7,12.1,12,12,11.8,11.8,11.9,11.9],"script":[1.3,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[10.1,9.7,10.1,10.1,9.8,10.2,10,9.8,10,9.9,10.1,9.9,9.9,10.2,9.8]}},{"framework":"pota-v0.17.177-keyed","benchmark":"07_create10k","values":{"total":[308.5,305.7,303.9,308.1,307.1,302.4,307.2,307.9,303.6,305.5,304.3,305.3,304.5,303.6,306.1],"script":[56.3,57.8,56.8,56.2,57,56.6,56.8,57.1,56.3,56.7,56.9,56.4,56.3,55.9,56.6],"paint":[245,241.8,240.8,244.3,243.9,239.6,243.5,244.5,240.9,242.5,240.9,242.5,242.1,241.7,243.6]}},{"framework":"pota-v0.17.177-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.4,33.5,34,33.3,33.9,34.2,33.6,33.2,34,33.8,33.6,33.7,33.6,33.9,33.9],"script":[5.6,6,5.5,5.7,5.4,6.1,5.9,5.5,6.1,5.4,5.7,6,5.5,6.1,6.2],"paint":[26.9,26.6,27.5,26.7,27.6,27.1,26.8,26.9,27.1,27.5,27,26.8,27.2,26.9,26.8]}},{"framework":"pota-v0.17.177-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.1,10.1,10.1,9.1,10.2,9.7,10.1,9.9,10.2,9.9,10.3,9.8,9.6,9.7],"script":[8.4,7.7,8.1,7.9,7.9,8.2,7.9,8,8,8.2,8.6,8.4,8,7.7,8],"paint":[0.8,1.4,1.3,0.4,0.2,1.5,0.9,1.1,1,0.3,0.3,1.1,1.6,0.9,0.7]}},{"framework":"pota-v0.17.177-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6559200286865234]}},{"framework":"pota-v0.17.177-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.505368232727051]}},{"framework":"pota-v0.17.177-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.552480697631836]}},{"framework":"pota-v0.17.177-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8792209625244141]}},{"framework":"pota-v0.17.177-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.19656753540039]}},{"framework":"pota-v0.17.177-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.3]}},{"framework":"pota-v0.17.177-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5]}},{"framework":"pota-v0.17.177-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"01_run1k","values":{"total":[29.6,29.7,29.1,28.9,29.9,29.6,28.6,29.1,29.4,29.4,29.4,29.8,29.4,29.3,29],"script":[5.8,5.7,5.7,5.7,5.7,5.8,5.5,5.8,5.8,5.6,5.7,5.7,5.6,5.6,5.6],"paint":[23.2,23.5,22.9,22.7,23.6,23.2,22.6,22.8,23,23.2,23.1,23.5,23.3,23.1,22.8]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"02_replace1k","values":{"total":[34.2,33.9,35.6,33.8,34,33.5,33.7,33.9,34,35.2,34.3,33.9,34.4,34.6,35.7],"script":[9.9,10.2,10.9,9.8,9.9,9.9,10,10.1,9.9,10.6,10.9,10.3,10.4,10.4,10.6],"paint":[23.6,23.2,24.1,23.4,23.5,23,23.1,23.2,23.5,24,22.9,23.1,23.5,23.7,24.5]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,13.4,14.4,14.1,13.4,14.3,14.3,13.1,13.1,13.4,13.9,13,14.1,13.2,13.3],"script":[2.2,2.1,2.2,2.7,2.4,3,3.2,2.1,2.8,2.2,2.4,1.6,2.9,2.4,2.2],"paint":[9.7,10.5,10.4,10.2,10,10,10.8,10,10,9.8,10.1,8.9,10.1,9.8,9.6]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"04_select1k","values":{"total":[3.7,4,4.4,3.8,4,3.6,3.3,3.8,3.7,3.8,3.1,3.1,3.4,3.3,4.3,3.8,3.9,3.4,3.6,3.6,3.5,3.4,4.3,3.9,3.7],"script":[1.5,1.5,2,1.6,1.1,1.8,1.7,1.8,1.5,1.8,1.3,1.2,1.9,1.6,2,1.3,1.3,1.9,1.3,1.3,1.4,0.9,2.3,1.2,1.7],"paint":[1.8,1.5,1.5,1.4,2.3,1.6,1,1.1,0.9,1.3,1.7,0.7,1,1.5,2.2,1.6,2.4,1.3,2.1,2.2,1.7,2.4,1.1,2,1.3]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"05_swap1k","values":{"total":[110.6,109.7,112,109.8,110.7,112.1,109,111.1,111.8,111.9,108.1,110.7,109.9,109.2,109.3],"script":[13.8,12.2,13.8,12.6,13.5,13.1,12.7,12.4,13.2,13,11.6,12.6,12.7,12.8,12.4],"paint":[94,95.9,96.5,95.5,94.7,97.1,93.3,95.4,95.8,96.5,93.4,95.5,95.1,94,95]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.5,11.1,11.5,11.4,11.6,11.6,11.5,11.5,11.7,11.2,11.6,12.3,11.3,11.4],"script":[0.9,1.8,0.7,0.9,0.7,1.1,0.9,0.9,0.7,0.9,0.8,1.1,1.9,1,0.7],"paint":[10.3,10,9.8,10.2,10.1,9.9,10.1,10.1,10,9.6,10.1,10.1,9.9,9.7,10.1]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"07_create10k","values":{"total":[329.1,332.2,330.5,328.3,331.2,333.7,328.3,332.7,332.9,333.9,329.9,327.3,330.9,329,329.1],"script":[74.6,75.9,73.7,74.1,75.6,74.9,73.9,73.6,74,74.9,75.1,75,74.8,74.5,74.1],"paint":[248.1,249.6,250.2,248.5,249.1,252.4,248.3,252.7,252.5,252.2,248.9,246,249.9,248.5,248.2]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.4,36.9,36,36.2,36.4,37.1,36.5,36.3,36,37.1,35.7,36.4,36.2,36.1,36.2],"script":[8.3,8.6,7.6,7.6,7.6,7.8,8.2,7.6,7.7,8.6,7.3,7.7,7.9,7.7,7.8],"paint":[28.1,27.3,27.5,27.6,27.8,28.4,27.3,27.8,27.4,27.6,27.5,27.8,27.4,27.6,27.5]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.2,11.7,11.6,11.7,12.5,11.6,12.4,12.2,11.9,11.8,12.7,11.9,12.3,11.6,12.5],"script":[10.3,9.4,9.5,9.8,9.8,9.3,10,10.1,9.9,9.7,10,10.5,10,9.9,9.5],"paint":[0.3,2.1,1.1,1,2.4,1.2,2.2,1,1,1.1,0.8,0.3,1.3,0.3,1.3]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5660886764526367]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.618305206298828]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6796512603759766]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7612733840942383]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.265219688415527]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.2]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6]}},{"framework":"preact-classes-v10.25.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.2]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"01_run1k","values":{"total":[31.4,31.7,31.5,30.7,31.2,31.1,30.5,31.4,31.3,30.7,31.1,31.5,31.6,31.1,30.9],"script":[6.7,7.4,6.9,6.9,7,7.1,6.5,7.1,7,6.6,6.6,7,7,6.9,7],"paint":[24.1,23.8,24,23.3,23.7,23.5,23.5,23.8,23.8,23.6,23.9,23.9,24,23.6,23.4]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"02_replace1k","values":{"total":[35.9,34.8,35.2,34.7,35.4,35.1,35.1,35.5,35,35.3,34.7,35.1,34.7,35.6,34.8],"script":[10.7,10.6,10.6,10.5,10.7,10.5,10.8,10.8,10.3,10.6,10.2,10.6,10.2,10.5,10.6],"paint":[24.6,23.7,24.1,23.6,24.1,23.9,23.7,24.1,24.1,24.1,23.9,24,23.9,24.4,23.7]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.4,23.1,23.6,23.4,22.8,23.6,22.8,23.7,23.1,22.8,23.5,23.1,23.2,23.8,23.3],"script":[9.9,9.5,11,11.1,10.7,10.9,10.2,10.9,9.8,9.6,11.3,9.6,10.4,10.4,9.4],"paint":[10.4,9.8,10.5,10.8,10.7,11.2,9.7,10.3,10.9,11.7,10.7,10.3,10.5,10.5,11.6]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"04_select1k","values":{"total":[11.8,13,13.5,13.1,12.7,13.7,13.8,13.5,12.1,13.2,13.8,14.4,13.5,13.5,13,13.4,12.2,13.1,12.6,12.8,13.6,12.7,14.2,12.8,13.2],"script":[8.4,9.9,10.2,10,8.9,10.2,10.9,10.3,9.7,9.8,9.9,10.8,9.6,10.2,9.7,9.6,8.8,9.8,9.8,10.2,10.5,9.5,11,9.9,9.7],"paint":[1.2,2.1,1.7,1.3,3.1,2,1.4,2.1,2.1,1.9,2.8,2.5,1.5,1.2,1.5,2.7,2.2,2.1,0.4,1.2,1.1,1.2,1.3,1.1,2.7]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"05_swap1k","values":{"total":[25.9,26.2,26.2,25.4,26.6,25.4,27.3,26.2,26.5,26,27.2,24.5,26.7,26.3,26.2],"script":[11,11.4,10.4,9.8,10.7,9.2,10.9,10.5,11.5,11.1,11.9,9.3,11,11.2,11.2],"paint":[12.8,13.2,14.1,13.5,13.7,13.5,14.1,13.4,12.3,13,12.9,12.6,12.8,12.1,12.5]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.9,16.5,16.7,16.6,16.7,15.7,17.1,17,16.6,16.3,17.1,16.3,16.9,16.2,16.3],"script":[5.2,4.6,5.4,5.1,5.2,4.6,5.2,5.1,5.1,4.9,5.6,4.8,5,4.9,4.9],"paint":[10.4,11.1,10.4,10.6,10.5,10.6,10.5,11,10.4,10.6,10.4,10.8,10.7,10.3,10.7]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"07_create10k","values":{"total":[325.9,324.6,323.6,323.7,325,324.2,322.5,324.4,324.8,326.8,325.9,324.3,323.8,323.8,325.5],"script":[72.1,75.5,76.2,76.5,75.9,77.1,75.8,76.7,77.3,76.6,77,76.3,76.8,76.7,76.2],"paint":[247.1,242.9,241.3,240.9,242.5,241.3,240.4,241,241.7,243.9,243,241.8,240.7,241.2,243]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.8,36.3,37.5,37.1,37.7,36.9,36.5,36.7,38.1,37.4,36.4,37,36.9,36.6,38.1],"script":[9,8.9,9.2,9,9.2,9,9,8.7,9.4,9.3,9.2,9.1,9,8.9,9.2],"paint":[26.6,26.5,27.4,27.2,27.6,27,26.7,27,27.8,27.2,26.3,27,27,26.9,27.9]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,11,10.5,11.8,10.4,13.4,12.3,9.9,10.6,11.1,12.1,11,9.9,10.8,11.1],"script":[8.3,8.9,8.5,9.4,8.9,11.6,10.1,8.5,8.9,9,9.5,9.2,8.1,9,9.3],"paint":[1.2,1,1.1,0.5,0.6,0.7,1.4,0.3,1.6,0.8,1.8,1,0.2,0.9,1.6]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5740995407104492]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3732805252075195]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.404913902282715]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7611246109008789]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.044644355773926]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.5]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"preact-hooks-v10.25.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.9]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"01_run1k","values":{"total":[39.3,38.9,39.5,39,40.1,39.5,38.2,39,38.9,38.6,40.1,38.9,39.6,38.6,40.3],"script":[15.1,15.1,14.8,15.2,14.9,14.9,15,15.1,15,14.8,14.9,15.3,15,14.7,15.2],"paint":[23.6,23.2,24.1,23.3,24.6,24.1,22.6,23.5,23.5,23.2,24.7,23.1,24.1,23.3,24.6]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"02_replace1k","values":{"total":[43.2,43.4,43.6,43.6,43.1,42.9,43.9,43.5,42.8,42.7,43.9,43.5,43.1,44.1,42.7],"script":[18,18.4,18.3,18.3,18.1,18.1,18.5,18.2,18.1,18.3,18.7,18.5,18.1,18.9,17.9],"paint":[24.5,24.4,24.6,24.7,24.5,24.1,24.8,24.5,24.1,23.9,24.6,24.5,24.5,24.6,24.3]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.7,16.1,16.2,18.3,17.3,17.1,17.9,16.1,17.3,17.4,17.5,17.7,17.9,17.3,17.3],"script":[6.1,5.2,5,6.4,5.1,5.8,5.2,5.4,5.5,5.6,5.9,6,5.9,5.3,5.8],"paint":[10.5,9.6,10.1,9.1,10.1,10.1,10.6,9.1,10.8,10,10.4,9.9,10,11.2,9.7]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"04_select1k","values":{"total":[4.3,3.1,6.1,3.4,2.8,3.3,3.2,3,3.1,3.1,3.1,6.7,3.8,2.8,3.1,3,2.5,4.7,3.3,3.4,2.9,3.2,6.9,3.5,3.1],"script":[1.5,1.5,0.6,1.5,1,1.2,1.4,1.5,0.9,1.5,1.1,1.7,1.5,1,1.6,1.1,1.1,1.1,1.3,1.5,1,1.3,1.2,1.6,0.6],"paint":[1,1.4,1,1.5,1,1.7,1.7,1,2,1.5,1.5,1.1,2.1,1.7,1.4,1,1.2,1.3,1.4,1.1,1,1.2,1.1,1.7,2.3]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"05_swap1k","values":{"total":[114.9,113.1,114.5,115,110.9,111.2,115.1,113,111.4,114.1,114.3,110.8,110,113.2,118],"script":[16,14.8,16.7,15.7,15.3,14.2,16.7,16.7,14.5,15.3,15,14.2,14.9,14.5,15.2],"paint":[96.7,97.1,96.4,96.4,93,93.9,95.3,93.8,94.8,95.8,97.3,93.9,92.9,95.9,100.5]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12.7,12.5,12.8,12.7,12.4,12.7,12.5,12.6,12.4,12.2,12.7,12.5,12.8,12.4],"script":[1.8,1.8,1.9,1.8,1.9,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[9.9,10.3,10.2,10.2,10.2,10,10.1,9.9,9.8,9.6,9.8,9.9,9.7,10.5,9.6]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"07_create10k","values":{"total":[381.3,385.9,390.9,391.7,391.1,380.3,388.7,381.6,378.8,389,388.6,381.5,382.7,381.3,392.3],"script":[132.6,129.9,134.2,134.2,133.1,129.6,130.4,133.2,128.7,131.3,133.4,132.2,132.6,133,132.1],"paint":[240.4,248.1,249,250.1,250,242.1,250,240.6,242.4,249.7,247.7,240.9,242,240.2,251.9]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.4,44.7,44.4,44.3,44.7,44.3,44.4,44,43.8,44.3,44.2,44,46.1,44.6,44.1],"script":[15.4,15.3,15.6,15.2,15.3,15.7,15.7,15.4,15.2,15.5,15.8,15.3,15.5,15.7,15.4],"paint":[28.1,28.6,27.8,28.2,28.4,27.8,27.8,27.7,27.8,28,27.6,27.9,29.8,28,27.9]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.5,14.4,13.9,15.2,15.5,14.7,17.2,16,14.8,14.6,14.2,15.5,15.3,15.7,15.7],"script":[14.2,12.5,12.4,13.5,13,13.6,15.2,13.5,12.3,11.9,13.2,13.6,13.9,13.5,13.6],"paint":[0.3,0.3,1.3,0.9,1.1,1.1,0.7,2.3,1.3,0.8,0.3,1.8,0.5,1.2,1.3]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6575632095336914]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.9610090255737305]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.980031967163086]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9602231979370117]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[51.258310317993164]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[30.6]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.5]}},{"framework":"preact-kr-observable-v10.26.4 + 1.0.39-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.3]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"01_run1k","values":{"total":[33.5,33.4,33.8,32.9,33.4,33.8,33.7,33.6,33.4,33.1,32.5,33.7,33,32.9,32.6],"script":[9.2,9.3,9.1,8.8,8.9,9.2,9.5,9.1,9.2,8.8,8.5,9.1,8.9,8.7,8.8],"paint":[23.8,23.6,24.2,23.6,24,24.1,23.7,23.9,23.7,23.8,23.4,24.1,23.5,23.7,23.3]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"02_replace1k","values":{"total":[36.4,35.5,36.3,36.8,34.8,35.8,36.8,35.6,35.9,35.4,35.4,35.7,35.1,36.2,35.4],"script":[11.6,10.8,11.2,11.4,10.4,11.1,11.4,11,11.5,10.8,10.7,11.1,10.5,11.2,10.9],"paint":[23.9,24.1,24.5,24.8,23.7,24.1,24.8,24,23.8,24.1,24,24,24.1,24.4,23.9]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.4,12.4,12,12.1,11.9,11.8,12.2,12.4,12.1,12.5,11.4,11.9,12,12],"script":[1.1,0.2,0.6,0.2,0.6,0.9,1.2,0.6,0.5,0.2,0.9,0.7,0.6,0.9,0.2],"paint":[10.2,10.4,10.4,10.2,10.6,9.4,9.7,9.7,10.9,10.9,10.1,8.6,10.1,9.4,10.7]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"04_select1k","values":{"total":[16.3,16.6,17.1,18.8,15.3,16.8,15.8,16.5,14.9,16.4,17.1,17,17.8,15.1,16.6,17.3,16.2,17.2,16.7,17.9,16.6,16.5,17.1,16.1,16],"script":[13,13.1,13.8,14.9,12,12.9,11.9,12.5,11.9,12.5,13.2,13.2,14.3,11.7,12.5,13.3,12.5,13.6,12.8,14,13.2,12.8,13,12.3,12.8],"paint":[2,1.6,1.2,2.2,2.3,2,2.5,2.2,2,2.1,1.9,2.5,1.6,1.7,3.3,1.4,2.1,2.2,2.6,1.1,1.6,1.8,2.1,2.9,0.8]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"05_swap1k","values":{"total":[29.6,29.6,30.7,30.3,31.1,29.1,30.3,31.7,31.1,30.4,30.2,29.8,30.2,31.1,29.1],"script":[13.4,13.1,13.9,14.2,15.9,12.4,14.2,14,14.2,13.8,14.6,13.5,13,14,12.9],"paint":[13.5,14.1,14.6,14.5,13.6,15,14.5,14.8,15,14.3,13.6,13.7,15.4,15.4,14.4]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.6,18.4,19.4,18.7,18.2,18.6,19.4,18.6,18.9,19.1,19,19,18.9,19.4,19.1],"script":[6.4,6.3,7.3,6.5,6.2,6.7,7.2,6.4,6.7,6.7,7.3,6.7,6.9,7.2,6.9],"paint":[11.6,10.9,11.2,10.9,10.9,10.7,11,11,11.6,11.3,10.8,11.1,10.6,11,11]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"07_create10k","values":{"total":[329.9,328.8,330.9,329.6,328.9,333.4,328.6,327.8,329.6,330.7,332.3,330.6,329.8,329.5,331.1],"script":[80.5,81.7,82.9,81,81.7,83,82,80.9,82.4,84.1,82.6,81.9,79.6,80.3,82],"paint":[242.9,241.2,242.2,242.4,241,243,240.4,240.8,241,240.4,243,242.6,243.8,242.6,243]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41,39.9,40.1,39.8,41.6,41.5,40.8,40.1,41.3,40.6,39.7,40,41.5,41.1,41.5],"script":[12,11.6,11.6,11.7,12.4,12.3,11.8,11.6,12.3,11.2,11.4,11.6,11.8,12,12.3],"paint":[28.1,27.4,27.6,27.2,28.2,28.2,28.1,27.6,28.1,28.4,27.4,27.5,28.7,28.1,27.7]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,11.4,11.4,11.3,11.8,12.2,10.6,11.6,11.4,11.8,13.4,11.1,10.9,11.4,11.8],"script":[11.7,9.4,9.5,9.3,9.6,10.1,9.1,10.2,8.8,9.4,10.6,8.9,9.2,9.1,9.8],"paint":[1.4,1,0.6,0.9,0.7,1.1,0.7,0.2,2.1,1.8,1.5,1.2,0.9,1.4,1]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6613016128540039]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.717301368713379]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.695941925048828]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8051519393920898]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.408306121826172]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[20.2]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.4]}},{"framework":"preact-signals-v10.25.2 + 1.3.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.3]}},{"framework":"quel-v0.23.1-keyed","benchmark":"01_run1k","values":{"total":[30.8,29.5,29.6,29.8,29.2,29.2,29,29,29.3,29.9,29.7,29.2,29.7,29.3,29.4],"script":[5.8,5.2,5.3,5.3,5.1,5.1,5,5.1,5.2,5.2,5.3,5.1,5.4,5.2,5.1],"paint":[24.6,23.9,23.9,24.1,23.7,23.7,23.6,23.5,23.8,24.3,24,23.7,23.9,23.7,23.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"02_replace1k","values":{"total":[33.4,33.6,33.2,32.9,32.3,33.4,32.2,33.3,32.6,32.6,32.2,32.5,32.5,33,33.2],"script":[8.3,8.2,8,8.1,7.8,8.1,7.8,8.1,7.8,7.9,7.7,8.1,7.9,8.1,8.1],"paint":[24.8,25,24.8,24.4,24.1,24.9,24,24.7,24.4,24.3,24.1,24,24.2,24.5,24.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,15.7,14.3,14.1,15.4,14,13.4,15.4,14.8,13.9,14.2,14.5,13.9,13.9,14.3],"script":[2.5,3.4,2.8,2,2.3,2.7,2.6,2.7,2.7,2.5,2.7,3.1,2,2.7,2.3],"paint":[10.3,10.9,10.5,10.9,10.9,10.4,9.6,11.2,11,10.2,9.8,9.9,10.2,10.3,10.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"04_select1k","values":{"total":[2.7,3.2,2.9,2.4,2.9,3.4,3,3.4,4.1,2.6,2.5,2.5,2.5,2.7,3.1,3,3,3.1,3.2,3.2,2.6,2.6,2.9,3.2,3.3],"script":[0.6,1.1,0.5,0.2,0.8,1.3,0.8,0.9,0.8,0.5,0.2,0.6,0.6,0.6,0.5,1.1,0.8,0.8,0.7,1,0.8,0.6,1,1,0.9],"paint":[1.5,1.3,1.3,1.8,1.2,2,2.1,0.7,1,2,2.2,1.1,1.2,1.3,1.6,1.3,2,0.6,1.5,1.6,1.1,1.2,1.7,2.1,1.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"05_swap1k","values":{"total":[14.9,15,15.5,15.6,14.7,14.8,14.1,14.6,15.2,14,14.6,16.2,14.8,14,13.9],"script":[1.2,1,1.2,1.2,0.2,1,1,0.7,0.8,1,1.1,0.9,1.2,0.9,1.1],"paint":[12.2,12.9,12.6,13.4,13.3,12.7,11.8,12.1,13.6,12.1,12.3,14.2,12.3,12.5,11.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.7,13.3,13.3,13.3,13.2,12.8,12.8,13.2,14.4,12.8,13.1,13,13.4,13.9],"script":[2.1,2.4,2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.7,2,2.3,2.3,2.4,2.5],"paint":[10,9.9,10,10.2,10,10.2,9.7,9.5,10,10.8,10.1,10.1,10.1,10.2,10.7]}},{"framework":"quel-v0.23.1-keyed","benchmark":"07_create10k","values":{"total":[366.6,363.3,364.4,367.1,369.5,367.8,367.9,365.1,362.9,369.4,363.5,366.3,367.1,368.8,366],"script":[114.1,111.8,111.2,114,113.9,113.8,113,112,111.9,113.4,111.3,111.9,112.9,112.8,112],"paint":[246,244.6,246.6,245.9,248.8,247.4,248.2,246.2,244.1,249.2,245.7,247.9,247.4,248.3,247.1]}},{"framework":"quel-v0.23.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.5,43.1,44.3,43.2,43.3,43.3,43.6,42.8,43.3,43.4,42.9,43.6,43.5,43,42.6],"script":[14.2,14,14.4,14.2,14.4,14.2,14.4,13.9,14.4,14.4,14,14.4,14.2,14.2,13.8],"paint":[28.5,28.2,29,28.2,28.1,28.3,28.4,28.1,28.1,28.2,28,28.4,28.4,28,28]}},{"framework":"quel-v0.23.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,17.6,15.8,15.6,16.6,15.9,14.9,14.7,17.1,16.7,15.6,15.4,14.7,16.5,15],"script":[14.5,16,14.1,14.2,14.5,14.4,13.4,13.6,15,14.8,14.7,14.2,12.8,14.8,12.9],"paint":[0.6,1.1,1.6,1.3,2,1.3,1.5,0.3,1.5,1.8,0.5,0.6,1.8,0.7,1.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0568323135375977]}},{"framework":"quel-v0.23.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.2615966796875]}},{"framework":"quel-v0.23.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.202078819274902]}},{"framework":"quel-v0.23.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.873849868774414]}},{"framework":"quel-v0.23.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.65948486328125]}},{"framework":"quel-v0.23.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"quel-v0.23.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[102.8]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"01_run1k","values":{"total":[97.4,91.9,94.3,91,92.6,94.3,92.1,90.1,89.9,90.5,91.5,89.6,90.3,94.1,89.7],"script":[62,63.3,64.9,62.5,63.3,63.4,63.4,62.7,64.2,63.3,62.3,61.8,62.4,62.4,63.8],"paint":[24.3,24.3,24.8,24.4,24.3,24.4,24.1,24.2,24.3,24.3,24.3,24.3,24.4,24.2,24.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"02_replace1k","values":{"total":[96.7,95.8,96,89.9,90.4,97.3,100.6,101.5,100.4,96.3,90,95,93.3,101.6,93.8],"script":[66.9,64.9,64.8,64.9,63.9,64.3,65.5,66,64.7,64.8,64.9,63.4,67.4,65.4,63.2],"paint":[24.7,24.5,25.4,24.6,25.1,25.4,24.5,24.7,24.6,24.9,24.7,24.9,25.5,24.5,24.9]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[57.5,59.9,58.1,61.4,58,60.2,56.4,55.8,57.7,60.5,58.2,60.5,55.8,56.9,58.1],"script":[2.9,2.8,3.4,3.7,3.1,3.8,2.7,3.5,3.6,3.1,2.5,4,1.4,3.3,3.6],"paint":[12.8,13.5,11.4,12.1,12.1,12.5,11.9,11.6,11,12.1,12.3,13.1,12.3,10.8,13.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"04_select1k","values":{"total":[10.8,10,7.5,13,13.9,15.3,13.9,13.1,11.6,7.2,10.1,13.6,8.2,8,9.9,13.9,15,14.3,11.9,16,8.9,10.6,12.6,14.2,13.8],"script":[1.6,2.1,1.1,1.6,1.5,1,1.2,1.6,1.8,1.3,1.1,1,2.1,2,1.6,1,1.1,1.2,1.3,0.4,1.7,1.9,2.5,1.3,1.3],"paint":[3.7,3.2,1.4,3.2,2.8,1.7,1.6,2.5,1.9,1.9,2.4,2.6,1.7,1.6,2.5,2.8,1.6,2.7,2.5,2.7,2.4,2,2.3,1.9,2.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"05_swap1k","values":{"total":[66.4,65.9,23.9,24,68.2,66.5,25.4,67.2,24.6,67,26.4,65.5,67.9,68,64.5],"script":[7.4,8.1,7.6,8.1,8.5,8.6,8.6,8.2,8.5,9.1,8.2,8.5,7.7,8.5,7.8],"paint":[15.2,14.8,14.1,14.6,15.1,14,15.1,14.2,14.1,14.7,15.5,14.3,14.5,16.5,14.7]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.3,19.5,20.4,19,17.6,17,19.1,18.7,17.6,18,17.7,18.2,17,18.1,17.9],"script":[5,5.1,5.2,5,4.8,5.1,4.8,4.9,4.9,4.9,4.9,5.4,5.1,5,5.1],"paint":[11,10.4,11.1,11.3,11,10.9,10.7,11.2,10.7,11.2,11.3,11,10.8,11.2,11]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"07_create10k","values":{"total":[865.1,875.7,878.4,876.1,869.3,878.9,872.4,873.1,881.6,865.7,874.2,868.8,868.9,872.9,2037.9],"script":[629.1,635.3,630.1,636.9,624.1,635.8,627.5,633.9,638.3,626.7,637.6,627.3,626.5,629.2,634.5],"paint":[230.6,234.5,235.2,232.9,232.4,237.4,237.6,231.4,235.8,232.7,231,233.8,236.4,235.7,235.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[92.6,93.1,93,92.7,93,93.9,93.2,94.1,96,91.8,94.1,93.5,92.2,93.4,92.9],"script":[52.9,53.8,54,53,53.5,54.5,53.8,53,55.3,51.9,54.5,53.4,52.7,54.1,53.5],"paint":[28.3,27.9,27.7,28.5,28.2,28.4,27.7,28.3,28,27.9,27.7,28.5,28.5,27.7,28]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.6,21.2,66,21.6,67.2,21.8,63.7,62.2,22.4,63.9,21.3,22.5,66,22.5,23.2],"script":[18.3,17.8,17.3,17.9,17.4,18.1,18.1,17.5,18.6,16.7,17.3,18.2,19.2,17.9,20.2],"paint":[1.9,2.6,2.1,2.5,3.8,2.1,1.5,1.9,2.9,3.6,3.7,2.7,1.9,1.9,1.9]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5504732131958008]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.062286376953125]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.004864692687988]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.250229835510254]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[86.41365242004395]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"01_run1k","values":{"total":[39.6,39.3,39.2,39.3,39.4,38.9,39.2,38.9,39.7,39.9,39.7,40.1,39.3,40.1,39.8],"script":[16.5,16.4,16.4,16.5,16.5,16.2,16.4,16.1,16.8,16.6,16.6,16.7,16.6,17.3,16.5],"paint":[22.8,22.4,22.4,22.4,22.4,22.3,22.4,22.5,22.6,22.9,22.8,23,22.3,22.5,22.8]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"02_replace1k","values":{"total":[46.8,48,47.3,47.6,46.8,46.7,48,48.6,47.2,46.9,49.1,47.3,47.1,47.3,48.2],"script":[22,22.8,22.3,22.5,22,21.7,23.2,22.3,22.1,22.1,22.7,22.3,21.8,22.5,23.4],"paint":[24.4,24.8,24.5,24.7,24.4,24.4,24.4,25.9,24.6,24.4,25.9,24.5,24.8,24.3,24.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,12.9,13,13.6,13.3,12.5,13.1,13.2,13.1,12.9,14.3,14,13.9,13.7,13.5],"script":[2.4,2.1,1.8,2.2,2.1,2.1,2.2,1.8,2.2,1.6,2.6,2.1,2.5,2.1,1.5],"paint":[10.6,9.7,10.2,10.5,9.9,9.5,10,10.2,10.3,9.8,10.6,10.8,10.1,9.6,11]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"04_select1k","values":{"total":[7,7.5,7.8,6.7,8.1,6.5,9.1,8.1,8.7,7.5,6.6,8.5,5.9,7.6,9,7.5,9.2,8,10.1,7.8,7.2,7,7.1,6.3,10.4],"script":[5,5,4.8,4.9,5.7,4.2,6.8,5.2,6.4,5,4.3,6,4.3,4.8,6.3,4.7,6,5.7,6.5,5.7,4.8,4.4,5,3.8,7.4],"paint":[1,2.3,1.3,1.3,1.7,1.4,0.5,1.6,1.1,1.6,2.1,1.5,1,1.7,1.8,1.5,2.4,2.1,2.6,1.3,2.1,2.4,1.2,1.7,1.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"05_swap1k","values":{"total":[116,116.3,117.9,112.7,114.9,115.2,116.5,120.7,116.5,112.4,115.3,117.4,113.4,119.9,115],"script":[18.9,18.8,18.6,17,19.5,19,19.5,18.3,19.6,17.4,19.2,19.2,18.2,19.3,17.4],"paint":[94,95.7,97.4,94.2,93.7,95.1,95.5,99.7,93.9,92.6,94.8,96.4,93.2,98.7,96]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.7,15.5,15.2,15.2,15.2,15.2,14.9,15.4,15.6,15.1,15.5,14.7,15.4,14.9,15.1],"script":[3.8,4.1,4.1,4.2,4.2,4.2,3.7,3.9,4.2,4,4.1,3.9,4,4.3,4],"paint":[10.3,10.4,10.4,10.3,10,10,10.3,10.9,10.5,10.3,10.4,10.3,10.4,10.3,10.2]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"07_create10k","values":{"total":[403.7,403.1,403.5,404.2,404.6,403.6,404.9,406,401.8,408.3,405.5,404.7,405.1,404.2,403.4],"script":[157.7,155.2,156.5,157.3,155.9,155.6,156.4,158.2,156,156.8,156.8,156.9,157,157.8,155.5],"paint":[240.3,241.9,241.3,241.4,242.5,242.4,241.8,242,240.2,245.1,242.8,242.1,242.2,240.8,242]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.4,45.2,45.7,45.7,45.7,45.8,45.4,45.2,45.3,46.9,45.7,46.3,45.4,44.9,45.4],"script":[17,17,17.1,17.3,17.2,17.1,17,16.9,17.2,17.6,16.9,17.5,17.1,16.7,17],"paint":[27.7,27.5,27.8,27.6,27.7,27.9,27.6,27.6,27.3,28.5,28,28.1,27.5,27.5,27.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.4,24.6,23.8,22.9,24.6,22.4,24.8,25.7,23.9,25.8,25.4,23.6,24.5,24.5,23.7],"script":[23.9,23,22.3,20.7,22.8,20.6,23.2,24.2,22,23.5,23.6,22,23,23,22.1],"paint":[0.3,1.4,0.9,1.1,0.9,1.7,0.7,1.4,1.8,2.2,1.7,1.5,0.6,1.3,0.7]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.205033302307129]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.700643539428711]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.762728691101074]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2331724166870117]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.25332546234131]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[238.3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"01_run1k","values":{"total":[57.2,57.1,57.1,52.3,58.6,58.1,56.7,57.4,57.8,54.3,59.2,56.2,58.8,58.9,57.1],"script":[23.3,24.4,22.9,23.5,23.7,22.6,23.1,23.1,23.2,22.4,22.8,24.3,23.3,23.2,23.4],"paint":[22.4,22.7,22.7,22.9,22.9,22.8,22.9,22.9,22.9,22.8,22.8,22.7,23.5,22.7,22.7]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"02_replace1k","values":{"total":[71.4,69.9,69.4,69.6,67.5,70.1,66.1,67.1,69,64.9,66.7,69.4,67.7,69.3,73.1],"script":[29,29.2,29.6,29,28.6,31,29.2,29.2,29.3,27.8,28.7,28.4,28.6,29,29.6],"paint":[26.8,25.1,25.6,24.9,25,25.1,25.1,25.1,25.2,26.5,25.1,24.7,24.9,25,25.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[46,45.3,28.8,45.6,45.7,43.2,44.2,44.6,46.1,44.6,45.4,46.8,44.2,44.5,44.7],"script":[12.4,12.5,13.5,11.8,12.1,12.8,13.7,12.5,12.8,12.6,14.5,12.4,11.9,11.9,11.6],"paint":[10.7,13.5,13.4,13.6,12.8,12.5,13.3,12.9,11.8,14.2,11.4,13.8,11.4,13.9,12.4]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"04_select1k","values":{"total":[23.3,18.9,17.2,21.6,18.1,18.2,17.7,15.9,14.7,12.1,17.7,16,15.3,21,18.9,11.9,18.9,18.2,21.4,11.1,15.4,21.3,19.5,13.1,15.3],"script":[7,5.9,5.4,6.8,6.3,5.8,6.2,5.6,6.2,6.9,6.9,4.8,6.4,5.9,5.6,6.8,6.1,5,6.7,5.8,6.9,6.4,6.8,6,6.7],"paint":[2.9,2.9,2.8,3.7,2.9,3.4,3.9,2.7,3.5,2.4,2.7,5,3.5,2.2,2,2.5,2.8,3.3,2.4,2.4,3.5,2.9,1.7,3.7,3.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"05_swap1k","values":{"total":[142.6,141.1,140.5,144.8,140.2,144.8,148,141,144.1,142.8,141.6,143.3,144.7,140,152.4],"script":[27.3,27.1,27.4,28.1,26.7,25.4,26.2,26.5,25.6,29.3,25.5,26.5,28.4,25.8,26.7],"paint":[96.7,95.5,94.9,98.8,95.3,96.4,96.8,96.8,97.1,94.5,95.5,96.6,95.2,95.3,101.2]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[32.6,27.8,25.9,28.8,33,32,32.5,27.6,27,31.1,30.3,28.9,30.8,29.8,29.6],"script":[6.6,7.3,6.9,6.5,6.8,8.3,6.4,7,7.1,7.4,6.7,7.7,6.7,7.6,7.7],"paint":[10.9,11.6,11.9,11.5,11.3,11.8,12,11.9,11.6,11.2,12,11.3,11.4,12.2,11.6]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"07_create10k","values":{"total":[533.1,529.2,528,531.7,531.5,533.7,539.4,538.5,530.1,530.2,533.8,530.5,530.5,530.9,527.8],"script":[272.8,272.1,271.8,272.6,270,273.2,274,277.7,272.6,271.2,271,271,271.9,271.5,274.1],"paint":[249.7,251.6,248.3,248.9,249.9,250.6,254.5,251,249.9,249,253.9,250.5,247.6,250.5,246.3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[67.6,71,63,71.7,61.8,62.3,63.4,70.4,62.1,62.6,71.6,61.8,71.6,63.6,63],"script":[23.3,23.4,23.7,23.9,23.4,23.5,23.9,23.9,23.4,23.3,23.6,22.9,23.3,23.4,24.1],"paint":[29.5,27.5,27.7,27.9,27.9,27.7,27.9,28.2,27.9,28.6,28.2,27.9,28.3,28.4,28.6]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[60.5,59.5,59.7,58.6,59.3,58.9,58.8,62.2,59.4,57.8,61.4,57.7,58.3,59.9,58.4],"script":[33.3,34.1,34.1,34.1,33.7,31.8,32.6,33.9,33.4,32.8,35.2,31.8,33.5,31.8,33.3],"paint":[3.2,2.5,2.6,2.3,3.8,2.9,1.9,2.2,1.8,2.6,2.5,2.7,1.9,0.8,3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7729682922363281]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.658648490905762]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.401461601257324]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.3210277557373047]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[52.76472187042236]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[351.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[380.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[32.4,31.9,31.5,31.5,31.4,32.5,30.3,30.4,31.7,31.7,31.9,31.6,29.9,29.9,31.8],"script":[7.5,7.6,7.4,7.3,7.5,7.7,7.4,7.2,7.4,7.4,7.4,7.7,7,7.2,7.8],"paint":[24.3,23.8,23.5,23.6,23.3,24.3,22.4,22.7,23.8,23.7,23.9,23.4,22.4,22.2,23.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[35.9,35.9,36,35.8,36.2,35.4,35.9,36,36,37.4,35.9,35.8,36.8,37.5,36.3],"script":[11.4,11.3,11.4,11.1,11.2,10.9,11.3,11.3,11.7,11.8,10.9,11.1,11.5,12.1,11.2],"paint":[23.9,24.1,24.1,24.1,24.4,24,24,24.1,23.8,25,24.5,24.2,24.7,24.8,24.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,16,15.9,15.7,17.2,15.9,16.5,16.2,15.9,15.7,15.8,15.4,15.4,16.2,15.1],"script":[4.7,4.1,4.1,3.7,4,3.8,3.3,3.9,4,3.4,3.9,3.7,4,3.9,3.4],"paint":[10.2,10.6,10,11,10.8,10.6,12,11.2,10.5,11.4,10.8,10.8,10.8,10.5,11.1]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[6.1,5,5.6,5.9,6.4,5.7,4.6,8.3,5.8,4.8,5.6,5.4,5.9,5.4,5.5,6.1,5.7,4.8,6,4.9,4.6,5.1,4.5,5.8,4.2],"script":[3.7,1.8,3.5,3.4,3.4,2.6,2.2,2.8,3.4,2.6,3.4,2.9,2.4,2.5,3.9,3.1,3,2.7,3.9,2.9,2.5,3,1.6,3.3,2.2],"paint":[1,2.6,1.5,1.6,2.4,1.9,1.6,1.4,2.2,1.5,1.2,2,1.6,2.7,0.7,2.8,1.7,1.9,1.1,1.1,1.9,2,1.5,1.9,1]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[117.1,115.8,114.7,114.3,114.5,114.6,115.5,116,116.2,116.4,116.1,117,116,115.4,115.6],"script":[18.7,18.1,18.7,18,18.5,17,19.2,18.9,18.4,18.5,18.7,20,18.7,19.4,18.8],"paint":[96.3,95.1,93.9,93.7,93.9,95.9,94.8,94.9,94.9,95.5,95.6,94.6,95.5,93.3,93.7]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,12.9,13,12.7,12.7,12.8,12.7,13.3,13.4,12.5,13,13.1,13.2,13.2,11.9],"script":[1.8,2.1,1.4,1.7,1.7,1.8,1.8,2,2.4,1.7,2.3,2.4,2.3,2.5,1.5],"paint":[10.1,9.9,10.6,10.3,10,10.3,10.2,10.7,10.5,9.9,10,10.1,10.4,9.8,9.8]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[480.9,479.4,472.1,474.7,477.9,466.8,480.5,473.3,478.3,482.1,418.3,478.4,416.3,472,479.4],"script":[236.4,232.4,230.6,229.9,233.8,224.1,235.5,230.3,236.1,238.3,174.7,233.9,172.4,227.3,232.4],"paint":[238.7,240.4,235.4,238.8,238.3,236.8,238.8,237.1,236.2,237.9,237.6,238.1,237.9,238.7,240.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,35.4,37,36.2,36.4,36,36.3,36.1,35.8,37.4,36,36.1,36.6,37.4,36.1],"script":[8,8,8.3,8.2,7.9,8,8.2,8.2,8,8,8.1,8.2,8.2,8.2,8.2],"paint":[26.9,26.6,27.8,27.1,27.6,27.1,27.2,27,26.9,28.5,27.1,27.1,27.6,28.3,27]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.2,16.5,17.9,16.3,17.1,17.4,16.1,17.4,19.2,17,18,15.7,17.1,17.3,17],"script":[14.3,14.1,15.6,14.3,14.5,14.6,14.2,15.4,16.7,15,15.9,14.3,15.4,14.7,14.3],"paint":[0.3,1.2,0.3,1.1,0.3,1.4,0.3,0.8,1.3,1.2,1.5,0.3,1,1.1,2.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1738367080688477]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.673425674438477]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.153402328491211]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0123186111450195]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.484981536865234]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[184.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[212.7]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[31.1,31.2,31.2,31.1,31,32,31.5,31.4,31.2,30.9,31.4,31.5,29.3,31.9,31.7],"script":[6.9,7.1,7.2,7,7.1,7.8,7.1,7.2,6.9,7.1,6.9,7.2,6.6,7.4,7.1],"paint":[23.6,23.6,23.5,23.5,23.4,23.6,23.9,23.7,23.7,23.3,23.9,23.7,22.2,23.9,24]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[34.7,34.7,35.3,35,35.5,35.5,35.7,34.9,35.1,35.3,36,35.3,35.3,35,35.5],"script":[10.9,10.9,11.2,10.9,11.1,11.3,11.5,11.1,11.2,11.3,11.7,11.4,10.9,10.9,11.6],"paint":[23.3,23.2,23.6,23.5,23.9,23.7,23.7,23.2,23.3,23.4,23.7,23.4,23.8,23.5,23.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,15.4,15.8,14.7,14.9,15.2,16.4,15.6,15.6,14.8,15.3,15.9,15.5,16.3,14.5],"script":[3.9,4,4.2,3.4,3.3,3.1,4.4,4.1,4.2,3.7,3.2,3.7,3.7,4.2,3],"paint":[10.2,10.1,10.1,9.8,10.2,11,10.6,10.9,10.4,9.4,10.9,11.3,10.3,11.2,10.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.9,4.7,5.2,4.6,5.5,4.8,6,5.5,4.5,4.6,5.8,4.9,4.3,4.9,6.1,5.1,4.8,4.9,4.3,5,5.8,4.9,4.7,5.5,5.3],"script":[2.2,2.6,2.7,2.7,2.8,2.5,3,3,2.4,2,3,2.9,2.4,2.2,3,2.7,2.6,2.5,2.2,2.9,3.5,2.7,2.2,3.3,2.9],"paint":[1.7,1.9,1.6,1.7,2.1,1.1,2.1,1.8,1.5,2.1,1.4,1,1.1,2.1,1.4,1.5,1.1,2.2,2,1.9,1.5,1.1,2.3,1.2,1.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[118,115.4,118.4,112.6,115.3,114.8,116.4,117.6,114.4,116.1,113.3,117.1,116.1,116.4,116.8],"script":[19.9,18.1,19.3,17.1,17.4,19.5,18.6,19.6,17.8,16.2,16.8,18.8,18,17.4,17.6],"paint":[96,94.6,97.7,92.9,95.7,93.1,95.3,96,94.6,97.2,93.9,95.9,95.4,97.4,97]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.3,12.4,12.8,12.5,12.3,13,12.8,12.2,12.5,11.8,12.2,12.7,12.2,12.2,13.1],"script":[1.4,1.5,1.7,1.4,1.6,2,2.6,1.4,1.6,1,1.4,1.7,1.7,1.4,1.7],"paint":[9.6,10.2,10.4,10.4,10,10.1,9.9,10.2,10,9.8,10.1,10.3,10,10.3,10.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[482.6,474.3,503.9,473.8,479.2,499.5,498.2,513.5,474.2,418.6,471.9,514.8,499,499,503.8],"script":[236.8,232.2,261.5,230.2,235.8,258.4,258.4,265.8,230.9,175.5,229.2,272.5,258.4,259.7,259],"paint":[239.9,236.3,236.2,237.5,237.6,235.5,233.4,241.1,237.1,237.2,236.4,236.3,234.9,233.6,238.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36,36.1,36.5,36.2,35.5,35.4,35.9,35.2,36,35.7,35.7,35.4,35.8,36.1,35.4],"script":[8.2,7.7,7.8,7.8,7.7,7.7,7.7,7.7,8.1,7.8,8.1,7.6,8.1,8.2,7.6],"paint":[26.9,27.5,27.7,27.6,27,26.8,27.3,26.7,27,27,26.7,26.9,26.8,27,26.8]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.7,16.5,18.6,17.1,17.3,18,17.8,17.1,17.2,16.7,19.1,18.4,17.9,17.4,17.6],"script":[14.7,14.3,16.4,14.9,15.1,16,15.5,15.3,15.3,14.7,17.3,16,15.8,15.3,15.5],"paint":[0.6,1.2,1.1,0.7,1.2,0.7,0.8,0.9,0.3,1.7,1.1,1,0.5,1.1,0.6]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1508960723876953]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.742470741271973]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.122164726257324]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9930744171142578]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.42158317565918]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[183]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[206.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[31.2,31.5,31.4,30.9,31.2,31.3,29.3,31.3,31.1,30.5,31.4,31.7,31.6,29.5,31.2],"script":[6.9,7.1,7,6.9,7.1,7.1,6.5,7,7,6.9,7,7.3,7,6.9,6.9],"paint":[23.8,23.9,23.9,23.4,23.6,23.7,22.2,23.8,23.6,23,23.6,23.8,24,22.1,23.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[35.2,35.3,35.3,36.1,35.3,34.8,35.1,35.7,35.1,35.1,35.2,34.5,35.7,35.2,35.2],"script":[11.2,11.1,11.3,11.9,11.6,10.9,10.9,11.1,11,11.2,11.1,10.6,11,10.9,11.2],"paint":[23.4,23.6,23.5,23.6,23.2,23.3,23.7,24.1,23.6,23.3,23.6,23.3,24.1,23.7,23.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.4,16.3,16.4,15.1,15,15.8,15.9,16.1,17.1,17.8,14.8,15.5,16.1,15.8,16.8],"script":[5.1,4.9,4.5,3.9,4.2,4.2,4.4,4.5,4.7,5.5,4.2,3.9,4.3,3.9,4.3],"paint":[10.8,10.1,10.3,10.2,10.1,10.2,10.4,10,10.7,10.8,9.7,9.8,10.8,10.8,11.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[6,6.4,4.5,6,5.2,4.9,5.4,4.4,5.8,6.3,5.3,6.1,4.4,6.4,4.9,4.9,5,6.3,5.1,4.4,4.8,5.1,5.8,5.7,5.1],"script":[3.8,4,1.7,3.9,3.1,3.1,2.8,1.6,3.3,3.9,3.3,3.9,2.3,4.1,2.2,2.5,2.2,3.9,2.6,2,2.1,2.6,3.6,3.4,2.4],"paint":[1.3,1.5,2.3,1.8,1.5,1,1.7,1.1,1.6,2.2,1.5,1.2,2,2,1.1,0.9,2.7,1.5,1.6,1.6,2.1,1.7,2,2.1,1.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[115.5,116.4,114.1,114.7,114.5,116.4,118.4,117.8,116.2,115.2,116.8,115.6,116.4,115,114.8],"script":[18.5,18.7,16.8,19.2,17.1,17.6,20.1,18.7,17.7,18.7,19.1,18.3,18.7,18,18.3],"paint":[95.2,95.9,96,92.8,94.1,96.6,96.2,95.8,96.2,94.3,94.8,94.8,95.4,93.5,94.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,13.2,12.5,12.4,12.8,12.7,12.9,13.2,12.9,12.4,13.4,12.3,11.8,13,13.1],"script":[2.2,2.8,1.6,1.7,2,1.8,2,2,2.3,1.5,2.6,1.4,1.3,2.2,2.3],"paint":[10.5,10.1,10.2,9.9,9.8,10,10.4,10.5,10.1,10.3,10.1,10.1,9.9,10.2,10.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[475.9,473.6,472.6,475.5,482.8,512.3,473,475.8,480.7,504.1,513.2,479.2,507.2,519.2,509.6],"script":[231.2,227.4,227.9,230.7,234.2,264.8,228.6,232.2,236.3,256.5,264.5,234.8,260.4,267.8,265.4],"paint":[238.8,240,238.8,238.2,242.4,241.7,238.5,237.7,238.4,242,242.5,238,241.1,245.4,238.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.1,36,35.1,34.9,35.9,35.3,35.5,36,35.5,35.7,35.5,35.4,35.5,36.1,36.6],"script":[7.7,7.6,7.6,7.6,7.6,7.8,7.8,7.5,7.9,7.9,7.8,7.9,8,7.8,7.6],"paint":[28.5,27.5,26.6,26.5,27.4,26.6,26.8,27.6,26.6,26.8,26.8,26.7,26.6,27.3,28.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.5,16.9,17.8,17.6,17.5,17.5,17.5,17.1,17.3,16.7,18.8,17,18.3,18.6,17.7],"script":[16.8,14.5,15.5,15.4,15.6,15.1,15.4,15.4,14.9,15.1,16.9,15.2,16.1,16.1,15.6],"paint":[1.1,1.3,1.1,1.5,0.3,1.2,0.3,1,1.2,0.7,0.3,1.2,1.5,1,1.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1478271484375]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.536681175231934]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.979541778564453]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9640007019042969]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.664308547973633]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[207.8]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[40.9,37,37.8,38.7,37.9,36.8,40.8,35.4,35.2,36,38.1,37.5,36.3,40.9,37.1],"script":[7.6,7.6,7.8,7.5,7.6,7.9,7.4,7.6,7.7,7,7.7,7.7,7.7,7.3,7.8],"paint":[23.1,23.6,23.8,23.6,23.7,23.9,22.6,24,23.8,23,23.9,23.5,24.1,23.3,23.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[46,37.7,39.6,40.6,39.6,38.1,39.3,39.5,40.6,38.4,39.8,36.9,39.2,39,38],"script":[11.4,11.8,11.5,11.4,11.7,10.5,11.7,11.8,11.6,10.6,11.5,11.4,11.2,11.5,11.6],"paint":[23.4,23.7,23.4,23.3,24.1,23.4,23.4,23.6,24.6,23.3,23.4,23.5,23.7,23.4,23.3]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[37.3,20,37.2,37.8,37.2,37,36.2,34.7,19.1,37.4,36.8,37,20.3,37.1,38.1],"script":[5.3,7.2,6.4,6.7,5.7,6.6,5.6,4.9,6,6.8,6.6,4.7,5.8,5.4,6.3],"paint":[11.8,10.8,12.4,12.6,13.5,12.2,12.4,12.1,12.2,13.1,12.9,13.2,13.1,12.9,12.2]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[9.3,8.5,8.8,15.7,14.7,11.5,14,9.9,11.1,11.1,7.3,9.2,10.3,13.4,16,13.9,13,14.4,7.4,9.1,13.7,9.5,12.4,12.8,12.1],"script":[4.3,2.7,4.5,4.5,4,2.9,4,3.3,3.9,3.5,3.9,3.5,3,4.2,3.7,5,4.7,4,3.8,3.9,4.7,2.9,2.7,3.5,3.4],"paint":[2.2,3,2.7,3.4,2.8,3.1,2.8,4.3,2,3.2,1.9,2.2,2.5,3.5,2.7,2.9,3,4,3.7,2.2,3.5,2.4,2.3,3.6,2.2]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[136.6,116.2,136.2,117.8,118.1,133.4,121.4,135.7,118.5,117.7,133.1,133.4,133.4,132.2,133.8],"script":[21.5,19.7,20.4,20,20.8,20.9,21.4,21.7,20.6,19.6,19.7,19,20,20.6,19.9],"paint":[95.1,95.2,97.4,96,94.4,94.3,95.4,94.8,95.1,95.7,94.9,94.3,92.5,94.1,92.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,15.8,16.6,14.8,14.2,16.8,14.4,13.6,14.4,16.1,13.9,14.2,16.6,14,15.4],"script":[2,2,1.5,1.7,1.7,1.5,2.1,2.2,2.1,1.9,1.7,1.6,1.6,1.6,1.6],"paint":[11.1,11,10.7,10.3,11.2,10.5,10.8,10.4,11,11,11,11.1,10.8,10.4,10.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[400.7,407.7,409.4,409.9,402.9,407.2,401.6,509,418.8,408.7,409.3,412.1,415,406.9,414.2],"script":[153.1,159.3,157.7,160.6,146.3,156.5,146.7,255.2,159.6,155.4,159.4,156.3,160,157,159.5],"paint":[237.3,238.1,240.9,238.8,241.2,239.3,240.3,241.7,241.9,241.1,240.1,241.6,241.5,238.8,240.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,40.5,40.6,41.3,41.7,41.8,40.4,40.2,42,40.1,42.7,41.1,40.4,42.5,40.7],"script":[8.2,8.1,8.1,8,8.4,8.5,8,8.2,8.1,7.8,8.5,7.8,8,8.4,8],"paint":[27.1,26.8,26.9,27.6,26.6,26.6,27,26.7,27.6,26.6,27.5,26.8,27,26.9,27.1]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[35.6,35.8,16.7,35.7,36.6,17.4,19.6,35.1,16.2,17.4,35.3,17.8,35.6,17.4,16.8],"script":[12.2,12,13,12.4,13.5,12.8,14,12.5,11.2,13.5,12.8,13.2,12,12.9,12.9],"paint":[3.3,2.9,1.9,2.6,2.6,2,1.6,2.9,1.9,1.7,2.2,2.6,3.6,3.3,1.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1498394012451172]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.603781700134277]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.070676803588867]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.022233009338379]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.755897521972656]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[212.6]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"01_run1k","values":{"total":[33.8,32.8,32.8,34.3,32.4,32.5,32.7,34,32.5,32.3,34.4,34.1,32.1,33.1,32.6],"script":[9.9,9.5,9.4,10,9.5,9.3,9.6,9.8,9.4,9.3,10.1,9.9,9.2,9.3,9.4],"paint":[23.3,22.8,22.8,23.7,22.4,22.6,22.5,23.6,22.6,22.4,23.7,23.6,22.3,23.2,22.6]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"02_replace1k","values":{"total":[37.6,37.3,37.3,36.9,37.6,38.5,38.4,36.8,39.1,38.3,37.7,38,38.1,38.7,38.2],"script":[13.5,13.2,13,13.1,13.6,13.6,13.8,13,14.1,13.6,13.5,13.6,13.5,13.4,13.4],"paint":[23.5,23.6,23.7,23.2,23.3,24.2,24,23.1,24.3,24,23.6,23.7,23.9,24.6,24.2]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.7,18.2,18.5,18.3,17.4,18,18.9,19.1,18.2,18.1,18,19.8,18.2,18.1,19],"script":[5.6,5.8,6.8,6,5,5.3,6.5,6.4,6.1,5.9,5.7,6.7,5.8,5.9,6.1],"paint":[9.9,10.7,10.3,10,9.7,11.2,10.4,10.7,9.8,9.9,10.4,11.1,10.9,10.2,11.3]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"04_select1k","values":{"total":[5.3,5.8,5.2,5.8,4.8,6.6,5,5.6,5.9,5.9,5.7,5.2,5.1,5.4,5.1,5.9,5.3,5.5,5.2,5.5,5.5,5.5,4.9,5.2,5],"script":[3.3,2.4,2.5,3.9,3.2,4.4,3,3.1,2.5,3.3,3.8,2.5,2.6,3.1,2.9,3.5,2.7,3.3,2.6,3.1,3,3.2,3.1,2.5,2.8],"paint":[1.1,2,2.5,1,0.7,0.9,0.4,2.3,1.6,2.5,1,2.5,0.9,2.2,2,1.5,2.2,2.1,0.8,1.5,1.6,1.2,1.7,2.5,2]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"05_swap1k","values":{"total":[121,125.4,120.5,117.7,119.6,118.9,119.5,120.1,120.6,121.6,118.8,120.6,119,120.4,118],"script":[23.1,21.9,21.4,20.7,22.8,22.5,21.5,22.1,22,21.3,21.4,20.5,22.9,21.9,21.4],"paint":[95.5,101.5,96.5,94.5,93.9,94.3,96.3,95.2,96.2,98.8,95.2,97.1,93.9,97.3,93.4]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.1,14.3,13,13.6,13.6,13.8,13.7,14,13.8,14.2,13.5,13.3,13.7,13.3,13.9],"script":[2.9,2.6,2,2.1,2.5,2.8,2.9,2.7,2.7,3,1.9,2.3,2.4,2,3.1],"paint":[10.4,11,10.1,10.7,10.4,10.5,9.8,10.6,10.4,10.5,10.9,10.3,10,10.6,10.1]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"07_create10k","values":{"total":[458,436.1,459.7,444.4,452.7,452.6,448.5,448.1,447.8,448.4,445.4,448.7,447.2,445.1,449],"script":[204.1,193.1,207.6,194.3,200.9,202,199.5,199.3,196.4,196.5,202.8,196.8,198.1,203.5,201.5],"paint":[247.2,235.9,245.1,242.9,245.4,244.2,242.5,242.3,245,245.4,235.9,245,242.4,235.4,240.7]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.6,39.1,38.5,39,38.8,39.1,39.5,38.5,38.9,37.8,38.1,38.8,39.1,38.4,38.6],"script":[11,11,10.5,10.8,11,10.9,11,10.7,10.9,10.4,10.5,11.1,10.9,10.8,10.7],"paint":[27.6,27.2,27,27.3,26.9,27.2,27.6,26.8,27.1,26.5,26.7,26.8,27.3,26.6,27]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.8,17.6,18,17.4,17.8,19,18.1,17.6,18.3,18.1,18.7,17.6,18.3,18.2,18.4],"script":[16.8,15.9,16.5,15.4,15.7,16.7,15.7,15.1,16,15.4,16.6,16,15.8,15.9,15.8],"paint":[1,1,0.3,1.3,1.3,1.6,1.4,1.4,1.1,0.7,1.3,1.1,1.5,0.8,1.8]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0995988845825195]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.876399993896484]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.323685646057129]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.748748779296875]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.97575855255127]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[150.2]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[42.3]}},{"framework":"react-kr-observable-v18.3.1 + 1.0.39-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[165]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"01_run1k","values":{"total":[33.3,32.3,32.2,32.1,32.6,32.6,32,32.3,32,31.9,32.5,32.3,32.9,32.7,32.2],"script":[9.7,9.2,9.2,9.2,9.5,9.3,9.2,9.3,9.3,9.3,9.5,9.4,9.1,9.1,9.3],"paint":[23.1,22.7,22.6,22.5,22.7,22.9,22.3,22.6,22.4,22.1,22.7,22.6,23.3,23.2,22.5]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"02_replace1k","values":{"total":[37.8,37.5,37.8,37.5,37.6,37.4,37.9,37.3,37.8,37.4,37.4,37.7,37.2,37.9,38.4],"script":[13.2,13.4,13.2,12.9,13.2,13.1,13.1,13.2,13.2,13.1,13,13.3,12.6,13.2,13.9],"paint":[24.2,23.7,24.2,24.1,24,23.9,24.4,23.7,24.1,23.9,23.9,24,24.2,24.2,24.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,17,16.9,16.2,16.6,17.6,15.8,17,16.8,17.3,17.5,17,16.9,16.6,15.4],"script":[5.8,4.9,5.3,4.7,5.4,5.3,4.3,5.5,4.9,4.9,4.8,5.2,4.8,4.6,4],"paint":[11.2,11,10.2,10.5,9.9,10.9,10.1,10.6,9.9,11.4,11.7,10.3,11.2,10.9,9.4]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"04_select1k","values":{"total":[5.9,5.3,5.3,5.3,4.7,4.8,5.8,5,4.8,5.9,4.9,4.4,4.5,4.3,5.8,4.9,5.2,4.8,4.5,5.1,5.9,5.2,5.3,5,4.9],"script":[2.4,2.9,2.2,2.7,2,2.7,3.3,2.9,1.8,2,2.3,2.3,2.2,2.4,2.4,2.1,2.7,2.9,2.6,2.8,3,3.7,2.4,2.6,2.6],"paint":[2.1,1.3,2.5,2.4,2.1,1.1,1.6,1.9,1.7,0.9,2.5,1,2.2,0.9,2.3,2.2,1.2,1,1.3,1.5,2.7,0.9,2.7,1.4,1.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"05_swap1k","values":{"total":[114.8,114.4,117.4,119.5,116.9,115.9,114.5,118.1,118.3,120.7,112.9,115.8,115.1,113.1,116.9],"script":[18.1,19.2,18.8,19.3,19.8,18.9,17.9,19.4,19.4,18.6,17.9,18.9,17.9,18.2,18.6],"paint":[94.2,93.6,96.3,98.7,95.6,94.7,94.8,95.5,96.3,100.1,93.9,95.6,95.4,93.6,95.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,12.5,12.8,12.9,12.5,12.5,12.8,13,12.8,12.7,12.9,12.6,12.5,12.8,12.9],"script":[1.5,1.7,2.3,2.1,1.5,1.7,1.7,1.8,1.6,1.5,2,1.2,1.6,1.5,1.9],"paint":[10.3,10.2,9.9,9.9,10.3,10.2,10.6,10.4,10.5,10.5,10.2,10.8,10.1,10.5,10.4]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"07_create10k","values":{"total":[441.4,439.5,443.3,446.4,444.3,446.4,445,446.7,450.3,449.1,447.8,446.3,448.6,441.9,449.6],"script":[195.1,195.2,195.8,200.5,197.5,198.7,199.7,201.3,203.5,202.9,200.2,198.8,200.3,195.1,198.2],"paint":[240.9,238.7,241.4,240.5,241.1,241.6,239.8,240,241.3,240.9,241.3,241.8,242.2,241.1,245.8]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.5,38.5,39.1,38.5,38.6,38.1,38.4,38.3,38,37.9,38.2,38.6,38.2,38,38.2],"script":[10.2,10.6,10.3,10.4,10.5,10.3,10.6,10.4,10.2,10.2,10.2,10.3,10.4,10.4,10.3],"paint":[27.5,27.2,28.1,27.3,27.3,27.1,27.1,27.2,27.1,27,27.3,27.6,27.1,26.9,27.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,11.6,10.9,10.1,11.5,12,12,11.7,11.3,11.2,11.6,12.5,11.9,12,12],"script":[8.9,10.2,9.4,9.1,9.8,10.6,10.4,10.1,9.8,10,10.7,11,10.1,10.4,11.1],"paint":[0.2,1.3,1.4,0.9,1.6,0.8,1.2,1.5,1.4,0.6,0.3,0.6,1.7,1.3,0.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.382737159729004]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.2031965255737305]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.78048038482666]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7822093963623047]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[55.274221420288086]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[213.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219.5]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"01_run1k","values":{"total":[33.8,31.6,33.7,31.8,33.4,31.6,32.9,31.8,31.9,33.4,33.7,33.7,32.2,32.2,33.7],"script":[9.1,8.6,9.4,8.7,9.1,9,9.4,8.8,9.1,9.4,9.3,9.3,8.7,8.8,9.6],"paint":[24.2,22.5,23.8,22.6,23.8,22.1,22.9,22.5,22.3,23.4,23.8,23.8,23,22.9,23.6]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"02_replace1k","values":{"total":[38.4,37.4,36.4,36.8,36.5,37.1,36.9,37,36.4,36.9,36.5,38.6,37.1,37,37.3],"script":[13,12.8,12.4,12.7,12.6,12.5,12.6,12.8,12.3,13,12.3,12.6,12.7,12.3,12.8],"paint":[24.8,24,23.5,23.6,23.3,24,23.7,23.6,23.5,23.4,23.9,25.4,23.8,24.1,23.9]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.3,18.1,17.3,18.3,18.1,18.6,17.7,18.8,17.6,17.9,18.2,17.1,18.7,17.6,17.1],"script":[5.8,5.5,4.8,6.2,5.3,6.1,5.4,6.2,5.2,5.8,5.7,5.1,6.5,5.2,5.1],"paint":[10.1,11.1,11,9.6,10.7,10,9.6,11.5,11.1,10.6,10.4,10.9,10.2,10.4,9.5]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"04_select1k","values":{"total":[7.6,6.5,5.9,6.7,5.9,6.8,6.4,6.6,6.4,7.2,6.5,7.2,6.5,7.2,6.7,6.9,6.3,6.6,6.7,6.2,6.5,6,6.7,7,6.6],"script":[4.6,4,3.5,4.5,3.4,4.1,3.7,4.6,4,4.4,4.4,4.6,3.4,4.3,4,4.2,3.3,3.8,4.3,3.9,4.5,3.5,4.1,4,4.4],"paint":[1.6,1.8,1.6,1.6,1.6,1.2,1.4,1.1,1,2,1.5,1.7,2.9,2.1,2.4,1.5,1,2,2.3,1.5,0.7,1.8,1.6,2.8,1.5]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"05_swap1k","values":{"total":[121.1,121.6,119.2,118.4,118.6,119.6,123.7,118,119.9,122.7,120.1,124.3,117.9,121.3,122.9],"script":[23.1,22.9,22.1,20.9,22.6,21.5,22.4,22,22.1,26.2,24.6,26.4,21.3,25.4,22.7],"paint":[95.1,96.5,93.4,94.4,93.5,95.3,98.3,93.7,95.2,93.7,92.6,95.8,93.4,92.9,96.9]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.9,13.8,13.8,13.2,13.4,13.9,13.4,13.5,13.2,13.2,12.8,12.3,13.5,13.3],"script":[1.9,2.1,2.7,2.1,2.2,2.6,3.1,2.1,2.4,1.8,2.8,1.9,1.6,2.8,1.9],"paint":[10.3,10.3,10.2,11,10.4,10.3,10.2,10.6,10.3,10.3,9.9,10.2,9.8,10,10.7]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"07_create10k","values":{"total":[437.5,443.6,445.6,442.8,440.9,441.4,443.3,439.7,442.3,438,447.5,437.4,443.5,438.5,440.1],"script":[197.3,197.9,201.7,197,198,192.5,198.8,194.4,197.9,193.5,200.4,193.8,199.3,195.7,196.3],"paint":[234.7,238.8,237.9,239.7,236.8,242.7,238.6,239.1,238.2,238.5,241.1,237.8,238.1,236.8,237.6]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.4,39.9,39.7,40.6,41.6,41.1,41,40.4,40.5,40.7,39.9,40.4,40.1,40.6,39.9],"script":[12.4,12.3,12.5,12.6,12.9,12.6,12.9,12.2,12.3,12.4,12.5,12.5,12.5,12.4,12.4],"paint":[27.1,26.6,26.3,27.1,27.8,27.6,27.2,27.3,27.3,27.4,26.5,27,26.7,27.3,26.5]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.5,17.9,18.1,19.5,19,17.4,17.3,17.6,17.7,17.9,18.5,17.5,17,17.8,17.5],"script":[16.6,16.1,16.2,15.5,16.5,15.8,15.4,15.2,15.5,15.8,15.6,16.1,15.2,16.2,15.5],"paint":[1.6,0.6,0.8,1.7,0.3,0.3,1,2.1,1.1,0.9,2.2,0.3,0.9,0.6,1.1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5994110107421875]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.306112289428711]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.780889511108398]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3830108642578125]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.6716890335083]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[242.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[274.8]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[35.5,34.8,35,34.7,35.1,34.8,35.1,34.6,34.8,34.8,34.7,34.6,34.7,34.6,34.7],"script":[12,11.6,11.6,11.6,11.7,11.6,11.8,11.4,11.6,12,11.6,11.5,11.6,11.6,11.3],"paint":[23,22.8,23.1,22.7,22.9,22.8,22.7,22.8,22.8,22.4,22.8,22.7,22.7,22.7,23]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[42.3,42.4,42.1,42.9,42,42.2,42.1,42.1,42,42,42.4,42.6,42.5,42,42],"script":[16.7,17.1,16.9,16.8,16.7,16.8,16.8,16.8,17,16.8,17.1,17.2,17,16.8,16.8],"paint":[24.9,24.7,24.7,25.5,24.8,25,24.8,24.8,24.6,24.8,24.8,24.9,25,24.8,24.7]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22,20.9,20.3,19.7,18.9,19.7,19.6,19.9,20.3,21,19.2,21.2,21.7,19,19.8],"script":[8.2,8.1,8.2,7.6,7.6,8,7.6,7.6,8.2,8.9,7,7.8,8.8,7.2,7.4],"paint":[11.3,11.9,10.6,10.9,10,10.1,10.6,9.9,10.9,10.6,10.5,11.7,11.2,9.6,9.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.7,6.5,7.1,6,6.9,6.4,6.1,7,6.7,6.7,6.6,6.6,6.5,5.6,6.5,6.5,4.9,6.6,6.4,6.7,6.7,7.1,6.3,6.8,6.4],"script":[3.8,3.8,4.1,3.8,4.2,3.8,4,4.3,3.7,3.8,3.7,4.2,4.4,2.8,3.8,4,3,4.4,3.2,4.1,4.3,4.7,3.7,4.6,3.9],"paint":[0.9,1.2,2.3,1,1.7,2.4,1.9,1.4,2.7,2.7,1.6,1.6,1.3,2.6,2.4,1.6,1.7,1.3,2.5,2.4,1.7,1.5,1.3,1.5,1.5]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[120.9,117.3,124.9,116.7,118.6,122.8,125.4,119.2,122.8,119.6,117.9,117.8,122.6,120.8,121.8],"script":[21.7,21.6,25.8,21.6,22.9,21.4,23.5,20.6,23.5,21.9,20.3,22.1,22,23.2,23.3],"paint":[96.5,93.6,96.9,93.7,94.3,99.6,99.6,96.4,97.6,95.3,96.1,94.4,99.2,95.8,96.4]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[25.5,26.1,26.8,25.8,25.5,26.2,25.8,26.9,27.4,27.2,26.6,25.7,26.5,26.2,26.1],"script":[13.7,13.7,14.7,13.7,13.9,14,13.9,14.4,14.8,14.9,14.4,13.9,14.4,14.4,14.2],"paint":[10.6,11.4,11.1,10.6,11.1,11.4,11.4,11.5,11.8,11.3,11.5,10.8,11,10.8,11.2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[472.5,466.1,475.2,469,466.5,469.1,462.8,467.9,470.7,467.3,471.9,466.1,467.7,466.3,470.4],"script":[226.4,221.7,227.8,224.8,222.4,225.5,220,222,224.8,221.9,226.7,220.7,218.8,220,223.8],"paint":[240,238.5,241.5,238,238.1,237.4,237.2,239.5,239.8,239.8,239.4,239.6,242.8,240.3,240.6]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.6,41.2,41.5,41.5,41.3,41,41.7,41.3,41.3,42,42,41.4,41.1,41.2,41.1],"script":[13.3,13,13.2,13.2,13,12.9,13,13.1,12.8,13,13.4,13,12.8,12.9,12.8],"paint":[27.3,27.5,27.5,27.5,27.5,27.4,28,27.5,27.8,28.3,27.9,27.5,27.6,27.5,27.5]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.9,20.6,20.2,19.6,20,21.5,18.4,19.5,20.6,20.6,20.6,21.6,22.3,21.3,19.3],"script":[19.3,19.1,19.2,17.8,18.2,19.3,17.2,18.3,19.4,18.3,18.8,20.1,20.1,19.7,18],"paint":[1.4,1.4,0.3,0.7,1.7,2.1,0.8,1.1,0.8,2,1.7,0.6,1.9,1.4,1.2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.29864501953125]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.69601821899414]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.361976623535156]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.194276809692383]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.69268703460693]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[193.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[52.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[218.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[33.4,32.7,32,32,32.7,31.9,32.1,31.4,32.1,31.8,32,31.8,31.7,31.8,32],"script":[9.4,9.2,8.8,8.8,9.2,8.9,8.8,8.7,8.9,8.8,8.9,8.9,8.7,8.9,8.8],"paint":[23.5,23,22.6,22.7,22.9,22.5,22.7,22.3,22.6,22.5,22.5,22.4,22.4,22.3,22.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[37.4,36.8,38.1,37.8,37.2,37.7,37.4,37.6,37.4,37,37.1,37.4,37.2,37.6,37.4],"script":[13.2,12.7,13,13.6,12.6,13.2,13.2,12.6,12.6,12.6,12.9,12.6,12.4,12.6,12.8],"paint":[23.6,23.5,24.5,23.7,24,23.9,23.7,24.4,24.2,23.7,23.6,24.3,24.3,24.4,24]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.3,18.9,20.1,19.7,21.1,19.8,19.5,21.2,19,20.7,19.3,19.5,19.8,20.1,20.5],"script":[7.6,7.1,7.4,7.6,6.9,7.3,7.4,7.9,7.6,8.2,7.2,7.2,7.6,7.7,7.6],"paint":[11.8,10.3,10.7,10.2,11.5,10.6,11.2,11.3,9.9,10.1,9.5,10.5,11.5,11,10.8]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,6.9,6.2,6.5,6.1,6.6,5.3,7.3,6.6,5.7,6,7.5,5.7,6,5.9,6,6.6,7.4,6.3,7.9,5.8,6.1,6.6,7.2,6.1],"script":[3.9,4.6,3.6,3.7,3.7,4.1,3.1,4.4,3.8,2.8,3.3,4.7,3.3,3.1,3.9,3.8,3.9,5,3.5,4.2,3.7,3.7,4,4.5,3.7],"paint":[1,1.2,2.1,1.6,1.4,1.5,2,1.5,1.9,2.7,1.7,2.7,1.8,2.7,1.8,1.1,2,2.2,0.4,0.4,1,1.7,1.3,2.1,1.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[118.7,117.8,117.8,119.3,117,119,120,119.4,121.1,118,117,118.2,116.7,118.7,115.1],"script":[19.4,21.4,22.1,20.6,21.2,20.6,22.2,23.2,21,19.5,20.9,21.1,18.9,20.6,20],"paint":[96.6,93.4,94.1,95.1,93,95.2,94.5,94.5,97.5,96.1,93.9,94.8,95.1,95.9,92.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.9,13.8,14.6,14.1,14.9,13.8,14.2,14.3,14.5,13.5,14.2,14,14.2,13.5,15.4],"script":[2.6,2.7,3.9,3.6,4,2.9,2.8,3.2,3.5,2.3,3,3.2,4,2.6,3.5],"paint":[10.1,10.1,10.1,9.9,10.3,10.3,10.4,10.5,10,10.3,10.4,9.5,9.8,10.3,11.3]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[439.6,427.1,431.4,432.1,429.5,432.7,423.5,433.3,436.6,434.3,429.3,434.4,430.2,431,428.8],"script":[192.6,188,186.8,191.1,183.9,192.3,187.8,192,194.5,188,184.1,192.5,185.4,184,183.8],"paint":[241.1,233.1,238.4,235.1,239.3,234.4,230.2,235.5,235.7,239.8,238.7,235.6,238.7,241,239.1]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,37.5,37.3,37.3,37.3,37.5,37.5,39.7,37.3,37.8,37.8,37.3,36.8,36.9,37.5],"script":[9.7,9.5,9.8,9.5,9.5,9.4,9.6,10,9.5,9.5,9.4,9.4,9.5,9.5,9.6],"paint":[27,27.1,26.7,26.9,26.9,27.1,26.9,28.7,26.9,27.4,27.5,26.9,26.4,26.6,27]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.2,17.9,18.2,17.8,16.5,18.8,18.1,16.7,18.6,19.8,18.6,17.9,17.5,18.2,17.4],"script":[15.7,15.4,15.8,16,14.8,17,15.4,14.9,16.6,18,16.9,16.1,15.2,16.4,15.6],"paint":[0.7,1,1.2,0.3,0.3,0.3,1.9,0.7,1.2,0.3,0.4,0.9,1.1,0.9,1.2]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2120399475097656]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.034308433532715]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.547597885131836]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.028146743774414]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[45.49991512298584]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[208.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[34.1,34.2,34.4,34.5,35.1,34.9,35,33.3,33.3,34.6,34.2,34.7,35.1,34.3,34.2],"script":[10.3,10.3,10.2,10.5,10.8,10.4,10.8,9.9,10,10.6,10.3,10.9,11,10.4,10.4],"paint":[23.3,23.3,23.6,23.5,23.7,23.9,23.7,22.8,22.7,23.5,23.3,23.3,23.6,23.3,23.2]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[37.9,38,39.2,38.1,38.2,38.2,38.7,37.8,38.2,38.3,38.2,38.4,37.7,37.7,38.6],"script":[13.8,14,14.8,14,14,14,14.5,13.8,13.9,13.9,13.9,14.1,14.3,13.6,14.1],"paint":[23.5,23.4,23.9,23.6,23.7,23.7,23.6,23.4,23.8,23.8,23.8,23.8,22.9,23.5,23.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21,20.5,20.8,20.9,20,19.5,20.2,20.4,20.9,22.8,21.6,20.5,21.1,21,20.9],"script":[7.6,7.6,8.1,8.7,7.6,7.6,7.3,7.2,8.1,9.1,9.4,8,7.9,8.5,7.8],"paint":[10.6,10.9,10.5,10.8,9.7,9.4,10.4,11.8,10.8,11.8,10.6,10.8,10.6,10.7,10.6]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[7.1,8.9,7.7,8.8,7.4,7.8,7.9,9.3,8.8,9,8.5,8.2,9.2,9.7,8.7,8.7,7.7,8.1,7.5,9.9,7.4,8.3,8.6,5.9,7.6],"script":[4.2,5.8,5.1,5.2,4.5,5.2,5.8,5.9,5.6,5.6,5.8,5.5,5.8,6.5,5.9,5.8,4.8,4.6,4.3,6.6,4.9,5.2,5.4,3.4,4.9],"paint":[2.3,2.7,1.4,1.3,2.4,1.3,1.2,2.4,2,2.1,1.7,2.5,1.2,1.9,1.1,1.4,2.7,1.8,2.9,2,1.9,1,2.2,2,2.5]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[119.2,119.7,121.4,122,120.2,120.3,121.2,122.5,122.3,120.3,121.1,122.3,118.8,118,122.8],"script":[22.7,22.7,23.1,22.4,23.2,22.5,23.2,24.6,24,23,23.5,23.1,22.3,23.6,22.3],"paint":[93.8,94.7,95.9,97.7,94.2,95.1,96.4,95.8,96,95.5,93.8,96.3,94.2,91.7,97.5]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.5,14.5,14.9,15.3,15,14.6,15.3,15.1,15.3,15.9,14.6,15.3,15.7,15,15.1],"script":[4.5,3.6,4,4.6,4.1,3.7,4,3.8,4.1,5,3.7,4.6,4.6,4.1,4.3],"paint":[10.1,10.2,10.2,10.1,10.1,9.6,10.2,10.3,10.4,10.2,10.2,10.2,10.4,10.5,10.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[446.4,434.7,439.5,443.9,439.7,446.3,441.1,440.7,450.2,440.7,439.8,441.7,435.3,443.8,443.9],"script":[204.4,188.7,198.4,198.6,192.3,201.6,200.5,198,204.9,198.6,199.6,199.3,191.6,198.8,202.8],"paint":[235.7,240,235.1,239.2,241.4,237.8,234.5,236.7,239.4,235.7,234.2,236.2,237.4,239,235.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.4,39.5,39.8,39.3,39.8,39.7,38.9,39.6,39.1,39.5,39.3,39.7,39.1,39.4,39.3],"script":[11.4,11.4,11.5,11.3,11.8,11.4,11.4,11.4,11.8,11.6,11.5,11.4,11.7,11.3,11.3],"paint":[27.1,27.1,27.4,27.1,27.1,27.4,26.6,27.3,26.4,27,26.9,27.3,26.8,27.1,27.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.1,20.6,19.6,20.6,20,20.3,21,19.3,19.4,22.5,21.4,19.3,20.2,19.8,19.3],"script":[17.8,18.5,17.6,18.2,18.2,18.2,19.1,17,17.3,19.8,19.3,17.1,18.4,17.7,17],"paint":[1.4,0.7,0.9,1.5,1.2,0.8,0.3,0.3,1.9,1.4,1.1,1.3,0.8,1.4,0.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3901863098144531]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.47097110748291]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.005094528198242]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.470855712890625]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.52577781677246]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[246.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[282.6]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"01_run1k","values":{"total":[35.5,34.6,34.7,34.6,34.6,35.2,35,35.1,35.2,34.4,34.8,34.5,35,34.7,34.6],"script":[12.2,11.3,11.4,11.5,11.5,11.7,11.8,11.5,11.7,11.3,11.4,11.5,11.7,11.5,11.5],"paint":[22.8,22.8,22.9,22.7,22.7,23.1,22.8,23.1,23.1,22.7,23,22.6,23,22.8,22.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[42.4,42.3,42,42.3,42.1,42.1,41.9,43,42,42.2,42,42.3,42.3,42.5,42.5],"script":[16.9,17.1,16.9,17.1,17,16.7,16.6,17.5,16.9,16.8,16.9,17.1,16.9,17,17],"paint":[24.9,24.8,24.7,24.8,24.7,24.9,24.8,25.1,24.7,24.9,24.7,24.8,24.9,25.1,25]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.6,21,21.2,20.1,20.5,19.5,19.5,21.9,21.7,20.9,20.4,20.2,20.5,20.1,22],"script":[7.9,8.1,8.4,7.8,8.1,8,8.1,8.2,8.6,8.4,8.2,7.6,7.8,8.6,8.8],"paint":[10.4,10.5,11.4,10.9,9.1,10.1,10.4,12,11.7,11.1,10.6,11.3,10.7,9.9,12.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"04_select1k","values":{"total":[7.3,7.4,6.7,6.6,5.6,6.1,7,6.3,6.4,6.1,5.9,6.7,7,6.6,6.8,5.8,5.5,7.1,5.9,6.5,6,5.7,6.5,6.1,6.2],"script":[3.9,5,4,4.4,3.4,4.2,4.4,4.5,3.2,3.5,3.5,4.1,4.3,3.7,4,2.9,3.5,4.8,3.2,4.1,3.9,3.3,3.7,3.5,3.9],"paint":[3.2,1.3,1.9,1.3,2,1.2,1.1,1.2,3.1,1.5,1.2,1.6,1.8,2.8,1.9,2.7,1.1,1.7,2.5,2,1.1,1.9,2.6,1.8,1.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[123.8,121,120.4,121.3,119.5,122.5,125.6,119.9,122.9,122.5,122,120,126.7,125,120.3],"script":[23.7,22.1,22.5,24.3,22.8,24.6,24.4,23.6,23.8,23,23.7,19.5,23.7,24.2,22.4],"paint":[98.6,97.5,95.3,94.5,96,96.4,99.1,95.1,97.5,97.4,95.4,99.3,100.7,98.5,95.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[26.3,26.5,26.6,26.7,26.2,25.6,26.3,26.1,26,26.1,26.5,26.3,26.5,26.1,25.4],"script":[14.1,14.4,14.4,14.3,13.8,14,14.1,13.9,14.1,14,14.3,14,13.9,13.9,13.7],"paint":[11,10.9,10.9,11.3,11.4,10.3,11.3,11,10.7,11.2,11,11.2,11.6,11.1,10.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"07_create10k","values":{"total":[467.5,463.2,466.8,467.1,461.6,460.3,467.6,475.6,480.3,473.3,474.5,475.4,473.4,476.3,478.8],"script":[219.5,219.4,222.5,221.4,219.2,216.9,218.4,231.2,233,226.9,227.4,230.1,225.4,231.7,231.2],"paint":[242.2,237.9,237.9,240.1,236.5,237.7,243.2,238.4,241.3,240.2,241.2,239.5,242,239,241.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.5,41.6,41.6,41,41.1,41.1,41.2,41.4,41.4,41.4,41.6,41.2,41.3,41.4,41.6],"script":[13.2,13.1,13,12.8,13.2,13,13.1,12.9,13.2,13.3,13.2,12.8,13.1,13,12.9],"paint":[27.5,27.5,27.8,27.5,27.2,27.3,27.3,27.8,27.3,27.4,27.6,27.6,27.4,27.6,27.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.7,19.1,21,20.7,18.7,22.7,21.2,20.4,21.9,20.6,20.1,19.9,19.8,19.6,19.5],"script":[19.4,17.4,19.7,18.9,17.2,21.2,18.8,18.9,20,18.5,18.8,18.4,17.7,17.8,18],"paint":[1.2,0.8,1.2,1.7,1.4,1.4,2.3,0.7,1.7,0.4,0.3,1.3,2,1,1.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3348073959350586]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.681660652160645]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.364008903503418]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2180423736572266]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.29884624481201]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[200.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[54.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[233.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"01_run1k","values":{"total":[31.4,30.2,30.1,30,30.2,30.3,30.6,29.8,29.9,29.9,30.1,29.6,30.3,31.8,30.2],"script":[7.4,7.2,7.4,7.4,7.5,7.6,7.9,7.3,7.2,7.2,7.2,7.2,7.2,7.5,7.4],"paint":[23.4,22.4,22.2,22.1,22.2,22.2,22.2,21.9,22.2,22.1,22.3,21.9,22.6,23.8,22.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"02_replace1k","values":{"total":[35.5,36.4,35.3,35.9,36.1,36.3,35.1,35.3,36.5,36.1,35.2,35,35.5,37.1,35.8],"script":[10.8,11.1,11.1,11.1,11.3,11.2,10.6,10.7,11.3,11,10.9,10.7,10.9,11.1,11.2],"paint":[24.2,24.7,23.7,23.9,24.2,24.5,24,24,24.7,24.5,23.7,23.7,24,25.4,24]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16,15.8,15.6,17,16.5,16.1,15.9,15.7,17.1,16.2,16.2,16.2,16.7,16.8,17.4],"script":[4.5,4.3,4.5,4.1,3.8,4.1,3.7,4.4,4.4,4.8,4.5,4.6,4.7,4.5,5],"paint":[8.7,10.3,9.6,11.1,11.3,10.8,11.2,10.4,10.7,10.4,9.8,11.3,10.8,10.8,10.6]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"04_select1k","values":{"total":[5.5,4.9,4.3,4.2,6.1,7.5,4.7,5.2,4.7,4.7,4.3,4.8,4.6,5.7,4.2,4.6,5.3,4.4,4.7,5.5,4.3,5,5,5.7,6],"script":[2.1,2.5,1.9,2,2.6,2,2.4,2.7,2.4,2.3,2.4,2.3,2.7,1.7,1.9,1.9,2.5,2.5,2.2,2.4,2.2,2.7,2.5,2.2,2.3],"paint":[2.4,1.3,1.5,1.7,1,1.2,1.2,1.7,1.1,1.6,1,1.2,1,2.8,1.7,1.6,1.1,1.8,1.5,1.4,1.9,1.1,1.5,1.4,3.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"05_swap1k","values":{"total":[119.3,115.3,114.3,116.6,117.1,119.4,114.9,119.9,115.7,117.6,116,115.9,117.3,115,116],"script":[18.2,19.6,16.9,19.3,18.6,20.5,17.9,18.5,18.8,17.9,18.6,19.1,17.1,19.7,18.7],"paint":[98.5,93.1,95.3,95.5,96,96.5,93.9,99.9,95,97.7,95.3,93.7,96.9,92.7,94.6]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.5,13,12.3,13.1,13,13,13.3,12.6,13,13.2,13.3,12.9,12.7,12.7],"script":[1.9,2,1.8,1.4,1.4,2,1.7,2.4,2,1.8,1.8,1.8,1.8,1.6,1.4],"paint":[10.3,9.8,10.5,9.9,10.9,10.6,10.8,10,10,10.7,10.8,10.5,10.1,10.5,10.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"07_create10k","values":{"total":[478.4,482.4,477.6,476.5,478.4,481.9,478.4,480.5,484.5,478,477.5,475.1,480.9,479.2,474.9],"script":[235.6,236.2,231.9,231.9,234,235.8,233.3,234.8,235.8,232,232.5,230.7,235.8,234.9,230.8],"paint":[236.6,240.2,239.6,238.5,238.3,240.1,239.1,239.8,242.9,239.7,238.9,238.2,239.1,238.3,238.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.2,36.4,37.5,36.7,36.5,36.8,37,37.2,38.2,37.2,37.1,37.6,36.7,36.2,36.5],"script":[8.5,8.1,8.6,8.1,8.1,8.2,8.2,8.2,8.4,7.8,8.2,8.1,8.2,7.9,7.9],"paint":[27.8,27.4,28,27.8,27.5,27.7,27.9,28.1,28.9,28.4,27.9,28.5,27.7,27.4,27.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.9,17,17.1,17,17,19.7,16.6,17,15.8,16.3,18,16.3,16.3,16.1,17.4],"script":[15,15,14.9,14.9,15.1,17.3,15,14.7,14.4,13.9,15.9,14.7,14.2,13.9,15.5],"paint":[0.3,1.8,1.3,1.8,0.3,1.3,0.3,0.7,1.2,0.4,1.7,0.3,0.6,0.3,1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2344284057617188]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.5172576904296875]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.889181137084961]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9836435317993164]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.52849006652832]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[196.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[53.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[226.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"01_run1k","values":{"total":[32,31.5,31.9,30,29.6,31.3,29.9,31.6,31.9,29.6,31.3,29.7,32,29.6,30.1],"script":[7.8,7.7,7.9,6.8,6.7,7.2,6.7,7.6,7.4,6.7,7.3,6.7,7.6,6.6,7],"paint":[23.7,23.3,23.4,22.7,22.5,23.5,22.7,23.5,23.9,22.3,23.5,22.4,23.9,22.4,22.7]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"02_replace1k","values":{"total":[35.8,35.3,36,35.9,35.7,35.7,35.8,36.1,35.6,35.4,36.1,35.1,35.6,35.6,35.1],"script":[11.4,11.7,11.6,11.3,11.4,11.7,11.6,11.6,11.5,11.6,11.8,11,11.2,11.6,11.5],"paint":[23.8,23.1,23.9,24.1,23.7,23.4,23.7,24,23.6,23.3,23.8,23.5,23.9,23.5,23.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.8,15.7,17.7,17.2,16,17,17.8,17.1,17.4,17,17.5,15.7,16.8,16,17.3],"script":[5.2,4.9,5.2,4.7,4.7,4.9,5.8,5.1,4.6,5.1,5.4,4.5,4.3,4.2,5.1],"paint":[10.2,9.4,10.9,11.4,9.9,11.2,9.8,9.9,11.9,9.5,10,9.7,11.6,10.4,10.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.3,4.2,4.8,4.3,5.9,6,5.9,4.6,4.5,4.1,4.7,6.1,4.7,5.3,4.3,7.9,5.1,3.6,4.6,5.7,4.9,5.5,4.1,6],"script":[1.3,2.4,2,2.9,1.3,3.2,3.6,3.5,2.2,2.3,1.1,2.8,2.4,3,2.8,1.8,3.1,2.8,1.3,2.1,3.2,3,2.8,2.2,3.6],"paint":[2.8,1,1.7,1,2.9,1.5,1.5,0.4,1.4,1.8,2.8,1.7,1.6,0.9,1.5,1.6,1.5,2.1,1.7,1.6,1.7,1.6,2.4,0.9,1.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"05_swap1k","values":{"total":[116.8,114.8,115.3,117,114.8,115.1,117.6,115.4,114.6,117.8,116.3,114.6,116.4,115.8,115.6],"script":[18.9,17.8,19.4,20.9,17.2,18.9,19,18.6,18.2,19.4,18,17.5,18.5,19.1,17.9],"paint":[95.9,94.8,93.2,93.3,96.1,92.9,95.7,95.2,93.6,96.4,95.4,94.4,96.6,95.1,96.2]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,13,13.3,13,12.4,12.9,13.2,13.3,13.1,12.7,12.8,13.2,13.2,12.5,13.5],"script":[1.3,2.5,2.6,1.9,1.5,2.5,2.4,2.4,2.5,1.8,1.6,2.3,2.4,1.7,2.7],"paint":[11,9.8,9.8,10.6,9.9,10.1,9.8,10.4,10,10.1,10.4,9.8,9.5,10.2,9.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"07_create10k","values":{"total":[421,420.8,424.8,419.8,422,425.6,418.9,417.2,421.4,416.8,425.4,422.4,426.7,419.6,422.6],"script":[175.7,177.4,181,175.1,175.8,177.5,175.8,175.9,174.8,176.4,177.5,177.8,182.1,177.6,178.9],"paint":[238.9,237.1,237.7,238.4,239.1,241.4,237.2,235.3,240.2,234.8,241.8,238.6,238.7,235.9,238]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,35.7,36.5,36,36.6,36.8,36.6,38.3,35.6,35.9,36.5,36.1,35.8,36.6,35],"script":[8.6,8.3,8.7,8.2,8.9,9.1,8.1,9.3,7.8,8.1,8.2,8.4,8,8.2,7.8],"paint":[27.2,26.5,26.9,26.9,26.9,26.8,27.5,28.1,26.9,26.9,27.4,26.8,26.9,27.5,26.3]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.9,17.2,16.1,16,18.3,17.4,17.4,17.7,17.4,16.4,19.2,18,16.8,17.6,15.8],"script":[14.7,14.9,14.6,13.6,16.2,15,15.2,15.4,14.9,14.5,17.7,15.9,14.5,15.2,14.4],"paint":[1,1.1,0.7,1.2,1.5,1.4,1.3,1.2,2.1,0.4,0.5,1,2.1,1.1,0.3]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1507320404052734]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.147265434265137]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.572845458984375]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9454889297485352]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.243062019348145]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[181.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[205.1]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.6,33.1,32.5,33.7,33.8,33.4,32.4,33.4,33.1,32.8,33.1,32.2,33.3,33.1,32.1],"script":[8.4,8.8,8.4,9.1,9.3,8.9,8.3,9,9.1,8.4,8.8,8.3,9,8.8,8.2],"paint":[23.6,23.7,23.6,24,23.8,23.9,23.5,23.9,23.4,23.9,23.7,23.3,23.7,23.7,23.3]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"02_replace1k","values":{"total":[36.2,36.6,36.4,36.1,36.7,36.4,36.4,37.5,36.3,36.2,36.2,37.5,36,37.2,36.5],"script":[11.9,11.9,12,11.9,11.8,12,11.9,12.4,11.8,11.8,12,12.5,11.8,12.2,11.9],"paint":[23.8,24.1,23.8,23.6,24.3,23.8,23.9,24.5,24,23.8,23.7,24.5,23.7,24.5,24]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21,19.8,19.8,20.3,21.4,20.1,21.7,21.3,19.8,19.7,19.6,19.9,20.1,20.7,20.8],"script":[7.8,7.7,7.9,7.3,8.7,8.4,8.2,8.2,7.1,7,7.6,7.3,7.6,8.1,8.6],"paint":[10.9,10.4,9.8,10.7,10.2,9.8,11,11.7,11.5,10.2,10.6,11.2,10.6,9.7,10]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"04_select1k","values":{"total":[9.4,8.6,10,10,8.8,7.7,8.2,8.3,8.5,10,9.2,9.4,9.2,8.8,9,8.6,8.9,9.1,10.1,9.2,8.7,10.1,8.1,10.2,8.8],"script":[5.4,5.4,5.4,5.7,5.3,5,5.4,4.7,5.6,6.6,5.9,5.9,5.6,5.8,5.5,5.5,6,5.8,5.7,6.1,5.4,6,5.2,7.3,4.8],"paint":[1.8,2.3,2,1.4,1.9,1.2,1.1,2.5,0.4,2,2.5,1.8,2.1,1.9,3.2,1.3,1.1,1.8,1,2.1,2.1,2.3,1.2,0.8,1.5]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"05_swap1k","values":{"total":[121.9,121.9,123,122.1,119.3,121.1,121.1,120.8,121.3,118.4,125.1,117.5,122.1,122,120.7],"script":[22.3,24.2,24.7,24,22.5,23.2,22.5,22.1,24.6,21.6,24.2,22.3,22.3,24.5,23.2],"paint":[96.8,95.5,94.7,95.1,93.1,94.9,96.4,96.4,94.5,95.3,98.2,93.3,96.9,95.4,94.5]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,14.8,13.9,14,14.3,13.9,14.5,15,15.3,14,15,14,14.2,14.6,14.5],"script":[3.4,4.3,3.2,3.2,3.3,3.1,3.2,4.1,4.1,3.1,4.1,3.3,3.3,3.8,3.9],"paint":[10.6,10.1,10.1,10,10.3,10,10.6,9.9,10.4,10.3,10.3,10.2,10,10.1,9.4]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"07_create10k","values":{"total":[435.4,439.7,438.3,441.1,443.7,443.4,441.1,435.5,436.2,437.6,440,435,437.3,440.9,435.3],"script":[188.8,194.1,191.9,192.1,194.3,196.5,191.6,189.1,189.2,189.8,192.6,190.4,189,194.3,191.8],"paint":[240.5,239.7,239.1,242.8,243.1,240.8,243.2,240.7,241.2,241.8,241.4,238.5,241.7,240.2,237.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,39,39.3,39.8,39,38.6,38.8,38.7,38.8,39.1,38.5,38.8,39.3,38.6,39],"script":[11.4,11.4,10.8,10.8,11.4,11.2,10.9,11.4,11.4,11.8,10.9,11,10.9,11.1,11.4],"paint":[26.7,26.7,27.6,28.1,26.7,26.5,26.9,26.5,26.5,26.4,26.7,27,27.5,26.6,26.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19,17.6,17.6,17.6,18.8,17.6,18.6,17.9,17.8,15.9,18.7,17,17.9,16.8,18.8],"script":[16.8,15.2,15.9,16,16.7,15.9,16.4,16,15.7,14.1,16.3,14.7,15.5,15.2,16.9],"paint":[1.9,1.5,1.1,0.5,0.8,0.3,0.7,1,0.8,0.9,1.4,0.6,1,1.1,1.2]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2709541320800781]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.032876968383789]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.535957336425781]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5613784790039062]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.370951652526855]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[215.1]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"01_run1k","values":{"total":[31.3,30.8,30.1,30.8,30.6,30.5,30.2,30.7,30.3,30.3,30,30.2,30.5,30.9,31],"script":[7.9,7.9,7.6,7.7,7.5,7.6,7.6,7.7,7.5,7.5,7.4,7.4,7.4,8,7.7],"paint":[22.9,22.3,22,22.6,22.5,22.4,22,22.5,22.3,22.3,22.1,22.2,22.5,22.4,22.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"02_replace1k","values":{"total":[36.2,36.4,36.5,36.1,36.3,36.1,35.8,35.9,36.2,36.6,36,36.6,35.9,38.2,36.3],"script":[11.7,11.8,12,11.6,11.8,11.7,11.6,11.7,11.9,12,11.7,12,11.8,12.7,12],"paint":[23.9,24,24,24,23.9,23.8,23.6,23.6,23.7,24,23.7,24.1,23.6,24.9,23.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.1,18.2,18.3,17.5,17,17.6,18.4,18.4,18.9,17.7,18.9,17.8,18.7,18.7,18.2],"script":[5.6,5.5,5.5,5.6,5,5.2,6,5.7,6.3,5.5,6.1,5.7,6.2,5.9,5.9],"paint":[10.6,11.1,11.4,10.2,10.6,10.7,10.3,9.6,10.6,10,10.3,9.4,11.2,10,10.4]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"04_select1k","values":{"total":[6.3,5.7,6.1,5.4,5.5,6.2,6.4,6,5.2,5.2,5,6.2,5.6,5.8,5.6,5.3,6.6,6,5.6,5.4,4.9,6,6.3,5.4,5.5],"script":[3.8,3.3,3.5,3,3.1,3.2,4,2.7,2.9,2.5,2.4,3.9,2.9,2.8,2.5,3.1,3.9,3.2,3.2,3.1,2.5,3.5,3.7,3,3.6],"paint":[1.1,1.9,1.8,1.5,1.4,2,0.9,1.4,2.1,1.8,1.9,2.1,1.1,2.5,1.5,1.3,1.2,1.5,1.4,2.2,1.9,1.7,2.5,1.3,1.3]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"05_swap1k","values":{"total":[115,115.2,118.3,116.1,114,115.5,117.5,117.8,114.3,117.7,117.1,114.4,115.2,115.4,117.2],"script":[18.3,18.8,19.8,19.3,19,18.4,18.5,20.3,19.2,17.6,19.6,18.4,18.6,17.8,19.2],"paint":[94,94.1,96.3,95.6,93.5,94.3,96.8,95,92.6,96.7,94.6,95.1,94.3,95.5,96.5]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,13,13.1,12.7,13.1,13.1,13.2,13.6,13.4,13.5,13.6,13.6,12.3,12.8,12.7],"script":[1.7,2.5,2.1,1.8,1.9,2.1,2.3,2.5,2.5,2.4,2.6,2.7,1.9,1.8,2],"paint":[10.5,9.4,10.2,10.6,10.4,10.5,10.2,10.5,10.2,10.4,9.7,10.4,10.1,10,10.1]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"07_create10k","values":{"total":[422.3,430,431.1,428,425.5,432.8,427.3,426,433.1,427,424.9,425.1,429.3,426.3,427.8],"script":[179.2,183.7,188.4,182.1,179,187.3,181.6,182.2,186.8,181.5,179.8,181.1,187.9,182.2,182.1],"paint":[237,240,237,239.6,240.2,239,239.9,237.8,240.3,239.5,239.1,237.5,235.8,238.2,239.1]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.4,37.5,37.5,36.7,37,36.2,37.1,36.8,36.7,37.7,37.5,36.7,37,36.8,37.6],"script":[9.3,9.7,9.1,8.7,9,8.6,9.1,8.7,8.8,9.3,9.1,8.9,9.1,8.9,9.4],"paint":[27.2,26.9,27.4,27,27,26.7,27.2,27.2,27,27.5,27.5,26.9,26.9,27,27.3]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,19.3,21.5,19.8,20.1,20.1,20.1,20.3,20,20.5,20.8,19.5,19.8,20.6,23.3],"script":[18.4,16.9,19,17.4,18.2,17.3,18,17.6,17.9,18.1,18.1,18.1,18.3,18.3,19.8],"paint":[0.9,1.6,1.3,1.2,0.3,1.6,1.8,1.6,1.5,1.6,2.1,0.3,0.3,1.1,2.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1624717712402344]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.249368667602539]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.782171249389648]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0541257858276367]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.10070610046387]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[211.7]}},{"framework":"reagent-v0.10-keyed","benchmark":"01_run1k","values":{"total":[47.3,46,40.8,45.9,44.8,45.4,46.9,47.3,43.7,44.4,43.1,42.8,47.1,44.4,44.4],"script":[18.3,18.6,16.9,17.7,17.9,18.2,18,17.7,18.2,17.9,17.3,16.9,18.1,17.3,17],"paint":[22.4,22.3,22.4,22.9,22.5,22.5,22.7,22.8,22.5,22.4,22.9,22.5,22.5,22.6,22.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"02_replace1k","values":{"total":[50.3,49.5,49.4,48.8,49.6,53,48.8,48.9,46,48.1,48.8,47.3,49.7,50,47.7],"script":[21.2,20.9,21.5,21.6,21.2,21,20.8,21.6,20.9,21.1,21.1,21.6,21.4,21.5,21],"paint":[23.1,23.9,24,23.8,24,24.4,23.3,23.7,24.1,23.9,24,24.1,23.6,23.8,24.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[37,21.9,21.3,38.6,23,38.5,38.6,38.5,23.3,37.2,38.6,22.5,37.6,39.5,38.2],"script":[10.1,9.5,9.7,10.8,11.3,10.9,10.8,10.2,11.1,8.7,10.7,10.5,10.8,10.4,10.6],"paint":[10.9,12.2,10.6,12.3,11,11.6,10.8,11.4,11.1,11.4,11.8,11.9,10.3,13.7,11.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"04_select1k","values":{"total":[12.9,13.5,11.4,8.7,14.7,10.5,6.4,9.2,9.4,13.5,12.6,8.2,14.4,7.2,9.3,10.9,13.7,5.6,10.6,15.1,14.4,6,12.5,8.3,11.1],"script":[1.6,2.2,2.1,2.4,2.3,3,3,4.9,3.1,2.5,2.4,2.9,2,2.1,3.1,2.6,2.4,2.9,2.7,2.7,2.5,3.3,2.8,3,3.2],"paint":[2.3,2,2.2,1.4,0.9,1.1,1.8,2.1,1.3,1.4,2.2,1.5,1.4,2.4,1.7,1,1.4,0.7,1.3,1.9,2.3,0.6,2.1,1.9,1.7]}},{"framework":"reagent-v0.10-keyed","benchmark":"05_swap1k","values":{"total":[134.1,116.6,132.9,135.7,137.6,117.4,132.8,117.2,137.3,138.9,135.5,137.3,134.8,119.6,133],"script":[22.9,21.5,22.1,23.3,23.5,23.8,21.3,23.1,24.3,25.9,23.6,25.6,21.3,22.7,22.6],"paint":[95.1,94.3,92.3,95.7,97.9,93.5,94.8,93.6,95.9,96.8,95.7,95,96.6,95.3,93.2]}},{"framework":"reagent-v0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.3,24.6,16.6,19.3,22.9,23.2,18.5,16.5,22.1,17.5,22.7,17.9,22,21.7,22.5],"script":[4.5,4.8,4.3,3.9,4.2,4.1,3.7,4.7,3.7,4.5,4.5,3.9,3.7,4.6,5.1],"paint":[10.7,11.1,10.6,11,10.2,10.3,10.8,10.1,11.3,10.6,10.8,11.2,10.9,10.6,11]}},{"framework":"reagent-v0.10-keyed","benchmark":"07_create10k","values":{"total":[496.8,486.9,488.6,485.6,488.4,492.1,488.5,485.6,479.8,489.5,484.1,490.6,487.2,481.7,482.8],"script":[242.5,241.5,241.6,240.8,244.3,249.2,244.1,239.8,237.5,243.1,240.2,244.3,240.1,237.9,240],"paint":[244.7,242.1,242.9,242.1,241.2,240.3,241.3,242.4,239.6,242.1,240.7,240.9,242.6,239.7,239.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.8,52.2,52.9,52.7,47.3,47.8,53.7,52.5,52.4,53.1,52.6,52.9,52.7,52.4,47.6],"script":[19.6,19.7,20.1,19.7,19.9,19.8,19.7,19.8,19.4,20.4,19.8,20.1,20.2,19.6,19.8],"paint":[27,27.3,27.5,27.7,27.1,27.6,28.8,27.4,27.6,27.2,27.5,27.6,27.3,27.6,27.5]}},{"framework":"reagent-v0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[37.3,19.7,20.8,21,37.8,38.7,37.9,38.9,21.9,37.8,20.7,35.9,19.6,20.6,23.3],"script":[20.1,17.5,18.9,18.2,20.8,21.7,20.6,21.1,19.5,20.8,18.9,19,18.3,18.8,21.7],"paint":[0.7,1.3,0.9,2.7,0.9,0.3,1.3,1.4,1,1.1,0.8,1.8,1.2,1.8,1.5]}},{"framework":"reagent-v0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4434995651245117]}},{"framework":"reagent-v0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.351806640625]}},{"framework":"reagent-v0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.101358413696289]}},{"framework":"reagent-v0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.97335147857666]}},{"framework":"reagent-v0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.06596279144287]}},{"framework":"reagent-v0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[274.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.4]}},{"framework":"reagent-v0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[300.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"01_run1k","values":{"total":[31.2,31.1,30.9,31.3,31.2,31.4,31.3,31.5,31.3,31.6,31.6,31.1,31.4,30.9,31],"script":[7.3,7.1,7.2,7.3,7.1,7.1,7,7.5,7.2,7.5,7.2,7.1,7.2,6.9,7.1],"paint":[23.4,23.5,23.2,23.5,23.6,23.7,23.7,23.5,23.5,23.6,23.8,23.5,23.4,23.4,23.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"02_replace1k","values":{"total":[34.5,36,34.2,35.4,34.9,35.7,34.2,34.8,34.4,34.7,34.7,34.4,34.2,34.8,35.2],"script":[10.1,10.3,9.9,9.5,10.7,10.3,10,9.6,10.1,10.2,10.1,10.2,10,10.2,10.2],"paint":[23.8,25.1,23.7,25.3,23.7,24.8,23.7,24.4,23.8,23.9,24,23.6,23.6,24,24.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12.9,12.7,12.5,12.4,12.7,12,12.7,12.3,12.2,12.7,12.8,13.3,14.4,13],"script":[1.5,1.6,1.3,1.7,1.1,1.3,1.5,1.1,1,1.3,1.4,1.1,1,1.5,1.3],"paint":[9.5,10.2,9.9,10,10,10.2,9.3,10.3,10.3,9.4,10.1,9.9,11.3,11.8,10.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"04_select1k","values":{"total":[6,2.9,2.7,2.9,3.1,2.9,3.7,2.8,3,3.3,3.3,2.6,2.7,2.8,3.3,3,2.9,2.8,2.3,2.8,3.4,3.1,3.2,3.1,3.3],"script":[1.1,1.2,0.9,1.1,1.3,1,1,1,1.2,1.2,1.2,0.3,0.9,0.2,0.9,0.9,1,0.6,0.2,1,0.9,0.9,0.9,1,1.1],"paint":[1.3,1,1.7,1.4,0.9,1.8,1.4,1,1.7,1.8,1.3,1.8,0.9,2.4,1.3,0.5,1.2,1.2,1.9,0.7,1.6,1.1,1.9,1.9,1.2]}},{"framework":"redom-v4.1.5-keyed","benchmark":"05_swap1k","values":{"total":[15.6,14.5,14.3,14.2,14.6,14.6,14.4,14,15.7,14.1,14.3,14.5,14.5,14.4,14.3],"script":[1.5,0.9,1,1.4,1.5,1.2,1.1,1.7,1.5,1.5,0.9,0.9,0.9,0.8,0.9],"paint":[13.1,12.7,12,11.3,11.7,11.5,11.9,11,12.7,11.4,11.5,12.6,12.6,11.9,12.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.6,11.3,11,11,10.7,10.8,11.3,11.1,11,11.1,11,11.1,10.5,10.9],"script":[0.6,0.3,0.6,0.6,0.6,0.4,0.5,0.6,0.8,0.6,0.6,0.6,0.5,0.6,0.6],"paint":[9.3,9.7,9.7,9.7,10,9.7,9.4,10.1,9.7,9.8,9.7,9.7,9.7,9,9.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"07_create10k","values":{"total":[322.8,317.5,320.9,317,318.8,319.8,317.8,319.3,317.8,319,320.7,318.6,320.2,317,316.4],"script":[72.9,71.8,73.4,71.5,72,72.4,71.4,72.7,71.6,72,71.6,72.5,72,71.8,71.2],"paint":[242.5,239.8,241.6,240,240.8,241.1,240.5,240.6,240.3,241.2,242.9,239.8,242.1,239.4,239.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,35.5,35.3,35.6,35.9,36.3,35.5,35.8,35.5,36,35.9,36.5,35.6,35.9,35.3],"script":[7.7,7.6,7.9,8,7.9,8,8.1,7.9,8,7.9,8.3,7.7,8,8,7.6],"paint":[27.4,27,26.6,26.7,27.1,27.4,26.6,27,26.6,27.1,26.7,27.9,26.7,26.9,26.8]}},{"framework":"redom-v4.1.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,10.3,10.1,10.8,12.1,10.9,10.5,10,10.6,11.9,12,10.4,10.2,10.5,9.4],"script":[8.3,7.9,9,8.5,8.9,8.8,8.6,8,8.7,9.9,9.2,8.6,8.8,8.5,7.4],"paint":[0.3,1.7,0.9,0.7,1.8,1,0.7,1,0.9,1,1.9,0.7,0.2,1.7,0.9]}},{"framework":"redom-v4.1.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5767641067504883]}},{"framework":"redom-v4.1.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5377378463745117]}},{"framework":"redom-v4.1.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5732250213623047]}},{"framework":"redom-v4.1.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.456282615661621]}},{"framework":"redom-v4.1.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.157328605651855]}},{"framework":"redom-v4.1.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"01_run1k","values":{"total":[30.6,30,29.6,30.6,30.7,29.7,30.5,30.6,30.3,29,30.3,30.6,29.9,30.1,29.2],"script":[6.2,5.9,5.8,6.6,6.5,5.7,5.8,6.1,6.1,5.5,6.2,6.1,6.1,6,5.5],"paint":[23.9,23.6,23.3,23.5,23.7,23.5,24.1,23.9,23.6,23,23.6,24,23.3,23.6,23.3]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"02_replace1k","values":{"total":[40.7,42.1,40.9,41.3,40.5,40.5,40.7,40.8,40.7,40.7,40.1,40.4,41.6,40.3,41.9],"script":[17.1,18.1,17.1,17.6,16.9,17,16.9,17.2,17.1,17.2,16.9,16.7,17.1,16.9,18.6],"paint":[23.1,23.4,23.2,23.2,23.1,22.9,23.2,23,23,22.9,22.7,23.1,24,22.8,22.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,14,14.9,14.3,14.6,15.2,14.6,14.8,14.6,14.9,14.4,14.9,15.5,15,17.2],"script":[3.7,3.1,3.2,3.4,3.4,3.4,3.2,2.8,3.3,3.4,3.5,3.5,4.2,3,4],"paint":[9.3,10,10.8,9.8,9.3,10.8,10.3,9.9,10,10.5,8.9,10.2,10.2,9.8,11.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"04_select1k","values":{"total":[5.6,4.3,4.2,5.1,5,5.8,5.1,5.2,4.8,4.7,4.2,5.2,4.6,3.8,6,4.6,4.9,5.7,4.6,4.9,4.9,5,4.9,5.1,4.8],"script":[1.9,2.5,2.1,2.5,2.5,3.5,2.3,3.1,2,2.8,2,2.7,2.7,2.3,3.8,2.2,2.4,3.4,3,2.2,2.5,2.6,2.5,2.3,2.5],"paint":[2.2,1.1,1.2,1.4,2,1.2,1.5,1.1,2.2,1,1.6,2.1,1,1.3,2,2.2,2.3,1.8,1.4,2.2,1.6,1.5,1.3,1.7,0.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"05_swap1k","values":{"total":[16.9,17.4,17.1,17.7,18,16.9,17.3,15.6,16.5,17.6,17.3,16.7,16.1,17.6,16.2],"script":[2.6,3.7,3.3,3.6,3.7,3.3,4,2.5,2.9,3.9,3.5,3.1,2.3,2.5,3.6],"paint":[12.6,12.8,13.5,12.9,13.1,12.6,12.4,12.2,12.7,12.4,12.4,12.5,13.2,14.2,11.3]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,12.1,12.6,11.9,13.1,12.1,11.9,12.7,12,12.1,12.4,12.1,12.5,11.6,12.1],"script":[1.2,1.6,1.8,1.4,2.3,1.3,1.4,1.8,1.5,1.2,1.9,1.7,1.9,1.2,1.3],"paint":[10.2,10.1,9.9,9.9,10.2,10.3,9.9,10.2,9.9,10.2,9.9,9.6,10.2,9.8,10.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"07_create10k","values":{"total":[315.1,313.4,316.2,314.8,313.7,314,313.6,315.5,313.4,314.1,314,312.7,316,312.3,313.1],"script":[69.3,70.8,69.7,70.4,66.2,71.5,71,69.5,69.7,66,66,69.9,69.5,69.6,66.2],"paint":[239.8,236.6,240,238.5,241.3,236.8,236.8,240.1,237.7,242,242,237,240.7,236.9,240.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.4,46.5,46,47.3,47.7,47.6,47.7,48.2,46,46.7,47.8,47.3,46.9,48.4,47.4],"script":[18.7,19.4,18.9,19.8,20.3,19.6,20.2,20.3,19,18.9,19.8,20,19.7,19.5,19.9],"paint":[26.8,26.2,26.2,26.5,26.5,27.1,26.6,27,26.2,27,27.1,26.5,26.3,28,26.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,10.1,11.6,10.1,11,9.8,10.1,10.1,10.4,10.4,11.7,9.6,10.6,10.2,10.1],"script":[8.1,7.9,9.1,7.9,8.3,8.1,7.7,7.7,8.5,7.8,9.5,7.7,8.7,8.5,7.7],"paint":[1.6,0.7,1.6,1.8,2.3,0.2,1.5,1.4,0.9,1.6,0.8,1.1,0.4,0.6,1.4]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5903081893920898]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.536505699157715]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6248226165771484]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7223138809204102]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.024015426635742]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.7]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"01_run1k","values":{"total":[27,27.5,27,27.4,27.6,27.9,27.1,27.1,27.1,27.1,27,27.1,27.4,27.3,27.6],"script":[3.7,4.1,3.6,3.7,3.9,3.9,3.7,3.7,4,3.7,3.8,3.9,3.8,3.9,3.8],"paint":[22.9,23.1,23,23.3,23.3,23.6,23,22.9,22.8,23,22.8,22.8,23.2,23,23.4]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"02_replace1k","values":{"total":[35,35.2,36.2,35,34.4,34.9,34.7,34.5,34.7,34.9,34.6,34.5,35.5,35,34.7],"script":[10.2,10.3,10.8,9.9,9.8,10,10.4,10,10.1,10.2,9.9,10.1,10.1,10.4,10],"paint":[24.3,24.3,24.8,24.4,23.9,24.3,23.8,23.9,24,24.1,24.2,23.7,24.8,24.1,24.1]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.7,13.8,14.3,13.7,13,14.4,13.5,13.6,13.4,13.4,13.8,13.6,14.6,13.2,12.9],"script":[2.3,2.4,2.4,2.4,2.1,2.3,1.8,2.6,2.3,1.8,2.1,1.5,2.7,2.1,1.9],"paint":[9.9,10.2,10.7,10.2,10,10.3,10.8,9.5,10,10.6,9.5,11.1,11.3,9.7,9.4]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"04_select1k","values":{"total":[2.8,3.3,3.4,3.9,3.1,3.1,3,3.5,3.3,3.1,2.8,3.4,3.6,3.2,3.1,3.5,4.2,3.3,3.4,3.2,3,3.8,3.1,3.1,3.5],"script":[1.4,1.3,1.3,1.4,0.9,1,1.1,1.5,1.5,1.3,0.9,1.7,0.9,1.3,1.3,1.6,2.1,1.4,1.4,1.6,1,1.8,1,1.8,1.2],"paint":[0.7,1.2,1.3,1.3,1.1,1.9,0.4,1.9,1.7,1,1.1,1.5,2.6,0.3,1.4,1.4,1.5,1.8,1.9,1.5,1.8,1.8,1.1,0.7,2]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"05_swap1k","values":{"total":[14.3,15.1,15.4,14.5,15.3,14.3,15.2,15.2,14.6,14.8,14.6,14.9,14.3,15.2,14.8],"script":[1.4,0.9,2,1.1,1.3,1.5,1.7,1.7,1.4,1.7,1,1.4,1.5,2,1.5],"paint":[11.3,12.1,12.3,12.5,13.1,11.6,11.6,12.5,12.2,11.9,12.3,12,11.7,11.6,12.1]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.5,11.1,11.1,11.5,11.5,11.1,11.5,11,11.2,12.4,11.4,11.2,11.3,11.5],"script":[0.7,0.8,0.7,0.7,0.8,0.8,0.7,0.7,0.7,0.7,1.6,0.7,0.7,0.6,0.7],"paint":[10,9.7,10,9.7,10.2,10.2,10.1,10.1,9.4,10,10.2,10.1,10.1,9.9,10]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"07_create10k","values":{"total":[296.1,294.9,294.2,302.2,296.4,292.6,301.5,292.9,293.5,294.4,296,291.9,292.5,293.6,294],"script":[53.6,52.7,52.9,53.4,53.5,51.2,52.8,52.2,52.1,52.3,53.4,51.5,52.3,52.4,52.6],"paint":[237.1,236.4,235.3,242.6,237.4,235.4,242.1,234.8,235.6,236.3,237.1,234.4,233.9,235.6,235.9]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.2,32.8,33,32.9,33.5,32.9,33.1,32.4,32.3,32.9,33.1,34.7,33.6,32.9],"script":[5.1,5,4.9,4.5,5.3,5.1,5,4.8,4.3,4.9,4.8,4.6,5.3,5.1,5],"paint":[27.7,27.2,27.2,27.8,26.7,27.5,27,27.5,27.4,26.7,27.4,27.8,28.5,27.6,27]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.1,11.3,10.9,10.6,11.1,10,10.5,10.8,11.1,11.4,10.5,10.1,11.1,10.9],"script":[8.2,8.3,8.5,8.5,8.7,9.2,8.5,8.9,8.3,8.2,9.6,8.3,8.3,9.4,8.8],"paint":[0.4,1.6,1.8,1.5,1.7,0.6,0.2,0.3,1,1.8,0.9,1.9,0.9,0.6,0.9]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5455999374389648]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9735107421875]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.967047691345215]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8710870742797852]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.69038677215576]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.8]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.4]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.4]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"01_run1k","values":{"total":[28.5,28.3,28.1,27.9,28.6,28,28.4,28.5,27.9,28.5,28.2,28.1,28.1,28.3,28.3],"script":[4.5,4.1,4.2,4.2,4.3,4.1,4.3,4.3,4.2,4.5,4.2,4.1,4.1,4.2,4.2],"paint":[23.6,23.8,23.4,23.4,23.9,23.4,23.8,23.8,23.4,23.6,23.6,23.5,23.6,23.6,23.7]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"02_replace1k","values":{"total":[36.1,36.1,35.9,37.8,36.6,35.7,37.1,36.3,36.4,35.9,35.7,37.6,37.1,37.1,36.8],"script":[11.8,11.2,11.4,12.4,11.6,11.3,11.6,11.9,11.7,11.4,11.4,11.7,11.8,12.1,11.5],"paint":[23.8,24.2,23.9,24.9,24.5,23.9,24.9,23.8,24.1,23.9,23.7,25.3,24.8,24.4,24.7]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.1,13.5,12.9,13.6,12.9,13.2,11.6,13.1,13,12.7,13.1,13.2,13,13.1],"script":[1.9,1.8,1.9,1.6,2.3,1.3,1.6,1.3,1.9,1.8,1.6,2.1,1.9,2,1.6],"paint":[9,9.7,10.3,10.3,10.4,10.6,10.9,9.1,9.8,9.8,10.5,9.8,9.6,10,10.8]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"04_select1k","values":{"total":[1.7,2.8,2.2,2.3,2.1,2.2,3,2.5,1.9,2.9,2.4,2.5,2.2,2.4,2.8,2.4,2.3,2.1,2.2,1.9,2.1,3.8,2.5,2.6,2.6],"script":[0.1,1.1,0.7,0.1,0.6,0.1,0.8,0.7,0.1,1.2,0.8,0.9,0.6,0.1,0.7,0.6,0.1,0.5,0.6,0.6,0.6,0.9,0.1,0.6,0.8],"paint":[0.7,1.5,1.3,1.1,1.4,2,0.6,1.7,1.4,1.4,1.5,1,1.1,1.4,1.9,1.1,1.3,1.5,1.4,0.6,1.4,0.4,1.3,1.5,1.7]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"05_swap1k","values":{"total":[14.1,14.3,15.2,15.4,14.8,14.8,14.8,14.6,14.5,13.8,14.7,15.2,15,14.9,15],"script":[1,0.9,1.8,1.1,0.9,0.2,1.5,1.4,0.2,1.1,1,0.9,0.9,1.2,1.2],"paint":[12.1,12.1,12.5,13.2,11.8,13.4,11.9,11.4,13,10.6,12.7,12.3,13.1,12.8,12.9]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.4,11.4,11.5,11.2,11.1,11.5,10.6,11.3,11.5,11,11.8,11.3,11.3,10.9],"script":[0.5,0.6,0.6,0.6,0.4,0.2,0.6,0.3,0.5,0.6,0.6,0.6,0.3,0.6,0.5],"paint":[9.9,9.9,10.2,10.4,9.8,9.9,9.7,9.8,10.2,10.3,9.5,10.6,10.4,10.1,10]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"07_create10k","values":{"total":[305.2,301.4,301.7,303.6,299.5,302.9,301.5,303.6,299.9,301.7,304.4,304.6,300.9,304.5,302],"script":[56.1,54.9,55.1,54.2,54.3,55.6,55,54.6,54.7,54.2,56.7,57.3,53.9,55,55],"paint":[242.9,240.1,240.5,242.4,239.4,241,239.8,241.7,239.1,241.4,241.4,241,240.8,243.4,240.9]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.5,32.4,32.5,31.8,32.9,32,32.3,32.9,32.3,31.6,31.6,32.9,32.1,33.3,32.1],"script":[4.4,4.7,4.4,4.4,4.6,4.3,4.3,5,4.4,4.4,4.2,5,4.5,4.6,4.3],"paint":[26.5,27,27.3,26.7,27.6,26.9,27.2,27.3,27.1,26.5,26.6,27.2,26.9,28,27]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10,10.3,11.6,11.5,11.5,10.4,11.3,11.2,10.9,11.7,10.6,11,10.7,10.7],"script":[8.9,7.7,8.5,9.5,8.9,8.8,8.7,8.8,8.5,8.6,9.4,8.5,8.8,8.7,8.6],"paint":[0.2,1.2,1.4,1.1,1.9,1.9,0.2,1,0.8,1.6,0.8,0.7,0.6,1.6,1]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5742158889770508]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3299083709716797]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.409841537475586]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8094358444213867]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.861312866210938]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.4]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.6]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"01_run1k","values":{"total":[28.8,28.7,29.1,29.3,28.7,29.1,28.6,28.6,28.9,28.6,29,29,29.6,28.6,28.6],"script":[5.9,6.3,6.2,6.1,5.8,5.9,5.8,6,6.1,5.8,6.1,5.9,6.5,5.9,5.8],"paint":[22.3,21.9,22.4,22.7,22.3,22.6,22.3,22.1,22.2,22.3,22.4,22.6,22.6,22.2,22.2]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"02_replace1k","values":{"total":[34.4,33.1,33.6,33.1,32.9,33.6,33.7,33.2,33.1,32.9,33.7,33,33.2,34.5,33.1],"script":[9.3,8.2,8.6,8.3,8.3,8.4,8.3,8.1,8.2,8.2,8.5,8.3,8.3,8.2,8.1],"paint":[24.6,24.3,24.4,24.2,24,24.7,24.8,24.5,24.3,24.2,24.8,24.2,24.4,25.8,24.4]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,14.3,12,12.7,12.6,12.7,12.1,12.5,11.9,13,12.2,12.3,12.3,13,12.4],"script":[1.4,1.6,1.2,1,0.9,1,1.2,1.3,1.2,1.2,0.7,0.8,1,1.7,1],"paint":[10.5,11.1,9.5,10.6,8.9,10.4,9.6,10.2,9,10.8,10.6,9.3,10,10.3,9.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"04_select1k","values":{"total":[3.2,3.4,2.9,3.3,2.5,3,2.9,3.1,2.4,3.4,2.4,2.9,3.6,2.7,2.5,2.8,2.9,2.5,3.5,2.6,2.7,2.9,3.8,2.8,2.1],"script":[1,1.4,1.1,1.2,1,1.1,0.6,0.2,1.1,1.4,0.7,0.9,1.1,0.8,1.3,1.2,0.8,0.7,1.5,1,0.9,0.6,0.9,1.1,0.8],"paint":[1.6,1.3,1.5,1.1,1.4,1,1.4,2.8,0.7,1.9,1.6,1.9,1.5,0.9,1.1,1.5,2,1.3,1.5,1.4,1.2,1.4,1.3,1.1,0.7]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"05_swap1k","values":{"total":[16,15.9,16,16,17.7,17.2,15.8,14.9,15.6,15.6,15.5,15.1,15.7,15.3,15.9],"script":[2.9,2.1,2.6,2.3,2.3,2.2,2.3,1.9,1.8,2.2,2.1,2.1,1.9,2.1,2.5],"paint":[12,12.7,12,12.3,14.8,13.3,12.2,12.7,12.5,12.1,12,11.1,12.3,12,11.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12.1,11.8,11.9,12.1,11.9,11.8,12,11.6,11.9,11.9,12.1,11.9,12.1,11.9],"script":[1.2,1.3,1.2,1,1.1,1.2,0.9,1.2,1.2,1.2,0.9,1.2,1.2,1.2,1],"paint":[10.1,10.2,10.1,10.2,10.4,10.1,10.3,10.2,9.9,10.2,10.5,10.4,10.1,10.2,10.3]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"07_create10k","values":{"total":[319.9,320.3,316.2,328.1,324.6,317,317.6,327.4,325.8,327.7,319.4,329.2,332.3,330.3,326.5],"script":[73.5,73.6,71.9,71.7,74.1,71.8,72.9,73.7,71.6,73.2,72.9,75.2,74.5,72,72.1],"paint":[239.7,240.6,238.5,250,244.8,238.8,238.7,247.2,247.8,247.7,240.1,248.2,251,251.3,248.3]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35,33.8,34.9,33.8,35,34.1,34.7,34.3,34,34.4,34.2,34.2,33.7,33.9,34.7],"script":[7,6.8,7.2,7,7.3,7,7.2,6.9,7,6.9,7.2,7,6.9,7,7.1],"paint":[27.1,26.1,26.8,26,26.8,26.3,26.7,26.5,26.1,26.6,26.2,26.3,26,26,26.7]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.6,9.9,9.4,10,10.4,8.2,10.4,9.2,8.9,8.9,9.8,9.4,10.6,10.2,9.5],"script":[7.6,7.6,7.4,8.5,8.8,6.5,8.6,7.9,7.3,6.7,8,7.3,8.3,8.3,7.6],"paint":[0.9,1.2,1.1,0.7,0.2,1.6,0.9,0.2,0.2,0.7,0.3,0.2,1.7,0.9,0.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5725030899047852]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.916558265686035]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8279991149902344]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9279546737670898]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.96699810028076]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.4]}},{"framework":"riot-v9.4.4-keyed","benchmark":"01_run1k","values":{"total":[33,32.9,32.3,32.3,32,32.4,32.3,32.6,32.1,31.9,32.4,32.2,32,32.6,32.2],"script":[7.7,8,7.8,7.9,7.8,7.6,7.7,7.8,7.7,7.6,7.7,7.7,7.7,7.7,7.7],"paint":[24.7,24.3,24,23.9,23.7,24.3,24.1,24.3,23.8,23.8,24.2,24,23.8,24.3,24]}},{"framework":"riot-v9.4.4-keyed","benchmark":"02_replace1k","values":{"total":[36.1,35.2,37,35.5,37.6,35.4,36.5,35.7,37.1,35,36.1,36.3,36.5,35,36.9],"script":[11.5,11.3,11.2,11.2,12.5,11.3,12.4,12,11.2,11.3,12,12,12.3,11.2,12.1],"paint":[24,23.4,25.2,23.7,24.5,23.5,23.6,23.2,25.2,23.2,23.5,23.7,23.6,23.2,24.2]}},{"framework":"riot-v9.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.9,15.9,17.8,17.2,17.4,16.3,16.2,18,18,17,16.9,16.5,16.3,17.9,16],"script":[4.9,4.9,5.3,4.9,5.2,5.1,4.9,5.5,5.5,5.3,5.2,4.9,4.7,5.4,4.8],"paint":[9.5,8.5,11,11.1,11.1,9.7,9.7,11.7,10.7,9.3,9.6,10.6,10.5,10.1,10]}},{"framework":"riot-v9.4.4-keyed","benchmark":"04_select1k","values":{"total":[8.9,7.3,6.8,7.1,6.9,8.1,8.8,7.6,8.1,7.7,8.3,7.4,6.7,7.7,7.9,7.9,6.7,8.1,8.7,8.7,7.7,7.2,8.2,6.7,7.9],"script":[5.7,4.8,4.8,4.9,4.5,5.3,5.3,5.5,5.8,5.1,6,4.5,4.8,5.4,5.3,5.1,4.5,5.2,5.8,5.5,5.1,4.7,5.3,5,5],"paint":[1.3,1.9,1,2,1.8,1.3,2.5,1,0.4,0.8,1.3,1.5,1,1.1,1.6,0.7,1,1,2.1,1.9,0.4,1.1,1,0.7,1.9]}},{"framework":"riot-v9.4.4-keyed","benchmark":"05_swap1k","values":{"total":[20.7,20.7,20.3,19.8,20,20.2,19.5,19.2,17.9,22.5,21.7,20.4,20.6,20.3,20.6],"script":[4.7,5.6,4.8,4.8,5.3,5.2,5.1,4.9,4.3,5.7,5.5,5.6,6.6,6.1,5.7],"paint":[13.5,13.4,13.5,13.8,12.3,13.7,13,12.4,12.7,14.5,15.1,13,11.9,12.3,13.3]}},{"framework":"riot-v9.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,14,13,14,14,13.5,13.5,13.7,13.9,13.6,13.7,13.4,13.2,13.1,13.3],"script":[2.4,3,2.2,2.4,2.8,2.6,2.6,2.7,2.7,2.7,2.7,2.4,2.7,2.4,2.7],"paint":[10.3,10.2,10.4,10.9,10.6,10,10.1,10.5,10.1,10.2,10.4,10,9.5,10.1,9.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"07_create10k","values":{"total":[337.3,336.4,333.2,335.8,335.5,336.3,334.8,338.4,338.5,337.1,337.3,339.3,336.5,333.2,334.5],"script":[88.1,86.5,86.1,87.6,88.8,87.7,87.6,87.7,87.8,88,86.8,88.3,86.6,88,86.8],"paint":[241.7,242.3,240.1,241.3,239.7,241.5,240.2,243.2,243.6,242.6,243.4,243.7,243.4,238.4,240.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.7,37.8,37.5,38.6,38.2,37.4,37.4,37.4,38.2,38.6,37.7,37.5,37.4,38.6,37.1],"script":[9.6,9.4,9.2,9.4,9.4,9,9.1,9,9.9,9.6,9.1,9.1,9.2,9.5,9.1],"paint":[27.2,27.5,27.3,28.2,27.9,27.5,27.4,27.4,27.4,28.1,27.4,27.4,27.3,28,27.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.2,15,18.6,16.3,17.2,15.9,17.2,16,16.2,17.8,17.2,15.8,15.8,14.9,16.2],"script":[14.9,14,16,14.5,15.1,14.5,15,13.7,13.9,16.4,15,14.3,13.7,13.3,14.2],"paint":[0.8,0.9,0.9,0.8,1.9,0.3,1.2,2.1,1.3,0.3,1.6,0.6,0.2,0.6,0.7]}},{"framework":"riot-v9.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6422824859619141]}},{"framework":"riot-v9.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.754673957824707]}},{"framework":"riot-v9.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.766974449157715]}},{"framework":"riot-v9.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9393835067749023]}},{"framework":"riot-v9.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.807581901550293]}},{"framework":"riot-v9.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.2]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"01_run1k","values":{"total":[29.4,29.1,29,29.3,28.7,29.1,29.2,29.8,29.1,29.3,29.9,29,28.9,29.1,28.9],"script":[5,4.9,4.9,4.9,4.9,4.8,4.9,5,5,4.9,5.1,4.9,4.9,4.8,4.9],"paint":[24,23.8,23.7,24,23.4,23.9,23.9,24.5,23.8,24,24.3,23.7,23.6,24,23.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"02_replace1k","values":{"total":[32.1,31.5,32.3,31.7,32.6,32.7,31.2,34,31.2,31.7,32.4,32.5,32.1,31.9,31.9],"script":[8,7.7,8.4,7.8,8,8.3,7,8,7.2,7.7,8,8,7.8,7.7,7.8],"paint":[23.6,23.2,23.4,23.4,24.1,23.8,23.7,25.4,23.4,23.3,23.8,23.9,23.7,23.6,23.5]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12.8,13.9,12.1,12.6,12.1,13.8,14.1,13.3,12.2,12.9,12.7,13.8,13.1,13],"script":[1.4,1.9,3.2,1.5,2.2,1.7,1.7,2.3,1.9,1.3,1.8,1.8,1.8,1.2,1.8],"paint":[10,9.8,9.5,9.5,9.3,9.5,10.9,10.9,9.3,9.9,9.8,9.9,10.2,8.9,9.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"04_select1k","values":{"total":[4.6,3,3.5,2.2,3,2.3,3.1,2.5,3,2.3,2.8,3,2.5,1.9,2.3,2.7,2.1,2.7,3.1,2.5,2.9,2.3,2.2,4.2,3.3],"script":[0.2,0.1,1.1,0.8,0.9,0.1,0.5,0.8,1.1,0.6,0.1,0.1,0.5,0.1,0.5,0.1,0.2,0.1,0.8,0.2,0.1,0.1,0.1,0.5,0.8],"paint":[1.1,2.7,1.5,1.3,1,0.5,1.6,1.5,1.7,1.2,2.6,1,1.1,1.6,1,1.6,1.1,2.4,2.2,1.4,1.7,1.3,0.9,0.9,1.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"05_swap1k","values":{"total":[14.1,15.5,15.5,14.8,13.8,14.8,15.1,14.9,15.3,14.7,15.5,14.1,16,14.9,14.6],"script":[0.9,1.3,1.1,1.5,1.1,1.4,1.3,1.6,1.8,1,1.6,1.1,1.3,2,1.5],"paint":[11.5,11.1,13.2,12.2,11.6,12.4,12.9,11.8,11.8,12.2,12.3,11.7,12.9,12.2,11.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.3,11.5,11.3,11,11,11.3,11.3,11.3,11.3,11,11.5,11.2,11.1,11],"script":[0.7,0.7,0.9,0.7,0.7,0.7,0.7,0.7,0.9,0.7,0.6,0.9,0.7,0.7,0.7],"paint":[9.7,9.9,9.9,10.1,9.7,9.6,10,10.1,10.1,10.1,9.8,9.9,9.9,9.6,9.7]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"07_create10k","values":{"total":[400.3,399.1,400.8,398.9,387.9,397.8,401,399.8,399.1,399.9,397.5,399.6,398.9,398.9,389.7],"script":[156.4,155.3,156.8,152.3,147.9,155.2,156.1,156.3,156.8,158.6,155.6,156.1,154.4,154.7,150.1],"paint":[237.8,238.2,238.3,241.1,234.4,237,239.2,237.6,236.7,235.9,236.4,237.8,238.9,238.3,234.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.7,34.1,33,33.1,33.4,33.4,33,33.6,34.6,33.2,33.4,32.9,33.3,33.5,33.2],"script":[5.8,5.8,5.5,5.6,5.7,5.6,5.6,5.5,5.6,5.6,5.7,5.6,5.6,5.7,5.7],"paint":[27.1,27.5,26.7,26.7,26.8,26.8,26.6,27.2,28.1,26.8,26.8,26.5,26.7,26.9,26.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,11.7,11.5,10.9,10.9,11.3,11.7,11.2,10.6,11.5,12.1,11.3,11.4,10.3,11.5],"script":[9.2,9.6,9.8,9.4,9.6,9.3,9.9,9.3,8.1,9.3,10,9.3,9.7,9.2,9.7],"paint":[1.3,1.1,0.7,0.3,0.2,1.1,1.6,0.7,1.9,1.3,0.3,1.1,0.7,0.9,0.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5839824676513672]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8235158920288086]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8709192276000977]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9104795455932617]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.470630645751953]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53.9]}},{"framework":"s2-v1.0.17-keyed","benchmark":"01_run1k","values":{"total":[31.4,29,29,28.8,28.6,28.7,28.8,28.8,28.4,28.7,28.7,28.6,31.4,28.5,28.5],"script":[6.6,6,5.8,5.7,5.8,5.8,5.8,5.8,5.7,5.8,5.7,5.6,6.7,5.6,5.7],"paint":[24.3,22.4,22.7,22.6,22.3,22.3,22.4,22.5,22.2,22.3,22.5,22.5,24.1,22.3,22.2]}},{"framework":"s2-v1.0.17-keyed","benchmark":"02_replace1k","values":{"total":[35.5,34.7,33.7,35.4,34.6,34.2,33.9,35.3,35,34.3,34.6,35.1,34.2,35.7,34.7],"script":[9.4,9.4,9,9.7,9.6,9.4,9.1,9.8,9.7,9.1,9.3,9.5,9.2,9.9,9.1],"paint":[25.5,24.8,24.1,25.1,24.5,24.3,24.3,24.9,24.7,24.6,24.8,25.1,24.4,25.3,25]}},{"framework":"s2-v1.0.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13,13.2,13,13.4,12.9,12.8,13,11.8,12.7,13.1,12.9,13,12.2,12.9],"script":[0.9,1.2,1.9,1,1.3,1.5,1.5,1.7,0.6,0.6,0.6,0.9,1.1,0.9,1.5],"paint":[10.9,10.2,9.5,10.8,11.1,10.3,10.9,10.1,10.2,10.7,10.9,11,10.4,10.2,10.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.1,2.7,2.7,2.2,2.7,2.4,2.1,2.3,1.8,2.8,2.4,2.3,2,2.4,1.9,2.2,2.7,1.9,2.3,2.4,2.1,2.1,1.7,2.5],"script":[0.1,0,0.1,0.1,0,0,0.8,0,0,0,0,1,0,0,0,0,0,0,0,0.1,0,0,0,0.1,0.5],"paint":[2.4,1.3,2,2.5,1.1,2.2,0.9,1.9,1.3,0.9,2.1,1.3,1.8,1.8,1.4,0.9,1.6,1.3,1,1.1,1.5,2,1.8,0.7,1.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"05_swap1k","values":{"total":[15.3,13.7,14.5,14,14.6,14.1,14.6,14.1,14.4,13.6,13.7,15.3,14.3,14.1,15.3],"script":[0.2,0.1,0.9,0.1,1.2,0.1,1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.6],"paint":[13.7,12.4,12.4,12.9,12,13,12.6,12.7,12.7,12.5,11.2,13.3,13,12.2,13.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.6,10.7,10.5,10.8,10.4,10.5,10.8,10.9,10.7,10.5,10.9,10.5,10.9,11.1],"script":[0.1,0.3,0.2,0.1,0.2,0.1,0.1,0.1,0.2,0.1,0.1,0.3,0.1,0.1,0.1],"paint":[10.1,9.7,9.6,10,10,10,10,10.1,10,10.2,9.9,9.9,10.1,10.3,10.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"07_create10k","values":{"total":[332.8,330.4,326.9,328.7,329.8,329,330.7,331.2,336.2,330.4,336.6,336.4,328.5,331.5,329.9],"script":[81.1,80.3,79.8,79.5,80.4,80.2,80.5,80.2,86.9,80.3,81.7,86.6,80,80.7,80.9],"paint":[244.9,243.7,240.9,243.2,242.6,242.2,244,244.9,242.9,243.8,248.5,243.4,242.2,244.2,242.7]}},{"framework":"s2-v1.0.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.7,35.9,36.8,36,37.3,35.8,36.7,35.7,37.3,36,35.5,36.1,35.8,35.5],"script":[8,8.1,7.5,8,7.5,7.9,7.6,8.2,7.5,8.2,7.9,7.4,7.4,7.5,7.5],"paint":[27.7,27.7,27.5,27.9,27.6,28.5,27.3,27.7,27.3,28.1,27.3,27.2,27.8,27.3,27.1]}},{"framework":"s2-v1.0.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.3,13.5,14.2,13.7,14.4,13.8,13.4,15.6,13.5,14,14.8,14.3,14.9,13.5,13.1],"script":[11.7,11.6,12.6,11.9,12.8,12.1,11.4,13.4,12,11.8,12.8,12.5,11.5,11.6,11],"paint":[1.6,0.2,0.7,0.6,1.4,0.5,1.8,1,0.6,1.5,0.3,1,1.6,1,1.2]}},{"framework":"s2-v1.0.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6805992126464844]}},{"framework":"s2-v1.0.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.440103530883789]}},{"framework":"s2-v1.0.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4754905700683594]}},{"framework":"s2-v1.0.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1399450302124023]}},{"framework":"s2-v1.0.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.837926864624023]}},{"framework":"s2-v1.0.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[73.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[92.8]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"01_run1k","values":{"total":[31.7,30,31.1,30.4,30.4,30.3,30.3,30.3,30.5,30.2,30.3,30.3,30.5,30.3,30.8],"script":[7.5,7,7.2,7.2,7.1,7.2,7.2,7,7.1,7,6.8,7,7.3,7.1,7.2],"paint":[23.7,22.4,23.4,22.7,22.7,22.6,22.6,22.7,22.9,22.7,22.9,22.8,22.7,22.7,23]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[36.8,37.1,36.7,36.6,36.2,37.5,37.3,37.1,36.9,37,36.8,37.2,36.9,37.7,37.5],"script":[11.9,12.1,11.5,11.8,11.5,11.4,11.9,12.3,12,11.5,11.9,12,12.2,12.2,11.9],"paint":[24.3,24.5,24.6,24.3,24.1,25.5,24.8,24.2,24.3,24.9,24.4,24.6,24.2,24.9,24.9]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.7,14.3,14,13.5,13.6,13.9,13.4,13.8,14.2,14,14.1,13,13.8,14.1,17.1],"script":[2,2.8,1.9,2.5,2.2,2.4,2.4,2.6,2.1,2.3,2.9,1.8,1.8,2.6,2.9],"paint":[10.2,10.3,11,9.7,10.2,10.8,9.6,9.9,10.6,11,8.6,10.3,9.9,10.4,12.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"04_select1k","values":{"total":[6.4,2.8,3.2,3,3.3,3.9,3.6,4,3,3.3,3.1,3.4,3.6,3.5,3.3,3.3,3.6,3.2,3.3,3.3,2.7,2.9,3.4,3.2,3.9],"script":[1.8,0.9,1,1.4,1.5,2,0.9,1.7,1.6,0.6,0.9,1,1.2,1.2,1.4,1.4,1.3,1.5,0.9,1.4,0.9,1.1,0.9,0.6,1.2],"paint":[1.9,0.7,1.3,1,1.2,1.8,1.7,1.2,1.3,2.1,1.1,1.7,1.6,1.3,0.4,1.3,1.3,1.5,2.1,1.8,1.6,1,1.3,2.1,2.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.5,14.9,17.1,15.2,14.5,15.1,15.5,15.4,15.7,15.1,14.7,15.1,15,15.9,14.9],"script":[1.3,1.6,1.9,1.5,0.9,1.4,1,1,1.5,1.2,0.7,1.8,1.6,1.2,1.6],"paint":[13.2,12.5,14.3,12.5,12.4,12.4,13,12.9,12.7,12.8,12.8,12.3,12.6,13.7,12.1]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,11.2,11.2,11.2,10.7,11,11.2,10.9,11.1,10.8,11.4,11.2,11,11.1],"script":[0.4,0.5,0.5,0.3,0.3,0.5,0.3,0.3,0.5,0.2,0.3,0.5,0.3,0.4,0.3],"paint":[9.6,9.8,10.1,10.5,10.2,9.6,10.1,10,9.9,10.2,9.8,10.3,10.1,10,10.2]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"07_create10k","values":{"total":[334.9,332.7,336.6,337.1,338.6,336.2,336.9,336.1,337.2,335.2,337.6,335,339.8,336.8,335.8],"script":[85.3,82,83,84.2,84,85.4,84.5,84.6,84.9,84.7,83.8,83.9,83.9,83.7,83.9],"paint":[243.2,244.1,246.6,246.2,248,244,245.8,244.9,245.5,244.1,246.6,244.8,249.1,246.5,245.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37,37.2,36.6,36.6,37,37.1,36,36.4,35.9,36.9,36.2,37.1,36.3,36.7,36.2],"script":[8.5,8.9,8.6,8.3,8.5,8.5,8.3,8.6,8.1,8.5,8.4,8.6,8.3,8.5,8.4],"paint":[27.5,27.4,27.2,27.3,27.6,27.8,26.8,27,26.9,27.5,26.9,27.5,27,27.2,26.8]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.6,15.2,19,16.6,15.8,17.3,17.6,15.9,15.2,15.3,17,17.7,15.5,17.1,17],"script":[12.5,12.8,16.2,14.2,14,15.8,14.9,14.4,12.7,13.8,14.9,14.9,13.1,14.6,14.6],"paint":[0.3,1.3,1.3,2,0.3,0.6,1.1,0.7,1.8,0.3,1.2,1.8,1.4,1.4,2.2]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9121780395507812]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.947463035583496]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.0460357666015625]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1448087692260742]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.64473533630371]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[81.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[98.1]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"01_run1k","values":{"total":[40.5,40.5,35.2,40.8,33.6,41,40.3,41,33.5,40.6,33.1,32.1,32.9,33.9,32.1],"script":[4.9,4.9,5.5,5,4.9,4.9,4.9,5.1,4.8,4.8,5,4.9,5,4.8,4.9],"paint":[22.3,22.7,23.9,23,23.3,22.7,22.5,23.3,23.4,22.6,23.1,23.6,23,23.7,23.1]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"02_replace1k","values":{"total":[33.7,35.3,33.1,33.5,32.3,35,35.3,35.2,35.8,32.9,34.6,33.5,34,35.8,35],"script":[9.2,9,8.6,8.8,8.8,8.6,8.9,8.8,8.6,8.8,8.7,9.1,8.8,8.9,8.3],"paint":[23.3,22.9,23.2,23,22.9,23.2,22.8,23,23,23.6,23.2,22.8,23.6,22.9,23.9]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.3,35,32.5,36.8,33.3,33,33.5,33.7,15.5,34.1,32.9,35.8,34.2,36.9,32.9],"script":[3,3.3,3.6,3.1,2.6,2,3.2,3.6,3.1,3.5,2.9,3.6,3.4,3.5,3.2],"paint":[11.4,12.6,11.7,11.7,11.1,12.2,12.4,12.6,11.3,12.7,12.4,12.7,11.8,11.6,11.4]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"04_select1k","values":{"total":[9.4,10.3,5.2,9.4,12.5,14.9,9,7.6,11.4,9.5,10.2,14.4,10,9.5,9.3,8.8,15.7,10.6,6.5,12.8,13.9,16.5,8.7,6.5,11.5],"script":[1.6,2.3,1.6,2,3.1,2,2.9,1.9,2.1,2.4,2.8,1.9,1.8,1.7,2.9,2,2.7,0.8,1.2,2.4,1,2.7,1.1,2.1,2.7],"paint":[2.7,1.6,2.2,1.9,3.1,1.4,3.5,2.8,2.9,2.8,2.4,2.3,3.2,2.9,3.1,3.8,2.3,2.6,2.5,2.1,3.1,2,3.4,2.2,1.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"05_swap1k","values":{"total":[35.8,35.5,35.9,40.9,34.9,36.2,35.6,40,36.2,34.8,35,34.6,35.3,37.9,38],"script":[1.4,1.4,2.4,2.3,2.3,2.2,1.8,1.9,2.5,0.8,1.4,1.9,2,1.9,2.2],"paint":[15.5,15.1,15.3,16.1,14,14.9,14.9,14.7,13.5,14.6,13.7,14.1,14.7,14.7,13.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.2,13.3,15.3,15.3,15.3,13.6,16.5,13.4,13.2,16.5,13.1,13.3,13.3,12.9,16.4],"script":[1.5,1.2,0.7,0.8,0.9,1.7,1.1,0.8,1.4,1.4,1.2,1.6,1.4,0.8,1.3],"paint":[11.3,10.4,10.9,10.9,11.1,10.5,10.8,11.3,10.4,11.3,10.7,10.2,10.5,10.3,11.2]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"07_create10k","values":{"total":[302.2,296.4,299.5,300,301.9,300.6,299.5,301.6,293.9,303,294.5,293.6,298.4,295.5,294.9],"script":[52.5,53.7,53,53.8,53.3,54.6,53,54,51.5,53.2,53.4,53.1,53.1,53.4,53.1],"paint":[239.4,239.2,237.6,238,238,235.9,236.6,237.1,236.2,239.2,237.7,237.1,235.4,238,238]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.4,37,40,39.5,51,42,33.5,51.6,39.8,41.9,38.8,40.4,51.6,39.1,40.4],"script":[5.4,5.3,5.4,5.7,5.5,5.4,5.5,5.7,5.4,5.4,5.3,5.8,5.8,5.3,5.4],"paint":[26.6,26,26.6,26.4,26.4,27.3,26.8,26.2,26.4,26,26.8,28,26.4,26.6,26.2]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[35.4,36.1,32.4,15.7,13.9,36.3,35.8,34.4,15.4,35.3,36.9,36,15.2,35.9,15.1],"script":[11.2,11.9,10.4,11.2,10.5,12.2,11.8,10.9,11.6,11.5,11.4,11.4,11.6,12.1,11.6],"paint":[2,3.6,1.7,2,1.9,1.4,1.3,3.3,2.5,0.8,2.6,2.3,2,1.5,1.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.004934310913086]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6533803939819336]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.684443473815918]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1977615356445312]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.902173042297363]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[92.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[23]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[107.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"01_run1k","values":{"total":[58.8,58.8,59.1,59,58.4,57.7,58,58.4,57.7,57.4,58.3,57.8,58.8,58.5,57.4],"script":[31.2,33,32.8,32.8,31.8,31.6,31.7,32.2,31.7,31.8,31.9,32.1,32.5,31.9,31.7],"paint":[27,25.4,25.8,25.7,26.1,25.6,25.8,25.8,25.6,25.2,25.9,25.2,25.9,26.2,25.2]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"02_replace1k","values":{"total":[99.7,70.7,106.6,98.9,71,71.4,71.3,99.6,70.5,71.3,97.1,70.7,70.5,71.3,70.9],"script":[77.1,45.4,82.7,76.4,45.4,45.1,45,76.8,44.7,45.5,74.4,45.4,45,45.5,45.2],"paint":[22.1,24.8,23.4,22,25.2,25.8,25.8,22.3,25.2,25.3,22.2,24.8,25,25.3,25.2]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[42.9,43.1,41.1,42.3,43.8,42.2,42,42.6,41.8,42.3,42.6,40.9,42.3,41.6,42.6],"script":[29.4,29.2,28.5,29,30.4,29.1,28.9,28.7,28.7,28.7,28.4,27.9,29.1,28.7,28.7],"paint":[12.3,12.3,10.8,11.1,12.1,11.3,11.3,12.6,11.8,12.1,13,11.6,11.4,11.4,12.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"04_select1k","values":{"total":[28.8,29.3,29.3,30,28.9,29.2,28.7,29.4,29.4,30.2,28.7,28,29.3,28.2,29.2,29.2,29,28.9,28.8,28.1,29.2,29.5,28.5,29.3,28.5],"script":[26.3,26.2,27,26.5,26.6,27,26.2,27.4,26.7,27.2,26.6,26.1,25.9,26.2,26,27.3,26.6,26.5,26.1,26.1,26.8,27.1,26.5,27.1,26],"paint":[1.5,2.1,0.4,2.8,1.2,1.2,1.7,1.1,1.8,1.6,1.9,1,1.8,1.1,2.4,1,1.8,1.4,1.8,1.1,1.6,1.5,1.1,0.4,1.8]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"05_swap1k","values":{"total":[68.7,69,69.9,69.8,67.3,68.4,69.3,70.4,69.6,71,71.2,69.4,68.7,70,69],"script":[52.8,52.1,53.2,54.1,52.4,51.8,53.2,52.8,53.9,54.1,54.1,52,52.7,53.4,52.4],"paint":[14.4,15.1,15.4,13.8,13.7,14.7,15.1,15.8,14.5,15.4,15.6,16,14.7,14.5,14.8]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.8,24.1,24,24.2,25,24.6,24.1,23.9,23.7,23.8,25.3,24.4,24.5,24.3,24.2],"script":[12.3,12.7,12.6,12.7,12.8,12.9,12.8,12.7,12.6,12.7,13.7,12.8,12.8,12.8,12.8],"paint":[10.7,10.5,10.1,10.7,11.4,10.7,10.7,9.8,10.1,10.1,10.8,10.9,10.7,10.6,10.8]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"07_create10k","values":{"total":[949.3,884.2,862.1,896.3,900.7,902.6,844,853.5,855,866.9,897.1,860.8,843.5,845.9,863.1],"script":[654.3,613.1,590.1,626,628.6,608.4,572.8,578.9,562.8,595.7,623,565.6,572.2,571.7,570],"paint":[288,264.1,265.1,263.3,265.2,287.8,264.4,267.6,285.6,264,267.6,288.2,264.5,266.9,286.2]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[71.3,70.8,70.6,72.1,72,72.4,70.5,70.8,71.3,70.9,69.9,69.5,71.5,71.4,71.6],"script":[40.5,40.9,40,40.8,40.9,41.9,40.2,40.2,40.8,40.5,40.3,40,41.1,41.2,41.2],"paint":[29.8,29,29.6,30.5,30.2,29.6,29.5,29.7,29.6,29.5,28.7,28.6,29.5,29.3,29.5]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.4,23.7,25.2,24.4,23.7,22.8,23,24.9,23.5,22.9,23.7,23.9,23.8,24.6,23.8],"script":[21.9,22,21.7,22.6,22.6,21.5,21.4,23.1,21.7,21.4,22.1,22.2,21.8,22.7,22.3],"paint":[1.4,1.6,3.4,1.1,1,0.3,0.8,1.7,0.8,1.5,1.5,0.8,1.9,1.8,0.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7783641815185547]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.505826950073242]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.174749374389648]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[23.352724075317383]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.5271110534668]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[277.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[81]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[392.1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"01_run1k","values":{"total":[29.6,29.1,29.3,29.3,30.5,29.1,29.6,29.3,29.4,29.1,29.1,29.1,29.5,29.4,29.1],"script":[5,5,4.9,4.9,5.6,4.9,5.1,4.9,4.9,4.8,4.8,4.9,5,5,5],"paint":[24,23.8,24,24,24.4,23.8,23.9,24,24.1,23.9,23.9,23.8,23.9,24.1,23.8]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"02_replace1k","values":{"total":[32.2,31.9,32,32.7,31.9,32.3,32.1,32.4,32.1,31.8,32.2,32,32.1,32.5,32.1],"script":[7.4,7.2,7.1,7.3,7.1,7.1,7.3,7.2,7.2,7.2,7.2,7.2,7.3,7.3,7.3],"paint":[24.3,24.2,24.3,24.8,24.2,24.6,24.3,24.6,24.4,24.1,24.4,24.3,24.3,24.6,24.2]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.4,13.5,13.2,12.7,13.2,13.8,12.2,13.2,12.4,13.5,13.4,13,13.2,12.2],"script":[2,2,1.6,1.6,1.7,2.1,2.6,2.1,2.6,2.1,1.9,2.3,2.3,2.1,2.2],"paint":[10.9,10.4,10.7,9.9,10,9.4,10,9.2,9.4,9.6,10.6,9.6,9.7,9.1,8.6]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"04_select1k","values":{"total":[5.5,3.9,4,4.6,3.9,3.9,4.1,4.4,4,3.9,3.9,3.5,4.2,3.7,3.5,3.9,3.9,3.4,4,3.8,4.2,4.4,4.4,3.6,3.3],"script":[2.3,1.5,1.7,1.8,1.5,1.7,1.8,2,2.1,1.5,2.3,1.3,1.8,2.1,1.1,1.8,2.2,1.8,2.1,1.9,1.2,2.2,2.5,1.8,2.2],"paint":[1.3,2.2,2.2,2.6,2.2,1.1,1.4,2.2,1.3,1.2,0.7,0.3,1.5,0.7,2,2,1.2,1.1,1.7,1.8,1,1.1,1.8,0.9,1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"05_swap1k","values":{"total":[17,14.5,15.6,14.5,15.6,15.9,15.2,15.8,15.8,15.1,14.8,14.8,14.6,15.8,14.7],"script":[1.8,1.4,1.5,1.7,2.1,2.2,1.9,1.8,2,1.8,1.9,1.8,1.6,2.1,1.9],"paint":[13.5,11.8,13.4,11.9,11.5,11.7,11.8,13.1,12.6,12.2,11.2,12.1,11.1,12.9,11.1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.5,11.4,11.2,11.6,11.1,11.5,11.5,11.4,11.4,11.4,11.1,11.2,11.4,11.4],"script":[1.2,1.2,1.2,0.9,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2],"paint":[9.5,9.5,9.6,10,9.7,9.3,9.7,9.8,9.6,9.5,9.6,9.3,9.6,9.5,9.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"07_create10k","values":{"total":[302.9,303.1,302.3,299.7,303,299.3,300.5,299.2,299.7,297.9,301.2,297.5,299.7,298.9,298.6],"script":[49.8,49.4,49,49.8,51,49.2,49,49,49.1,48.8,49.3,48.6,49.1,50.1,48.8],"paint":[246.8,247,247.2,244.1,245.3,244.4,245.4,244.1,244.6,243.1,245.5,243.2,243.7,243.2,243.8]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,32.7,32.1,32,32,33.1,32.7,33.3,33.6,32.3,33.4,32.7,32.2,32.6,33.8],"script":[4.9,5.1,4.8,4.7,4.7,4.7,4.9,5,5.2,4.9,4.8,5.2,4.9,4.7,5.1],"paint":[26.8,26.7,26.6,26.6,26.5,27.7,27.1,27.6,27.5,26.7,27.8,26.6,26.6,26.9,27.8]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.3,11.6,12.7,11.9,12.3,11.3,12.1,12.2,11.5,12.8,12.1,12.8,12.4,12.7,11.4],"script":[9.4,9.6,10.5,9.9,10,9.7,9.4,10,10,9.6,10,10.8,10.5,10.9,9.8],"paint":[1,1.7,0.7,0.9,1.3,0.2,1.6,1.1,0.2,2.2,0.3,0.8,1,1.3,1.1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.764592170715332]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7853612899780273]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7811288833618164]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.49709415435791]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.08268451690674]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[173.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.6]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"01_run1k","values":{"total":[29.6,29.2,29.1,28.9,28.7,28.8,29.1,29.3,29.2,29.4,28.7,29.4,28.9,29.1,29.3],"script":[4.5,4.5,4.4,4.2,4.3,4.2,4.5,4.5,4.4,4.6,4.1,4.6,4.2,4.5,4.5],"paint":[24.7,24.3,24.2,24.3,24,24.3,24.3,24.4,24.4,24.4,24.2,24.4,24.4,24.3,24.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"02_replace1k","values":{"total":[31.3,31.2,31.5,31.3,31.1,31.3,30.9,31,32.7,31.1,31.1,31.3,31.3,32,31],"script":[6.2,6.2,6.4,6,6,6.3,6.1,6.2,6.5,6.2,6.1,6.4,6,6.6,6],"paint":[24.5,24.5,24.6,24.7,24.6,24.5,24.3,24.3,25.6,24.3,24.4,24.4,24.7,24.8,24.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,12.3,11.5,11.8,12.2,12.1,11.6,13.7,11.4,11.1,11.3,11.5,11.6,12.5,11.4],"script":[0.9,0.9,0.5,0.6,0.8,0.9,0.6,1.3,0.5,0.2,0.6,0.6,0.9,1.3,0.4],"paint":[9.4,10.4,9.9,10.2,9.1,9.4,9.8,11.2,9.9,9.8,9.6,9.8,9.6,9.7,9.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"04_select1k","values":{"total":[1.9,1.8,2.4,1.9,3.1,1.3,2.4,1.7,2.4,2.4,1.8,2.9,2,2.3,1.9,1.9,1.6,2.5,2.4,1.9,2.2,1.7,2.7,2.4,2.1],"script":[0,0.6,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0.7,0,0,0,0,1,0],"paint":[1.3,1.1,1.4,1.7,1,0.7,1.3,1.5,1.4,1.4,1.7,1.8,1.8,2.1,1.8,1.3,0.7,2.3,1.6,1.3,1.3,1,2.5,1.3,1.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"05_swap1k","values":{"total":[15.4,15.4,16.6,15.5,17.7,15.2,14.8,14.4,15.3,15.2,13.9,14.8,14.7,15.5,15],"script":[1.5,1.4,1.5,1.3,3,1.4,1.2,1.1,1.6,1.5,1,1.1,1.5,1.7,1.3],"paint":[12.6,12.5,13.5,13.1,13.4,12.7,12.3,12.2,13.1,12.2,12.1,12.5,11.6,12.4,12.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.5,10.7,10.4,10.9,10.9,10.7,10.8,10.7,10.5,10.5,10.7,10.9,11.3,10.7],"script":[0.3,0.1,0.4,0.1,0.5,0.1,0.4,0.2,0.4,0.1,0.1,0.4,0.3,0.5,0.1],"paint":[10.1,9.8,9.8,9,9.9,10.2,9.7,10.1,9.8,9.7,9.8,9.7,10,10.3,9.9]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"07_create10k","values":{"total":[305.8,305.6,306.7,307.7,308.5,305,306.9,304.6,302.8,304.7,305,302,305.6,304.1,303.2],"script":[55.8,55,57,56.9,56.8,56.1,56.7,56.7,55.9,56.7,57.3,54.8,56.3,55.6,56.7],"paint":[243.1,244.3,243.3,244,244.4,242.4,243.2,241.4,240.6,241.7,241.3,241,242.8,241.8,240.3]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.3,32.7,32.7,33.1,33.7,32.3,33,33.4,32.3,32.7,32.6,32.5,32.8,32.4,34.1],"script":[4.8,4.5,4.5,4.5,4.8,4.5,4.7,4.7,4.5,4.5,4.6,4.5,4.5,4.6,4.7],"paint":[27.8,27.4,27.5,27.9,28.2,27.1,27.5,27.9,27.1,27.4,27.2,27.2,27.6,27.1,28.7]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,9.2,9.3,8.6,9.3,9.4,9.4,9.5,9,8.8,11.3,9.4,9,9.8,10],"script":[7.3,7.6,7,6.8,7.1,7.1,7.6,8.4,7.4,6.7,8.3,8,7.2,8.1,7.9],"paint":[1,1,1.5,0.9,1.5,0.8,0.6,0.4,0.6,0.9,1.6,0.2,0.6,1,0.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5652799606323242]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8094844818115234]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.815774917602539]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7965211868286133]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.538586616516113]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.8]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[40.5,40,40.2,40,41.3,41.2,40.6,40.1,40,40.4,39.9,40.6,40.6,40,40.1],"script":[15.2,15.2,15.3,14.9,16.1,16.1,15.5,15.1,15.1,15.5,15.2,15.4,15.3,15.1,15.1],"paint":[24.8,24.2,24.3,24.5,24.7,24.5,24.5,24.6,24.5,24.3,24.2,24.8,24.7,24.5,24.5]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[44.4,44.8,44.4,44.9,44.2,44.4,45.5,44.7,44.4,45.8,44,44,44.9,45.2,44.1],"script":[20.3,20.5,20,20.2,20.2,20,20.6,20.5,20,20.9,19.9,19.9,20.7,20.8,19.9],"paint":[23.6,23.7,23.9,24.2,23.6,23.8,24.3,23.6,23.8,24.4,23.6,23.5,23.9,23.9,23.7]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.1,20,20.6,19.9,19.2,19.2,19.3,20,20.4,18.2,19.3,19.4,21.1,20.8,18.7],"script":[6.5,6.6,7.1,7.4,6.5,7.2,7.1,7.5,6.7,6.2,6.8,6.3,7.4,6.7,6.3],"paint":[10,11.6,12.3,10.2,11.1,10.2,11,10.1,11.9,10.2,10.9,11.9,11.7,11.8,9.7]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[4.1,4.4,4,4,5,4.3,3.6,4.9,4.7,4.6,4.1,4,4.2,4,4.3,4.3,4.3,4.3,4.5,4.8,4,4,4.1,4.3,3.7],"script":[1.7,2,2.5,1.5,2.5,1.9,2,2.4,1.9,1.9,1.6,1.9,2.2,2.2,1.7,2.5,1.8,1.2,2.4,2.3,2.1,2.4,2.3,2,1.5],"paint":[1.5,1.9,1.3,1.7,1.3,1.7,1,1.2,2.1,1.7,1.9,1.2,0.7,1,1.6,1.6,1.3,2.9,1.2,1.6,1.1,0.7,1,2.1,1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[16.1,16.8,16.2,16,16.2,16.3,16.7,16.9,17.5,15.5,16.5,15.7,16.6,16.1,16.4],"script":[2.1,2.1,1.8,1.8,1.8,1.9,1.5,1.9,2.1,2,2.1,1.9,2,2.2,2.3],"paint":[12.8,13,13.4,12.3,12.8,13.5,13.1,13.1,14,12.1,12.9,12.9,13.5,12.4,12.7]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.5,12.5,12.2,12.1,12.3,12.1,12.4,12.1,12.4,12.2,12.4,11.7,12.5,11.9],"script":[1.1,1.1,1.1,0.9,1.1,1.1,0.9,0.9,1.1,1,0.8,1,0.8,1.3,1],"paint":[10.3,10.2,10.8,10.5,9.9,10.4,10.3,10.1,10.4,10.6,10.7,10.8,9.9,10.6,10.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[396.9,396.3,399.8,395.9,397.2,398.3,395.2,398.8,397.4,393.2,394.8,397.4,395,397.8,393.9],"script":[144.6,147.5,145.2,144.5,145,144.2,144.9,146.5,148.1,143,143,144.1,142.7,144.5,142.6],"paint":[245.5,242.1,247.9,244.2,245.9,247.7,244,245.9,242.6,243.8,245.6,246.5,245.7,246.5,244.6]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.9,44.2,44.4,44.7,44.3,44.5,44.3,45.7,46.2,44.9,44.7,43.9,44.8,44.3,45.4],"script":[15.6,15.8,16,16.1,16.2,15.8,15.7,16.9,16.1,16.7,15.8,15.5,16,15.7,16.1],"paint":[27.4,27.4,27.6,27.7,27.2,27.8,27.7,27.9,29.1,27.4,27.9,27.6,27.9,27.7,28.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,8.7,9.1,9,10,10.1,9.5,9.6,9.4,8.6,9.7,9.8,9.9,9.4,9.5],"script":[8.9,7.2,8,7.4,8,8.5,8.1,8.3,8.1,7.4,8.2,7.8,8.4,8,8.1],"paint":[0.2,0.7,1,1.5,0.7,0.6,1.1,0.2,1.1,0.2,1.2,1.4,1.4,1,1.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.44991016387939453]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5699691772460938]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5917301177978516]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.424997329711914]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.713134765625]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[26.2,26,25.7,26,25.8,26.2,26.2,25.7,26.3,25.8,26.2,26.1,25.7,26,26.1],"script":[2.5,2.4,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.5,2.4],"paint":[23.4,23.3,23,23.2,23.1,23.4,23.3,23,23.5,23,23.5,23.3,22.9,23.2,23.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[28.9,28.7,30.1,30.2,29.2,29.2,28.9,29.2,28.9,28.4,28.5,29.1,29,29.7,29.9],"script":[4.9,4.8,5.5,5,5.1,4.8,4.9,4.9,4.9,4.6,4.8,4.9,5,4.9,5.2],"paint":[23.6,23.5,24,24.9,23.6,23.9,23.6,23.9,23.6,23.4,23.3,23.8,23.6,24.4,24.1]}},{"framework":"solid-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,11.3,11.9,11.8,11.9,11.7,11.6,12,11.1,11.8,12,11.5,12.5,12.4,10.6],"script":[0.9,0.8,1.1,0.2,0.9,1,0.8,0.2,0.2,0.6,0.8,1.4,0.2,0.9,0.2],"paint":[9.4,9.6,8.9,9.3,9.7,9.6,9.3,10.8,9.9,9.3,10.6,9,10.5,10.3,9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[6.2,2.6,2.1,2.5,2.1,2.4,2.7,2.5,2.7,3.4,1.9,2.4,2.5,2.2,2.5,2.3,2.4,2.1,2.7,2.7,1.9,2.4,2.2,2.8,2.7],"script":[0.4,0.8,0.1,0.5,0.7,0.1,1,0.1,0.7,0.8,0.6,0.5,0.8,0.1,0.7,0.1,0.5,0.1,1,0.8,0.1,0.5,0.1,0.9,0.8],"paint":[1.5,1,1.1,1.3,1.3,1.8,1.6,2,1.8,1.2,0.7,1.8,1.5,1.3,1.4,2.1,1.1,1.2,0.5,1.7,1,1.1,1.1,1,1.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[15.5,15,14.1,14.4,14.8,14.2,15.1,14.7,14.1,14.4,14.1,14.1,14.4,14.5,14.8],"script":[1.9,0.8,1.4,1,1.7,0.7,1.5,1,1.4,1.3,1.8,0.9,0.6,1.1,1.2],"paint":[12.6,13,12,13.1,12.2,12.1,10.8,11.1,12.1,12.3,11.7,12.3,12.8,12.5,12.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,10.9,11,10.9,11,10.8,11,10.7,10.8,10.9,10.9,10.9,11.5,10.7],"script":[0.4,0.5,0.6,0.5,0.6,0.6,0.5,0.2,0.5,0.5,0.6,0.3,0.5,0.5,0.4],"paint":[10.2,9.8,9.8,9.8,9.7,9.8,9.9,10.3,9.7,9.7,9.7,9.6,9.5,9.9,9.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[277.4,275.2,273.9,274.4,276.7,273.8,278,276.1,277.4,272.6,276.6,273.2,276.1,273.5,276.4],"script":[29.1,29.6,29,29.2,29.8,28.6,29.7,29.1,28.9,28.6,30,29.1,28.8,29.2,29.4],"paint":[242.2,239.7,238.9,239.1,240.6,239.5,242.2,240.8,242.3,238.2,240.5,238.1,241,238.1,240.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,31.3,31.8,30.5,31.3,31.4,30.5,29.9,30.2,30.3,31,30.7,30.8,30.5,30.6],"script":[2.8,3,3.3,3,3.1,3,3,2.7,2.9,3,3,2.9,2.9,2.9,2.9],"paint":[25.7,27.6,27.6,26.8,27.5,27.6,26.8,26.4,26.6,26.6,27.3,27.1,27.2,26.8,26.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,10.3,12.2,11.7,10.1,12.5,11,10.6,13.1,9.7,13.6,8.9,9.6,13.3,10.2],"script":[10.4,7.8,10.1,9.8,8.1,10.2,8.9,8.2,10.9,8.2,11.6,6.9,8,10.7,8.2],"paint":[1.7,2,1.4,1.1,0.2,1.5,1.2,1.3,1.1,0.6,1.8,1.2,0.6,1.3,0.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5644693374633789]}},{"framework":"solid-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7376203536987305]}},{"framework":"solid-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.788167953491211]}},{"framework":"solid-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7307567596435547]}},{"framework":"solid-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.10427188873291]}},{"framework":"solid-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.6,28.9,27.6,27.4,28.2,27.3,27.5,28.8,28.6,27.7,27.7,27.5,27.8,28.3],"script":[3.8,3.7,4.7,3.8,3.7,3.9,3.7,3.7,4.6,4.7,3.8,3.8,3.8,3.8,4.2],"paint":[23.4,23.5,23.9,23.5,23.3,24,23.2,23.4,23.8,23.5,23.6,23.5,23.3,23.6,23.8]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[30.5,30.7,30.6,30.2,30.9,31,31.1,31.2,30.5,30.2,30.6,31.1,30.4,30.4,31.1],"script":[6.5,6,6.2,6,6.1,6.5,6.1,6.2,6.2,6,6.1,6.7,6.1,6,6.3],"paint":[23.5,24.1,23.9,23.7,24.3,23.9,24.3,24.5,23.7,23.7,24,23.9,23.7,23.9,24.2]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,11.4,11.9,11.7,12.2,11.8,11.6,12.8,11.4,12.8,12.1,13,12.1,12.9,11.8],"script":[1.2,1,0.9,1.1,1.2,1,1.1,1.1,1,1.7,1.1,1.3,1.3,0.9,0.9],"paint":[9.1,9.3,10,9.6,9.2,9.6,9.8,10.1,9.4,9.9,9.7,10.5,9.8,11,9.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[3.9,2.5,1.9,2.2,2.9,2.4,2.2,2.1,2.6,2.4,3,1.9,3.4,2.8,3.5,2.3,2.7,3.8,2.4,1.9,2.4,2.6,2.2,1.5,2.1],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.9,0.1,0.1,0.6,0.7,0.3,0.7,0.8,0.1,0.1,0.8,0.1,0.8,0.1,0.7,0.1,0.4,0.3,0.5],"paint":[1.7,1.3,0.7,1.9,1.6,1.9,0.7,1.9,1,1.1,1,1,1.1,1.8,1.6,2,0.3,1,1.5,1.7,1.2,1.6,1.6,0.7,1.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[16.1,15.5,16.4,15.8,15.3,15.6,16.6,16.4,16,15.9,15.9,16.5,16,16.3,15.4],"script":[2.2,2.2,2.1,2.3,2.2,1.9,2.8,2.1,2,2.2,2,3.3,2.8,3.1,2.1],"paint":[13,12.3,13,12.3,11.9,12.4,12.6,13.3,13.4,12.2,12.7,12.6,11.8,12.4,11.6]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.9,11.6,11.9,12.2,11.8,12.2,12.5,12,12.2,12.5,12.1,11.9,12.5,12],"script":[1.5,1.7,1.4,1.6,1.6,1.5,1.4,1.8,1.4,1.6,1.7,1.7,1.5,1.6,1.7],"paint":[10,9.9,9.7,9.6,10.2,9.9,10.2,10,9.8,10,10.2,9.9,9.8,10.3,9.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[283.1,287.7,281.2,283.8,285.5,285.1,282.9,282.2,284,284,284.4,283.8,284.1,281.2,285.1],"script":[44.6,46.1,45,43.9,46.2,46.7,45,44.6,46.4,44.7,45.9,45.3,45.6,44.2,47],"paint":[232.8,235.3,230.6,234.5,233.8,232.6,232.1,232.2,232.1,233.7,233.1,233.1,232.8,231.6,232.8]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,32.7,32.6,31.7,31.9,32.3,32.3,32.5,33.2,32.3,32.6,33.3,32.5,31.9,32.8],"script":[4.8,4.8,4.8,4.7,4.6,4.6,4.7,4.9,4.7,4.8,4.8,4.7,4.7,4.6,4.7],"paint":[26.6,27.1,27,26.3,26.5,26.9,26.8,26.9,27.7,26.8,27.1,27.9,27.1,26.6,27.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,10.5,10.2,11.1,11.4,10.6,10.3,10.8,10.3,10.7,12.3,10.8,10.3,11.5,10.7],"script":[8.6,8.3,8.3,9.2,9.5,9.1,8.8,8.4,8.1,8.6,10,8.8,8,9.4,8.5],"paint":[1.1,0.9,0.6,1.1,0.4,0.6,0.2,1.5,0.8,1.9,0.3,0.2,1.3,1.2,1.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5742292404174805]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.043062210083008]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0778627395629883]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8947219848632812]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.696661949157715]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.5]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"01_run1k","values":{"total":[25,24.9,25,25.1,25,25.1,25,25.2,25.3,25.4,25.1,25.2,25.1,25.1,25],"script":[1.2,1.3,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.2,1.3,1.2,1.3,1.3],"paint":[23.4,23.3,23.4,23.5,23.4,23.4,23.4,23.6,23.6,23.7,23.5,23.5,23.6,23.4,23.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"02_replace1k","values":{"total":[27.9,27.5,27,27.7,27.5,27.3,27.6,27.4,27.4,27.2,28,27.4,27.7,28,27.5],"script":[3.2,3.1,3.1,3.1,3.1,3.1,3.3,3.1,3,3.1,3.1,3.1,3.2,3.2,3.2],"paint":[24.3,24,23.6,24.2,23.9,23.8,23.9,23.8,24,23.7,24.5,23.9,24.1,24.4,23.9]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.9,11.5,11.6,10.8,10.9,10.1,10.1,10.7,10.3,10.3,11.5,10.7,10.9,11.6,11],"script":[0.4,1.1,0.5,0.1,0.3,0.1,0.1,0.1,0.1,0.3,0.9,0.1,0.2,0.1,0.1],"paint":[9.4,9.8,9.7,9.3,9.6,8.7,8.6,10,8.7,8.8,9,9.4,9.8,9.5,10.2]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"04_select1k","values":{"total":[1.6,2.4,2.1,1.5,1.9,2.1,1.6,3,1.9,2.2,1.4,1.9,2.3,1.6,2,2.1,2.2,2.1,2.4,2.1,1.3,1.8,2.4,2.2,2.1],"script":[0,0,0,0,0,0,0,0.5,0,0,0.3,0,0,0,0.7,0,0,0,0,0,0,0,0,0,0],"paint":[0.7,2,0.8,1.4,1.3,1.5,1.4,1.8,1,1.2,0.9,1.1,1.4,1.5,1.2,1.4,0.6,1.3,1.3,0.9,0.9,1.7,1.4,0.9,1.9]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13,13.5,12.6,13.7,13.4,13.7,13.4,13.4,13.5,13.5,13.7,13.3,12.8,13.2],"script":[0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.4,0.1],"paint":[11.6,12.1,12.7,10.4,12,12.2,13,12.1,12.3,11.4,11.9,12.8,11.4,11.4,11.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.6,10.4,10.3,10.7,10.1,10,10.6,11,10.4,10.9,10.4,10.2,10.3],"script":[0.1,0.1,0.2,0.1,0.3,0.4,0.1,0.1,0.1,0.3,0.1,0.1,0.2,0.1,0.1],"paint":[9.5,9.9,9.8,9.6,9.6,9.7,9.5,9.3,10.1,9.9,9.4,10.3,9.7,9.4,9.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"07_create10k","values":{"total":[258.2,259.4,260.8,259.9,259.7,259.4,258.9,259.8,257.7,259.2,259.8,259.4,259.5,259.3,259],"script":[13.6,13.6,13.9,13.9,13.8,13.7,13.8,13.8,13.8,13.7,13.8,14,13.7,13.9,13.8],"paint":[238.8,239.9,240.9,239.8,240,239.7,239.6,239.9,237.9,239.4,239.5,239.4,239.7,239.2,239.1]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.5,27.7,28.5,28,29.2,28.1,27.7,28.9,28.1,28.2,27.8,29.2,28.6,28.1,28.2],"script":[1.3,1.2,1.3,1.3,1.3,1.2,1.2,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3],"paint":[26.5,25.8,26.5,26,27.2,26.2,25.8,26.9,26.1,26.3,25.9,27,26.6,26,26.2]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,9.3,9.1,9.6,9.2,9.2,9,9,8.7,9.2,9,8.8,9.5,8.8,9.3],"script":[7.2,7.3,6.9,7.7,7,7.1,6.8,7.4,7,6.8,7.3,7,6.9,7.1,7.6],"paint":[1.7,1.1,0.5,1.1,1.3,1.3,1.5,0.6,0.9,1.3,0.3,0.9,1.5,0.2,0.2]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5261096954345703]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8571252822875977]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8525819778442383]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6448450088500977]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.746733665466309]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.5]}},{"framework":"spair-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[30.6,30.7,30.4,30.6,30.7,30.6,30.4,30.4,31.5,30.9,30.3,31.1,30.9,30.1,31.1],"script":[6.3,6.4,6.2,6.2,6.2,6.2,6.1,6.2,6.9,6.2,6.2,6.6,6.2,6.1,6.4],"paint":[23.8,23.8,23.7,23.8,23.9,23.8,23.8,23.7,24.1,24.2,23.6,23.9,24.1,23.5,24.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[34.3,34.4,33.9,34.2,34.3,33.8,33.6,33.8,34,34,35.4,34.4,34.1,34.1,34.7],"script":[9.3,9.4,9.1,9.2,9.4,9.1,9.1,9.1,9.2,9.2,9.8,9.2,9.4,9.1,9.4],"paint":[24.4,24.4,24.2,24.5,24.4,24.2,23.9,24.1,24.2,24.2,25,24.6,24.1,24.5,24.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,13.9,13.9,14.2,14,14.3,14.9,13.5,13.3,13.8,13.5,14.5,14.1,14.3,13.4],"script":[2,2.7,2.4,2.4,2.4,2.9,2.6,2.7,2.4,2.2,2.5,3,3.2,2.8,2.7],"paint":[10.2,9.9,10.5,10.5,10.5,10.4,11.7,9.6,9.3,10.1,10.1,9.4,9.1,10.5,9.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[6.2,3.7,4,3.8,3.9,3.5,3.5,3.7,3.6,3.7,3.7,3.7,3.4,3.9,3.3,3.8,4,3.6,3.4,3.3,4.1,3.5,3.4,3.9,3.7],"script":[2.4,1.9,1.9,2.1,2.1,1.9,2.1,1.4,1.6,1.3,2,1.9,1.3,1.9,1.2,1.8,2.1,1.8,1.8,1.5,2.3,1.9,1.8,2.2,2.2],"paint":[1,1.7,1.4,1.2,1.4,1.1,1.3,1.4,1.2,2.3,1.6,1,1.1,1.8,2,1.3,1.1,1.6,1.5,0.9,1.7,1.1,0.7,0.5,1.3]}},{"framework":"spair-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[14.6,14.6,15.9,15,15.5,15.2,14.6,15.2,14.6,15,15.4,15.4,14.8,15.4,14.7],"script":[1.6,1.9,1.9,1.6,2.1,1.6,1.5,1.5,1.8,1.7,2.2,1.6,1.5,2.3,1.8],"paint":[11.4,11.6,13.1,11.3,12.2,12.3,11.8,12.5,12,12,12.3,12.4,12.3,11.6,11.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.7,11.9,11.5,11.6,11.7,11.6,11.6,11.7,11.5,11.6,11.5,11.7,11.7,11.2],"script":[1.1,1,1.1,1,0.9,1.1,1.2,1.1,0.9,1.1,1.1,0.9,1.1,1.1,0.9],"paint":[9.8,10,10.1,9.8,10,9.9,9.6,9.5,10.2,9.8,9.8,10.1,9.8,9.9,9.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[309,305.8,307,306.4,308.4,306.8,309,307.9,304.7,305,304.4,304.8,306.9,306.4,305.9],"script":[59.5,59,59.6,58.3,59.1,58.1,60,58.6,59.9,58.3,58.7,58.7,58.9,59.2,58.8],"paint":[243.2,241,241.5,242.1,242.8,242.2,243.3,243.3,238.9,240.9,239.9,240.1,242.1,241.2,240.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,35.4,36.3,36.3,35.8,36.6,36,36,36.1,36.7,36.4,36.4,36.2,36.4,36.2],"script":[7.1,7.2,7.7,7.2,7.1,7.7,7.1,7.4,7.8,7.5,7.6,7.5,7.2,7.5,7.6],"paint":[27.6,27.3,27.6,28.2,27.8,28,27.9,27.7,27.4,28.3,27.9,28,28.1,28,27.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.4,13.7,12.8,12.9,13.6,12.2,11.9,12.7,13.4,12.6,12.7,12.8,10.9,13,12.6],"script":[11.5,11,10.9,11.1,11.2,10.3,10.4,10.6,11.4,10.2,11,10.6,9.1,11.2,10.5],"paint":[0.2,1.7,1.7,0.9,0.9,1,0.6,1,0.6,2.1,0.4,1.1,0.9,0.7,0.3]}},{"framework":"spair-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7450981140136719]}},{"framework":"spair-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.069576263427734]}},{"framework":"spair-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.133159637451172]}},{"framework":"spair-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.6000442504882812]}},{"framework":"spair-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.954986572265625]}},{"framework":"spair-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[31.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[129.2]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[30.7,30.8,31.2,30.4,30.3,30.2,30.4,30.6,30.7,30.5,30.7,30.6,30.4,30.6,31.1],"script":[5.9,6.4,6.6,6,6,5.9,6,6.1,6,6.2,5.9,6.1,6,6,6.7],"paint":[24.2,23.9,24,23.8,23.8,23.8,23.9,23.9,24.1,23.8,24.2,23.9,23.8,24.1,23.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[33.7,34.3,33.8,33.7,33,33.4,33.6,33.9,33,33.4,34.1,33.7,33.4,34,33.9],"script":[8.7,9.1,8.8,8.8,8.4,8.6,8.6,8.6,8.4,8.6,8.7,8.6,8.5,9,8.8],"paint":[24.4,24.7,24.4,24.3,24,24.2,24.4,24.7,24.1,24.2,24.8,24.5,24.3,24.5,24.6]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,14.9,13.9,13.4,13.8,13.6,14.1,13.6,13.1,12.8,13.4,13.7,13.5,13.7,13.8],"script":[2.2,2.8,2.5,2.9,2.4,2.2,2.6,2.1,2.3,2.4,2.4,2.5,2.7,2.4,2.4],"paint":[9.3,10.3,9.7,9.6,10.4,10.3,9.2,10.5,9.5,9.2,9.6,9.9,10.1,10.3,10.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.2,4.7,4.3,3.5,3.7,4.3,3.9,4.4,3.6,4.3,3.4,4.3,3.8,4.6,3.6,4.4,4.2,4,3.9,4.2,4.4,4,4.5,4.2,3.9],"script":[1.9,2.6,2,1.7,1.9,2.2,1.9,1.7,2.3,2.2,2.1,2.4,1.9,2.5,2.5,2.7,1.6,2.2,2.2,2.1,1.9,1.9,2.3,2.1,1.6],"paint":[1.5,1.2,2.2,1,1.1,1.3,1.2,2.4,1.2,1.9,1.3,1.4,1.6,1.3,0.3,1.6,2.3,1.1,1.2,1,2.4,0.8,2,2,0.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.4,14.8,14.9,15.7,15.6,14.7,15.2,15,16.4,15.9,14.8,14.7,14.5,14.4,16],"script":[2.1,1.5,1.8,2.1,2.2,1,1.5,0.9,1.8,1.6,1.6,1.4,1,1.8,1.5],"paint":[12.3,11.3,11.8,12.6,12.1,11.9,11.8,12.9,12.3,13.3,12.1,11.8,11.9,11.5,12.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11,11.5,11.2,11.3,11.4,11.4,11.4,11,11.2,11.4,11.4,11.9,11.3,11.1],"script":[1,0.7,0.9,1,1,1.1,1.1,0.9,1.1,0.9,1,0.9,1,1.1,0.9],"paint":[9.8,9.6,10.1,9.6,9.7,9.5,9.5,9.7,9,9.9,9.7,9.8,10.2,9.7,9.3]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[301.2,303.6,306.5,304.6,306.2,305.6,303.7,305.1,304.3,306.2,307.4,304.2,308.9,306.7,306.1],"script":[55.5,57.3,57,57.7,57.1,57.3,56.7,56.6,57.4,58.2,58.2,57.5,59,57.6,57.4],"paint":[239.9,240.1,242.8,241.2,242.9,242.2,241.3,242.6,240.8,242.1,243.1,240.8,243.9,242.7,242.6]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.7,34.9,34.9,35.7,35.5,35.5,36.4,34.5,35.5,34.7,34.5,35.5,34.8,34.6,34.9],"script":[6.2,6.2,6.3,6.3,6.3,6.4,6.7,6.2,6.3,6.2,6.4,6.1,6.3,6.3,6.2],"paint":[27.5,27.7,27.7,28.4,28.3,28.3,28.8,27.4,28.2,27.6,27.2,28.4,27.6,27.4,27.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,11.3,12.3,11.5,11.2,12.6,10.9,11.7,11.5,11.1,11.5,11.3,11.7,11.6,11.5],"script":[10,9.4,10.4,9.6,9.8,9.9,8.8,10,9.4,9.1,9.7,9.7,9.6,9.6,9.7],"paint":[0.4,1.2,0.9,0.2,0.2,1.2,1.2,0.7,1.8,1.5,0.5,0.6,0.8,0.3,0.6]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7423324584960938]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.569583892822266]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.570156097412109]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.0707836151123047]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.507015228271484]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[27.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[117.4]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"01_run1k","values":{"total":[26.8,28.2,26.7,26.5,26.8,26.5,26.5,26.3,26.5,26.6,26.6,26.9,26.3,26.6,26.6],"script":[3.5,3.7,3.4,3.4,3.4,3.5,3.4,3.4,3.4,3.5,3.4,3.6,3.3,3.4,3.4],"paint":[23,24.2,22.9,22.7,23,22.6,22.7,22.5,22.7,22.8,22.8,22.9,22.7,22.8,22.8]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"02_replace1k","values":{"total":[30.7,30.9,31.3,31.1,30.6,30.7,30.6,30.8,31,31.1,31.1,31,30.8,30.7,31],"script":[6.4,6.1,6.3,6.3,6.2,6.4,6.1,6.1,6.2,6.2,6.3,6.2,6.2,6.1,6.2],"paint":[23.8,24.3,24.1,24.3,23.9,23.7,24,24.2,24.2,24.3,24.2,24.3,24,24,24.2]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,12.2,11.8,11.5,12.1,12.1,11.6,11.8,11.9,11.9,11.5,11.6,11.7,11.8,12.1],"script":[0.5,0.2,0.5,0.8,1.3,0.9,0.6,0.5,0.8,0.8,1.4,0.8,0.5,0.6,0.2],"paint":[9.9,10.7,10.4,10.4,9.8,10,9.5,10.6,10,10.3,9.2,10,10.1,9.9,11]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"04_select1k","values":{"total":[3,2,1.9,2.1,2.6,1.5,2.6,2.4,2.2,2,2.5,2,2,1.8,1.9,2.2,2.3,1.8,1.6,2.5,2.1,1.9,2.1,2.4,2.1],"script":[1,0.1,0.1,0.1,0.9,0.1,0.8,0.1,0,0.1,0.7,0,0,0.3,0.1,0.1,0.4,0,0,0,0.5,0.1,0.7,0,0],"paint":[1,1.2,1,1,1.3,1.3,1.1,1.5,2,1.8,1.7,1.9,1.4,1.1,1.7,2,1.7,1.1,1,2.3,1.1,0.6,1.3,2.2,0.9]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"05_swap1k","values":{"total":[14,13.2,13.3,13.4,13.8,14.3,12.9,13.3,13.7,13.5,12.7,14.3,14.5,13.2,13.6],"script":[0.1,0.1,1.1,0.1,0.1,0.5,0.1,0.6,0.5,0.1,0.1,0.5,0.1,0.1,0.8],"paint":[12.9,11.5,11.6,11.9,12,12.6,11.8,11.6,11.8,12.2,11.5,12.7,13.4,11.6,11.5]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.6,10.7,10.7,10.7,10.7,10.7,10.6,11,10.9,10.5,10.6,10.6,10.4,10.5],"script":[0.1,0.4,0.2,0.2,0.4,0.3,0.2,0.3,0.2,0.3,0.3,0.3,0.3,0.1,0.1],"paint":[9.7,9.5,9.8,9.7,9.8,9.8,9.8,9.7,10.2,9.6,9.7,9.8,9.5,9.6,10]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"07_create10k","values":{"total":[284.1,282.2,282.8,285.1,286,284.1,283.2,285.7,285.2,285.3,284.4,286,285,285.4,283.7],"script":[37.5,36.7,37.6,37.6,37.4,37,37.2,36.9,36.8,37.2,36.5,36.7,36.8,37,36.7],"paint":[240.4,239.5,239.3,241.7,242.7,240.8,240.2,242.9,242.4,242.3,241.1,243.2,241.7,242.1,241.4]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31,31.4,31.7,31.6,31.4,31.7,32.4,31.9,31.4,32.4,31.3,32.1,32.2,32.5],"script":[4,4,4,4,4,4,4.2,4.1,4.1,3.9,4.2,4,4,4.2,4.2],"paint":[26.9,26.4,26.7,27.1,26.9,26.7,26.8,27.5,27.1,26.8,27.5,26.6,27.3,27.3,27.6]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,9.7,9.4,9.2,10.2,9.7,9.4,10,9.4,10.3,11.6,9.7,9,9.3,9.5],"script":[8.6,7.5,7.6,6.8,8,8.1,7.6,7.7,7.6,8.2,9.3,7.7,7.3,7.6,7.8],"paint":[1.2,1.2,0.2,1.2,1.1,1,0.6,1.3,1,0.9,2.1,0.7,0.2,1.1,0.2]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7396364212036133]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.704165458679199]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.769619941711426]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1862220764160156]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.1522159576416]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[33.9]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.7]}},{"framework":"spheres-v0.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.1]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"01_run1k","values":{"total":[33.9,33.1,33.1,33.7,33.5,33.2,33.6,33.7,34,33.1,33.9,33.6,33.2,33.6,33.2],"script":[9.4,8.7,8.8,9.2,9.1,8.8,8.9,9.1,9.4,8.7,9.2,9.2,8.8,9.1,9],"paint":[23.9,23.8,23.8,24,23.8,23.9,24.1,24,24,23.9,24.1,23.9,24,24,23.7]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"02_replace1k","values":{"total":[36.3,35.6,35.2,35.8,36,35.7,35.6,35.7,35.6,36.4,35.7,35.4,35.9,37.1,35.6],"script":[11.7,11.6,11.1,11.2,11.4,11.3,11.2,11.3,11.3,11.6,11.5,11.1,11.5,11.4,11.3],"paint":[24,23.5,23.5,24.1,24,23.9,23.8,23.9,23.8,24.2,23.8,23.7,23.9,25,23.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.1,13.4,13.1,13.4,12.8,13.3,13.6,13.4,13.7,13.9,13.7,13.1,14.5,14.2,13.8],"script":[2,2.2,1.9,1.7,1.8,2.1,2.8,1.8,2.7,1.9,2.2,1.7,2.5,1.5,1.4],"paint":[10.1,10.3,10.2,10.8,9.3,10.3,9.5,10.2,9.4,10.6,10,10.2,11.3,11.2,11.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.5,4.3,3.8,4.1,4,3.8,4.5,4.6,4.3,4.4,4.5,4.2,4.8,4.6,3.8,4.1,3.6,4.1,4,4,4,4.2,4.1,4],"script":[2.3,2.4,2.3,2.2,2.3,2.4,1.9,2.9,2.7,1.4,2.5,2.6,1.8,2.5,2.7,2,2.2,1.6,1.7,1.9,2.5,1.8,2.4,1.7,2],"paint":[1.6,0.3,1.4,1.5,1.1,1.5,1.1,1.5,1.8,2.8,1.3,0.7,1.3,0.8,1.7,1.7,1,1.4,1.8,1.4,1.4,1,0.7,2.3,1.9]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"05_swap1k","values":{"total":[15.4,13.8,14.5,14.8,15.5,14.8,15.1,14.8,15,15.4,14.9,15.6,14.2,15.1,15.3],"script":[1.3,1.1,1.8,1.6,2.3,1.5,2.3,1.5,1.8,1.8,1.7,1.9,1.6,1.6,1.5],"paint":[13.2,11.5,11.8,11.7,12.6,12.3,11.9,11.8,12,12.3,12.3,12,11.5,12.9,12.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.6,11.5,11.5,11.4,11.5,11.1,11.1,11.8,11.2,11.5,11.5,11.1,11.6,11.5],"script":[1.1,1,1.2,1.2,1.2,1.1,1.1,1.1,1.2,0.8,1.2,1.2,0.8,1,1.1],"paint":[9.4,9.6,9.4,9.8,9.4,9.9,9.2,9.5,9.9,10.1,9.6,10.1,9.6,9.9,10]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"07_create10k","values":{"total":[315.1,313.7,314.2,316.6,317.1,313.6,313.1,312.9,315,312.6,313.4,314.4,314,312.7,314.9],"script":[61.5,62.2,62,62.6,62,62.9,62.2,62.9,64.7,62.5,63.3,62.1,63,61.8,62.4],"paint":[247.7,245.3,246.1,247.6,248.6,244.8,245.1,243.8,244.4,243.9,244.4,246.4,244.8,244.8,246.3]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,34.5,34.7,33.7,33.9,35.1,34.5,34.2,34.4,34.2,34.1,34.8,33.7,33.6,34],"script":[6.1,6.3,6,6,6,6.1,6.1,6.1,6.2,6.1,6.1,6.1,6,6,6.1],"paint":[27,27.2,27.5,26.8,27,27.9,27.4,27.2,27.3,27.1,27,27.7,26.8,26.7,27]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,12.9,13,12.3,12.2,12,13,13.5,13.3,13.2,13.4,12.9,13.2,13,12.6],"script":[11.2,11.1,11.2,10.9,10.4,10.5,10.8,11.5,11,11.7,11.5,10.6,11.4,10.6,10.5],"paint":[1.4,1.2,0.3,0.2,0.9,0.6,0.7,1.1,1.3,0.6,0.9,1,1.2,1.7,1.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7621383666992188]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2816715240478516]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2855777740478516]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.364561080932617]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.479516983032227]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[130.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[34.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70.9]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"01_run1k","values":{"total":[34.3,34.4,34.3,34,34.2,34.5,34.5,34.1,34.2,34.2,34.1,34.3,34.6,34.2,35.3],"script":[8.8,9.3,8.8,8.8,9.1,9,8.9,8.9,9.1,9,9,8.8,9,8.9,9.2],"paint":[24.9,24.6,24.9,24.7,24.5,24.9,25.1,24.6,24.6,24.6,24.5,24.8,25,24.8,25.4]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"02_replace1k","values":{"total":[38.9,39.9,38.7,40.4,39,38.8,39.9,39.7,39.1,39.5,39.4,40.6,38.9,39.6,38.9],"script":[14.5,15.2,14.5,14.9,14.5,14.5,14.7,15.1,14.7,14.7,14.7,14.5,14.6,14.7,14.4],"paint":[23.9,24.1,23.6,24.9,23.9,23.7,24.7,24,23.8,24.2,24.1,25.6,23.7,24.3,24]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.6,25.7,26.6,24.4,25.9,25.6,26,24.9,25.4,27,25.8,27.3,25.4,25.1,26.7],"script":[12.3,12.3,12.6,11.8,12.2,11.7,13,12.3,11.8,13.8,13.1,13.6,12.2,11.4,12.7],"paint":[11,11.7,11.5,10.3,10.6,12.2,11,10.8,11.5,10.5,10.1,11.2,10.9,11.4,12.1]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"04_select1k","values":{"total":[15.6,16.4,15,14.8,14.9,14,14.5,14.8,17.3,15.2,14.9,14.5,14.4,13.9,17.9,14.8,13.8,15.2,16.4,16.1,15,15.5,16.1,15.5,14.4],"script":[12.3,12.5,11.8,10.9,10.5,11.2,11.5,11.5,13.8,11.6,11.5,11.5,11.1,10.7,14.1,11.8,10.5,11.8,12.8,13.3,11.4,12.2,12.3,12.4,10.9],"paint":[1.5,1.4,1.6,1.5,1.4,1.1,1.5,2.2,2.2,2.4,2.4,1.1,1,1.5,1.5,1.2,1.5,1.3,3.3,1.2,1.8,1.5,2,1.5,1.1]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"05_swap1k","values":{"total":[26.1,29.6,26.4,28.1,27.2,26.7,25.6,26.4,27.6,27.7,27.7,27.7,26.9,27.1,28.3],"script":[10.6,12.5,10.1,11,11.1,10,9.8,10.6,11,11.2,10.8,11.6,11.1,11,13.1],"paint":[13.5,14.8,13.5,15.3,13.9,14.4,13.9,13.8,14.3,14.1,14.3,13.6,13.1,15,13]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.7,17.7,18.2,18.7,18.4,17.7,17.7,18.1,18.5,17.8,17.4,18.1,18.5,17.7,18.2],"script":[5.9,5.7,5.7,6.4,6.5,6,5.7,6.5,6.3,5.9,5.8,6.1,6.4,6,6.1],"paint":[10.6,10.6,11.6,11.2,10.7,10.5,10.8,10.8,11,10.8,10.5,10.6,11.1,10.6,11]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"07_create10k","values":{"total":[345.1,339.5,343.9,340.5,345.2,343.7,346.9,341.1,345.8,342.9,343,343.2,342.2,342.4,344.8],"script":[92.7,91.9,93,92.1,93.9,92.9,93.4,93,94.3,93.2,93.3,93.4,93.2,94,94],"paint":[245.4,241.4,244,242.1,243.8,243.9,246.3,241.9,245.1,243,243,243.5,242.6,242,243.1]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.6,42,41.2,41.3,40.4,41.1,41,40.3,41.9,41.8,40.4,41.3,40.3,40.8,41.5],"script":[12.1,12.2,12.1,12.1,11.9,12,12.3,11.8,11.8,12,11.9,12.5,11.7,12.3,12.2],"paint":[27.6,28.8,28.2,28.2,27.5,28.1,27.8,27.4,29,28.7,27.5,27.9,27.6,27.6,28.4]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,11.4,10.8,11.3,11.2,11.5,11.2,11.4,10.5,11.5,11.1,10.4,10.4,12,11.5],"script":[8.8,8.8,9,8.8,8.8,8.8,9.1,8.9,8.5,9.6,9,8.8,8,10.3,9.1],"paint":[1.6,1.5,1.6,1.5,1.2,1.6,1.2,2.3,1.6,1.2,0.9,0.3,2.2,0.9,1.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6207647323608398]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.651759147644043]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.666799545288086]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8983802795410156]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.54980754852295]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[26.3,26.3,26.5,25.9,26.7,26.3,26.5,26.6,26.6,26.4,26.9,26.6,26.4,26.4,26.4],"script":[2.3,2.5,2.4,2.4,2.5,2.4,2.5,2.4,2.5,2.5,2.5,2.5,2.5,2.4,2.4],"paint":[23.6,23.4,23.7,23.2,23.9,23.5,23.6,23.8,23.7,23.6,24,23.7,23.6,23.6,23.7]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,29.5,29.5,29.7,30,29.5,29.5,30,29.5,30,29.5,29.5,29.5,30.2,29.9],"script":[5.1,5.2,5.4,5.2,5.6,5.1,5,5.6,5.3,5.5,5.1,5.1,5.3,5.2,5.5],"paint":[23.4,23.7,23.5,24,23.8,23.8,24.1,23.8,23.6,23.9,23.8,23.8,23.7,24.4,23.9]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,12.5,12.2,12.6,12.7,12.1,13.4,12,12.3,12,12.7,12.1,12.2,12.2,12.4],"script":[0.8,1,0.8,0.8,1.2,1.3,1,1,1,1.1,1,0.9,0.5,0.9,1.1],"paint":[10.8,10.3,10.2,11.2,10.2,9.8,10.1,10.1,10.1,9.9,9.9,10.1,10.4,10,10.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[2.9,3,2.8,3.3,2.9,3.6,4.4,3.2,3.1,2.9,3.1,2.7,3.3,2.3,3,3.1,2.9,2.4,3.4,2.7,3,3,2.8,3,2.5],"script":[1.1,1.2,0.8,1.4,1,1.5,1.3,1.1,1.1,1.1,1.2,0.9,0.9,0.6,0.9,1,1.1,0.9,0.8,1,1,0.9,0.5,0.6,1.1],"paint":[1.3,1.5,1.9,0.5,1.1,1.8,1.3,1.1,1.7,1.3,1.2,1.3,1.4,1.6,1.2,1.9,0.9,0.9,1.7,0.9,1.1,1.2,2.1,2.3,1.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[15,15.1,16,15.1,14.7,14.7,15,14.3,15.2,14.4,15.5,14.2,14,14.6,16.4],"script":[1.1,1.1,1.2,1.1,0.8,1.2,1.7,1,1.4,0.9,1.5,0.6,1.2,0.9,1.2],"paint":[11.6,12.9,13.9,12.4,12.8,12.5,12.5,12.2,12.8,12.1,12.4,12.7,11.5,12.6,14.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11.2,10.9,11,10.8,10.9,11,10.7,10.9,10.9,10.6,10.6,10.8,10.7,10.5],"script":[0.5,0.3,0.3,0.5,0.4,0.4,0.5,0.5,0.4,0.5,0.2,0.3,0.5,0.3,0.4],"paint":[10,9.8,10,10,9.6,10,10,9.6,9.8,9.9,9.8,9.8,9.7,9.8,9.1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[283.4,283.6,280.8,279.6,271.4,285,274,273.9,281.9,271.3,272.3,272.1,273.8,279.6,280.3],"script":[27.8,27.6,27.3,27.1,28.2,30.7,28.7,28.3,28.9,27.6,27.9,27.9,28,27.6,27.7],"paint":[249.2,249.5,247.3,246.6,237.3,248.5,239.5,239.8,247.2,237.9,238.8,238.4,239.4,246,247.1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.9,31.3,29.3,29.7,29.9,29.7,29.1,29.4,29.3,29.6,29,29.3,30,29.5,29.4],"script":[3,2.6,2.9,2.8,3.1,2.9,2.6,2.6,2.5,2.6,2.5,2.6,3,2.6,2.6],"paint":[28.1,27.8,25.7,26.3,26,26.1,25.8,26.1,26,26.3,25.8,26,26.3,26.2,26.1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,9.5,10.4,10.1,9.8,10.4,10.6,10.1,10.1,9.8,10.6,9.6,9.5,10.7,9.8],"script":[7.9,7.8,8.9,8.1,7.9,7.8,8.3,8.8,7.8,7.9,8.6,7.5,7.4,9,7.9],"paint":[0.8,0.3,0.6,0.6,1.1,1.4,0.6,1.1,1.4,1.2,0.3,1.1,0.2,0.5,1.7]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6022462844848633]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.827408790588379]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8761157989501953]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9206666946411133]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.40457248687744]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[26.5,26.2,26.4,26.4,26.6,26.5,26.9,26.7,26.7,26.3,26.9,26.8,26.5,26.4,26.4],"script":[2.9,2.9,3,2.9,3,2.9,2.9,2.9,2.9,2.9,2.9,3,2.9,2.9,2.9],"paint":[23.3,23,23,23.1,23.2,23.2,23.6,23.5,23.4,23,23.6,23.5,23.3,23.1,23.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[30.5,29.8,31.1,30,30.6,30.8,30.1,30.4,30.9,30.1,30.6,30.9,30.9,30.7,30.5],"script":[6.3,6,6.2,5.8,6.4,6,6.2,6.4,6,6.1,5.9,6.1,6,6.2,6.1],"paint":[23.6,23.3,24.5,23.5,23.7,24.3,23.4,23.5,24.4,23.5,24.2,24.3,24.2,23.9,23.8]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,13,12.5,13,12.8,12.2,12.9,13.9,13,12.6,12.1,13,13,13,12.5],"script":[1.2,2,0.9,1.4,1.7,1,2.1,2.4,1.7,1.7,1.4,1.5,1.3,1.3,1],"paint":[10.9,9.9,10.1,10.5,9.7,10,9.2,10.5,9.9,10.2,9.8,10.3,9.5,11.1,10.4]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.2,3,3.4,3.3,2.8,3.9,2.7,2.7,2.9,2.7,2.5,3.1,2.4,3.5,2.8,3.2,3.6,3.2,3.3,3,2.7,3.2,2.9,2.7],"script":[0.8,1,1,1.2,1.5,1.1,1.8,0.6,0.9,1,0.6,0.8,0.2,0.9,1.4,0.9,0.8,0.8,0.9,1.3,1,0.2,0.6,0.8,0.9],"paint":[1.1,1.5,1.1,1.3,1.7,1.1,1.3,1.1,1,1.7,2,0.8,1.8,1.4,1,1.1,1.5,0.7,1.8,1.4,1.9,1.6,2.4,1.2,1.6]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[16.6,14.6,16.1,15.5,16.1,17.7,16.7,16.1,15.5,15.2,15.4,15.1,15.3,15.7,14.9],"script":[1.1,1.8,1.6,1.4,1.3,3.8,2.2,2.2,1.9,1,2.2,1.4,1.5,1.8,1.3],"paint":[14,12.1,13.4,12.9,14,12.3,13.5,12.7,12.3,13.3,12.9,12.7,12,12.8,12.6]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.5,11.8,12.1,11.8,11.9,11.7,11.7,11.8,11.5,11.1,11.7,11.6,11.4,11.6],"script":[1.2,0.7,0.9,1.1,0.8,0.7,0.9,0.8,1.4,1,0.8,1.1,1,1,0.9],"paint":[10.1,9.9,10.1,10.3,10.2,10.6,10.2,10.3,9.4,9.5,10,9.8,9.7,9.9,10.1]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[291.8,289.6,289.1,293,292.6,289.8,289,289.4,292,293.8,289.6,291.2,289.9,291.3,290.9],"script":[40.6,39.9,39.7,40.8,40,39.5,39.9,40,39.5,41.6,40.1,39.8,39.5,39.9,39.8],"paint":[244.6,243.6,243.3,245.7,245.8,244.1,242.7,243,246.1,245.6,242.9,245,243.8,244.9,244.5]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.3,31,30.9,30.9,31.5,31.4,31.2,31.5,31.9,31.7,31.1,31.6,31.2,31.3,31.3],"script":[4.2,3.9,3.6,4.2,4.2,3.9,4.3,3.6,4.2,3.8,3.9,4.2,4.2,4.2,4.2],"paint":[26.4,26.5,26.6,26,26.5,26.9,26.2,27.1,27,27.1,26.5,26.7,26.3,26.4,26.5]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,11.1,9.8,9.4,10.2,10.2,10,9.8,9.5,9.8,10.7,9.4,10.8,10.3,9.8],"script":[8,9.1,7.1,7.4,8.4,8.4,7.9,7.7,8.2,8,8.9,7.6,8.7,8.2,7.8],"paint":[1.6,1.7,2.1,1.2,1,0.9,0.6,0.2,0.2,0.9,1,1,1.3,0.2,1.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6147308349609375]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.988614082336426]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0184669494628906]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5301856994628906]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.68709087371826]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.9]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[25.7,25.5,25.3,25.7,25.8,25.9,25.5,25.9,25.9,25.6,25.7,25.9,25.4,25.4,25.3],"script":[2.3,2.2,2.2,2.2,2.2,2.2,2.1,2.1,2.2,2.1,2.2,2.2,2.2,2.2,2.2],"paint":[23.1,23,22.7,23.2,23.3,23.4,23,23.4,23.3,23,23.2,23.3,22.8,22.9,22.7]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.9,29.3,29.5,28.9,28.9,29.6,29.5,29,29.4,29,29.2,29.3,29.3,28.8,28.7],"script":[5.2,5.3,5.7,4.9,5,5.1,5.3,5.4,5.3,5.2,5.3,5.6,5.4,5,5],"paint":[23.1,23.4,23.3,23.6,23.5,23.9,23.4,23.1,23.5,23.2,23.3,23.2,23.3,23.5,23.3]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,12.3,11.8,11.7,12.1,12.6,12.2,11.9,12.2,12,12,11.7,12.3,12.4,11.6],"script":[1,1,0.6,0.6,1.2,0.8,1.5,0.2,0.8,1,0.8,0.8,0.9,1.2,0.9],"paint":[10.4,10.5,9.8,9.2,9.9,9.8,9.5,10.5,10,9,10.4,9.5,10,9.9,9.6]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.1,2.8,2.8,2.6,2.6,3.2,3.4,2.8,3.3,3.6,2.9,3.6,3,2.4,3.2,3.3,3.4,2.8,2.5,2.8,3.2,3.1,2.9,2.4,3.3],"script":[1,0.9,1,0.5,0.8,1.3,0.8,0.9,1.2,1.3,1.3,1.5,0.9,0.6,1.3,1.4,1.2,0.9,0.7,1.2,1.2,1,1.1,0.9,1.2],"paint":[1.4,1.8,1.1,1.6,1.7,1.8,2,1,1.9,1.6,1.1,1.4,1.4,1.6,1.1,1.2,1.3,1.4,1.4,0.9,1.4,1.9,1.1,1.4,1.4]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,15,16.2,15,14.9,13.9,14.2,14.2,14.4,14.8,13.5,14.4,15,13.9,14.8],"script":[0.7,1,1.6,1.5,1.3,1.3,1.2,1.1,1.2,1.4,0.9,0.9,1.7,0.6,1.1],"paint":[13.4,12.9,13.1,11.5,12.4,11.7,11.8,11.3,11.9,11.9,11.1,12.7,12.4,12,12.8]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,10.7,11,10.7,10.9,11,11,10.8,10.7,10.5,10.5,10.9,10.9,10.7,10.7],"script":[0.5,0.4,0.5,0.3,0.4,0.6,0.5,0.5,0.3,0.2,0.2,0.4,0.5,0.5,0.5],"paint":[9.6,9.9,10,9.7,9.7,10.2,9.7,9.5,9.7,9.8,9.9,9.8,9.9,9.6,9.8]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[273.1,279.4,281,273,283.4,273.4,274.1,271.1,273.5,278.9,277.1,273.5,281.4,273.5,283.9],"script":[30.9,30.5,30.6,31.1,31.5,30.6,29.9,30.1,30.9,30.5,29.2,29.9,29.5,31,31.6],"paint":[236,243.5,244.8,236.2,245.9,236.8,238.2,235,236.6,242.7,241.9,237.9,245.8,236.8,246.1]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.3,28.4,29,28.9,29,29.3,28.7,28.2,29.3,28.6,28.2,28.4,28.2,28.6,28.6],"script":[2.4,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[25.2,25.3,25.9,25.7,25.8,26.1,25.6,25.2,26.1,25.5,25.2,25.4,25.2,25.5,25.5]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,10.6,10,9.9,10.3,9.9,10.4,9.6,9.4,9.9,9.8,10.3,10.5,9.3,10.5],"script":[8.4,8,7.8,7.3,8.3,7.4,8.4,7.3,7.4,8,8,8.4,6.9,7.2,8.7],"paint":[0.2,1.3,0.7,1.7,1.5,1.7,0.5,1.3,0.2,0.6,0.2,1.3,2.1,1.2,0.6]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5937433242797852]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8220624923706055]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8543262481689453]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.930567741394043]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.36063861846924]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.1]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7]}},{"framework":"svelte-norandom-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"01_run1k","values":{"total":[31.5,31.4,30.9,30.7,31.6,31.1,31,30.8,31.1,31,31.1,30.6,30.6,31,31],"script":[7.1,6.9,6.5,6.4,7,6.6,6.5,6.5,6.5,6.5,6.5,6.4,6.3,6.5,6.5],"paint":[23.9,24,23.9,23.8,24.1,23.9,23.9,23.8,24.1,24,24,23.7,23.7,23.9,24]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"02_replace1k","values":{"total":[35.7,35,36.1,35.9,35.4,35.1,35,35.2,35.1,35,36,35.3,35.2,35.9,35.3],"script":[10.8,10.7,11.2,10.8,10.9,11,10.9,10.7,10.8,11,10.7,10.8,10.9,11,10.9],"paint":[24.3,23.7,24.4,24.5,23.9,23.5,23.5,23.9,23.8,23.4,24.7,23.9,23.7,24.3,23.8]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.7,14,13.9,14.6,14.6,13.9,15.5,14.5,13.7,14.1,13.8,14.6,15.9,15,14.2],"script":[3.3,3,2.6,3.6,3.3,2.7,2.8,3.2,2.7,3.2,3.2,3,3.1,3.6,3.1],"paint":[10.5,9.5,9.4,9.5,10.1,10,11.9,9.7,9.4,9.7,9.8,10.7,10.5,10.4,10]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"04_select1k","values":{"total":[6.5,5.9,5.6,5.4,5.7,5.4,5.7,5.7,5.6,5.3,6.1,5.4,5.3,5.8,5.7,5.4,6,5.9,5.9,5.4,5.7,6,6.5,6.1,5.6],"script":[3.9,4,4.3,4,3.7,3.6,3.9,3.7,4,3.5,3.2,3.2,3.8,3.6,4.2,3.7,3.9,3.6,3.7,3.2,3.6,3.9,4.5,4,3],"paint":[1.7,1.8,1.2,1.3,1.5,1,1.7,1.6,0.7,1,2.7,1.4,1,2.2,1,1,1.4,2.1,1.4,2.1,1,1.2,1.3,1.5,2.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"05_swap1k","values":{"total":[16.7,16.2,16,16.7,16.4,16.4,16.4,16.2,15.9,15.7,16.4,17.1,16.3,16.7,16.5],"script":[1.8,2.8,2.4,3.2,2.8,2.4,2.7,2.2,2.6,2.2,2.5,2.7,3.3,3.3,2.2],"paint":[14,12.2,13.3,11.9,12.8,12.9,12.7,12.9,12,11.7,12,13.6,12,12.5,13.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.1,12.2,11.8,12.2,12.1,11.9,11.7,12.2,12.3,12.1,12,12,12.1,11.8],"script":[1.5,1.8,1.8,1.5,1.7,1.7,1.6,1.4,1.7,1.7,1.8,1.8,1.8,1.7,1.7],"paint":[10.1,9.7,9.7,9.7,9.9,9.8,9.6,9.9,9.6,10,9.8,9.6,9.7,9.8,9.4]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"07_create10k","values":{"total":[309.9,313.8,313.3,314.8,315.3,313.6,313.6,316.2,311.7,313.7,314.5,313.7,313.4,312.6,314.2],"script":[61.5,63.4,64.8,63.5,64.6,62.9,63.8,64.7,64.3,63.8,64.5,63.5,64.3,63.6,63.7],"paint":[242.4,244.2,242.6,244.9,244.6,244.2,243.5,245.1,241.7,243.8,243.9,243.7,242.9,243.2,244.1]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,35.7,35.6,35.6,35.7,35.6,35.5,35.7,35.4,36.5,35.2,35.8,35.9,36,36],"script":[7.8,7.7,7.7,7.8,7.8,7.8,7.8,7.8,7.5,8,7.6,7.8,7.9,7.8,7.8],"paint":[27,27.1,26.9,26.9,26.9,26.9,26.8,27,27,27.6,26.8,27.2,27,27.3,27.4]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.7,15.4,13.2,13.7,13.7,13.3,13.5,13.1,13.3,13.7,14,13.1,13.3,13.5],"script":[11.8,11.8,11.8,10.9,11.7,11.6,11.8,11.2,11.2,11,12.2,11.8,11,11.4,11.4],"paint":[1.3,1.7,2.4,1.4,1.1,1,0.6,1.1,1.6,1.3,0.7,1.1,1.1,0.8,1.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7537689208984375]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.855154991149902]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.866568565368652]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5197248458862305]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.599093437194824]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[47.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[212.4]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"01_run1k","values":{"total":[26.5,25.4,26.1,25.8,25.6,25.5,25.6,25.4,25.9,25.9,25.8,26.1,25.8,26.1,25],"script":[2.4,2.2,2.3,2.3,2.2,2.2,2.1,2.2,2.2,2.1,2.2,2.4,2.2,2.4,2.2],"paint":[23.7,22.9,23.5,23.1,23.1,22.9,23,22.9,23.4,23.4,23.3,23.3,23.3,23.3,22.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28.3,28.4,28.8,28.2,28.2,28.3,28,28,27.8,28.3,29.5,29.1,28.1,28.1],"script":[4.2,4.3,4.3,4.4,4.3,4,4.1,4.2,4,4,4.2,4.2,4.4,4,4.1],"paint":[23.7,23.6,23.7,24,23.6,23.8,23.8,23.4,23.5,23.4,23.7,24.9,24.2,23.7,23.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,12.3,12.5,12.2,12.5,12.7,13.1,12.5,12.9,12.9,12.5,12.5,12.2,12.9,12.4],"script":[1.3,1,1.3,0.7,1.4,1.4,0.7,1.3,1.3,0.9,1,1.2,1.5,1.8,1.5],"paint":[10,9.9,10,9.8,9.8,10.4,10.7,10.3,10.6,10.4,10.2,10.2,9.2,10,9.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"04_select1k","values":{"total":[4.7,3.1,3.4,3,3.5,3.3,5.4,3.2,3.4,3.3,4.1,3.5,3.1,3,4.4,2.8,2.9,2.9,3.1,3.3,3.2,8.5,3.3,3,3.3],"script":[1.6,1.2,0.9,0.6,1.2,1,1.6,0.9,0.9,0.8,1,0.3,0.6,0.9,1.2,1,0.6,1.2,1.2,0.9,1.1,1.4,1.6,0.6,0.6],"paint":[0.8,1.2,1,1.5,1.2,1.4,1.6,1.4,2.3,1.4,2,2.1,2.4,1.2,1.6,0.3,1.3,1.5,1.7,1.4,2,1.2,1.2,1.5,1.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"05_swap1k","values":{"total":[15.9,15.6,15.3,16.2,15.6,15,14.8,14.9,16.4,15.4,14.5,15.2,15.3,15,15.2],"script":[1.5,1.4,1,1.8,1.5,1.9,1.4,1.7,1.8,1.9,1.4,1.7,1.1,2,1.7],"paint":[12.1,12.4,13.7,13.7,12.7,12,12.4,11.9,12.8,12.4,11.6,12.1,13.2,11.5,12.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11.4,11.3,11.7,11.4,11.1,11.3,10.6,11.1,11.6,11.2,11.7,11.6,11.1,11.4],"script":[0.6,0.6,0.6,0.6,0.6,0.4,0.6,0.3,0.6,0.7,0.6,0.6,0.4,0.6,0.4],"paint":[9.8,9.8,10.4,10.8,10,10.2,10.2,10,10.2,10.4,10.2,10.6,10.5,9.8,10.3]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"07_create10k","values":{"total":[279.6,278.7,278.3,279.4,277.5,280.4,279,278.8,275.7,276.6,280.4,275.5,277.5,279.7,276.9],"script":[26.1,25,25.8,26.3,24.8,25.7,26,26,25.5,25.3,26.4,24.4,26.2,25.9,25.6],"paint":[247.2,247.5,246.4,247,246.5,248.5,246.6,246.4,244.1,245.4,247.8,245,245.7,246.7,245.3]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.4,29.8,29.3,30,30.7,30.9,30.4,30.7,29.8,29.8,29.5,29.3,31,30.3,30.3],"script":[2.3,2.3,2.3,2.3,2.4,2.5,2.4,2.4,2.3,2.4,2.3,2.3,2.5,2.4,2.3],"paint":[26.4,26.7,26.3,26.6,27.6,27.7,27.2,27.5,26.8,26.7,26.5,26.3,27.8,27,27.3]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,11.4,11.1,11.7,10,10.4,9.6,10.2,10.4,10.6,9.8,10.9,10.2,10,11],"script":[8.4,8.8,8.8,8.9,7.9,8.1,8,8.3,8.3,8.5,8.4,9.1,8.1,8.4,9.3],"paint":[0.4,0.2,0.7,1.3,1.5,1.1,0.2,0.7,1.2,1.5,0.2,0.8,0.6,0.2,0.4]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.335836410522461]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2107772827148438]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.253284454345703]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8686103820800781]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.600778579711914]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[191.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.4]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[188]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[29.3,29,28.9,28.9,29.1,28.8,29,29.8,29.2,28.4,28.8,29.3,28.7,29.2,29.2],"script":[5.3,5.4,5.4,5.4,5.4,5.4,5.4,5.5,5.3,5.3,5.3,5.4,5.3,5.4,5.5],"paint":[23.4,23.1,22.9,22.9,23.2,22.9,23,23.8,23.4,22.6,23,23.3,22.8,23.3,23.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.6,33.4,33.3,33.6,33.5,33,33.4,33.3,32.6,33,33.5,33.7,33.2,33.3],"script":[8.4,8,8.3,8.2,8.2,8.4,8.2,8.3,8.3,7.8,8.1,8.3,8.4,8.4,8.2],"paint":[24.6,25,24.6,24.6,24.8,24.5,24.2,24.6,24.4,24.2,24.4,24.6,24.7,24.3,24.5]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,11.5,12,11.3,13.8,11.8,11.8,11.8,11.9,11.5,12.1,12.9,12.5,12.5,11.6],"script":[1.1,0.8,0.6,0.5,1.2,1.1,0.6,0.6,1.2,0.5,0.6,0.1,0.2,0.9,0.8],"paint":[10.8,9.7,10.6,9.3,11,9,10.1,10.6,9.2,9.5,10.5,11.7,10.6,10.4,9.8]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[7.2,1.9,2.3,1.5,2.4,1.8,1.9,2,1.4,1.7,2.4,2,1.8,2.5,2.1,2.3,2.4,3.1,2.4,1.8,1.8,2.1,2.5,1.6,2.2],"script":[0,0,0,0.4,0,0.5,0.7,0.4,0,0,0,0,0,0,0,0.3,0,0,0.9,0.7,0,0,0,0,0.3],"paint":[1.4,1.2,1.3,0.9,2.2,1.2,1,1.5,0.7,0.7,1.3,1.6,1.7,1.5,0.9,1.8,2.2,1.2,1.3,0.9,1.6,1.5,2.3,1.4,1.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[23.9,23.2,23.5,22.8,22.9,22.5,21.9,23.3,24.9,22.9,24.7,22.7,24.8,22.4,22.9],"script":[8.5,8.2,8.3,7.6,7.6,8.3,7.3,8,8.6,7.6,9.4,7.4,9.8,7.7,8],"paint":[13.6,12.7,13.7,13.4,13.2,11.6,13,14.1,14.2,13.2,12.9,13.1,13.3,12.7,13.4]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.8,14.7,15.1,15.2,14.6,15.3,15.2,15,14.7,14.5,14.8,16.1,16.5,14.8,14.6],"script":[3.9,3.8,4.1,4,3.8,3.9,4.3,4,4,3.7,4.3,3.9,5.5,3.8,3.7],"paint":[10,9.6,9.8,10.3,10.1,11,10,10.2,10.1,10.2,9.6,11.4,10.2,10.3,10.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[310.6,312.1,308,308.7,307.2,310.9,307.6,306.2,308.4,311.1,309,314.8,308.1,308.2,309.9],"script":[65.4,64.6,64.8,65.2,64.4,65.5,63.9,64.2,64.7,67.1,64.6,65.5,65.2,65.7,66.1],"paint":[237.4,241.3,236.7,237,236.3,238.8,237.2,235.8,237.4,237.9,237.8,242.9,236.6,236.3,237.5]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.3,37.1,36.9,36.2,37.5,35.6,37.4,37.6,37.7,36.2,36.8,37.5,36.1,37.7,38],"script":[8.4,8.2,8.4,8.2,8.3,8.2,8.5,8.8,8.1,8.3,8.1,8.6,8.1,8.8,8.6],"paint":[28.1,28,27.6,27.1,28.3,26.4,27.9,27.8,28.7,27,27.8,28,27,28.1,28.4]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10,10.6,9.9,9.2,10.6,10.6,10.1,11.5,10.1,10.1,10.3,10.5,9.9,9.5],"script":[8.4,8.1,8.2,8,7.7,8.3,8,7.9,9.3,7.5,8,7.8,8.3,7.7,8],"paint":[1.1,1.1,1.7,0.9,0.7,1,1.8,0.7,0.3,2.2,1.2,1,1.3,0.5,0.6]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6091575622558594]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.798365592956543]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.811460494995117]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7871208190917969]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.547199249267578]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[31.3,30.7,31.1,31.8,31.2,31.2,31.8,31.2,32,31.2,31.1,31.2,31.6,31,31.6],"script":[6.2,6.2,6.3,6.5,6.4,6.3,7,6.5,6.4,6.4,6.3,6.4,6.5,6.4,6.9],"paint":[24.5,23.9,24.2,24.8,24.3,24.3,24.2,24.2,25.1,24.3,24.3,24.3,24.5,24,24.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[36.2,34.6,34.9,35.9,34.4,34.2,34.7,34.7,34.5,35.3,35.2,34.9,34.9,34.8,34.3],"script":[9,9,8.9,9.1,9,8.7,9,8.8,9,9.3,9.2,9,8.9,8.9,8.6],"paint":[26.6,25,25.4,26.3,24.8,25,25.2,25.2,24.9,25.4,25.4,25.3,25.5,25.4,25.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.9,11.9,12.2,11.7,11.8,11.7,11,12.6,12.1,12.2,12.4,12.4,12.3,12],"script":[0.2,0.9,0.9,1.3,0.2,0.5,0.8,0.2,0.8,0.5,0.2,0.2,0.9,0.6,0.2],"paint":[9,9.2,9.8,10,9.9,10.3,9.9,8.5,11.3,10.2,10.9,11.1,9.8,10.7,10.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[1.6,1.9,2.4,2.1,2.1,2.8,1.9,1.6,2.4,2.1,2.4,2.4,2.1,2.2,3.3,1.8,2.1,1.8,2.2,1.9,2.2,2.1,1.4,1.6,2.4],"script":[0,0,0.4,0,0.9,0,0,0,0.9,0,0,0,0.8,0,0,0.5,0.7,0,0,0,0,0,0,0,0.5],"paint":[1.4,1.1,1.8,0.8,0.7,2.6,1.2,0.9,1.2,1.9,1.9,1.2,0.7,1.3,1.8,0.7,1.3,1.2,0.9,1.2,1,1.6,1.3,0.7,1.3]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[23.6,24.5,24.6,24.7,24.5,23,24.5,23.6,24.9,23,24.2,25.1,23.8,23.4,24.7],"script":[9,9.3,9.5,9.8,9.7,8.5,8.8,8.9,9.6,9.2,9.3,9.8,9.5,8.3,8.6],"paint":[12.3,13.7,13.6,13.2,13.4,12.6,13.2,12.6,12.3,11.8,12.4,14,12.4,12.4,13.5]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.3,15.7,15.4,15.9,15.9,15.1,15.1,15.5,14.9,15.7,15.4,15.3,15.3,15.2,16.4],"script":[4.5,4.6,4.4,4.5,4.8,4.4,4.6,4.7,4.3,4.7,4.9,4.8,4.6,4.7,5.1],"paint":[9.9,10.7,10,10.7,10.2,9.8,9.5,10.2,9.8,10.2,9.9,9.7,9.7,10.1,10.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[315.3,317.4,316.9,319.2,312.6,318.3,318.2,314.8,314.2,317.4,316.2,316.7,316.7,316.1,314.8],"script":[67.2,71.3,68.3,68.1,69.4,68.1,68.8,67.9,70.2,67.2,69.6,67.5,68.8,70.9,71],"paint":[242.1,239.4,242.1,244.5,236.8,243.8,243.2,240.4,237.6,243.5,239.9,242.9,241.8,238.5,237.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.4,37.6,36.7,37.1,37.9,37.8,37.8,37.5,38,38.7,37.4,37,37.2,37.8,38.3],"script":[9.2,8.9,8.8,8.6,9.3,9.3,8.9,9,9.3,9.3,8.9,8.8,8.9,9.2,9.3],"paint":[28.3,27.7,26.9,27.5,27.6,27.6,27.9,27.6,27.8,28.4,27.6,27.4,27.4,27.6,28]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.5,11.1,10.4,10,10.2,9.9,9.8,10.1,9.8,10,10.9,9.7,10,9.8,10.1],"script":[8.2,8.7,8.3,8.2,8.1,7.8,8.3,8,7.7,7.4,9,7.6,7.9,8,8.1],"paint":[0.8,2.1,0.7,1.2,1.9,1.3,0.8,1,1,1.1,1.2,0.3,1,0.2,1.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6749401092529297]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8602399826049805]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.857672691345215]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8774204254150391]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.615894317626953]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[71.7]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"01_run1k","values":{"total":[28,28,27.3,27.8,27.5,27.6,27.8,27.4,27.5,27.6,27.2,27.5,27.6,27.6,27.4],"script":[3.6,3.7,3.5,3.6,3.6,3.6,3.6,3.6,3.6,3.6,3.5,3.6,3.6,3.7,3.5],"paint":[24,23.9,23.4,23.9,23.6,23.6,23.8,23.5,23.6,23.6,23.3,23.5,23.7,23.5,23.4]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"02_replace1k","values":{"total":[30.7,30.9,30.9,30.5,30.7,31,31.2,30.8,30.4,31.1,31.1,31.7,30.8,30.9,31.1],"script":[5.9,6.1,6.2,5.9,6,6.3,6.1,5.9,5.9,5.9,6.2,6.6,6.3,5.8,6.1],"paint":[24.3,24.2,24.2,24,24.2,24.2,24.5,24.3,24,24.6,24.3,24.5,23.9,24.5,24.5]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12.4,12.9,11.9,12.2,12.4,12.4,11.5,12.2,12.3,12.1,13.1,12.8,11.6,12],"script":[1,1,1.1,0.9,1.1,1.2,1.1,0.6,1.4,1,0.8,1.4,1.2,0.6,1.1],"paint":[11.2,9,10.8,9.4,9.9,9.7,10.3,9.9,10.1,10.1,10.1,11,10.5,10,9.6]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"04_select1k","values":{"total":[7.1,1.9,2.3,2.7,2,1.5,1.5,1.9,2.4,1.9,2.2,2.4,2.5,1.8,2,1.7,1.7,2.3,2.2,3.7,2.2,2.3,1.9,2.8,2.5],"script":[1,0,0,0,0.7,0.4,0,0,0,0,0,0.8,0,0,0,0,0,0.5,0,0,0,0,0,0.9,0],"paint":[1.6,1.3,1.5,1.3,1.2,0.9,1,1.1,1.1,1.3,1.2,1.1,2.3,1.1,1.8,0.7,1.4,1.2,1.2,2.2,1.3,1.3,1.4,1.4,1.4]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.7,14.9,14.7,15.2,15.2,15.5,16,15.7,15.1,16.1,16.1,14.2,15.8,14.6],"script":[0.6,1,0.9,0.7,1.5,1.3,0.6,1.9,0.9,1,2.5,1.8,0.8,1.4,0.9],"paint":[12.4,12.6,12.6,13,12.4,12.1,13.9,12.9,12.8,13.2,12.7,12.5,12,12.7,12.7]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,10.9,11,11.2,11.3,11.3,11.3,11.3,12,11.7,11,11.6,11.2,11.1,11.4],"script":[0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.8,9.8,9.9,9.9,10.1,10.2,9.8,9.9,10.5,10.4,9.8,10.3,10.1,9.7,10.2]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"07_create10k","values":{"total":[306.2,305.2,302.8,304.5,304.1,304.9,305.2,304.7,305.9,305.3,305.2,304.7,303.9,306,302.5],"script":[55.8,55.3,54.7,54.8,54.9,55.9,54.2,54.6,55.6,55.2,55.8,54.4,55,55.5,54],"paint":[243.6,243.5,241.7,242.9,242.4,242.2,244.2,243,243.8,243.4,242.7,243.7,242.1,243.5,241.5]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.2,32.2,32.2,32.2,32.6,33,33.1,31.7,33,32.2,31.9,32.4,32.1,32.3,31.9],"script":[4.4,4.5,4.5,4.5,4.8,4.6,5,4.5,4.9,4.6,4.5,4.8,4.5,4.5,4.6],"paint":[27,26.9,27,27,27,27.7,27.3,26.4,27.3,26.8,26.7,26.8,26.8,27.1,26.6]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,9.8,9.5,10.3,10,10.9,9.7,9.4,10.3,10.7,11.3,10.6,10,9.6,9.4],"script":[8.1,8.1,7.6,8.1,8.2,8.5,7.8,7.7,8.5,8.4,8,8.5,7.6,8.2,8.1],"paint":[0.7,0.7,0.9,1,0.9,0.9,1.7,0.9,1,0.8,1.1,1.3,2.2,0.6,1.1]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5907020568847656]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3304548263549805]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.36820125579834]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.691838264465332]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.49071502685547]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.7]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"uhtml-v4.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.6]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,29.9,30,31.3,31.4,32.8,33.7,31,31,32.7,33.2,32.2,32.9,31.6,33.4],"script":[5.2,5.2,5.2,5.2,5,4.8,5,4.9,5,5.1,5,5,5.1,4.9,5.2],"paint":[24.3,24.3,24.4,24.3,24.5,25,24.3,24.4,24.5,24.7,24.3,24.7,24.2,24.4,24.2]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"02_replace1k","values":{"total":[32.4,31.9,32.2,32.4,38.3,32.3,30.6,33.3,34.7,37.8,31.2,36.8,33.3,34.8,30.3],"script":[7.3,6.5,6.3,7,6.8,6.4,6.5,7.2,6.7,6.5,6.6,6.9,6.5,7.4,6.8],"paint":[24.7,23.5,23.1,23.8,23.2,23.3,23,24.7,24.8,23.4,23.1,24.5,23.7,24.6,23.2]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.6,13.2,12.3,13.3,13.1,13.8,12.4,13.7,14.5,14,13.8,28.6,14.2,13.3,12.6],"script":[2.7,2.5,2.3,2.5,2.2,1.5,2.2,2.5,1.9,2.3,2.5,1.4,2.7,1.9,1.9],"paint":[11.4,10.5,8.6,10.1,10.6,11.3,9.3,11,11.3,11.5,10.9,10.7,10,10.5,10.1]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"04_select1k","values":{"total":[5.8,4.6,5.1,4.2,5,6.4,5.8,5.7,4.5,5.5,5.8,4.9,5.5,5.6,5.9,4.8,4.7,4.9,6.5,5.7,4.6,6.9,5.9,5.8,6],"script":[3.3,2.2,2.9,2.7,2.5,3.5,3.1,2.9,3,2.8,3.5,3,3.2,3.1,3.7,1.7,2.8,2.6,3.6,2.4,2,4.2,3.2,3.6,2.3],"paint":[2.3,2.3,1.6,1.3,1.2,2.6,2.1,1.1,0.9,2.2,2,1,1.4,2,1.6,2.1,1.8,1.6,2.4,2,1.6,1.6,1,1.5,2.2]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"05_swap1k","values":{"total":[33.3,17.4,34.3,33.7,34.5,34.9,32.8,32.3,18.9,33.5,16.8,33.7,17.6,19.1,32.1],"script":[2.9,3.4,2.8,2.7,3.1,3.5,2.4,2.3,3.2,3.1,2.9,3.8,3.3,4.2,1.9],"paint":[14.3,13.8,14.5,14.9,13.6,14.7,14.3,13.9,13.8,13.5,13.3,13.8,13.2,14.4,13.3]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.8,11.4,11.9,11.1,13,11.9,12.8,12,11,12,13.7,14.4,11.8,11.6],"script":[2.2,2,1.6,1.9,1.2,2.3,2.1,1.9,1.3,1.2,1.9,2.1,1.3,1.9,2],"paint":[9.2,9.6,9.6,9.7,9.2,9.1,9.6,9.7,9.4,9.4,9.4,9.7,9.5,9.7,9.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"07_create10k","values":{"total":[303.9,308.7,303.6,309.2,302.2,302.5,300.4,301.9,304,305.4,307.8,302.1,303.1,303.5,301],"script":[52.2,54.3,54,53,54.9,52.3,52.6,54.2,54.9,55,53.6,52.5,52.3,54.4,53.1],"paint":[247.7,247,245.2,245.7,243.9,246.6,244,243.7,245.4,244,246.4,243.7,245.8,244.9,244.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.8,41.1,41.8,41.3,41.7,41.1,41.5,42.2,41.5,41,41,41.9,43.2,41.3,41],"script":[5,5.1,5,4.9,5.1,5,4.8,5.1,5.2,5,4.9,4.9,5.2,5,5],"paint":[25.8,26,25.9,25.9,26.3,26.3,26.7,26.3,26.3,26.1,26.2,26.9,26.8,26.3,25.8]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,10.9,12.5,11.6,28.2,11.1,27.7,11.2,11.4,28.7,11.3,11.6,27.6,12.4,12.5],"script":[9.6,9,10.2,9.7,9.6,8.8,9.3,9.6,9,9.9,9.6,9.3,9.3,10.4,9.7],"paint":[0.9,1.7,2.1,1.5,2.4,1.4,2.4,0.7,2.3,1.7,0.3,1.7,1.7,1.1,2.6]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8805646896362305]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2446651458740234]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2323198318481445]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2055339813232422]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.788108825683594]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[98.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"01_run1k","values":{"total":[34.6,33.6,33.9,33.8,33.9,34.2,33.8,34,34.1,33.3,33.6,33.8,33.8,33.8,35.2],"script":[11.9,10.9,11.1,11.1,11,11.1,11.2,11.6,11.1,10.8,11,11.1,10.9,11.1,11.7],"paint":[22.2,22.3,22.4,22.3,22.4,22.5,22.3,22,22.7,22.1,22.2,22.4,22.4,22.4,23]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"02_replace1k","values":{"total":[38,39.1,37.9,38.6,38.8,37.8,40,38.3,37.9,38.1,37.9,38.5,38,37.5,38.5],"script":[14,14.7,14.1,14.6,14.1,14.3,14.1,14,13.6,14.3,14.2,14.3,14.3,13.9,14.5],"paint":[23.3,23.8,23.3,23.6,24.2,23.1,25.4,23.7,23.8,23.4,23.2,23.9,23.3,23.2,23.4]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.6,24.6,23.6,23.1,22.9,23.9,24.4,22.4,23.6,23.2,24.1,23,22.5,23,23.8],"script":[11.6,11.2,11.9,11.8,11.3,11.9,12,11.2,12,11.6,11.3,11.5,11.1,11.4,12.2],"paint":[9.7,10.6,10.5,10.2,9.6,11,10.6,10.1,9.6,10.4,11.3,10.2,9.9,10.2,10]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"04_select1k","values":{"total":[8.2,6.9,7.5,6.9,7.2,7.7,7.3,7.6,7.8,8.9,7.2,8.2,7.7,7.7,7.4,7.5,8.2,8,8.6,7.9,8.9,7.8,7.8,7.7,7],"script":[5.4,4.4,5.2,5,4.4,4.9,4.6,5.3,4.3,7,4.8,5.5,4.9,5.2,5.2,5.1,5.7,5.6,6.2,5.2,6.3,5.6,5.3,4.9,4.8],"paint":[1.2,1.9,1.7,1,2.6,2.2,2.5,1.4,2.4,1.2,0.9,2,1.7,1.7,1.4,1.2,1,1.7,2.2,2.4,1.8,1.1,2.3,2.1,2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"05_swap1k","values":{"total":[119.3,120.8,122.9,124.4,120.1,121.1,120.9,122.1,123.4,119.1,120.9,122.5,123.2,120.7,122.1],"script":[23.8,23.9,24.2,25.5,25.1,23.3,24.6,23.7,24.7,24.6,24.1,25.7,25.8,23.8,24],"paint":[93.2,94.8,96.4,96,93.9,94.5,95.2,94.9,95.6,92.3,95.6,94.4,95,94.6,96.4]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[18,18.5,17.4,17.6,18.5,17.7,17.8,18.5,18,18,17.8,17.5,17.5,17.8,18.5],"script":[6.7,6.5,6.2,6.6,7.2,6.6,6.3,6.7,7,6.6,6.6,6.9,6.9,6.7,7],"paint":[10.1,10.8,10.6,10.3,10.2,10.4,10.5,11,10.4,10.2,10.3,9.9,9.9,10.2,10.7]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"07_create10k","values":{"total":[451.6,450.4,447.5,444.2,453.1,450,452.8,448.5,449.9,452.3,452.5,452.3,449.9,458.7,448.8],"script":[206.7,203.8,204.1,201.4,208.9,205.5,205.3,204,207.5,206,207.3,206.8,202.9,208.4,203.8],"paint":[239,241.3,237.9,237.1,238.8,238.9,241.5,239,237,240.8,239.4,239.9,241.1,244.7,239.4]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.1,42.7,42.9,41.8,42.9,42.7,43.7,42,42.1,42.5,42.6,42.9,42.2,42.3,42],"script":[14.4,14.9,14.9,14.4,15.6,14.6,14.2,14.6,14.6,14.4,14.8,14.9,14.6,15.1,14.5],"paint":[26.8,27.1,27.2,26.5,26.4,27.4,28.6,26.6,26.6,27.4,27,27.2,26.8,26.5,26.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.4,14.5,17.1,14.7,13.4,14.6,14.8,15,15.2,14.5,15.6,13,15,14.2,14.5],"script":[12.3,11.7,13.5,13.3,11.8,12.2,11.8,12.3,13.2,12.7,13.6,11.3,12.9,12.5,12.8],"paint":[1.4,0.6,1.9,0.3,0.4,2.3,1.1,1.5,1.9,1,1.2,1.7,0.8,0.7,0.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1469306945800781]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.1437788009643555]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.780611991882324]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.9017066955566406]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.75022029876709]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[145.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[166.1]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[25.8,25.9,25.7,26.1,25.6,26.2,26,25.6,26.1,25.5,25.8,25.5,25.7,25.8,25.2],"script":[1.7,1.7,1.7,1.7,1.6,1.7,1.7,1.7,1.7,1.7,1.8,1.7,1.6,1.6,1.7],"paint":[23.7,23.7,23.6,24,23.6,24.1,23.9,23.5,24,23.5,23.6,23.4,23.6,23.7,23.2]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[27.9,27.9,28.4,27.7,27.8,28.1,28.1,27.9,27.9,27.7,27.8,28.5,27.8,27.8,27.9],"script":[3.5,3.4,3.4,3.5,3.5,3.5,3.6,3.5,3.5,3.3,3.6,3.4,3.5,3.4,3.4],"paint":[24,24.2,24.5,23.8,23.9,24.1,24.1,24,24,24,23.8,24.7,23.9,24,24.2]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.7,10.4,10.8,10.9,10.9,10.9,11.6,11.2,11.3,11.4,11,10.3,10.7,10.5],"script":[0.1,0.1,0.5,0.4,0.1,0.6,0.5,0.6,0.5,0.1,0.1,0.1,0.5,0.1,0.1],"paint":[9.8,9.1,8.7,8.1,10.2,9.3,9.3,10,8.8,9.9,10.2,10.2,8.6,9.5,9.4]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.2,2.4,1.5,2.7,2.2,2.2,2.7,1.8,2.3,2.6,2.1,2.1,1.8,2.5,2.5,2,1.8,2.2,3.6,2.2,2.6,2.1,1.8,1.8],"script":[0.3,0.1,1,0.1,0.1,0.1,0.1,0.9,0.1,0.1,0.1,0.2,0.1,0.5,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.2],"paint":[1.5,1.1,1.3,1.3,1.5,1.4,1.3,1.7,1.6,1.9,1.1,1.1,1.9,0.7,2.1,2.3,1.3,1,1.3,1.4,2,1.7,1.1,1.6,1]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[12.5,13.5,13.1,14.1,12.9,12.8,12.5,13.2,13.5,13.5,13,13.4,12.8,12.8,12.9],"script":[0.1,0.1,0.1,0.9,0,0.2,0.1,0.1,0.1,0.1,0.9,0.1,0.1,0,0.1],"paint":[11.4,11.8,12.1,11.9,11.7,11.7,11.6,12.2,12.3,12.4,11.3,12.2,11.7,11.8,11.7]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.4,11.4,10.9,10.6,10.3,10.6,10.9,10.3,10.6,10.3,10.6,10.6,10.7,10.4],"script":[0.1,0.3,0.3,0.3,0.3,0.4,0.4,0.5,0.1,0.1,0.2,0.5,0.4,0.3,0.2],"paint":[9.8,9.4,10.6,10,9.8,9,9.6,9.8,9.3,10.1,9.5,9.5,9.5,9.9,9.4]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[260,260.1,268.7,271.5,257.7,271.5,266.6,266.7,267.7,259.1,267.9,266.4,269.5,266.1,267.6],"script":[18.4,18.4,18.5,17.9,18.2,18.5,18.5,18.9,19.4,18.4,19.4,18.8,18.1,19,18.6],"paint":[234.9,234.9,243.2,246.7,232.7,246,241.2,241.1,241.4,234.1,241.6,240.9,244.3,240.5,242.1]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.3,28.6,28.8,28.8,29,29,29.1,28.3,28.1,28.5,29.7,29,29.2,28.6,28.3],"script":[1.6,1.7,1.8,1.8,1.7,2,1.7,1.7,1.7,1.8,1.7,1.7,1.6,1.6,1.6],"paint":[26,26.2,26.3,26.3,26.7,26.4,26.7,25.9,25.8,26,27.3,26.6,26.8,26.3,26]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.7,8.1,9.9,8.7,8,8.7,8.6,8.7,8.8,8.3,8.9,9.3,8.9,9.9,9.2],"script":[6.8,6.3,7.8,6.9,6.6,6.5,6.8,7.1,6.5,6.2,6.9,6.9,6.7,8.3,7.3],"paint":[1.7,0.9,1.8,0.9,0.3,1.6,0.7,1.1,1.7,1.5,1.3,1.2,1.3,0.7,1]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4771146774291992]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9251203536987305]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9575481414794922]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6065788269042969]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.007932662963867]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.8]}},{"framework":"vanillajs-3-keyed","benchmark":"01_run1k","values":{"total":[25.7,25.4,25.3,25.4,25.6,25.7,25.5,25.4,25.3,25.7,25.2,25.3,25.3,25.1,25.4],"script":[1.2,1.3,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.3,1.2,1.3,1.2,1.2,1.3],"paint":[24.1,23.8,23.7,23.8,24,24,23.9,23.8,23.7,24.1,23.7,23.7,23.8,23.6,23.8]}},{"framework":"vanillajs-3-keyed","benchmark":"02_replace1k","values":{"total":[27.5,28,28.3,27.5,27.8,27.7,27.9,28.2,27.8,27.5,27.6,27.3,27.8,28.2,28.2],"script":[3,3.1,3.2,3,3.1,3,3.2,3.3,3.1,3.1,3,2.9,3.1,3.2,3.2],"paint":[24.1,24.5,24.7,24,24.3,24.3,24.3,24.6,24.3,24.1,24.1,24.1,24.4,24.7,24.6]}},{"framework":"vanillajs-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,10.5,10.9,10.8,10.9,11.2,11.3,10.2,11.4,11.1,11,11.2,12.7,10.9,11.8],"script":[0.1,0.1,0.5,0.4,0.1,0.7,0.6,0.1,0.6,0.1,1.1,0.7,0.8,0.6,0.9],"paint":[9.8,9.5,9.6,9.5,9.4,9.1,9.5,8.6,9.5,10,8.8,9.1,10.4,8.8,9.6]}},{"framework":"vanillajs-3-keyed","benchmark":"04_select1k","values":{"total":[2.4,1.9,1.9,2.8,2.5,2.2,2.3,2.4,2.2,2.7,2,2.1,1.7,2.5,2.2,3,2.4,2.4,2.5,2,2.4,2.2,2,2.3,2.9],"script":[0,0,0,0,0,0.5,0.6,0,0,0,0.5,0,0,0.6,0,0,0,0,0,0,0,0.4,0,0,0],"paint":[1.3,1.6,0.3,1.9,2.3,1.6,1.4,1.7,2.1,1.5,1.1,1.9,1.6,1.8,2,1.6,1.1,1.5,1.1,1.5,1.6,1.7,0.7,1.4,0.7]}},{"framework":"vanillajs-3-keyed","benchmark":"05_swap1k","values":{"total":[13.2,14.2,13.1,12.9,15,13.6,16.4,13.2,13.5,13.4,15,13.8,13.6,13.2,13.1],"script":[0.1,0.8,0,0.1,0.1,0.1,1,0.1,0.5,0.1,1,0,0.1,0.1,0],"paint":[12.5,12.3,12.1,11.4,12.8,12.1,13.4,11.2,12,12.5,12.9,12.5,12.7,11.9,12.3]}},{"framework":"vanillajs-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.5,10.6,10.9,10.7,10.3,10.2,10.4,11,10.6,10.5,10.6,10.3,10.4,10.4],"script":[0.1,0.2,0.3,0.1,0.3,0.1,0.3,0.1,0.1,0.1,0.1,0.4,0.3,0.4,0.1],"paint":[10,9.7,9.8,9.8,9.6,9.7,9.4,9.7,9.8,9.8,9.8,9.6,9.4,9.4,9.8]}},{"framework":"vanillajs-3-keyed","benchmark":"07_create10k","values":{"total":[267.9,266.8,259,261.8,267.8,270,270,270.5,268.2,269.2,269.5,260.1,260.4,269.8,267.4],"script":[13.7,13.6,13.8,13.5,13.9,13.6,13.9,13.6,13.7,13.5,13.6,13.7,13.7,13.7,13.9],"paint":[248.4,247.6,239.5,242,248.2,250.1,250,250.3,248.9,249.8,249.7,240.7,241,250.4,247.8]}},{"framework":"vanillajs-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,27.8,27.9,27.8,28,28.1,28.3,28,28.4,28.8,27.8,28.3,28.4,27.8,28.2],"script":[1.2,1.3,1.2,1.3,1.3,1.4,1.3,1.3,1.3,1.4,1.3,1.2,1.3,1.2,1.3],"paint":[26,25.9,26,25.9,26,26.1,26.4,26.1,26.4,26.6,25.9,26.3,26.4,26,26.2]}},{"framework":"vanillajs-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9,9.5,8.8,9,8.5,9.3,8.6,8.5,8.4,8.6,8.7,8.6,9.1,8.4],"script":[7.1,6.6,7.5,6.8,7.3,6.7,6.9,7.2,7.4,6.7,7,6.4,6.3,6.9,6.5],"paint":[1.1,2.2,1.8,1,0.2,0.4,0.8,0.2,0.2,1,1.4,0.6,1.3,1.1,1]}},{"framework":"vanillajs-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5091133117675781]}},{"framework":"vanillajs-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8009834289550781]}},{"framework":"vanillajs-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8044052124023438]}},{"framework":"vanillajs-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6104469299316406]}},{"framework":"vanillajs-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.475215911865234]}},{"framework":"vanillajs-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.3]}},{"framework":"vanillajs-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.1]}},{"framework":"vanillajs-lite-keyed","benchmark":"01_run1k","values":{"total":[25.3,25.1,25.2,25.2,25.3,25.1,25.5,25.6,25.2,25.3,25,25.1,25.3,25.1,25.2],"script":[1.2,1.2,1.2,1.3,1.2,1.2,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.3,1.3],"paint":[23.7,23.5,23.6,23.5,23.7,23.5,23.9,24,23.5,23.7,23.4,23.5,23.7,23.4,23.6]}},{"framework":"vanillajs-lite-keyed","benchmark":"02_replace1k","values":{"total":[27.6,27.4,27.8,27.2,27.3,27.8,27.8,27.6,27.6,27.3,27.4,27.7,27.5,27.4,27.6],"script":[3.1,3.1,3.2,3,3,3.1,3.1,3.1,3,3,3.1,3,3.1,3.1,3.2],"paint":[24.1,23.9,24.2,23.8,23.9,24.3,24.3,24.1,24.2,23.9,23.9,24.2,24,23.9,24.1]}},{"framework":"vanillajs-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,10.9,11,11.6,10.8,11.3,11.5,10.8,10.8,11.4,10.7,11.4,11.4,11.2,11.2],"script":[0.1,0.1,0.1,0.1,0.1,0.5,0.9,0.2,0.1,0.8,0.1,0.8,0.1,0.1,0.5],"paint":[9.5,9.9,9,10.6,10,9.7,9.2,9.6,10,9.7,9.4,9.4,10.3,9.8,9.4]}},{"framework":"vanillajs-lite-keyed","benchmark":"04_select1k","values":{"total":[1.9,2.4,2.3,2,1.7,1.7,1.9,1.8,2,1.9,2.3,1.4,1.6,2.2,2,1.8,1.9,1.9,2.5,1,1.7,1.9,1.9,1.3,1.6],"script":[0,0.5,0,0,0,0,0,0,0.2,0,0.4,0,0,0.5,0,0.7,0,0,0,0,0.4,0,0,0,0],"paint":[1.1,1.4,2.1,1.4,1.2,1.4,0.9,1.7,1.2,1,1.7,1.3,0.7,1.2,0.8,1,1.2,1.5,1.3,0.5,1.2,1.7,0.7,0.9,1.4]}},{"framework":"vanillajs-lite-keyed","benchmark":"05_swap1k","values":{"total":[13.3,13,12.7,12.8,13.6,14.1,12.9,13.1,13.4,13.3,13.1,13,12.7,12.8,13.2],"script":[0.3,0.2,0.1,0.1,0.1,0.9,0.4,0.1,0.1,0.1,0.4,0.1,0.4,0.4,0.1],"paint":[11.9,11.7,10.9,11.8,12,11.7,12.2,11.8,11.8,12.5,11.7,12.1,11.3,11.4,12.1]}},{"framework":"vanillajs-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,10.3,10.3,10.6,10.3,10.4,10,10.2,10.7,10.6,10.4,10,10.2,10.4,10.2],"script":[0.2,0.4,0.1,0.3,0.1,0.2,0.1,0,0.1,0.1,0.2,0.1,0,0.1,0],"paint":[9.3,9.3,9.6,9.7,9.5,9.5,9,9.5,10.1,10,9.4,9.4,9.6,9.7,9.7]}},{"framework":"vanillajs-lite-keyed","benchmark":"07_create10k","values":{"total":[260.9,263.9,263.2,267,263.4,253.1,263.3,263.9,263.8,262.4,264.6,254.5,262.2,253.4,255.5],"script":[13.5,13.5,13.5,13.4,13.2,13.2,13.3,13.2,13.4,13.5,13.2,13.3,13.4,13.1,13.6],"paint":[240.7,243.4,243.1,246.7,243.5,233.3,243.3,243.8,243.4,242.1,244.6,234.5,242,233.6,235.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.5,28.2,28.6,28.6,28,28.3,27.9,28.8,28.1,28.3,27.7,28.1,27.9,28,27.9],"script":[1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.3,1.3],"paint":[26.5,26.1,26.6,26.6,26.1,26.4,26,26.8,26.1,26.4,25.8,26.2,26,26,25.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,8.3,8.5,9,9.1,8.8,8.5,8.9,8.8,9.1,10.1,8.6,9.3,8.5,10.6],"script":[7,7.2,6.7,7,7,6.6,6.9,6.6,6.9,7.2,7.6,7.1,7.5,6.2,7.9],"paint":[1,0.3,0.2,1.8,0.2,2,1,1.3,0.2,0.9,0.8,0.5,1,1.3,1.5]}},{"framework":"vanillajs-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4731559753417969]}},{"framework":"vanillajs-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7499370574951172]}},{"framework":"vanillajs-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.7582130432128906]}},{"framework":"vanillajs-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6193122863769531]}},{"framework":"vanillajs-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.125588417053223]}},{"framework":"vanillajs-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.8]}},{"framework":"vanillajs-norandom-keyed","benchmark":"01_run1k","values":{"total":[25.5,25.7,25.5,25.2,25.2,25.2,25,25.5,25.5,25.4,25.3,25.4,25.7,25.4,25.2],"script":[1.7,1.7,1.7,1.6,1.6,1.6,1.6,1.7,1.6,1.6,1.6,1.7,1.7,1.6,1.7],"paint":[23.4,23.6,23.4,23.3,23.1,23.2,23.1,23.4,23.5,23.4,23.3,23.3,23.7,23.4,23.2]}},{"framework":"vanillajs-norandom-keyed","benchmark":"02_replace1k","values":{"total":[27.1,27.3,27.3,27.4,27.3,27.4,27.3,27.6,27.2,27.7,27.3,28.3,27.9,27.3,27.2],"script":[3.4,3.5,3.4,3.5,3.4,3.5,3.4,3.4,3.4,3.5,3.4,3.7,3.6,3.4,3.5],"paint":[23.3,23.4,23.5,23.5,23.5,23.5,23.4,23.8,23.5,23.8,23.5,24.2,24,23.5,23.3]}},{"framework":"vanillajs-norandom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.1,11.2,11.1,10.4,11.6,10.7,10.2,11,10.9,11.3,12.3,11,11.4,11.8],"script":[0.1,0.1,0.4,0.8,0.1,0.7,0.1,0.1,0.1,0.2,0.6,0.9,0.1,0.1,0.8],"paint":[9.7,10.1,9.6,9.3,9.5,9.8,10,9.3,9.3,9.7,9.5,9.4,9.6,9.3,10.1]}},{"framework":"vanillajs-norandom-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.2,2,2.1,2.1,2,2,2.1,2.1,1.9,2.2,2.7,2.2,2.2,1.7,2.5,2,2.1,2.5,1.9,1.9,2.4,2.2,2,2.3],"script":[0.1,0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.4,0.9,0.1,0.4,0.1,0.1,0.5,0.4,0.7,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[1,1.5,1.7,1.9,1.9,0.3,0.9,1.2,0.4,1.7,1.2,0.4,1.7,0.6,0.9,1.9,1,1,0.7,1.1,1.2,2.2,1,1.4,2.1]}},{"framework":"vanillajs-norandom-keyed","benchmark":"05_swap1k","values":{"total":[14,12.8,13.2,12.9,12.9,12.9,12.3,13.1,13.1,13.1,12.8,13.7,14.5,14.2,13.3],"script":[1,0.1,0.9,0,0,0,0,0,0.1,0,0,0.3,0.1,0.1,0],"paint":[11.8,11.3,11.7,11.8,11.9,12.2,11,10.7,12,11.4,11.1,12.1,13.1,12.9,11.1]}},{"framework":"vanillajs-norandom-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,11,10.3,10.7,10.2,10.4,10.4,10.5,10.8,10.4,10.3,10.7,10.8,10.6,10.5],"script":[0.1,0.4,0.3,0.3,0.1,0.2,0.3,0.1,0.4,0.1,0.5,0.4,0.3,0.3,0.1],"paint":[9.9,9.7,9.2,9.6,9.6,9.6,9.5,9.8,9.7,9.9,9.3,9.3,9.9,9.7,9.7]}},{"framework":"vanillajs-norandom-keyed","benchmark":"07_create10k","values":{"total":[263,263.1,254.2,254.1,264.6,255.7,265.4,262.5,253.4,256,262.7,265.5,254.5,262.2,283.1],"script":[17,17.3,17.1,17,17.2,17.4,17.8,17.5,17.5,17.3,17.6,16.9,17.3,17.8,17.5],"paint":[239.6,238.9,230.3,230.3,240.3,231.2,240.8,238.2,229.2,231.8,238.1,241.8,230.5,237.5,258.3]}},{"framework":"vanillajs-norandom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,27.9,27.9,27.9,27.9,27.8,27.8,27.7,28,27.8,27.4,27.8,28.4,27.8,28.1],"script":[1.7,1.6,1.5,1.6,1.6,1.5,1.6,1.5,1.6,1.5,1.6,1.6,1.8,1.6,1.7],"paint":[25.6,25.5,25.7,25.6,25.6,25.6,25.4,25.5,25.7,25.5,25.1,25.5,25.9,25.5,25.7]}},{"framework":"vanillajs-norandom-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.4,8.5,9.2,8.7,8.2,8.6,9.6,9.5,8.9,8.8,8.6,8.4,9.1,8.9],"script":[7.3,7.1,7.5,7.5,6.8,6.1,6.5,6.8,7.8,6.3,7,6.5,6.6,6.6,7],"paint":[1.7,0.7,0.9,0.8,1,1.2,1.9,1,1,1.4,1,0.7,0.7,0.7,1]}},{"framework":"vanillajs-norandom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5551357269287109]}},{"framework":"vanillajs-norandom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0416393280029297]}},{"framework":"vanillajs-norandom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.025750160217285]}},{"framework":"vanillajs-norandom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7626829147338867]}},{"framework":"vanillajs-norandom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.003644943237305]}},{"framework":"vanillajs-norandom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.5]}},{"framework":"vanillajs-norandom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.2]}},{"framework":"vanillajs-norandom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.4]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"01_run1k","values":{"total":[29.4,28.8,28.9,28.8,29,28.7,28.8,29,28.6,28.8,28.8,29,28.4,28.9,29],"script":[4.9,4.8,5,4.9,5,4.9,5,4.8,4.9,5,4.9,4.9,4.9,4.9,5],"paint":[24.1,23.6,23.5,23.4,23.6,23.4,23.5,23.8,23.4,23.4,23.5,23.7,23.1,23.6,23.7]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"02_replace1k","values":{"total":[31,31.5,31.6,31.7,31.5,34,31.4,31.5,31.5,31.3,31.3,31.7,31.7,31.4,31.8],"script":[6.7,7.1,6.9,7,6.9,7.4,7,7,6.9,6.8,6.8,7,6.9,6.9,6.8],"paint":[23.7,23.9,24.1,24.1,24,25.9,23.9,24,24,24,23.9,24.1,24.2,23.9,24.3]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,12.3,11.7,12.5,11.9,12.3,12.4,12,11.6,11.9,11.2,12,12,11,11.9],"script":[0.9,1.6,0.9,1.4,1,1.5,1.5,0.9,1,1,1.2,0.9,0.9,0.6,1.1],"paint":[9.9,9.6,9.5,10,9.7,9.4,9.7,10.5,9.5,9.2,9.2,10.2,10.4,9.4,8.4]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"04_select1k","values":{"total":[4.3,2.3,2.5,2.4,2.1,2.2,2.7,2.5,2.5,2.7,2.6,2,2.7,2.4,2.5,2,2.1,2.1,2.8,3.6,2.3,2.4,2.7,2.6,2.5],"script":[0.5,0.9,0.5,0.8,0.6,0.1,1.2,0.7,0.1,0.8,0.8,0.6,0.9,0.1,0.1,0.1,0.5,0.1,0.6,0.7,0.2,0.7,0.1,0.9,0.1],"paint":[1.3,1.3,1.3,1.5,1,1.1,1,1.7,1.5,1.1,1.7,1.3,1.1,2.2,2.2,1,0.7,1.9,2,0.3,1.3,1.6,2.4,1.1,1.9]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.4,13.6,12.5,13.3,13.2,13.4,13.3,13.4,14.2,13.3,13.4,12.7,14.5,12.8],"script":[0.1,0.1,0.1,0,0.4,0,0.1,0.6,0,0.8,0.9,0,0,0,0],"paint":[11.9,12.2,12.3,11.5,11.8,12.4,11.1,11.6,12.4,12.2,11.9,11.9,11,13.5,11.8]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,10.3,10.4,10.4,10.7,10.8,10.4,10.6,10,10.4,10.5,10.6,10.4,10.7],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.3,0.3,0.1],"paint":[9.9,9.6,9.7,9.5,9.8,9.8,9.6,9.7,9.7,9.2,9.4,9.5,9.7,9.5,9.8]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"07_create10k","values":{"total":[298.5,298.3,297.9,298.9,295.6,295.3,295,296.8,296.1,294.9,297.8,295.4,298.2,297.5,298.7],"script":[60.7,60.5,61.1,60.4,60.3,60.8,59.5,60.2,60.1,59.7,60.6,60.2,60.5,59.9,59.8],"paint":[231,231.1,229.9,232,228.5,227.7,228.9,230.1,229.5,228.4,230.5,228.8,231,229.9,232.3]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.2,32.4,32.6,32.2,32.5,32.4,32.3,32.1,32.6,32.6,32.6,32.8,33.8,32.3,32.5],"script":[4.8,4.5,4.6,4.5,4.7,4.4,4.5,4.5,4.5,4.6,4.8,4.4,4.5,4.4,4.5],"paint":[27.6,27.1,27.2,26.9,27,27.1,27.1,26.9,27.3,27.2,27,27.5,28.4,27,27.3]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,9.6,10,10.1,9.3,9.8,10,9,9.1,9.5,9.8,8.3,9.7,9.1,9.4],"script":[6.9,7.9,8.1,7.9,7.6,7.6,7.9,7.3,7.2,7.4,7.8,6.9,7.3,7.5,7.4],"paint":[1.6,0.6,1,1.2,0.4,0.9,0.6,0.5,0.3,1.3,1.1,0.3,0.3,0.2,1.1]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5152072906494141]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.900419235229492]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.907907485961914]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[15.896809577941895]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.47987079620361]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[21.3]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"vanillajs-signals-v0.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"01_run1k","values":{"total":[27.1,26.9,26.9,27.1,27,26.8,26.9,27.2,26.8,27.4,27,26.9,26.8,26.8,27.1],"script":[2.9,2.9,3,2.8,2.9,2.8,3,2.8,2.9,2.9,2.7,2.9,2.9,2.7,2.9],"paint":[23.9,23.6,23.5,23.9,23.7,23.6,23.6,24,23.5,24.1,23.9,23.7,23.5,23.7,23.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"02_replace1k","values":{"total":[29.1,29.9,29.7,29.8,29.7,29.4,29.6,29.5,29,29.6,29.3,29.1,29.4,29.6,29.4],"script":[4.7,4.8,4.7,4.9,4.8,4.8,4.9,4.8,4.6,4.6,4.7,4.7,4.9,4.9,4.7],"paint":[24,24.7,24.5,24.5,24.5,24.2,24.3,24.3,24,24.6,24.2,24,24.1,24.3,24.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,11.9,11.1,12.5,12.2,11.1,12.3,12.1,11.6,11.7,12,11.2,12.5,12.1,11.6],"script":[1,0.1,0.1,0.1,0.9,0.3,0.1,0.8,0.5,0.1,0.6,0.1,0.2,0.5,0.1],"paint":[10.7,9.8,10,11.1,9.8,9.9,11,9.8,9.7,10.6,10.5,10.2,11.7,10,10.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.4,4,2.4,2.2,2,2,2.2,1.9,2.4,2.1,2.3,2.4,1.7,1.7,2,2,1.3,3,1.9,1.8,2.1,1.8,2.6,1.5],"script":[0,0,0,0,0.4,0,0,0,0,0,0,0,0.6,0,0,0.1,0,0,0,0,0,0,0,0,0],"paint":[1,1.3,1.9,2.3,1.7,0.9,1.4,1.6,1.7,1.8,1.6,1.6,1.4,0.7,1.5,1.8,1.9,0.7,2,1.3,1.7,1.9,1.7,1.1,1.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.1,14.9,13.4,13.3,13.7,14,14.2,15.1,13.2,13.7,13.7,13,13.9,13.3],"script":[0.4,0.1,0.1,0,0.4,0.1,0,0.1,0.1,0.1,0.1,0.3,0.3,0.1,0],"paint":[13.3,13,12.8,12.2,11.7,12.5,12.3,13.2,13.7,12.1,11.7,11.4,11.6,12.7,11.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.8,10.7,10.4,10.4,10.5,10.4,10.3,10.5,10.7,10.4,10.2,10.4,10.4,10.5],"script":[0.3,0.3,0.1,0.1,0.1,0.3,0.2,0.3,0.1,0.2,0.1,0.2,0.1,0.1,0.2],"paint":[9.5,9.5,9.9,9.7,9.7,9.9,9.7,9.4,9.8,9.7,9.7,9.4,9.7,9.7,9.6]}},{"framework":"vanillajs-wc-keyed","benchmark":"07_create10k","values":{"total":[294.7,294.4,297.5,294.4,295.9,297,291.2,294.3,295.9,296.4,294.6,294.1,295.4,297.5,296.8],"script":[40.4,38.7,40.8,40,40.9,41.1,38.5,40,39.7,40.6,39.7,38.5,39.9,40.1,40.3],"paint":[248.1,249.1,250.3,248,248.5,249.6,246.3,248,249.5,249.6,248.3,249.1,248.9,250.9,250.1]}},{"framework":"vanillajs-wc-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31,30.8,30,30.1,30.4,29.8,29.9,29.9,29.8,30.6,30.2,30.6,30.5,30.4,29.9],"script":[2.8,2.9,2.9,2.7,3,2.7,2.8,2.8,2.9,2.7,3.1,2.8,3.2,2.8,2.6],"paint":[27.4,27.2,26.5,26.7,26.7,26.3,26.4,26.5,26.3,27.1,26.4,27,26.6,26.9,26.6]}},{"framework":"vanillajs-wc-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,8.8,8.9,9.7,9.3,9.9,9,9.1,8.9,9,10,9.1,9.6,10.3,8.9],"script":[6.8,6.7,7.5,7.8,7.2,7.5,7,7.2,7.1,7.1,7.9,7,7.3,7.3,6.7],"paint":[1.9,0.6,0.2,1.7,1.6,1.5,0.7,0.6,0.9,0.2,1.6,1.9,1.7,2,1]}},{"framework":"vanillajs-wc-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5342502593994141]}},{"framework":"vanillajs-wc-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0239696502685547]}},{"framework":"vanillajs-wc-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.968374252319336]}},{"framework":"vanillajs-wc-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6180019378662109]}},{"framework":"vanillajs-wc-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.957563400268555]}},{"framework":"vanillajs-wc-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[33.5,33.8,33.6,33.3,33.7,33.4,33.3,32.6,34,33.4,33.4,33.1,33.4,33.4,32.8],"script":[8.3,8.4,8.3,8,8.4,8.3,8.2,7.8,8.3,8.4,8.3,8.3,8.4,8,7.9],"paint":[24.6,24.8,24.7,24.7,24.8,24.6,24.5,24.4,25.1,24.5,24.6,24.3,24.5,24.7,24.4]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[36.7,37.5,36,36.1,36.4,35.8,36.4,36.3,36.2,35.9,36.3,36.2,36.5,36.2,36.2],"script":[10.1,10.7,10.4,10.4,10.4,10.1,10.4,10.4,10.4,10.2,10.1,10.4,10.3,10.4,10.2],"paint":[26,26.2,25,25.1,25.4,25,25.4,25.4,25.2,25.1,25.5,25.2,25.6,25.2,25.4]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[36.6,32,30.9,31.3,31.4,30.9,32.6,34.6,31.6,31.1,31.1,33.6,30.8,32.3,31.5],"script":[1.3,1.7,0.9,1,1,1,0.3,0.9,1,1.4,0.6,2,1.2,0.8,0.3],"paint":[13.7,13.5,13,12.2,12,12.9,13.4,11.5,11.7,13.3,12.5,12.6,12.9,11.9,12.9]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[6,8.8,10.6,8.6,8.5,10.8,9.2,9.5,9.9,4.9,4.2,4.7,11.5,13.1,9.2,6.1,7.2,11,4.9,9.3,6,3.7,7.6,10.3,9.9],"script":[1.1,0.4,1,0.1,0.1,0.5,0.9,0.1,0.1,0.6,0.1,0.1,0.8,0.1,0.9,0.7,1,1.2,0.1,0.1,0.7,0.1,0.1,0.3,0.1],"paint":[3.4,2.2,3.6,3.5,2.7,3,3,2.4,2.6,1.2,2.8,2.7,3.9,2.5,2.6,2.6,2.3,1.8,3.2,2.8,2.9,3.3,1.2,2.5,2.2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14,14.2,13.8,14.2,13.5,14.1,12.9,14.7,14.2,13.6,13.7,14,14.1,13.4],"script":[0.1,0.7,0.8,0.1,0.1,0.3,0.1,0.1,0.1,1,0.5,0.1,0.8,0.1,0.5],"paint":[12.9,12.4,12.2,12.3,12.7,11.8,12.8,11.8,13.1,12.5,12.1,12.2,11.7,12.3,12.3]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.7,14.5,12.9,12.5,14.3,13.7,14.4,17.3,14.6,14.2,13.6,12.7,14.2,14.2,17.5],"script":[0.4,0.1,0.4,0.1,0.1,0.1,0.3,0.1,0.3,0.1,0.1,0.3,0.2,0.2,0.1],"paint":[10.9,11.6,11.2,10.9,11,11.3,11.8,10.9,11.4,11.3,11.5,11.6,11.4,11.5,11.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[329.9,329.4,333.5,331.6,330.8,332.1,330.1,330.1,331.6,330.6,335,329.2,330.4,329.8,328.2],"script":[82.6,82.2,82.8,84.6,84.1,83.4,83.6,82.8,83.4,84.4,84.2,83.1,83.3,83.3,82.6],"paint":[240,241.3,243.9,240.8,240.3,242.2,240.7,240.9,241.3,240.2,245,239.7,240.9,240.1,239.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36.2,36.9,36.5,36.9,36.5,36.5,37.3,36.7,36.1,37,37.2,36.1,36.3,35.8],"script":[7.9,8,8.2,8,8.2,8.3,8,8.3,8.1,7.9,8.2,8.3,7.7,7.9,8],"paint":[27.6,27.3,27.8,27.5,27.8,27.3,27.6,28.1,27.6,27.2,27.8,28,27.5,27.5,26.9]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10.5,12.2,10,10.5,11.2,10,9.7,9.2,10.6,10.3,9.6,9.5,10.2,9.6],"script":[7.3,8.5,9.8,8,8.4,8.5,7.5,7.7,7.3,8.5,8,7.4,7.6,8.1,7.6],"paint":[1.6,1.1,1.1,1.9,0.7,1.9,1.8,0.9,1,0.9,1.1,1.9,0.6,0.6,1.1]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5330972671508789]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.415644645690918]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.409602165222168]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.654749870300293]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.565634727478027]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[31.2,31.6,31.7,31.9,32.2,31.8,32,32,31.7,31.6,31.6,32.1,32,32.6,32.3],"script":[6.2,6.3,6.5,6.7,6.6,6.9,6.7,6.8,6.6,6.6,6.2,6.6,6.8,6.9,6.2],"paint":[24.4,24.8,24.7,24.6,25,24.4,24.7,24.7,24.6,24.5,24.9,24.9,24.5,25.2,25.6]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[35.1,33.6,34.1,33.5,34.6,34.2,33.7,34,33.5,34.2,33.6,34,33.8,33.7,33.7],"script":[12.2,11.5,11.5,11.7,11.8,12.1,11.5,12,11.1,11.3,11.3,11.6,11.3,11.5,11.3],"paint":[22.2,21.6,22,21.3,22.3,21.7,21.6,21.5,21.8,22.3,21.8,21.8,21.9,21.7,21.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.8,33.9,15.6,14.8,16.4,16.3,17.4,15.6,14.8,16.7,16.8,16,16,15.2],"script":[3.2,3.7,3.7,4.1,3,3.3,3.3,4.3,3.3,2.8,4.6,3.3,3.2,3.1,3.3],"paint":[10.8,11.3,11.2,10.7,10.9,11.2,12.1,11.9,10.7,11,11.1,12.5,11.8,12,10.2]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[12.2,12.9,9.7,17.7,11.6,15,13.3,12.4,12.7,11.3,13.5,14.2,9,12.2,15.3,10.5,15.8,13.5,12,16.3,11.5,16.3,17,8.9,15.1],"script":[1.8,1,1.3,1,0.5,0.8,0.9,1.5,1.5,1,1.1,1.1,1.5,1.3,1.4,1.2,0.8,1,1,1.3,1.1,1.6,1.5,0.8,1.5],"paint":[1.3,2.3,2.1,1.6,0.7,1.8,2,1.6,2,1.3,1.1,1.3,1.3,1.5,1.7,1.2,1.5,1.1,1.8,1.8,1.7,1.7,1.4,1.6,1.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.3,16,17,15.7,34.5,34.9,34.9,17.2,34.6,16.6,35.1,16.4,17.1,15.8],"script":[1.6,2.4,1.3,1.7,2.1,1.9,1.9,2.3,1.6,1.8,2.3,2.1,2.1,2.6,1.8],"paint":[14.6,13.1,13.6,13,13.1,12.8,13,13.1,14.2,12.9,13.7,13.1,13.3,13.5,13.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[19,12.5,14,14.6,18.2,19.2,13.5,21,21.7,19,20.3,16.4,14.2,19.8,14.3],"script":[0.8,1.6,0.9,1,1,0.9,1.1,0.9,1.7,0.9,1.6,1,1.8,0.8,1],"paint":[11,10.4,10.4,10.4,10.8,10.8,11.7,11,11.1,10.8,10.7,10.2,10.4,10.8,10.8]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[303.6,305.1,302.7,305.2,296.3,305.2,296.9,300.9,303.5,303,305.1,307.2,308.7,305,304.9],"script":[72.1,72.3,71.7,72.3,69.3,71.7,69,71.2,72.4,71.9,72.6,73.2,72.9,72.8,72.9],"paint":[225.2,226.4,225.2,226.8,221.2,227.4,221.8,223.6,225,224.9,226.7,227.8,229,226.6,226.5]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,33,33.4,35.1,35.3,32.9,33.9,34.5,32.8,35.4,32.4,35.3,33.1,34.7,35.2],"script":[8.5,7.8,7.7,8.9,8.7,7.5,8.6,8.6,7.8,8.7,7.7,9.2,7.8,8.4,9],"paint":[25.2,24.4,24.9,25.5,25.8,24.6,24.5,25.2,24.2,25.7,23.8,25.4,24.6,25.4,25.5]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,15.2,11.5,11.7,17.5,14.5,17.1,15.5,14.7,14.2,9.8,14.1,10.2,12.4,15.7],"script":[7.9,7.2,8.5,7.8,7.7,7.9,8.1,8,7.5,7.6,8,7.7,7.2,7.1,7.5],"paint":[1.5,0.2,0.6,1.7,0.9,0.2,1.2,1,1.2,0.3,0.6,0.6,0.9,1.9,0.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6491012573242188]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.29738712310791]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.427022933959961]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0027179718017578]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.25181865692139]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[39.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77]}},{"framework":"vue-v3.5.13-keyed","benchmark":"01_run1k","values":{"total":[30,29.3,29.7,30,29.8,29.6,30.3,30.6,29.5,29.8,29.9,29.8,30.1,29.8,30.4],"script":[6.3,6.1,6.7,6.4,6.7,6.4,6.6,6.4,6.4,6.3,6.4,6.5,6.8,6.2,6.9],"paint":[22.8,22.6,22.4,23.1,22.5,22.7,23.1,23.6,22.5,22.9,23,22.7,22.8,23,22.9]}},{"framework":"vue-v3.5.13-keyed","benchmark":"02_replace1k","values":{"total":[32.7,32.5,32.7,32.3,32.4,32.9,32,32,32.7,31.9,33.1,32.3,32.1,33.1,32.6],"script":[8.3,8.3,8.3,8.1,8.1,8.1,8.2,8.2,8.2,7.9,8,8.3,8.2,8.2,8.4],"paint":[23.8,23.5,23.8,23.6,23.7,24.2,23.3,23.3,23.9,23.4,24.5,23.4,23.4,24.2,23.7]}},{"framework":"vue-v3.5.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,14.3,14.1,13.8,14.5,13.4,14.4,14,14.5,13.8,13.4,13.4,13.6,14.1,14.4],"script":[2.3,2.7,2.5,2.4,2.7,1.6,1.7,2.7,2.4,2.3,2.2,2,2.4,2.2,2.5],"paint":[9.9,10.3,10.6,9.9,11.1,9.9,11.9,9.3,10.7,10.2,9.8,10.1,10.6,10.8,10]}},{"framework":"vue-v3.5.13-keyed","benchmark":"04_select1k","values":{"total":[4,3.7,4.2,3.6,4.4,3.7,4.1,3.6,3.6,3.4,4.2,2.6,4.3,3,3.9,3.9,2.8,4.5,4,3.3,3.3,4.5,4.2,3,4.7],"script":[0.9,0.7,1.8,1.2,0.3,0.7,2.3,0.6,0.9,1,0.8,0.7,1,0.9,1.3,2,0.9,1.2,0.9,1.1,0.6,0.9,0.9,0.7,2.5],"paint":[1,2,1.9,1.2,1.8,2.1,1.7,2.4,1.3,2.2,1.4,1.1,2.7,1.5,1.5,1.1,1.7,1.4,1.1,2.1,1.5,3.2,1.3,1.5,2]}},{"framework":"vue-v3.5.13-keyed","benchmark":"05_swap1k","values":{"total":[15.7,15.3,14.9,15.3,16.7,15.6,15.1,14.9,16.2,14.3,15.4,14.9,15.3,14.6,14.4],"script":[1.5,1.2,1.7,1.4,2.1,1.4,1.4,1.1,1.5,1.6,1.3,1.5,1,1.5,1],"paint":[12.8,13.4,12.6,12.8,13.3,11.6,12.2,12.3,13.8,11.2,13.1,12.2,12.6,11.9,11.8]}},{"framework":"vue-v3.5.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.5,13.2,13.3,12.4,13.5,13.2,13.3,13,13.5,13.4,13.2,13,12.7,13.4,13.1],"script":[2.5,2.4,2.4,2,2.4,2.5,2.7,2.4,2.5,2.4,2.4,2.1,2.1,2.9,2.4],"paint":[10.5,10.1,9.8,9.5,10.4,10.1,9.9,10,10.4,10.4,10,10.6,10,9.9,10]}},{"framework":"vue-v3.5.13-keyed","benchmark":"07_create10k","values":{"total":[308.1,305.5,307.2,310.3,305.4,307.1,307.6,308.9,306.3,305.8,308.7,308.2,310.2,314.8,308.7],"script":[64.8,61.9,62.3,65.5,61.3,64,62.4,64.3,62,62.1,62.8,64.6,65.1,65.9,64.8],"paint":[237.3,237.5,238.7,238.9,238.1,237.3,239.3,238.4,238.4,237.6,239.5,237.5,239.3,242.9,237.7]}},{"framework":"vue-v3.5.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,34.5,33.5,33.4,34.1,33.3,34.4,33.9,34,34.6,34.2,34.4,33.6,34.9,35],"script":[6.3,6.5,6.2,6.1,6.2,6.1,6.3,6.3,6.1,6.5,6.3,6.2,6.2,6.5,6.3],"paint":[28.3,27.1,26.4,26.3,27,26.3,27.2,26.8,27,27.1,27,27.4,26.5,27.5,27.8]}},{"framework":"vue-v3.5.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.5,10.9,10.1,10.4,10.7,11.4,10.7,10.7,11.9,11,11.7,11.5,11,11.7,9.7],"script":[8.5,8.5,8.2,8.5,8.8,8.5,8.3,8.7,9.6,9.4,9.5,9.6,9.6,10.1,8.3],"paint":[0.2,2.1,1.1,0.3,0.9,2,1.4,1.1,1.1,0.2,1.3,0.6,1.2,0.2,1.2]}},{"framework":"vue-v3.5.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8528957366943359]}},{"framework":"vue-v3.5.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.90170955657959]}},{"framework":"vue-v3.5.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9586734771728516]}},{"framework":"vue-v3.5.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.242732048034668]}},{"framework":"vue-v3.5.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.71678924560547]}},{"framework":"vue-v3.5.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[61.7]}},{"framework":"vue-v3.5.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.5]}},{"framework":"vue-v3.5.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.7]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"01_run1k","values":{"total":[31.4,31.3,31.1,31.5,31.3,31.7,31.7,31.7,31.2,31.8,31.4,31.1,31.9,30.9,31],"script":[6.6,6.7,6.7,7,6.7,7,7.1,7.1,7.1,7.1,7.1,6.7,6.9,6.7,6.5],"paint":[24.2,24,23.9,23.9,24,24.1,24,24.1,23.6,24.2,23.7,23.9,24.3,23.6,23.9]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"02_replace1k","values":{"total":[33.2,33.2,33.9,33.3,33.1,33.1,33.2,34,33.2,33.2,33.5,33.1,32.9,33.5,33.5],"script":[9,8.8,10.1,9,9,8.8,9,9,8.8,8.8,9,9,8.9,9,9],"paint":[23.7,23.9,23.2,23.7,23.5,23.7,23.6,24.5,23.8,23.9,23.9,23.5,23.5,24,23.9]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.2,21.6,21.6,22.2,20.7,22.6,21.3,23.1,21,23.2,21.4,22.2,23,21,21.6],"script":[9.4,8.9,8.5,9.1,8.4,10,8.6,9.3,8.8,8.9,9.5,8.7,9.6,8.9,8.8],"paint":[10.8,10.5,11.2,11.3,10.3,10.4,10.6,10.9,9.7,13.1,10.4,11.1,12,9.8,10.9]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"04_select1k","values":{"total":[12.1,12.4,12.1,12,12.2,12,11.8,11.2,12.3,11.9,11.2,11.8,11.6,11.7,12.3,10.9,12.1,11.7,12.1,11.5,11.6,11.2,11.6,11.7,12.6],"script":[8.5,8.9,8.6,8.8,9.2,8.4,8.7,8.9,9.2,8.7,8.4,9,8.4,8.3,8.5,7.6,8.4,8.4,8.7,8.3,8.4,7.9,8,8.3,8.2],"paint":[1.7,2.5,1.7,2.6,1.6,1.8,0.9,1.3,1.1,1.5,1.2,1.5,2.2,1.5,1.6,1.7,2,1.5,1.8,1.3,1.5,1.7,1.8,1.2,2.1]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"05_swap1k","values":{"total":[23.4,25.1,23.3,23.4,23,23.8,23.4,24.5,24.2,23.8,23.3,24.2,22.6,24.7,24.9],"script":[8.2,9,8.3,8.7,8.7,8.8,8.3,8,8.4,9,8.2,9,7.4,9.1,8.7],"paint":[13.8,14,12.5,12.7,12.4,13.6,13.3,14.6,13.7,12.2,13.3,13.3,13.4,12.4,13.9]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.9,14.9,15.2,15.8,15.1,14.9,16,15.2,15.8,15.5,15.6,15.7,15.1,14.9,15.1],"script":[4.3,3.9,4.1,4.6,4.2,3.9,4.6,3.8,4.2,4.4,4.2,4.2,4.2,4.1,4.2],"paint":[10.9,10.2,10.1,10.5,10,10.6,10.5,10.7,10.9,10.3,10.9,10.8,10,10.2,10.2]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"07_create10k","values":{"total":[311.8,312.3,308.8,311.7,315,312.2,311.2,313.7,311.2,309.8,312.3,311.9,313.4,311,310.5],"script":[67.6,67.9,67.4,67.5,68.3,67.4,68.5,67.4,67.2,65.8,68,67.3,67.1,66.9,67.2],"paint":[238.1,238.5,235.3,237.3,239.8,238.9,236.8,240.5,238,237.4,238.6,238.9,239.8,238.3,237.5]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,36.9,37.2,37.2,37.1,37.3,37.1,37,36.6,39,36.6,37.5,36.8,38.9,37.6],"script":[8.4,8.6,8.7,8.7,9.1,8.8,8.7,8.6,8.4,8.7,8.7,9,8.7,9.4,9.2],"paint":[27.2,27.3,27.6,27.6,27.1,27.7,27.5,27.5,27.2,29.4,27.1,27.6,27.2,28.6,27.4]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,10.5,11.5,11.2,11.1,11.3,12.7,11.5,10.3,11.9,11.8,10.9,12.3,11.1,11.2],"script":[9.2,8.3,9.9,9.3,9,9.3,10.5,9.4,8.6,9.7,9.7,9.2,10.1,9,9.4],"paint":[1.4,1.2,0.6,1,0.6,1.3,1.8,1.1,0.9,2,0.7,0.8,0.9,1.2,1.5]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8256416320800781]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.311436653137207]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.317287445068359]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2706022262573242]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.48604869842529]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[59.5]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.6]}},{"framework":"vue-jsx-v3.5.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[84.9]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"01_run1k","values":{"total":[27.9,28,27.7,27.5,27.7,27.8,27.9,28.9,28.1,27.9,27.9,27.6,27.9,27.6,27.4],"script":[4.3,4.4,4.2,4.2,4.3,4.2,4.2,5,4.5,4.2,4.2,4.5,4.2,4.2,4.2],"paint":[23.2,23.2,23.1,22.9,23,23.2,23.3,23.5,23.2,23.3,23.3,22.7,23.3,23,22.7]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"02_replace1k","values":{"total":[29.8,30.7,32,29.7,30.4,29.8,30.3,30,29.9,29.9,29.8,29.6,29.2,29.5,30.4],"script":[5.6,5.8,6.8,5.8,5.7,5.6,5.9,6,5.9,5.7,5.6,5.7,5.8,5.8,5.8],"paint":[23.6,24.3,24.6,23.4,24.2,23.6,23.8,23.5,23.5,23.6,23.6,23.3,22.8,23.2,24]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,12.3,12,12.5,11.4,12,11.9,12.4,12.6,12.3,12.2,12.2,13.7,13.9,13],"script":[1,1,1,1.1,1,1,1.8,1.8,1,1.2,1,1.3,1.3,1.5,1.8],"paint":[9.4,9.5,9.7,10.1,9.4,9.6,8.5,8.9,10.5,9.5,10.4,10,11.3,11.2,10.3]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"04_select1k","values":{"total":[6.1,3.2,4.4,3.7,3.7,5,3.6,4.8,3.7,3.4,4,3.7,3,2.9,3.5,3.1,3.2,3.6,3.3,3.6,4.4,3.7,2.7,3.7,3],"script":[1,1.1,1.4,1,1.9,1.2,1.3,2.8,1.8,1.5,1.3,1,0.9,1.3,0.8,1.2,0.9,1.3,1.5,1.6,1.4,1.7,0.9,1.3,1.2],"paint":[2.5,1.1,1.8,1.4,1.3,1.4,2.1,1.5,1.2,0.3,1.6,2.4,1.9,1,1.4,1.1,1.1,2.2,1,1.9,1.6,1.2,1.7,1.6,1]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"05_swap1k","values":{"total":[15.5,15.6,15.2,16.3,15.2,14.6,15.1,15.8,14.8,15.5,14.6,15.7,15.3,14.1,15.4],"script":[2.3,1.5,2,2,1.5,1.6,1.4,2,1.3,1,0.9,1.8,1.7,1,0.7],"paint":[12.2,12.8,12.2,13.4,12.5,12.4,12.2,12,12.9,13.2,12.3,12.4,12.4,12.5,13.7]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.2,11.2,11.1,11.1,11.5,11.1,11.1,11.4,11.2,11.1,11,11.2,11.2,11.4],"script":[0.7,0.7,0.7,0.7,0.8,0.9,0.7,0.7,0.8,0.7,0.7,0.7,0.8,0.7,0.7],"paint":[10.1,9.9,9.9,10.1,9.8,9.5,9.5,9.7,10.1,9.9,9.6,9.7,9.8,9.9,10.1]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"07_create10k","values":{"total":[292.3,297.8,292.8,303.6,292.5,291.4,301.5,295.3,301.1,304.7,291.2,291.4,303.5,292.1,296.4],"script":[47.7,47.5,49.7,49.9,50.2,46.5,49.7,47.3,47.6,51.3,49.7,47.3,50.3,47.7,49.9],"paint":[238.5,244.4,236.7,247.1,236.6,238.9,245.3,242.3,247.5,247.9,235.2,237.9,246.5,238.7,239.8]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,29.5,30.3,30.3,29.9,30.7,30.5,29.6,29.6,30.2,30.4,30.3,30.7,30.5,30.2],"script":[3.4,3.4,3.3,3.3,3.3,3.6,3.5,3.6,3.4,3.6,3.4,3.7,3.4,3.5,3.7],"paint":[26.3,25.4,26.3,26.3,25.9,26.3,26.3,25.3,25.5,25.8,26.3,25.8,26.6,26.3,25.8]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.6,11.5,10.5,10.7,12.1,10.6,11.2,12.5,11.1,10.6,11.8,11.4,12.1,11.5,11.2],"script":[10.5,9.1,8.9,9,9.7,8.7,8.9,10.5,8.9,9.1,9.4,9.6,10.3,9.6,8.8],"paint":[1.7,2.2,0.3,0.6,1.5,1,1.2,1.2,1.2,0.7,2,0.9,1,0.6,0.8]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6839742660522461]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7741336822509766]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.771265983581543]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.048018455505371]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.979915618896484]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38.7]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.7]}},{"framework":"vue-jsx-vapor-v3.5.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[66.7]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"01_run1k","values":{"total":[31.1,31.1,31.1,31.2,30.7,31.5,31.2,31.2,31.4,31.5,30.9,31,31.3,31.6,30.9],"script":[7.1,7.3,7.2,7.2,7.2,7.5,7.1,7.3,7.2,7.3,7.3,7.2,7.3,7.2,7.2],"paint":[23.5,23.3,23.4,23.4,23,23.5,23.6,23.3,23.6,23.7,23.1,23.2,23.5,23.9,23.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"02_replace1k","values":{"total":[34,35.5,33.7,33.5,33.4,33.7,33.3,33.3,33.6,33.6,33.4,34.1,33.6,33.2,34.5],"script":[9.4,9.6,9.8,9.3,9.3,9.5,9.2,9.4,9.6,9.4,9.6,9.5,9.4,9.2,9.6],"paint":[24,25.3,23.4,23.7,23.5,23.6,23.5,23.3,23.5,23.7,23.3,24,23.7,23.4,24.3]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.3,16.1,15.5,15.7,15.8,15.7,15.3,15.9,15.7,15.7,15.5,15.2,15.5,16.1,15.5],"script":[4.5,4.6,3.4,4.6,4.2,3.7,3.7,4,4.5,3.9,4.3,3.9,3.9,3.9,3.6],"paint":[10.9,10.5,10.6,9.4,10.2,11.4,10.5,10.4,10.5,10.5,9.9,10.3,10.5,10.3,10.6]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"04_select1k","values":{"total":[3.6,4.8,4.1,3.5,3.9,4.1,4.6,4.3,4.3,4.2,4.3,4.4,4.6,4.5,4.2,4.1,4.2,4.6,4.3,5,4.6,5.1,4.5,3.9,4.3],"script":[1.6,2.4,2,1.7,2.1,2,2.3,2.7,2.5,2.1,2.4,2.9,2.1,2,1.9,2.1,2.3,1.9,1.8,2.9,1.9,2.7,2.4,2.2,2.1],"paint":[0.9,1,0.4,1.7,1,1.2,2.1,1.4,1,1.6,1.1,1,0.6,1.9,2.2,1.8,1,1.8,1.4,1.3,2.5,1.1,1.2,1.6,1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.9,16.4,17.7,15.7,16.2,15.8,15.8,15.9,16.8,16.9,16.6,16.3,16.1,16.9,16.9],"script":[2.3,3.2,3.4,2.3,2.7,2.4,2.4,2.3,2.5,2.8,2.4,3.2,2.9,3.4,2.3],"paint":[12.4,12.6,12.9,12.2,12,12.2,12.3,10.7,13.3,12.4,13.3,12.1,12.1,12.1,12.4]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.3,16.5,17.1,16.1,16.9,16.2,15.9,17,17.1,16.4,16.3,16.7,17,16,17],"script":[5.2,5.1,5.8,5.1,5.8,4.9,4.9,5.5,5.3,5.3,5.3,5.6,5.7,5.1,5.6],"paint":[10.3,10.7,10.4,10.1,10.6,10.6,10,10.7,10.6,10.6,9.9,10,10,9.8,9.9]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"07_create10k","values":{"total":[314.9,312.5,312.7,310.8,312.8,313.8,315.4,313.2,314.4,314.9,311,311.3,311.7,312.1,311.7],"script":[70.2,69.1,69.2,69.2,69.7,69.9,69.6,69.3,69.8,70,69.4,69.1,69.4,69.6,69.3],"paint":[238.4,237.3,237.5,235.4,237.1,237.4,239.7,238,238.5,239,235.7,236.5,236.8,237,236.5]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.1,36.3,36.2,36.9,36.7,35.6,36.2,36.1,36.3,37.2,36.1,36.4,35.8,36,35.7],"script":[7.8,8.8,8.5,8.3,8.8,8.6,8.6,8.3,8.4,8.5,8.5,8.5,8.5,8.2,8.3],"paint":[26.5,26.6,26.7,27.7,27,26.1,26.7,26.9,27,27.4,26.6,26.9,26.4,26.9,26.6]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,12.3,12.7,12.3,12.3,11.7,13,12.9,12,13.9,14.5,11.5,14,12.1,12],"script":[8.8,9.7,10,10.3,10.2,10,10.8,10.9,9.9,11.5,12.3,9.5,11.5,9.5,10],"paint":[1.2,1.5,1.7,0.9,0.8,0.2,0.7,1.3,1,0.8,1.1,1,1.1,1.7,1.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8906917572021484]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.277844429016113]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.337135314941406]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4565305709838867]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.727871894836426]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.6,27.1,26.4,26.6,27.2,26.8,26.5,26.8,26.6,26.5,26.7,27,26.6,26.7],"script":[3.1,3.1,3.1,3.1,3.1,3.1,3.1,3,3.2,3,3,3.1,3.1,3,3],"paint":[23.4,23.2,23.6,22.9,23.1,23.7,23.3,23.1,23.3,23.2,23.1,23.3,23.5,23.2,23.3]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"02_replace1k","values":{"total":[29.6,30,30,29.3,29.3,29.2,29.5,30.1,29.9,29.7,29.5,29.5,29.4,29.6,29.2],"script":[5.4,5.5,5.2,5.1,5,5,5.1,5.4,5.3,5.5,5.1,5.1,5.1,5.1,5.1],"paint":[23.7,24,24.3,23.6,23.7,23.6,23.8,24.1,24,23.6,23.8,23.9,23.7,23.9,23.6]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,12.3,12.7,12.2,11.3,14.3,13.7,12.1,11.9,12.5,12.1,10.8,12.9,11.8,11.7],"script":[1.5,1.2,1.7,1.3,1.2,2.2,1.5,1.6,1.4,1.6,1.6,1.2,2,1.2,1.5],"paint":[10.1,9.4,10,9.3,8.9,10.4,10.7,9.4,9,9.9,8.8,8.4,9.8,9.5,8.8]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"04_select1k","values":{"total":[4.9,4.6,4.2,4,3.3,3.1,3.8,3.5,4,4.4,3.1,3.6,3.5,3.9,3.9,3.6,4.3,3.9,3.6,4.5,3.8,3.4,3.3,3.9,3.4],"script":[1.7,2.3,1.8,1.6,1,1.5,1.1,1.3,1.7,2,1.1,1.6,1.5,1.3,1.6,1.1,2.2,1.5,1.5,2,1.2,1.2,1.5,2,1.2],"paint":[1.2,1.5,1,1.5,0.8,1,2.5,2,2.2,2.2,1.8,1.5,1.9,2.1,1.8,0.6,2,1.7,1.9,1.3,1.3,1.3,1.2,1,1.1]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"05_swap1k","values":{"total":[15.5,14.4,16.6,14.8,16.4,15.2,14.3,14.5,14.6,14.2,15,14.9,15.6,14.5,16.2],"script":[1.4,1.7,2,1.3,2.5,1.1,1.2,1,1.6,1.1,1.4,1.6,2.6,1,3.3],"paint":[12.5,11.1,13.2,12.4,12.5,13.2,12,11.6,11.6,11.3,12.6,11.6,12,12.4,12]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.5,11.3,11,11.3,11,10.9,11.1,11,11,11.4,11.3,10.9,11.4,11.5],"script":[0.7,0.8,0.7,0.7,0.9,0.7,0.7,0.7,0.7,0.7,0.7,0.9,1,1,0.8],"paint":[10,10.1,10,9.5,9.9,9.7,9.8,9.7,9.7,9.9,9.8,9.8,9.3,9.8,10.1]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"07_create10k","values":{"total":[285,277.4,281.3,284.9,279.1,283.3,282.9,277.5,276.7,286.8,277.7,284.3,288.9,285.2,283.9],"script":[32.3,32.3,33.4,31.7,31.9,31.8,32.1,32,32.1,31.9,31.8,31.9,32.3,32.2,31.3],"paint":[246.7,239.5,241.3,247.3,241.7,246.1,245.3,239.3,238.5,248.2,239.7,246.5,249.9,247.3,247.1]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.9,29.9,30.2,29.9,30,29.9,29.7,30.8,30,31.3,30.4,29.7,31.1,30,30],"script":[3.3,3.2,3.2,3.3,3,3.5,3.2,3,3.6,3.3,3.1,3.3,3,3.4,3],"paint":[25.9,25.9,26.2,25.9,26.2,25.7,25.8,27,25.7,27.3,26.5,25.7,27.3,25.9,26.2]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,10.8,9.7,10.1,9.8,9.4,9.8,9.5,10,9.2,10.8,9.1,10.1,10,9.8],"script":[8.2,8.4,8.3,8.3,7.4,7.9,8,7.7,8.2,7.6,8.9,7.7,7.8,7.6,7.8],"paint":[1,0.6,0.2,0.9,1.1,0.6,0.2,0.2,0.9,1.4,0.3,0.2,1.4,1.1,0.9]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6850128173828125]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0494489669799805]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0861854553222656]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9949264526367188]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.483184814453125]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[37.6]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.4]}},{"framework":"vue-vapor-v3.5.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.4]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"01_run1k","values":{"total":[27,26.9,26.4,26.8,26.5,26.7,26.6,26.9,26.5,26.6,26.2,26.3,26.9,27,27],"script":[3.6,3.5,3,3.5,3,3.6,3.1,3.1,3.1,3,3,3,3.5,3.4,3.6],"paint":[23,23,23,22.9,23.1,22.8,23.2,23.3,23.1,23.2,22.8,23,23,23.2,23]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"02_replace1k","values":{"total":[29.6,29.7,30.4,29.9,29.9,29.8,30.1,29.9,31.1,30.9,30.3,30.8,30.2,30,30.6],"script":[5.8,5.8,6.1,5.7,6.2,6.1,6.2,5.8,6.3,5.8,5.9,6,6.2,6,5.9],"paint":[23.2,23.4,23.7,23.6,23.2,23.2,23.4,23.5,24.2,24.6,23.8,24.2,23.4,23.4,23.9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,12.4,12.3,12.4,12.1,11.7,12.4,12.2,12.8,12.1,12.2,12.7,12.8,12.4,11.8],"script":[1.4,1.4,1.9,1.2,1.2,1.3,1.9,1.2,1.7,1,1.1,1.7,1,1.7,1.1],"paint":[9.8,10,9.2,10,9.9,9.4,9.9,9.7,10.1,9.6,10.1,9.5,10,10.4,10.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"04_select1k","values":{"total":[5.7,2.6,2.1,2.7,1.9,1.6,2.3,2.7,1.8,2.4,2.3,2.3,1.6,1.7,2.5,4.8,2.7,2,2,2.2,2.2,2.4,1.4,2.6,2.4],"script":[0.1,1,0.5,0.1,0.1,0.1,0.6,0.6,0.1,0.5,0.6,0.3,0.5,0.1,0.1,0.7,0.8,0.1,0.1,0.1,0.7,0.1,0.1,0.6,0.1],"paint":[1.8,1.5,1.5,2.5,1,0.6,1.4,1.7,1.6,1.8,1.6,1.7,1,0.7,2,1.5,1.8,0.9,1.1,2,1.3,1.3,0.7,1.8,2]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"05_swap1k","values":{"total":[16.2,15.8,16.9,17,16.8,16.2,16.5,15.5,16,16.6,16.3,16.6,16,16.7,16],"script":[3.3,2.6,3.3,3.6,3.4,3,2.5,2.8,2.5,3,3.4,3.1,2.8,2.8,2.9],"paint":[11.9,12.2,12.2,11.2,12.4,11.5,12.8,11.2,12.4,12.4,10.8,12.6,11.8,11.9,11.9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.6,11.8,11.6,11.9,11.6,11.5,12,11.7,11.6,12,11.6,11.8,11.6,11.5],"script":[1.2,1.2,1.4,1.2,1.5,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2],"paint":[10.5,9.7,9.8,9.7,9.8,9.9,9.7,10.2,9.8,9.7,10.2,10,9.8,9.8,9.4]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"07_create10k","values":{"total":[283.1,283.9,285,283.8,281.7,281.8,284.6,283.5,285.7,288.4,282.5,281.8,280.9,282.1,284.5],"script":[35.8,35.6,36.4,35.2,35.7,35.5,35.7,34.9,35.9,36.4,35.4,35.4,35,35.7,36.1],"paint":[241.3,242.2,242.4,242.7,240.5,240.3,242.6,242.4,243.6,245.5,241.6,239.9,240,240.5,242.3]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.1,32.9,32.5,35.1,33.3,33.7,31.6,33.9,33.3,31.4,32.2,32.1,32.2,32.2,31.9],"script":[4.8,4.8,4.9,5.5,5,5.4,4.8,4.8,4.7,4.6,5.1,4.7,5,5.2,5.2],"paint":[25.6,27.4,26.7,28.7,27.5,27.4,26.1,28.3,27.8,26.1,26.1,26.7,26.3,26.1,25.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,10.5,10.4,10.6,10.4,10.9,10.2,11,10.4,9.7,10.2,9.8,10.4,10.9,9.4],"script":[9.8,8.2,8.4,8.2,8.1,8.5,8.3,8.8,8.2,8.2,8.4,8.1,8.5,8.8,8.2],"paint":[1,0.6,1.7,1.2,1.6,1.5,1.2,1.2,1.8,0.6,0.7,0.2,1.7,1.3,0.2]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5968914031982422]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.14766788482666]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.203329086303711]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0422859191894531]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.381393432617188]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[21.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"01_run1k","values":{"total":[27.7,28.3,27.9,27.8,27.8,27.6,27.8,27.6,28,28,27.7,27.6,28.1,27.6,27.5],"script":[3.1,3.5,3,3.5,3,3.1,3.4,3.1,3.6,3.5,3.1,3,3.4,3.1,3],"paint":[24.3,24.4,24.5,23.9,24.3,24.1,24.1,24.1,24.1,24.2,24.3,24.2,24.3,24.1,24.1]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.7,29.4,29.7,29.8,29.6,29.7,29.8,29.9,30.2,29.9,29.8,29.4,29.9,29.4],"script":[5,4.9,4.9,5.1,5,5,5,5.1,5.2,5,5,5,4.9,4.9,5],"paint":[24,24.4,24,24,24.3,24.3,24.3,24.2,24.2,24.5,24.6,24.2,24.2,24.5,24]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,14.2,13,13.3,14,12.5,13.3,12.9,12.9,12.4,12.7,12.9,12.8,13.6,13.2],"script":[2.3,3.3,2.1,1.6,2.2,1.7,1.8,1.6,1.5,1.3,1.6,1.2,1.7,1.1,2.2],"paint":[10.1,9.5,9,10.5,10.7,9.1,10.7,10.3,10.8,10.1,10.1,10.7,10.1,10.8,9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"04_select1k","values":{"total":[2.8,3.1,2.7,3,3.4,3.4,2.7,3,3.5,3.2,2.6,3.3,2.5,4.4,2.5,3,2.8,2.9,3,2.2,2.6,3,2.8,3.6,2.8],"script":[0.3,0.9,0.6,0.9,0.8,0.9,0.9,0.9,1.3,1.2,0.8,0.9,1.2,2.1,1,0.9,1.1,0.2,1.2,0.6,0.9,0.7,0.9,0.9,0.9],"paint":[2.3,1.3,1,1.2,1.6,2.4,1.7,1.2,2,1.9,1,2.3,0.7,2,1,1.2,0.4,2.1,1.2,0.7,0.9,2.1,1.8,2.5,1]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"05_swap1k","values":{"total":[14.6,14.7,15.8,14,14.4,15.1,15,14.8,14.4,15.1,14.3,14,14.5,14.7,13.9],"script":[1.5,1.3,1.5,0.9,0.5,1.2,0.9,1.4,0.9,0.9,0.8,0.6,1.1,1.1,0.6],"paint":[12.5,12.3,13.1,11.4,12.8,12.7,13.2,12.3,12.8,12.6,12.3,12,11.5,12.3,12.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,10.7,11.1,10.9,11.2,11.2,11.5,10.9,10.9,11.3,10.6,11,10.9,10.6,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,1.1,0.6,0.6,0.6,0.4,0.4,0.6,0.3,0.6],"paint":[9.8,9.5,9.9,9.7,9.8,10.1,9.9,9.7,9.4,10.2,9.6,10.1,9.7,9.7,9.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"07_create10k","values":{"total":[283.9,281.9,283.1,283.3,279.1,282.6,282.2,281.8,279.2,281.5,281.5,282.5,281.2,281.5,280.9],"script":[30.3,30.3,30.8,30.2,29.6,30,30.9,29.9,30.3,30.2,29.9,30.5,29.4,30.3,30.7],"paint":[246.8,245.1,246.3,246.7,243.5,246.2,245,245,243,245.3,245.5,245.6,245.8,245.2,244.4]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.9,30.7,31.5,31.1,31.5,31,31.4,31.3,31.1,31,31.2,31.7,31.7,31.6,30.9],"script":[3.2,3.2,3.6,3.2,3.2,3.6,3.2,3.6,3.2,3.3,3.6,3.3,3.8,3.6,3.2],"paint":[27,26.7,27.2,27.1,27.5,26.8,27.4,27,27.1,27,26.9,27.7,27.1,27.2,27]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,9.7,10,9.9,11.2,10.5,10.3,10.1,10.5,10.2,11.9,10.4,9.9,10.5,9.8],"script":[8.8,8.3,8.4,8,9,8.2,8,7.7,8.5,8.1,9.7,8.5,8.3,8.1,7.3],"paint":[1.1,0.3,0.5,0.6,1.2,1.4,1.8,1.4,1.4,1,0.8,0.7,0.2,2.2,1.9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7139692306518555]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9438047409057617]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9499731063842773]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.775263786315918]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.934805870056152]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[73.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[38.9,38.6,39.2,39.2,39.1,39,38.8,38.5,38.7,38.9,38.4,38.5,38.3,38.8,39],"script":[14.5,14.3,15.2,14.8,14.9,14.9,14.7,14.5,14.7,14.7,14.3,14.5,14.2,14.7,14.7],"paint":[24,23.9,23.6,24,23.8,23.7,23.7,23.5,23.6,23.8,23.6,23.6,23.6,23.7,23.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[43.8,43.6,43.7,45.1,44.1,44.6,44,44.2,44.3,43.9,43.7,44.1,44.1,44.3,45.2],"script":[19.6,19.3,19.6,19.9,19.5,20.1,19.8,19.9,20,19.8,19.7,19.9,19.6,20,19.7],"paint":[23.8,23.9,23.6,24.8,24.1,24,23.6,23.8,23.8,23.6,23.5,23.8,24.1,23.8,25]}},{"framework":"yew-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.4,19.4,20.3,18.6,19.1,18.7,18.8,19.2,18.9,19.2,18.9,18.5,18.8,18.6,19],"script":[7.5,7.3,7.4,7.7,7.5,7.6,7.4,7.2,7.8,7.5,7.1,7.2,7.9,7.4,7.5],"paint":[10.6,10.8,11.8,10.2,9.9,10,10.2,10.2,10.2,10.5,11.1,10.4,10,10.1,9.6]}},{"framework":"yew-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[7.5,7.1,7.6,7.4,7.8,7.3,7.6,7,7.7,9,7.1,7.8,7.6,7.7,7.5,8.1,8.1,7.8,7.4,6.8,8,8.2,7.3,7.9,7.4],"script":[5.6,4.8,5.1,5.2,5.6,5.4,5.2,5.7,6,6.9,4.7,5.9,5,5.8,5.4,5.6,6,5.5,5.1,5.4,5.5,6.6,5.2,5.7,5.1],"paint":[1.2,1.3,1,0.9,2,1.1,1.3,1.2,1.2,0.9,1.3,1.2,2.5,1.1,1.8,1.8,0.4,1.1,1.5,1.3,1.2,0.9,1,1.5,1.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[19,19.1,20.6,19.5,18.9,19.4,19.8,19.2,21.3,19.8,18.9,19,19.3,19,19.4],"script":[5,5.5,5.6,5.2,4.6,5.5,5.5,5.5,5.9,6,5.4,5.7,5.2,5.1,5.3],"paint":[13.1,11.9,13.5,12.8,12.9,12.7,12.6,13.4,13.4,12.4,11.6,12.1,12.8,12.3,12.6]}},{"framework":"yew-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,13.1,13.1,13.3,12.9,12.8,13.2,13.1,13.3,13.6,13.2,13.7,12.9,13.4,13.3],"script":[2.6,2.8,2.7,3,2.6,2.6,2.8,2.7,2.9,2.9,2.6,3,2.6,3,2.8],"paint":[9.4,9.7,9.7,9.9,10,9.6,9.8,9.8,9.4,10.2,10.1,10.2,9.5,9.9,9.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[421.4,421.5,418.2,421.4,417.5,416.4,424.6,419.1,420.3,423.6,422.5,423.3,420.1,419.5,425.7],"script":[156,153.1,152.7,153.6,150.8,151.7,159.8,152.5,153.3,157.2,157.2,156,155,154.1,160.4],"paint":[259.2,262.2,259.5,260.7,260.7,258.5,258.6,259.8,260.7,260.2,259,260.5,258.9,259.2,259.1]}},{"framework":"yew-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.7,42.6,43.4,42.4,43.6,43.3,42.9,43.1,42.5,43.1,43,43.1,43.5,43.4,43.3],"script":[14.4,14.5,14.7,14.5,15,14.6,14.9,14.9,14.7,14.8,14.8,14.7,15.1,14.7,14.7],"paint":[27.4,27.3,27.9,27.1,27.8,27.9,27.2,27.5,27,27.6,27.4,27.7,27.6,27.9,27.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20,19.4,21.4,19.3,19.8,21.4,20.7,20.7,23,21.5,22.9,21.3,20.1,21.2,21],"script":[18.7,18.1,19.6,18,18.5,19.8,18.8,19.8,20.9,20.1,21.8,19.9,17.8,19.9,19.3],"paint":[0.3,0.2,1.3,0.3,1.2,1.3,1.8,0.5,2,1,0.3,1.3,1.1,1.2,1.6]}},{"framework":"yew-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7789583206176758]}},{"framework":"yew-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.437756538391113]}},{"framework":"yew-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.5167131423950195]}},{"framework":"yew-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.955349922180176]}},{"framework":"yew-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.094285011291504]}},{"framework":"yew-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[207.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[259.3]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[38.4,39.1,39,38.8,39,38.5,38.7,38.4,39,39,39,38.8,38.9,38.9,39],"script":[14.3,14.9,14.7,14.5,14.8,14.4,14.4,14.6,14.7,14.8,14.6,14.3,14.9,14.7,14.6],"paint":[23.7,23.8,23.9,23.8,23.7,23.7,23.8,23.4,23.8,23.8,23.8,24.1,23.6,23.8,23.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[44,44.8,45,43.4,44,43.7,44.8,44.5,44.6,44.7,46.2,44.5,43.7,44.3,43.2],"script":[19.7,20.1,20.2,19.1,19.7,19.4,20,19.7,20.1,19.9,20.5,20.4,19.4,19.3,19.3],"paint":[23.8,24.3,24.3,23.8,23.9,23.8,24.3,24.3,24.1,24.4,25.2,23.6,23.8,24.5,23.3]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.5,22.9,24.2,24.2,23.4,23.5,22.7,23.7,25.1,23.9,23.6,22.8,23,24.4,22.9],"script":[12.1,12.2,12.5,12.5,11.9,11.3,11.6,11.3,11.8,12.3,12,12.2,11.8,12.5,12],"paint":[9.6,9.8,10.3,10.5,10.2,11.2,10.1,11.1,10.6,10.1,10.1,9.7,9.7,10.6,10]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[13.8,13.1,13.3,13.8,13.3,13,13.3,13.4,12.8,13,12.9,13.1,14,13.1,13.1,13.4,12.6,12.9,13.6,13.4,13.9,14,13.1,13.2,13.9],"script":[11.5,11,11,11.4,11.5,10.9,11,10.7,11.2,11.2,11.2,11.2,11.6,11.2,10.9,10.7,10.8,10.7,11.2,11.5,11.4,11.7,11.2,10.2,11.9],"paint":[1.8,1.6,0.5,1.8,1.6,1.9,2,2.5,0.7,1,0.7,0.8,1.4,1.7,2.1,2.5,1.7,1.1,2.1,0.8,2.4,0.4,1,1.6,0.8]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[25.1,25.2,25.8,25,26.2,26.1,25,26.9,26,24.8,25.2,26.1,26.7,25.3,26.5],"script":[11.3,11.4,11.5,11.8,12,12.2,11.7,12.6,12.2,11.2,11.2,10.9,11.9,11.4,11.8],"paint":[12.9,12.6,13.2,11.5,12.7,12.1,11.7,12.5,11.9,12.6,12.5,12.9,13.8,13,13.6]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.1,16.5,16.4,16.4,16.6,16.4,16.4,16.8,16.2,16.5,16.2,16.3,16.3,16.2,16],"script":[5.6,5.8,5.8,5.7,5.8,5.7,5.8,6,5.9,5.9,5.7,5.9,5.7,5.8,5.7],"paint":[9.8,9.9,9.8,10.1,10.2,10,9.9,10.3,9.7,10,9.9,9.7,10,9.5,9.6]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[421.5,424,415.6,422.3,422.1,426.5,420.5,424.8,422,423,422.3,421.6,419.9,422.9,425.9],"script":[156,157,151.6,155.4,154.6,158.8,154.8,159.2,156,156.3,157.9,155.2,152.6,157.3,157.1],"paint":[259.5,260.7,257.9,260.6,260.6,261.1,259.5,259.4,259.4,260.4,258.5,260.1,261,259.3,262.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.5,44.6,44.6,45,44.5,45.3,44.7,45.2,44.7,44.4,44.2,44.7,43.9,45.3,45.1],"script":[16.5,16.3,16.3,16.7,16.2,16.1,16.2,16.4,16.4,16.2,16.1,16.3,16.1,16.4,16.4],"paint":[27.2,27.4,27.5,27.5,27.5,28.4,27.7,28.1,27.6,27.4,27.3,27.6,27,28.1,28]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.9,21.6,20.6,21.7,22.8,22.2,22.4,21.9,20.6,23.7,23.5,20.4,20.9,21.8,20.9],"script":[19.1,20.3,19.2,19.9,21,20.6,20.4,20.4,19.4,21.7,21.7,18.8,19.1,20.2,18.8],"paint":[0.6,0.3,1.3,1.1,0.8,0.6,1,0.8,0.6,1.8,1.4,1.5,1.7,0.7,2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7792844772338867]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.577948570251465]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.752982139587402]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.144991874694824]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.34477519989014]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[211.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[267.1]}},{"framework":"zune-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[42.3,43.2,42.8,42.3,43.2,42.7,42.5,42.8,43,42.6,42.8,42.5,42.7,42.2,43.5],"script":[17,17.5,17.4,17.2,17.5,17.2,17.3,17.4,17.3,17.5,17.2,17.2,17.2,17.1,17.4],"paint":[24.7,24.9,24.9,24.6,25.1,24.9,24.6,24.8,25.2,24.5,25,24.7,24.8,24.6,25.6]}},{"framework":"zune-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[45.5,44.8,44.9,44.7,45.2,45.2,45.1,45.1,45.3,44.2,45.3,44.4,44.3,44.4,44.7],"script":[19.9,19.7,19.7,19.1,19.6,19.8,19.8,19.8,19.9,18.9,19.9,19.1,19,18.9,19.2],"paint":[24.9,24.6,24.6,25.1,25,24.9,24.7,24.7,24.9,24.7,24.8,24.7,24.8,24.8,24.7]}},{"framework":"zune-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.1,27.8,27.1,26.6,27,25.8,26.6,26.2,26.8,28.3,29.4,28.7,26.8,26.1,26.7],"script":[14,14.9,14.1,13.6,14.8,13.9,14.3,13.8,14.4,14.4,15.3,14.8,14.6,14.2,13.8],"paint":[11.4,10.9,11.3,10.7,10.4,9.8,10,9.3,10.5,10.7,11.8,12.2,10.3,9.8,10.8]}},{"framework":"zune-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[3.9,3.7,3.4,4,3.7,3.4,3.5,3.9,3.9,3.5,3.9,3.4,3.6,3.7,4.2,3.8,3.6,3.1,4.2,3.5,3.9,4.1,3,3.7,4.4],"script":[1.6,1.4,1.6,1.4,2,1.1,1.6,1.7,2.3,1.6,1.6,1.8,1.3,1.5,2,1.7,1.7,1.6,1.8,1.1,1.6,1.7,1.3,1.4,2.1],"paint":[1.9,1.2,1,2.1,0.7,1.8,1.1,2,1.1,1,2.1,0.7,1.8,1.9,1.5,0.8,1.8,1.3,2.1,1.2,1.5,1.2,1,1.3,1.5]}},{"framework":"zune-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.9,14.4,15.5,14.7,15.4,15.2,15.6,15.5,16.4,15.8,16,15.9,15.2,15.8,15.9],"script":[2.1,1.5,2.3,1.6,2,1.8,1.6,1.5,2.1,2.1,1.7,2.5,1.5,1.9,1.8],"paint":[12.7,11.8,12.2,11.5,12.2,11.8,12.8,12.9,13,12.1,13.4,12.3,12.1,12.7,12.6]}},{"framework":"zune-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.3,14.8,16.6,15.3,15.2,14.8,14.6,15.2,14.5,14.6,14.8,14.7,14.9,14.7,14.2],"script":[3.7,3.4,3.6,3.6,3.8,3.5,3.6,3.9,3.6,3.6,3.6,3.5,3.8,3.5,3.3],"paint":[10.3,10.5,11.9,10.7,10.8,10.6,10.3,10.7,10.4,10.3,10.7,10.3,10.3,10.6,10.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[431.7,434.6,420.8,432.2,434.8,431.8,430.8,426.4,426.3,435.6,435.8,425.2,434.4,436.4,423.9],"script":[163.3,166.1,163.6,162.9,166.4,163.8,163.5,166.4,166,166.8,166,165.5,165.9,166.8,164],"paint":[261.3,261.7,250.4,262,261.8,261,260.5,252.9,253.8,262.2,262.8,252.6,261.7,262.9,253.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.4,47.1,46.9,47.3,47.3,46.4,46.9,47.3,46.6,47.6,47.1,47.7,47.3,47.2,47.7],"script":[17.6,17.6,17.8,17.8,18,17.7,17.4,17.7,17.6,18,17.6,18,17.8,18,17.9],"paint":[28,28.5,28.1,28.5,28.4,27.8,28.6,28.6,28.1,28.7,28.6,28.7,28.6,28.3,28.8]}},{"framework":"zune-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,11.3,12.8,10.9,11.5,11.8,11.3,11.7,12.9,10.9,11.6,11.2,11.8,11.2,11.6],"script":[8.9,9.2,10.7,9.4,9.4,9.9,9.2,8.9,10.8,9.5,9.8,9.1,9.5,8.9,10],"paint":[1,1.5,1.6,0.2,0.9,1.1,1.5,1.9,1.7,0.4,0.6,0.3,0.2,1.5,0.6]}},{"framework":"zune-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6532020568847656]}},{"framework":"zune-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6772680282592773]}},{"framework":"zune-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7132863998413086]}},{"framework":"zune-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.956146240234375]}},{"framework":"zune-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.342127799987793]}},{"framework":"zune-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"zune-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"zune-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"01_run1k","values":{"total":[37.4,37.4,37.3,37.1,37.8,37.8,37.7,37.3,37.4,37.6,37.6,37,37.4,37.7,37.6],"script":[13.1,13,13.1,13.2,12.8,13.1,13,12.7,13.1,12.9,13,12.9,13,13.1,12.9],"paint":[23.8,23.9,23.6,23.4,24.3,24.2,24.2,24,23.7,24.1,24.1,23.6,23.9,24,24.2]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"02_replace1k","values":{"total":[14.3,14.6,14.5,14.1,14.5,14.6,14.2,14.6,13.5,14.4,14.2,14.1,14.5,14.5,14.2],"script":[3.8,3.9,4,3.8,3.7,3.8,3.7,3.9,3.5,3.7,3.8,3.7,3.7,3.8,3.8],"paint":[10.1,10.3,10.2,10,10.4,10.4,10.1,10.4,9.7,10.3,10.1,10.1,10.4,10.3,10.1]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,13.1,12.8,13.5,13.6,12.3,13.4,13.7,12.6,13.1,12.5,13.1,13,12.8,13.3],"script":[1,1.4,1.4,1.7,1.8,1,1.6,1.9,1.8,1.4,1.3,1.6,1.4,0.9,1.5],"paint":[10.4,10.5,10.5,10,10.8,10.1,10.3,10.7,9.8,10.3,10.5,10.5,10.4,10.6,10.9]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"04_select1k","values":{"total":[4.9,3.9,3.9,3.1,2.7,5.1,3.3,4,3.2,3.5,3.5,2.9,3.1,2.6,3,2.7,3.3,3,2.8,5.2,4.2,6.1,4.4,2.9,2.8],"script":[1.8,1.3,2,1,1.2,1,1.7,1,0.9,1.5,1.4,0.8,1,1.2,1.3,0.7,1.2,0.7,1.2,1,1.2,1.2,1.2,0.3,0.6],"paint":[1,1.3,1.3,0.9,1.3,1.5,1.5,1.6,1.3,1.5,1.3,1.2,2,1.3,1.6,1.2,1.9,2.2,0.7,2.3,1.5,1.6,1.8,2.2,1.3]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"05_swap1k","values":{"total":[8.9,8.8,10.3,9.7,9.1,8.9,8.8,8.9,9.3,9.1,9.3,8.5,8.5,8.7,8.7],"script":[0.6,0.1,1.1,1,0.3,0.1,0.1,0.1,0.6,0.1,0.1,0.5,0.2,0.1,0.9],"paint":[7,7.5,8.6,7.6,7.7,7.7,6.6,7.4,8.1,8.3,8.2,6.9,7.4,6.9,6.5]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,13.1,12.7,12.5,12.7,12.8,13.1,13.5,13.3,12.6,13.1,12.7,12.8,12.9,12.5],"script":[2,2.1,2,2,1.9,1.9,2.1,2,2.2,1.8,1.9,1.9,2,2.1,1.9],"paint":[10.3,10.3,9.9,9.9,10.2,10.2,10.4,10.9,10.3,10.1,10.4,10.1,10.2,10.4,9.7]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"07_create10k","values":{"total":[379.1,374.5,374.5,378,377.6,377,378.4,378.1,375.3,378.8,375,378,377.8,375.8,377.4],"script":[132.8,132.1,131.8,133.6,132.9,132.7,132.2,133.2,131.9,131.4,133.4,133,132.5,132.5,132.1],"paint":[240.3,236.1,237,237.8,238.9,237.5,239.7,238.4,237.3,241.4,235.6,238.9,239.2,237.6,237.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.4,41.7,41.6,41.6,41.7,41.7,42.9,41.7,41.4,42.1,41.8,41.7,42,41.6,41.9],"script":[13.2,13,13.4,13.3,13.1,13.5,13.5,13.2,13,13.7,13.2,13.5,13.3,13.2,13],"paint":[27.4,27.8,27.3,27.4,27.7,27.3,28.5,27.6,27.5,27.6,27.6,27.3,27.9,27.5,28.1]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,12,12.5,12.6,13.4,13.6,12.4,11.8,12.9,12.7,13.9,13.5,11.8,12.5,12.1],"script":[10.7,9.7,10.2,10,10.6,11.5,9.9,9.9,10.6,11.1,11.9,11.2,10.3,10.1,10.3],"paint":[1.9,1.2,0.6,1.6,1.6,1.1,2.2,0.3,0.8,1.1,1,1.6,0.8,0.7,0.9]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6471967697143555]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.436075210571289]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.448227882385254]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9401483535766602]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.1415433883667]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.4]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"01_run1k","values":{"total":[32.9,33.4,33.2,33.5,32.6,32.8,33.2,33.2,33.3,33.3,32.8,32.9,33.1,33.3,33.7],"script":[8.4,8.6,8.7,8.7,8.3,8.4,8.5,8.4,8.4,8.4,8.3,8.3,8.5,8.5,8.6],"paint":[24,24.2,23.9,24.2,23.8,23.8,24.1,24.2,24.3,24.3,23.9,24,24,24.3,24.5]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"02_replace1k","values":{"total":[18.6,18.8,18.9,19.1,19,18.2,18.4,18.2,19,18.9,18.1,18.4,18.7,18.8,18.3],"script":[7.4,7.7,7.6,7.8,7.7,7.4,7.5,7.4,7.7,7.8,7.4,7.6,7.7,7.7,7.4],"paint":[10.6,10.5,10.7,10.7,10.6,10.2,10.3,10.2,10.6,10.5,10.2,10.2,10.4,10.6,10.3]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[41.4,40.7,41.7,40.5,40.5,43,41.9,40.6,42.4,41.5,40.6,38.5,41,41.9,41.5],"script":[27.3,27.8,28,27.4,25.9,28,27.2,28.1,28.6,28.1,26.5,25.4,27.6,27.3,27.4],"paint":[11.9,11,11.5,11.3,11.1,12.3,12.8,10.8,11.6,11.2,10.7,11.2,11.9,12.4,12]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"04_select1k","values":{"total":[31.5,32.2,30.1,31.1,31.7,31.8,30.8,30.5,31.5,33.5,32.3,33.5,33.3,31.7,33,33,32.3,30.4,31,30.4,31.6,30.6,29.6,30.9,29.1],"script":[27.5,28.8,26.6,27,28.4,28.2,27.7,26.9,27.6,28.9,28.3,29.4,29.7,27.5,28.1,28.6,28.1,26.5,27.6,26.7,27.7,26,26.6,27.2,26.5],"paint":[2.1,1.6,1,1.8,1.9,2.3,1.7,1.5,1.2,2.8,1.3,1.5,1.5,2.3,3.3,1.7,2.3,2.6,2.3,1.4,2.1,3.3,1.1,2.1,1.6]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"05_swap1k","values":{"total":[37.4,37.4,37.7,37.1,38.2,37.4,38,36.6,39.4,37.1,37.9,37.7,38.3,38,36.7],"script":[26.2,26.3,26.8,27.1,27.6,26.7,27.7,25.5,27.8,26.4,26.9,27.8,27.4,27.1,26.5],"paint":[9.3,8.7,10,7.4,9.5,8.5,8.5,8,9.5,7.9,8.1,7.6,8.3,9.1,7.4]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[36.5,37.5,38.3,38,37.3,36.8,38.3,39,37.6,37.6,36.7,37.4,37.6,37.2,36.5],"script":[15.2,15.4,16.3,15.9,15.4,15.4,15.6,15.9,15.2,15.6,15.1,15.1,15.4,15,15.1],"paint":[19.9,20.6,20.6,20.6,20.5,20.2,21,22,20.9,20.4,20.3,20.9,20.6,20.8,20.5]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"07_create10k","values":{"total":[332.3,331.5,334,333.2,332.9,332.8,330.8,328.8,333.2,334.5,334.3,333.5,335.5,334.3,332.2],"script":[90.2,89.3,90.2,89.4,88.6,88.5,87.7,87.5,89.8,89.2,88.6,88.9,90.5,91.4,90.3],"paint":[236.2,236.2,237.8,236.9,238.2,237.7,237,235.3,237.4,238.8,239.5,238.3,238.8,236.3,235.5]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.4,43.5,42.9,43,43.7,44.1,43.2,44.2,43.1,43.6,44,43,44.4,43.5,44.1],"script":[15.4,15.1,14.8,15.2,15.3,15.5,15.2,15.6,14.9,15.2,15.5,14.9,15.8,15.2,15.4],"paint":[28.1,27.4,27,26.8,27.5,27.7,27.1,27.7,27.3,27.3,27.5,27.1,27.6,27.3,27.7]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,11.8,13.3,10.9,10.7,11.1,12.5,12.1,11.8,10.9,12.2,11.1,13.2,11.5,10.9],"script":[9.7,9.4,11,8.7,9.2,9.1,10.3,9.5,9,9.7,10.4,9.4,10.8,8.8,9.1],"paint":[1.4,2.2,0.2,1.2,0.6,1.5,1.9,1.7,2.4,0.3,0.6,0.7,1.3,1.9,1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6329822540283203]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.590728759765625]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6213626861572266]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9519672393798828]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.95237445831299]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"01_run1k","values":{"total":[77.3,78.5,81.9,77.4,74.7,79.2,76.3,78.8,81.2,76.5,81.7,78.2,79.1,78,81.7],"script":[46.4,46.6,46.9,47.2,46.6,45.7,46.6,47.1,46.5,47.2,46.2,46.1,46.4,47.2,46.6],"paint":[25.3,25.7,26,25.6,25.6,25.7,25.3,25.6,25.8,25.6,25.6,25.6,25.6,25.7,25.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"02_replace1k","values":{"total":[83.9,79.6,81.2,76.7,81.2,77,77.6,79.7,79.3,81,81.1,83.2,83.3,79.8,81.1],"script":[50.5,48.8,48,48.5,49,48.2,48.2,49.8,48.5,48.4,49.1,48.8,49,49.3,48.7],"paint":[26,25.5,26,25.6,25.5,25.7,25.9,26.1,26,25.7,26,25.5,25.9,25.5,25.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[85.5,82.1,67.4,66,83.1,68.2,66.4,65.7,67.1,84.9,81.3,84.3,81.7,68.1,85.2],"script":[38.5,38.8,38.8,38.5,39.6,38.8,39.1,38.3,39.7,38.3,37.5,38.6,37,37.1,40.7],"paint":[27,26,26.5,26.3,25.3,26.4,26,26.4,26.1,27.3,26.1,27.4,26.8,27.6,26.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"04_select1k","values":{"total":[11.4,10.1,12.7,13.5,9.6,9.7,12.2,10,10.6,14.2,15.4,9.1,13.4,14.7,9.5,15.8,12.8,9.5,16.1,12.2,13.7,12.3,11.8,12.2,12.8],"script":[5.8,5.5,5.2,6.4,5.8,6,5.4,5.9,6.6,5.8,5.1,5,4.9,6.2,5.4,5.5,5.6,4.8,7,6.1,5.7,6.4,6,6.6,5.2],"paint":[2.9,2.9,1.6,2,2.2,1.9,2.5,3.3,2.9,1.7,2.9,2.4,2.7,2.5,2.6,3,2.7,2.3,2.6,2.8,2.4,3.8,3.7,4.1,3.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"05_swap1k","values":{"total":[38.8,38.8,36.3,37.8,38.4,36.4,36.3,37.7,37.9,54,38.4,39.2,54,37.6,36.1],"script":[19.6,19.6,18.9,19.9,20.2,19.4,19.2,19.8,19.4,18.7,19.8,20.3,19,18.6,18.9],"paint":[17.3,16,17,16.4,15.1,15.3,14.8,16.8,16.4,17.6,16.7,16.8,15.1,14.9,15.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[165,162.4,166.9,162.8,166.6,169.1,172.2,167,166.4,163.1,171.3,167.1,169.7,163.8,169.4],"script":[112.6,111.7,114.2,113.5,114.7,112.5,119.4,113.8,112.7,111.7,115.8,114.7,115,113.3,113.1],"paint":[49.5,48.3,48.9,47.4,49.9,48.6,49.4,49,50.1,49.2,48.5,49.7,51,47.3,48.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"07_create10k","values":{"total":[658.1,648.3,657.6,647.5,651.6,660.3,665.3,660.4,658.6,658.9,662.7,658.2,662.2,667.7,661.3],"script":[398.4,395.3,400.9,394.4,394.9,399.3,402.5,398.2,401.4,398.3,403.4,400.9,403.1,404.9,401.3],"paint":[255.8,248.9,252.6,249,252.6,256.9,258.4,258,253,256.6,254.3,253,254.9,257.9,255.8]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.7,93.2,87.2,90,87.3,86.7,89.1,87.1,88.8,88.3,88.2,88.2,88.5,88.2,87.6],"script":[52.5,54,52.7,53.2,51.8,51.1,53.8,52.4,52.9,51.1,52.1,52.8,53.1,53.7,52.8],"paint":[29.6,29.5,29.5,29.7,29.8,29.6,30.3,29.5,30.3,29.6,30.6,30,30,29.5,29.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.1,20.6,18.7,20,42.3,41.6,20.1,21.7,21.6,21.2,19.4,20.4,19,38,19.8],"script":[18.1,16.2,15.7,15.8,17.6,16.7,16.6,17.1,18.9,17.5,15.7,15.8,16.4,14.8,16.7],"paint":[3.4,2.5,1.9,2.7,2.7,2,1.5,3.4,1.8,2.9,2,2.8,1.7,2.9,2]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.587458610534668]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.855247497558594]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.541019439697266]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[44.735355377197266]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[89.51975631713867]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.4]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[41.7,32,39.8,43.3,43.4,37.6,43.1,32.9,44,41,33.9,43.2,43.9,32.6,40.6],"script":[7,7.1,5.4,7.2,7.4,7.1,7.1,7.5,7,5.4,7.7,6.9,7.6,7.2,5.4],"paint":[23.3,24.4,23.7,23.4,23.8,24.3,23.7,24.8,23.8,23.7,24.3,23.4,23.8,24.5,23.6]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[22.2,22.1,25.2,23,22.7,22.8,23.7,22.8,24.4,22.4,22.7,23.8,24.1,23.8,24.6],"script":[6.7,6.6,6.8,6.7,6.7,6.6,6.6,7.1,6.8,6.7,6.7,7.2,6.7,6.9,6.6],"paint":[10.6,10.9,10.6,11,10.6,10.4,10.5,10.6,11.1,10.5,10.9,10.8,10.9,10.4,10.6]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38.6,35.1,18.3,17.7,16.7,17,38,19.9,35.7,35.4,33.8,34.4,15.8,34.6,37],"script":[6.1,4.7,5.1,3.9,4.2,4.3,4,4.7,4.2,3.9,4.8,3.6,4.7,4.8,4.6],"paint":[13,13.3,12.1,12.6,12.2,11.2,14.5,13.3,11.7,12.6,12,12.4,10.4,12.5,12.9]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[10.9,12.9,7.1,5.7,6.3,6.3,12,11.7,9.1,6.1,9.8,14,9.7,6.3,9.6,5.7,12.4,6.5,7.4,6.3,6.9,11.8,7.9,6.4,6.1],"script":[2.4,2.8,3,1.6,2.6,2.8,2.5,2.4,2.2,2.1,2.7,2.3,2.6,3.2,2.8,2.4,2.9,1.4,2.8,2.1,1.9,2.4,3.6,2.2,2.3],"paint":[2.9,3.1,2.6,2.7,1.3,2.7,3.5,2.8,2.9,2.5,2.4,2.2,1.4,2.4,2.1,1.6,3.4,1.6,2.2,2.1,3,2.2,3.4,2,1.9]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[29.9,29.9,28.6,29.2,28.9,29.5,32.3,12.7,30.3,30.3,29.4,28.6,29,29.7,29.4],"script":[3.4,2,2.3,2.6,2.3,2.8,1.6,2.3,3,1.9,2.7,1.8,1.8,2.9,1.7],"paint":[8.9,9,8.8,8.8,8.5,8.3,11,9.8,9,10.7,10,9.6,8.7,8.9,10.2]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[42,36.7,38.4,38.6,38.2,38.4,37.1,36.5,36.8,36,37.4,38.9,35.3,37.7,36.1],"script":[12,11.9,12.9,11.9,12.2,13.2,12,13,13,11.6,12.4,12.2,12.2,13.2,11.8],"paint":[22.4,23.3,23.1,22.1,22.4,22.1,22.5,22,21.9,22.7,22.8,22.8,22.1,23.1,22.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[314.4,315.3,323.3,319.6,322.8,315.8,322.9,315.2,323.5,316.8,318.6,316.2,319.3,323.3,319.2],"script":[71,75.7,74.6,74.4,74.4,72,73.8,73.6,76.1,71.1,74.2,71.4,74.6,74,74.4],"paint":[237.6,236.3,238.5,238.8,240,237.9,241,238.4,242.9,237.7,239.3,238.7,236.6,240.1,237.2]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41,41.1,41.5,40.7,41.9,41.9,41.8,41.2,41.6,41.1,42.6,41.8,41.3,41.4,41],"script":[7.3,7.2,7.1,6.9,6.9,7.1,7.1,7.2,7,7,7.2,7,7,7.3,7.1],"paint":[27.6,27.6,28.2,27.7,28.9,28.5,28.5,27.7,28.4,28,27.4,28.5,28.2,28.2,27.8]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,12.7,11.9,11.6,12.6,34.6,12.8,11.6,13.3,12.2,13.9,12.6,13.6,10.8,35.6],"script":[7.8,8.4,8.6,7.4,8,9.7,9.3,8,8.4,8.6,9.2,8.6,9.5,7.6,8.9],"paint":[2.3,1.3,2.7,2.9,1.5,3.2,3.1,1.7,2,2,1.4,1.9,2.2,0.9,1.8]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5981960296630859]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8423995971679688]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9349164962768555]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7673492431640625]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.788799285888672]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.1]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"01_run1k","values":{"total":[37.1,39.1,37.6,38,37.2,37.7,37,37.5,37.1,37.3,37.4,37.8,37.5,37.4,37.5],"script":[12.4,13.5,13.1,13.3,13.1,13.2,12.3,13.1,12.8,12.5,12.7,13.3,12.9,12.7,12.8],"paint":[24,24.9,23.9,24.1,23.4,23.8,24.1,23.8,23.6,24.2,24.1,23.9,23.9,24,24]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"02_replace1k","values":{"total":[13.8,13.8,13.3,13.8,14,13,13,13.6,13.2,13.7,13,13.9,13.7,13.9,13.4],"script":[3.4,3.4,3.4,3.4,3.4,3,3,3.3,3,3.4,3,3.4,3.4,3.4,3.4],"paint":[10,10,9.6,10,10.2,9.6,9.6,9.9,9.8,9.9,9.6,10.1,9.9,10.2,9.7]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,11.5,13.2,13.3,13.2,12,11.8,12.8,12.5,14.6,14,13.1,13.4,12.2,12.4],"script":[1.4,1.2,1,0.9,0.9,0.8,1.1,1.2,0.8,1.7,1,0.6,1.5,1.2,0.3],"paint":[9.7,9.3,10.8,10.5,10.6,10.4,9.8,10.1,10.6,11.7,11.7,11.1,10.9,9.9,10.6]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"04_select1k","values":{"total":[5.9,8,5.8,6.8,5.5,5.9,6,7.3,7.2,6.5,5.8,5.8,6.4,7.3,6.6,6.9,6.5,8.1,5.7,5.9,5.2,6.4,6.4,6.3,6.1],"script":[3.4,4,4.3,4.4,3.4,3.5,3.5,4.3,4.5,3.5,3.9,4.2,3.6,4.5,4.9,4.3,3.9,4.7,3.6,3.8,4,4.3,3.9,4.1,4.2],"paint":[1.1,1.5,1,1.5,1.2,2.2,1.9,2.9,1.5,2.1,1.1,0.9,2.7,1.1,1.5,2.3,1.9,1.6,1,1.6,1,1.6,1.7,1.2,1]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.9,9.6,9.7,9.6,9.1,10.3,10.4,10.9,10.1,9.3,10.3,10.7,9.2,8.8,9.6],"script":[0.8,1,1,0.6,0.2,0.9,1.2,1.5,0.8,0.2,1.3,1,1,0.6,1],"paint":[7.6,7.4,6.8,8.1,7.6,8.5,7.3,8.1,8.4,8.1,7.9,7.9,7,7.7,6.7]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[27.4,27.9,27.2,27.9,27.8,28.5,28,27,26,28.9,26.1,28.3,28.6,28.5,27.9],"script":[6.6,6.8,6.1,6.6,6.8,7.3,6.7,6.1,6,6.8,6.1,7.4,7.2,7.2,7.2],"paint":[19.8,19.6,19.8,20.3,19.9,19.7,20.1,19.7,18.6,20.8,19.3,19.6,20.2,20,19.8]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"07_create10k","values":{"total":[798.5,814.4,790.3,781,782.7,806.5,782.8,782.2,798.4,782.7,776.8,773.7,773.3,791.5,773.6],"script":[211.9,224.3,191.1,200.9,203.6,214.5,196.2,197.6,198.4,193,201.3,194.1,191.9,201.4,194.8],"paint":[253.3,255.8,255.2,253.5,252.4,254.5,257.2,256.6,257.7,253.4,253.1,256.9,255.6,255.3,255.3]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.3,41.8,43.8,42.6,42.4,42.9,44.5,42.9,43.2,43.3,42.9,42.8,43.7,43.1,43.4],"script":[15.3,14.4,15.4,14.9,14.4,14.5,15,14.8,14.8,15,14.8,14.5,15.1,14.8,14.9],"paint":[27.8,26.3,27.1,26.5,26.9,27.3,27.2,27,27,27.3,26.8,27.2,27.3,27.2,27.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.6,19,19.1,18.4,19.4,19.7,18.4,17.9,19.3,20.2,19.7,19,20.8,17.6,18.7],"script":[16.2,17.4,17,16.3,17.3,17.6,16.6,15.5,17.3,18.2,17.7,16.5,18.5,15.3,16.8],"paint":[1.9,0.5,1,1.2,1,1.4,0.7,1.3,1.7,1.1,1.2,1.4,0.9,0.2,0.7]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.431222915649414]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.532062530517578]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.538534164428711]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7809200286865234]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.61854076385498]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[354]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.5]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[298.2]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"01_run1k","values":{"total":[33.4,31,31.3,30.8,31.1,33.7,31.3,34.2,31.9,33.4,33.2,33.5,33.4,33.6,31.1],"script":[8.1,7.5,7.5,7.4,7.6,8.1,7.7,8.9,7.9,8.1,8.1,8.3,8.2,8.1,7.7],"paint":[24.7,22.9,23.3,22.9,23,25,23.1,24.8,23.5,24.7,24.6,24.6,24.6,25,22.8]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"02_replace1k","values":{"total":[10.2,10,10.2,10.5,10.3,9.9,10.1,10,9.9,9.9,9.7,10.6,9.8,10.2,9.7],"script":[3.3,3.2,3.2,3.5,3.4,3.2,3.3,3.2,3.2,3.1,3.1,3.5,3.1,3.3,3],"paint":[6.5,6.3,6.3,6.7,6.5,6.3,6.4,6.4,6.3,6.4,6.3,6.7,6.4,6.5,6.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.1,14.1,15.3,14,15,14.9,13.9,13.2,13.9,14.3,13.4,14.1,14.5,14.4,13.8],"script":[2.7,2.6,3.5,2.9,3.3,3.3,2.8,2.2,2.8,2.1,2.5,2.9,3.4,3.4,2.8],"paint":[10.3,10,11.5,9.4,10.5,10.6,10.6,9.5,9.7,8.3,10,10.7,10.6,10,10]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"04_select1k","values":{"total":[1.8,1.8,1.6,1.8,2.1,2.1,2.5,1.7,1.8,2.2,2.5,1.6,2.4,2.1,1.7,1.9,1.9,2.3,1.4,1.9,2.1,2,1.7,1.8,1.9],"script":[0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0],"paint":[1.6,1.7,1.1,1,1,2,1.8,1.5,0.9,2.1,1.8,1,1.4,1.6,1.5,1,0.7,1.3,0.9,1.7,0.4,1.2,1.5,1.7,0.9]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.1,10.4,10.1,8.7,9.8,9.7,9.9,9.9,10.4,9.8,9.8,9.4,9.7,9.7,10.4],"script":[1.7,1.5,1.2,0.3,0.7,0.3,1.3,0.8,1.4,0.9,1.1,1.6,0.9,1.7,0.3],"paint":[7.4,8.3,8.1,7.6,6.8,7.3,7.5,7.7,8.3,7.9,7.5,6.8,7.9,7.3,7.9]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.1,10.7,10.9,10.9,10.9,11.2,10.8,11,10.9,10.9,10.9,10.5,10.7],"script":[0.4,0.6,0.3,0.4,0.6,0.2,0.6,0.6,0.4,0.6,0.4,0.6,0.5,0.2,0.3],"paint":[10.1,10,9.6,9.7,10,9.5,9.7,10,9.5,9.6,9,10,9.7,9.6,9.7]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"07_create10k","values":{"total":[327.8,328.7,329.4,331.3,327.8,328.3,328.2,329.8,330,328.2,327.3,327.6,327.7,327.6,328.7],"script":[83.6,83.5,83.1,83,82.4,82.9,82.8,82.5,83.5,83.9,81.2,82.6,82.4,81.4,83.6],"paint":[238.2,239.1,240.2,242.4,239.5,238.7,239.3,240.5,240.6,238.4,240,239.1,238.8,240.1,239]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.1,36.1,36.9,36.8,36.6,37,36.8,36.7,37,36.8,36.7,37.7,36.9,37,37.1],"script":[8.7,8.6,8.8,9.2,9.1,9.1,9,9,9.4,9,9.1,9,9.1,9.2,9.1],"paint":[27.5,26.7,27.3,26.7,26.6,27,26.6,26.8,26.7,27,26.8,27.7,26.9,26.8,27.2]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.5,9.7,10.3,9.7,12.5,9.2,10.6,9.5,9.6,11.1,9.8,9.7,9.7,9.9],"script":[7.8,6.7,7.8,7.6,8,10,7.5,7.9,8.1,8,8.8,8.2,6.7,7.8,7.6],"paint":[1.3,2.5,1,1.8,0.6,2.2,0.7,0.3,1.2,1,1.6,0.2,1.6,1,1.9]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5409126281738281]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5196619033813477]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6334314346313477]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1064128875732422]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.931288719177246]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.9]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.6]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[40.6,40.6,40.3,40.9,41,40.4,41,40.2,40.8,41.5,41.4,41.2,40.9,40.4,40.5],"script":[17,17.4,16.9,17.3,17.1,17.1,17.2,16.8,17.2,17.7,17.5,17.4,17.3,16.7,17],"paint":[23.1,22.9,23,23.1,23.4,22.9,23.4,23,23.2,23.4,23.5,23.4,23.1,23.2,23.1]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[44.6,44.8,44.4,44.7,44.1,45.3,44.7,44.4,45,44.6,44.7,44.9,44.6,44.6,44.7],"script":[19.2,20,19.2,19.4,19.2,19.8,19.2,19.4,19.8,19.1,19.3,19.4,19.5,19.2,19.4],"paint":[24.9,24.3,24.7,24.7,24.4,25,25.2,24.6,24.7,25,24.9,24.9,24.6,24.9,24.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.1,15,13.8,14.8,13.7,14.7,16.7,14.8,14.8,13.9,14.3,15.1,15.5,15.3,14.9],"script":[2.6,2.6,2.3,2.7,2.1,2,3.2,2.2,2.4,2.7,2.5,2.4,2.7,2.4,2.8],"paint":[12.4,11.1,10,10.8,10.7,11.5,12,10.9,10.4,10.3,10.9,12,11.4,11.8,10.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[5.3,6.6,5.7,6,7.1,5.7,5.5,5.9,6,5.3,5.7,5.7,4.8,4.9,6.7,5.3,5.5,5.2,5.8,4.9,6,5.7,5,5.1,5.8],"script":[3.3,3.6,3.5,3.6,3.4,3.9,3.8,3.9,3.7,3.3,3,3.8,2.8,2.9,3.7,2.9,3,4,3.3,2.9,3,3.2,2.7,3,3.8],"paint":[1.1,2.1,1.4,2.3,1.6,1.6,0.7,1.1,2.1,1.1,1.5,1.3,1.9,1.2,1.7,1.3,2.3,1.1,1.6,1.3,1.6,1.4,1.8,1.6,1.1]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[18.8,18,18.6,18.4,18.4,19,17.8,18.1,19.5,19.9,19.1,17.5,19.1,17.9,18.4],"script":[3.1,3.6,3.3,3.3,3.2,3.9,3.6,3.5,2.8,3,4,3.3,4.6,3.6,3.1],"paint":[14.1,13.2,13.7,12.3,14.5,13.5,12.9,11.8,13.9,15.8,14.1,13.1,12.8,13.1,13.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,11.8,11.5,11.5,11.7,11.9,11.6,11.5,12.2,11.8,12.1,11.7,11.5,10.9],"script":[0.9,0.8,0.9,0.7,0.7,0.7,0.7,0.9,0.7,0.7,0.7,1,0.8,0.8,0.7],"paint":[10.3,10.5,10.3,10.2,10.2,10.3,10.7,9.8,10.3,10.5,10.2,10.4,10.4,10,9.6]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[393.5,392.1,391.2,391.3,390.9,393.3,391.3,395.5,392.9,391.4,392,392.2,395,389.7,392.9],"script":[148.6,146.3,146.5,145,146.4,146.8,145.2,147.6,147.2,144.7,146.8,146,146.6,144.8,146.9],"paint":[238.8,240,238.7,239.6,238.5,241,240.1,241.5,240.1,241,239.2,240.5,242.1,239,240.5]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.7,46.8,47.7,46.8,46.3,47.1,47.3,46.6,46.4,46.7,45.8,46.8,48.1,46.4,46.6],"script":[18,18.2,18.6,18,17.6,18.1,18.1,17.9,18,18.1,17.3,18.2,18.1,17.8,17.8],"paint":[27.9,27.9,28.4,27.9,27.8,28.2,28.4,27.8,27.6,27.8,27.7,27.8,29.3,27.8,28.1]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.5,23,22.9,23.3,22.8,24.8,23.1,23.3,23.7,24.6,23.3,22.8,23.1,23.4,23.8],"script":[21.2,21.7,21.4,21.3,21.7,23.3,21.7,20.9,22.1,22.5,21.4,21.4,21.4,21.4,22.2],"paint":[0.3,0.8,0.6,1.9,0.9,1.4,0.4,2.3,1.4,1.9,1.6,0.9,1.1,0.9,1.4]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9962968826293945]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.899832725524902]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.982831001281738]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5340776443481445]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.76210117340088]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[284.5]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[293.2]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[49,49.9,49.5,49.4,49.7,49.3,49.2,50,49.6,49.5,49,49.4,49.4,49.7,49.1],"script":[24.2,24.4,24.4,24.3,24.4,24.3,24.3,24.3,24.3,24.6,24.4,24.5,24.5,24.5,24.3],"paint":[24.2,24.9,24.6,24.5,24.7,24.4,24.3,25.1,24.7,24.3,24,24.3,24.3,24.6,24.2]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[52.8,53.8,52.5,52.8,52.5,54,52.1,51.9,54.6,52.4,53,54,53.9,53.6,53],"script":[27.4,28.5,27.2,27.8,27.1,27.4,27,26.9,28.8,27.3,28.1,27.7,27,28.4,27.7],"paint":[24.8,24.6,24.5,24.2,24.7,25.9,24.5,24.2,25.1,24.4,24.3,25.6,26.3,24.5,24.6]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[125,125.2,124.7,124.5,124.7,122.5,125.4,125.7,123.1,125.6,124,126.8,124.5,123.5,123.7],"script":[99.4,100.3,99.3,98.7,98.9,97.7,100,100,98.6,98.4,98.7,100.3,99.2,97,98.8],"paint":[23,21.3,23.4,24.2,22.5,22.5,23.3,23.5,22.3,25.7,22.7,23.6,23.1,23.8,23.3]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.1,3.6,4.1,4.5,4.2,3.6,5.3,3.7,3.2,4.1,3.8,3.9,5.8,4.1,4.6,3.8,5.6,5.2,4,6.4,4.1,3.6,4.8,4.2,4.2],"script":[1.5,1.7,2.3,1.8,1.7,1.1,1.9,1.5,1.1,1.9,1.8,2.3,1.9,1.8,1.5,1.7,2,2.5,1.6,2.1,1.8,1.5,1.3,2.1,1.7],"paint":[1.8,1.1,1.7,0.5,1,2,1.7,0.8,1.9,1,1.2,1,1.7,1.2,1.1,1.2,1.2,1.1,1.6,0.7,2.1,1.5,1.7,1.2,1.5]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[18.4,17.9,18.4,17.8,16.9,19.7,17.9,16.4,16.9,17.1,17.6,18.4,17.6,17.2,16.5],"script":[3.4,4.4,4.4,3.3,3.5,3.9,3.2,3.1,4,3.6,3.9,4.3,3.6,3.4,3.5],"paint":[14.2,12.5,13.4,13.5,12.5,14.6,13.6,12.4,11.9,12.3,12.1,13.1,12.5,12.8,12]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12.2,12.5,11.9,12.1,12.1,12.1,11.8,12.2,12.1,12.1,12.3,12,12.1,12.2],"script":[1.3,1.3,1.5,1.3,1.3,1.2,1.5,1.6,1.4,1.2,1.3,1.4,1.3,1.5,1.5],"paint":[10,10.2,10.4,10,9.8,10.3,9.8,9.8,10,10.5,10.1,10.3,9.7,10.1,10.1]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[489.9,491.1,489.4,490.3,495.4,489.7,492.7,491.9,491.2,498,493.3,490.8,489.7,492.7,489.7],"script":[234.8,233.4,235.2,235.7,234.1,236.3,234.8,233.5,236.1,239.7,235.2,232.9,235.4,235,234.6],"paint":[248.3,251.1,247.4,248.3,252.7,246.7,251.2,251.3,248.5,251.6,251.4,250.6,247.8,251.3,248.7]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[107.3,106.4,108.1,106.5,107.9,107.4,107.6,106.6,106.9,107.1,108.5,106.8,109.8,109.1,109.9],"script":[55.4,54,55.1,54,55.2,54.9,55.2,54.1,55.2,55.4,55.2,54.2,57.4,56.4,56.1],"paint":[51,51.2,52,51.5,51.6,51.5,51.4,51.4,50.7,50.7,52.2,51.6,51.4,51.6,52.7]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15,14.4,14.6,16.1,14.3,14.2,14.8,15,13.9,14.8,16.5,14.4,15.9,14.4,15.8],"script":[12.6,12.7,12.5,14.1,12.5,12.2,12.8,13.1,11.9,12.5,14,12.1,14.3,12.6,12.5],"paint":[1.1,1.1,1.4,1.2,0.6,1.2,1.6,0.9,1.4,1.2,0.6,2.1,0.3,0.9,1.6]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8388519287109375]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9068212509155273]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.97609806060791]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9950199127197266]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.474936485290527]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[413.1]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[100.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[416.6]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[33.4,32.5,32.6,33.1,33.5,33.1,33.6,33.7,33.2,33.3,32.3,33.1,32.4,33.1,33.3],"script":[8.4,8,8.2,8.4,8.5,8.1,8.6,8.5,8.4,8.4,7.8,8.4,7.7,8.2,8.2],"paint":[24.3,23.9,23.8,24.1,24.4,24.4,24.4,24.6,24.2,24.4,23.9,24.1,24.1,24.3,24.6]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[14.8,15.2,14.7,15.4,15.6,14.6,15.3,15.1,14.7,15.7,15.5,15.1,14.7,14.8,14.6],"script":[4.5,4.8,4.4,4.9,4.9,4.4,4.6,4.4,4.5,5,4.9,4.7,4.4,4.5,4.4],"paint":[9.9,10,9.9,10.2,10.3,9.8,10.3,10.3,9.9,10.3,10.3,10,9.9,9.8,9.9]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27,25.8,27.4,28.3,26.8,25.5,27.5,26.3,29.1,26.8,26.9,26.5,26.4,26.3,26.9],"script":[13.5,12.8,14,15.2,13.8,12.9,14.5,14.2,15.1,13.1,13.7,14.2,13.8,13.5,13.9],"paint":[11.7,10.8,11.5,10.2,10.9,10.4,11.1,10.4,12.1,11.3,10,10.4,10.7,11.2,11.3]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[15.2,14.5,15.7,13.9,13.9,14.3,15.6,15.3,14.5,14.4,14.4,14.6,15.6,16.3,14.3,14,15.5,15.1,14.1,15.3,14.9,15.4,15.1,14.5,14.4],"script":[12.2,11.7,11.9,10.6,10.8,11.1,12.4,12.5,12.2,11.6,11.5,12.1,12.1,13,11.7,11.2,12.2,11.5,11.1,12.7,11.5,11.5,11.6,11.6,10.8],"paint":[2.7,1.8,2.5,1.5,2,2,1.2,0.8,1.6,1.4,0.9,1.1,2.7,1.8,1.2,1.8,1.8,2.8,1.2,1.5,1.4,2.9,1.9,1.8,1.6]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[20.9,19.2,20.4,20.8,19.8,19.5,20,19.8,21.1,20.5,21.2,20.6,19.7,21.2,21],"script":[10.6,9.7,10.2,11.2,9.9,10.8,9.8,10.4,10.7,9.7,11.2,10.8,10.6,10.2,11.2],"paint":[8.9,7.6,8.7,7.1,7.6,7.2,7,6.6,8.1,8.8,8.9,7.1,7.2,8.5,8.2]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[29.3,29,28.5,29.3,30.4,31,30.2,28.8,29.4,29.5,30.8,28.6,29.4,30.1,29.6],"script":[7.9,7.7,7.4,8,8.2,7.9,8.2,7.9,7.9,8.8,8.8,7.8,8.4,8.8,8.4],"paint":[20.2,20.3,20,20.4,20.8,22,21,20,20.4,19,20.7,20,19.8,20.3,20.3]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[334.1,329,333.8,331.9,333.8,332,331,333.2,330.2,332,332.7,330.8,334.3,330.9,331.8],"script":[83.6,81.3,82.9,83.3,83.4,84,81.3,82.9,82.6,82.8,82.5,83.2,83.8,81.3,82.8],"paint":[243.9,241.4,244.5,242.3,243.7,241.7,243.6,243,241.3,243.1,243.8,241.2,243.6,242.9,242.6]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.7,39.7,40.1,39.6,39.9,39.5,39.8,39.3,39.9,40,38.7,40.5,39.7,39.5,39.7],"script":[11,11,11,10.9,10.9,10.9,11,10.9,11.2,11,11,11,10.9,10.8,11.1],"paint":[27.8,27.8,28.2,27.8,28,27.7,27.8,27.4,27.7,28.1,26.8,28.5,27.9,27.6,27.7]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.9,14,16.4,14.9,18.5,15,14.6,14,16.3,14.9,17.8,14.3,14.4,14.3,15.5],"script":[13.5,12.2,13.8,12.7,16.1,12.6,12,12.4,14.3,13.3,15.5,12.4,12.3,12.5,13.2],"paint":[1.2,0.2,0.3,1.9,1.1,1.3,1.6,0.2,0.8,0.7,1.6,0.9,1.9,1,1.3]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8199892044067383]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.413175582885742]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4658203125]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0068550109863281]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.60761833190918]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.7]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.8]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"01_run1k","values":{"total":[28.9,29.4,28.9,29.2,29.6,29.2,29.3,29.2,29.2,29.3,26.8,29.4,29.5,26.8,26.4],"script":[4.2,4.4,4.2,4.2,4.5,4.5,4.6,4.3,4.6,4.3,4,4.2,4.6,4,4],"paint":[24.3,24.5,24.3,24.6,24.7,24.3,24.3,24.5,24.2,24.6,22.4,24.8,24.4,22.4,22]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"02_replace1k","values":{"total":[12.6,12,12.1,11.8,12.2,11.7,12.1,11.9,11.9,12.8,11.7,11.9,12,12.1,12.2],"script":[2.1,1.6,1.8,1.6,1.7,1.6,1.7,1.7,1.6,2.1,1.5,1.7,1.6,1.6,1.6],"paint":[10.2,10.1,9.9,9.9,10.2,9.8,10.1,9.9,9.9,10.3,9.9,9.9,10,10.2,10.1]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,14,13.4,14.9,13.3,15,14.2,13.8,14.4,13.8,14.2,14.6,15.9,14.6,13.3],"script":[2.4,2.8,2.5,2.8,2.3,4,3.3,2.9,2.8,2.7,2.8,3.3,3.9,2.8,2.7],"paint":[9.6,10.1,10,11,9.2,10,9.7,9.5,10,10.2,9.6,9.8,10.9,9.5,9.9]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"04_select1k","values":{"total":[3.5,3,3.2,4,3.3,3,2.8,3.4,3.1,3.6,2.8,2.9,3.3,4.7,3.8,3.3,2.6,3,4.2,2.6,3.3,2.8,3,3.4,4.1],"script":[1.8,0.9,0.9,1.9,1.1,1.2,1,1.2,1.3,1.5,1.3,1,1.5,2.2,1.3,0.9,1.5,1.1,2.5,1.1,0.9,0.6,0.8,1.2,1.2],"paint":[1.2,1,1.3,1.9,1.1,1.1,1,1.3,1.1,1.3,1,1.1,1,1.5,2.4,1.3,1,1.6,1.6,1,2.3,2,1.1,1.9,2.7]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"05_swap1k","values":{"total":[11.8,11,11.3,11.2,12.5,12.1,12.4,11.8,11.5,11,11.5,11.3,11.9,11,11.5],"script":[2.6,2.5,3.1,2.2,3.8,3.1,3.5,2.5,2.9,2.4,2.7,2.6,2.8,3.2,2.9],"paint":[7.8,7,6.5,7.9,7.8,7,7.8,8.4,6.4,7.1,7.9,6.9,8.1,6.7,8.3]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.5,24.2,23.9,23.1,23.7,24.5,24.3,23.7,23.7,24.8,23.1,23.5,24.4,23.2,25.7],"script":[3.5,3.5,3.4,3.3,3.3,3.3,3.4,3.4,3.4,3.6,3.4,3.4,3.3,3.2,3.5],"paint":[19.4,20.1,19.5,19.1,19.7,20.5,20.2,19.6,19.3,20.5,19,19.6,20.3,19.3,21.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"07_create10k","values":{"total":[295.4,292.1,292.7,295.2,295.8,295.5,292.5,296.9,294.2,293.5,294.3,292.9,293.9,293.7,292.8],"script":[43.9,40.9,41.6,44.1,43.6,43.5,41.2,44.4,41.3,42.7,44,42.7,42.7,41.5,41.6],"paint":[245.3,245.1,244.8,244.5,246,245.9,245.7,246,246.5,244.6,244,243.6,245,245.8,244.9]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.5,32.2,32.5,32.6,33.4,32.4,32.3,32.4,33.2,32.9,32,32.1,32.1,32.3,34.3],"script":[4.7,4.6,4.6,4.5,4.6,4.7,4.9,4.6,4.9,4.9,4.8,4.5,4.7,4.7,5.3],"paint":[27.1,26.9,27.2,27.4,28.1,27,26.7,27.1,27.5,27.3,26.5,26.9,26.7,26.8,28.1]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,9.1,9.3,11.7,9.4,9.7,8.7,9.7,10.2,9.8,10.4,10.4,10.4,10.6,10.3],"script":[7.5,7.3,7.7,9.7,7.3,8,7.4,8,8.2,7.6,8.5,8.6,8.1,8.2,8.2],"paint":[0.6,0.2,0.3,1,1.4,0.7,1.1,0.2,1.8,0.3,1.6,0.3,0.6,2.2,1]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.620997428894043]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4169225692749023]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4352951049804688]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8564834594726562]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.243974685668945]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.7]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.1]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"01_run1k","values":{"total":[26.5,25.9,26.5,26.3,26.7,26.5,26.4,26.8,26.3,26.5,26.2,26,26.6,27,26.2],"script":[2,1.9,2,1.9,2,2,1.9,1.9,2,2,2,2,2,2,2],"paint":[24.1,23.5,24.1,24,24.3,24.1,24.2,24.4,23.9,24.2,23.9,23.6,24.3,24.5,23.9]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"02_replace1k","values":{"total":[11.7,11.8,11.6,11.8,11.9,11.9,11.7,11.7,12,11.6,11.5,11.7,11.7,11.7,11.8],"script":[1.1,1.1,1.1,1.1,1.2,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1],"paint":[10.2,10.3,10.2,10.4,10.4,10.4,10.3,10.3,10.5,10.2,10.2,10.3,10.2,10.3,10.3]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11.4,11.3,12.2,10.9,11.6,11.4,13,11.5,10.8,11.2,12.1,12,11.9,11.2],"script":[0.2,0.1,0.1,0.1,0.1,0.1,0.6,1,0.1,0.1,0.1,0.9,0.5,0.9,0.5],"paint":[9.3,10.4,10.5,10.7,9.8,10.9,9.9,10.9,10.7,9.4,9.7,10,10.3,9.9,9.3]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"04_select1k","values":{"total":[2.4,1.8,2.3,2,1.7,2.3,2,2.3,2.1,2.2,1.6,2.7,2,2.4,3.2,1.8,2.2,1.4,2.2,2.1,2,1.9,1.8,3.1,1.8],"script":[0,0.1,0,0,0.5,0.4,0.4,0,0.6,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0.2],"paint":[2.3,1.6,2.2,1.5,1.1,1.7,1.1,1.5,1.3,2.1,0.7,2.3,1.3,1.4,1.5,1.4,2,1.3,1,1.1,1.5,1.5,1.6,1.8,1.2]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"05_swap1k","values":{"total":[8.8,7.9,7.8,8.5,8.3,8.2,8.5,7.8,8.2,8.9,7.9,8.3,8.1,8,7.9],"script":[0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0],"paint":[7.5,6.5,6.3,7.6,7,7.1,7.4,6.5,7.5,8.2,6.8,7,7.2,6.5,6.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.5,10.4,10.3,10.4,10.4,10.3,10.3,10.2,10.4,10.3,10.6,10.2,10.4,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[9.9,9.8,9.7,9.6,9.8,9.6,9.2,9.6,9.6,9.7,9.6,9.7,9,9.7,9.8]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"07_create10k","values":{"total":[273.4,273,274.2,275.9,271.9,271.7,273.8,274.7,273.1,272.8,274.2,272.5,274.1,274.2,275.6],"script":[22.8,22.1,23.4,22.3,22.9,23.1,23.1,23.4,22.5,23,23.4,22.9,22.9,23.8,23.7],"paint":[244.1,244.9,244.7,247.7,243.2,243,244.6,245.3,244.8,243.7,244.5,243.5,244.6,244.5,245.4]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29,28.8,29,30.4,28.8,28.5,29.1,28.9,29,28.6,30,29.7,29.8,29.5,29],"script":[2.1,1.9,2,2,1.9,1.8,2,2.1,1.9,2,2,1.9,1.9,2.1,1.8],"paint":[26.2,26.2,26.3,27.6,26.2,26,26.4,26.1,26.4,25.9,27.1,27,27.2,26.8,26.5]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.6,9.7,8.5,9.1,9.4,8.7,8.8,9.3,9.2,10,10.7,8.8,9.4,8.8,8.9],"script":[6.3,7.3,6.4,6.8,7.4,7.4,7.3,7.1,6.9,7.6,8.4,6.7,7.8,6.6,7.2],"paint":[1.3,1.4,1.1,1.9,1.4,0.2,0.5,1.3,0.6,1.3,1,1.2,0.2,1.2,0.3]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5562686920166016]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8816194534301758]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8968591690063477]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6250734329223633]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.32857608795166]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.6,28.6,28.4,28.1,28.7,28.5,28.5,29.2,28.4,28.4,28.5,28.6,28.3,28.4],"script":[3.5,3.4,3.4,3.4,3.5,3.4,3.8,3.4,3.9,3.4,3.9,3.4,3.8,3.4,3.4],"paint":[24.5,24.7,24.8,24.7,24.2,24.8,24.3,24.7,24.8,24.6,24.1,24.8,24.4,24.6,24.6]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[14.2,14.1,14,14,13.8,13.7,13.9,14,14,14,13.8,14.1,14.4,14.2,14.3],"script":[3.4,3.5,3.5,3.5,3.4,3.3,3.5,3.3,3.4,3.5,3.3,3.4,3.7,3.4,3.5],"paint":[10.4,10.3,10.1,10.2,10.1,10,10.1,10.4,10.2,10.2,10.1,10.4,10.4,10.4,10.4]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,13.3,12.9,13,12.7,12.9,13.5,12.3,12.3,12.5,12.8,13.1,13,13.2,12.7],"script":[1.4,1.2,1.8,1.4,1.9,1.6,1.9,1.6,1.3,1.3,1.3,1.6,1.3,0.9,1.5],"paint":[9.9,11.1,9.6,10.6,9,10.2,10.5,9.7,10.3,10.1,10.6,10.7,10.6,11.3,9.6]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.3,2.9,2.8,3,3,2.6,2.8,2.9,2.9,2.6,3,3.3,2.9,2.9,3,2.5,3.6,3,3.1,3.3,3.2,2.3,2.2,2.8],"script":[1.4,0.7,1,0.9,0.9,1.4,0.7,0.2,0.9,0.8,1.1,1.4,1,0.9,1.1,0.9,1,1.8,1,1.4,1.4,1,0.8,0.6,1],"paint":[1,1.5,1.1,1.1,1.2,0.7,1.8,1.7,1.2,1.3,1.1,0.7,2.2,1.9,0.9,1.2,1.4,1.7,1.9,1.3,1.1,2,1.3,0.7,1.7]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[11.2,10.1,10.3,10.1,11.3,10.2,10,10.4,9.5,10.3,10.2,11.9,11.5,10,9.7],"script":[1.9,1.5,1.2,1.6,2.6,1.2,1.6,1.5,1.1,2,1,1.5,2.1,1.8,1.4],"paint":[7.8,6.7,7.3,7.1,7.5,8,6.8,8.1,7.5,7.3,8.6,8.3,7.9,7.1,7.3]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,10.9,11,10.8,11,10.5,10.9,10.9,10.8,10.8,11,10.6,11.1,10.8,10.7],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.9,9.6,9.9,9.5,9.8,9.3,9.9,9.9,9.7,9.6,9.7,9,9.5,9.8,9.7]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[289.5,287.7,289.2,289.5,291.2,291.5,290.7,292.7,290.3,290.8,291.3,289.5,290.4,290,291.6],"script":[37,37.4,37,36.7,37.6,37.3,36.4,37.6,37.3,36.3,36.9,37.3,37.1,37.6,37.3],"paint":[246.3,244.6,246.4,246.8,247.7,248.3,246.9,248.7,246.8,248.4,248.3,246.3,247.1,245.8,248]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.6,32,31.2,32.2,32.2,32,31.7,31.7,31.4,32.1,32.3,31.4,32,31.9,31.5],"script":[3.8,3.7,3.6,3.7,3.7,3.7,3.8,3.6,3.6,3.6,3.8,3.6,3.8,3.7,3.6],"paint":[28,27.5,26.9,27.5,27.8,27.5,27.2,27.3,27.1,27.7,27.7,27.1,27.4,27.5,27.2]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,12.4,11.1,10.6,10.8,9.4,11.6,10.4,9.6,10.7,10.8,10.2,10,9.5,9.6],"script":[8.2,10,9.3,8.4,8.9,7.6,9.7,8.1,7.8,8.6,9.3,8.3,7.8,7.3,8.1],"paint":[0.8,1.3,1,1.6,0.2,0.2,1.3,1.4,1.6,0.9,0.5,0.6,0.4,0.9,0.4]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.742335319519043]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.305760383605957]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3887224197387695]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9304275512695312]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.032933235168457]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[36.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"01_run1k","values":{"total":[27.6,26.8,27.4,26.7,27.7,27.5,27.6,27,26.9,27.3,27,26.9,27,27,27],"script":[2.7,2.6,2.8,2.3,2.7,2.9,2.5,2.3,2.7,2.9,2.4,2.4,2.3,2.3,2.4],"paint":[24.5,23.8,24.2,24,24.6,24.3,24.7,24.3,23.8,24,24.3,24.1,24.3,24.3,24.2]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"02_replace1k","values":{"total":[11.8,11.9,12.4,11.9,12.2,12.1,12.5,12.1,12.2,12.2,12.3,12.4,12,12.5,12.1],"script":[1.4,1.3,1.5,1.4,1.5,1.5,1.5,1.5,1.6,1.7,1.6,1.5,1.4,1.5,1.5],"paint":[10.1,10.3,10.5,10.1,10.3,10.2,10.6,10.3,10.2,10.2,10.4,10.5,10.2,10.6,10.3]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.6,13.7,13.2,13.6,13.3,13.2,13.7,14.3,13.8,13.4,13.4,13.4,15,12.9,13.7],"script":[3.1,2.3,2,1.7,1.9,2.3,2.3,2.2,2.7,2.4,2.5,2.4,2.6,2.3,2.4],"paint":[10.2,10.1,10.3,9.4,9.6,9.8,10.2,10.7,9.6,10.4,9.9,10.4,10.4,9.6,10.3]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.3,2.8,2.3,1.8,2.1,2.7,2.6,2.7,2,2.6,2.1,2.2,2.5,2.4,1.9,2.2,2.4,2.2,2.3,2.8,2.3,2.1,2.2,2.5,2.5],"script":[0.1,0.7,0.4,0.1,0.1,1,0.1,0.8,0.1,0.1,0.4,0.1,0.4,0.1,0.1,0.1,0.5,0.3,0.5,1,0.6,0.1,0.1,0.1,0.1],"paint":[1,1.9,1.8,1.6,1.5,1.5,1.4,1.8,1.8,2.4,1.5,1.1,1,2.2,1,2,1.3,1.6,1.7,1.1,1.6,1.2,1.1,1.9,1.2]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"05_swap1k","values":{"total":[12.3,11.5,10.9,10.8,11.4,11.3,11,11.4,12,11,11.2,11.1,10.8,11.5,10.6],"script":[2.3,2.4,2.5,1.7,1.8,2.2,2.1,2.4,2.7,2.2,2.6,2.1,2.1,2.1,1.9],"paint":[8.7,8.2,6.9,8.1,8.6,7.8,7.7,8.1,6.8,7,6.9,7.8,7.5,8.3,7.7]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.1,25,24.2,24.8,25.6,23.5,24.7,24.7,24.7,24.4,23.8,24,24.3,24.4,23.6],"script":[2.5,2.5,2.7,2.7,2.5,2.5,2.7,2.4,2.8,2.7,2.9,2.4,2.6,2.8,2.9],"paint":[20.6,21.1,20.8,20.7,22.4,20.3,21,21.5,21.2,20.9,20.1,20.8,20.6,20.6,20]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"07_create10k","values":{"total":[281.4,280.4,283,282.8,282.1,280.8,280.5,278.9,280.4,279.5,279.1,280.3,280.1,278.7,280],"script":[30.2,29.9,29.7,29.8,29.7,29.4,28.9,29.2,30.1,28.9,29.2,29.1,30.1,29.6,30.2],"paint":[244.2,244.2,246.8,246.6,245.4,244.7,245.2,243.3,243.8,244.2,243.9,245,244,243.2,243.8]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.8,31.6,32,32.6,31.7,32.6,31.9,32,32.8,32.1,31.6,31.7,31.9,32.3,32.1],"script":[4.1,3.7,3.6,3.7,3.7,4.2,3.7,3.7,4,3.8,3.8,3.7,3.7,3.7,3.8],"paint":[28,27.2,27.6,27.9,27.3,27.7,27.4,27.5,27.9,27.6,27.1,27.4,27.5,27.9,27.4]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.5,11.1,12.4,11.5,10.1,11.4,11,11.5,11,11.2,11.8,10.3,11.7,10.3],"script":[7.9,8.4,8.4,10.3,9.4,9,8.9,9.2,9.2,9.7,9.2,9.5,8.3,9.4,8.3],"paint":[1.6,0.9,1,0.9,1,0.9,1.9,0.6,2.1,0.8,0.6,2.1,1.8,1.9,1.1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5643386840820312]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.251493453979492]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.235337257385254]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7201023101806641]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.111132621765137]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.3]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.3]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"01_run1k","values":{"total":[39.1,38.8,39.4,38.7,39.5,39.2,39.1,38.6,38.9,39,39,38.7,39,38.7,39.1],"script":[15.1,14.7,15.3,14.9,15.1,14.9,15,14.7,14.9,15,15.1,14.8,14.8,14.8,15],"paint":[23.4,23.5,23.6,23.3,23.8,23.8,23.5,23.4,23.5,23.5,23.4,23.4,23.6,23.4,23.6]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"02_replace1k","values":{"total":[25.1,25.8,24.5,24.9,24.9,24.7,25.1,24.6,24.8,25.9,24.6,24.8,24.9,24.9,24.9],"script":[14.1,14.2,13.9,14,14.3,13.9,14.1,14.1,14.1,14.9,14,14,14,14.1,14.1],"paint":[10.4,10.9,10.1,10.4,10.1,10.2,10.4,10,10.2,10.4,10,10.2,10.3,10.2,10.3]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.4,18.1,19.2,17.8,18.2,18,18.7,19.4,18.4,18.1,17.8,17.7,18.3,18.2,17.5],"script":[6.9,6.6,7.6,5.9,6.2,6.4,6.4,6.4,6.6,5.9,6.1,6.6,6.5,6.3,6.1],"paint":[9.3,10.4,10.3,10.4,9.6,10.1,11.1,11.1,10.2,10.6,10.3,9.7,8.8,9.4,10.4]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"04_select1k","values":{"total":[5.9,5.3,5.5,5.9,6.3,5.2,5.8,5.6,5.5,5.9,5.9,5.8,6.5,6.1,5.7,5.7,6.3,6.9,4.9,5.2,6.3,5.8,6.2,5.7,5.8],"script":[3.9,3.5,4,3.8,4,3.6,3.4,3.7,3.6,3.7,3.6,3.5,4,3.7,3.6,3.5,4.4,4.4,3.4,3.1,4.2,3.8,4.2,2.8,4.3],"paint":[1.2,1,1,0.9,2.2,0.7,2.2,1,1.1,1.7,2.1,0.4,1.9,1.7,1.9,1.5,1.7,1.7,1.4,2,1.6,1.9,1.3,2.7,1.3]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"05_swap1k","values":{"total":[12.5,11.9,13.5,12.4,11.9,12.9,11.7,13.1,11.8,11.9,12.9,12.2,12.4,12.1,12.7],"script":[3.9,3.4,3.9,3.2,3.7,4.2,3.9,4.1,3.8,4,3.8,4.2,3.6,3.5,3.9],"paint":[7.7,7.4,8.6,7.3,6.8,7.3,6.9,7.5,6.4,6.9,7.2,6.7,7.7,7.4,7.3]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.5,35.4,35,35.2,34.7,35.9,35.5,34.7,35.2,35.5,36.5,34.8,35.4,34.9,35.1],"script":[13,12.9,13.3,12.4,12.7,13.5,13,12.7,12.9,12.9,13.3,12.3,12.6,12.8,12.7],"paint":[21.6,21.2,20.5,21,21.2,21.5,21.5,20.7,20.8,21.3,21.9,21.3,21.5,20.7,21.1]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"07_create10k","values":{"total":[424.8,428.1,426,428.6,428,430.5,427.1,430.1,429.2,427.1,429.1,427.3,426,427.5,428.1],"script":[180.3,183.4,180.2,182.7,182,183.3,182.2,184.2,183.4,180.1,182.6,181.5,182.1,182.1,180.8],"paint":[238.9,239.1,240.3,240.3,240.3,241.5,238.9,240.1,240,241.4,240.8,240.1,238.4,239.9,241.5]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.5,53.8,54,53.6,53.8,54.1,53.8,53.8,54.9,53.7,53.8,54,53.6,54.3,53.9],"script":[25.4,25.4,25,25.5,25,25.3,25.4,25.7,25.2,25.4,25.4,25.3,25.4,25.8,25.3],"paint":[28.2,27.5,28,27.1,27.7,27.8,27.5,27.2,28.8,27.4,27.5,27.8,27.4,27.5,27.7]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.8,13.8,14.8,15,16.7,15.3,14.6,13.3,13.1,12.6,14.8,14.5,13.3,13.6,15.4],"script":[12.4,11.9,12.6,12.9,14,13,12.7,11.2,11,11.1,12.8,12.6,10.9,11.9,12.7],"paint":[1.9,1.1,1.4,1.1,1.6,1.2,0.3,1,1.8,0.7,1.8,1.7,1.3,0.6,1.6]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8255901336669922]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.405681610107422]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.01938533782959]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.457911491394043]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.63666343688965]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.7]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.9]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"01_run1k","values":{"total":[26.8,26,25.9,26.3,25.8,25.6,25.5,26,25.7,25.8,26.2,26,26.3,25.7,25.5],"script":[1.9,1.7,1.7,1.7,1.6,1.6,1.7,1.6,1.7,1.7,1.7,1.7,1.7,1.7,1.6],"paint":[24.4,24,23.9,24.2,23.8,23.6,23.4,24,23.6,23.7,24.1,24,24.2,23.6,23.5]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"02_replace1k","values":{"total":[11.2,11.7,11.9,11.5,11.5,11.5,11.7,11,11.6,11.1,11.3,11.5,11.7,11.7,11.8],"script":[1.1,1.2,1.2,1.1,1.2,1.2,1.1,1,1.1,1,1.1,1.1,1.2,1.2,1.2],"paint":[9.8,10.2,10.4,10.1,10,10,10.3,9.7,10.2,9.7,9.9,10,10.2,10.2,10.2]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,12.1,11.6,12.3,12.1,11.5,11.9,11.7,12.1,12.3,11.5,11.8,13.2,12.7,11.6],"script":[0.5,1.2,1.2,0.2,0.2,0.7,0.6,0.5,0.9,1,0.8,0.9,1.1,1.4,0.2],"paint":[11.2,9.4,9.2,9.8,11,9.8,10.6,9.6,9.2,10.7,9.5,9.5,11,9.7,10.2]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,2.2,3,1.9,2.2,1.3,2.5,2.4,2.6,2.1,1.6,2.1,2.2,2.4,2.8,1.8,2.4,2.4,2.3,1.2,1.9,2,2.4,4.4,1.5],"script":[0,0.1,0.7,0,0.6,0,0,1,0,0,0.1,0.1,0,0.1,0.1,0,0.1,0.1,0,0.2,0.1,0.1,0.7,0.9,0.5],"paint":[1.5,1.3,1,1.7,1.2,0.7,1.8,1.3,2,0.8,1.4,1,1,2.2,1.6,1,1.7,1.4,1.3,0.9,1.7,1.9,1.5,1.7,0.9]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"05_swap1k","values":{"total":[8.6,9.4,9.7,8.3,8.6,8.8,8.5,8.7,9.3,8.3,9.1,8.6,8.9,9.3,8.4],"script":[0.1,0.8,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0,0.1,1,0.1,0],"paint":[7.3,7.5,8.6,7.2,6.9,7.5,7,7.5,8.3,7.2,7.6,6.4,6,8.4,7.5]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.4,10.4,10.9,10.4,10.3,10.9,11,10.7,10.9,10.4,10.3,11.1,10.7,10.5],"script":[0.3,0.3,0.1,0.2,0.1,0.1,0.2,0.3,0.1,0.1,0.2,0.1,0.3,0.2,0.1],"paint":[10.1,10.5,9.7,10.2,9.6,9.6,10,9.9,10.2,9.8,9.7,9.7,10.2,9.8,9.7]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"07_create10k","values":{"total":[350.3,350.3,353.3,351,353.2,350.7,351.6,350.6,354.1,356.4,350.1,350.2,355.1,350.1,351.5],"script":[105.9,106.4,108.2,106.7,108.5,106.8,105.8,105.4,108.5,106.9,105.7,105.6,109.2,104.4,107.2],"paint":[238.4,237.9,238.7,237.9,238,238,239.7,238.8,240,242.9,237.8,238.4,239.4,239.5,238.2]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.8,38.7,39.4,38.9,38.7,39.5,40.1,39,41.2,38.8,39.8,39.2,39.2,38.7,38.5],"script":[10.8,10.8,11.2,10.9,10.9,11.1,11,11.1,11.1,10.9,11.1,11.2,11,10.8,11],"paint":[27.1,26.9,27.3,27.2,27,27.4,28.2,27.1,29.1,26.9,27.8,27.3,27.4,27,26.8]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,12.4,12.9,12.9,12.2,11.5,13.6,11.8,12.8,14.8,13.4,12.3,12.8,11.8,12.9],"script":[10.7,10.2,11,11.8,9.9,10.2,10.3,10.5,11.1,12.4,11.7,10.8,10.6,10.1,11],"paint":[1.3,1.5,0.9,0.6,0.9,0.6,1.1,0.2,1.1,2.1,1,0.7,0.9,1.6,0.8]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6667823791503906]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.783674240112305]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.752215385437012]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.76759147644043]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.01564025878906]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.4]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.7]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"01_run1k","values":{"total":[30.8,37,34.6,32.1,33,31.4,31.9,30.4,34.7,31.9,30.4,34.8,37.5,32.4,35.1],"script":[5.5,5.5,5.7,5.9,5.7,5.7,5.7,5.8,5.5,5.6,5.9,5.3,5.4,5.4,5.5],"paint":[23.6,23.4,24.1,24.4,24.1,24.1,24.4,24.2,24.3,24.4,24,24.3,24.2,24.1,24.5]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"02_replace1k","values":{"total":[21,21.4,21.3,14.9,21.7,14.8,19.8,20.7,19.1,17.8,21.1,17.6,19.6,22.2,22.3],"script":[4.9,4.4,4.5,4.5,4.4,4.6,4.5,4.5,3.5,3.6,4.7,3.5,3.6,4.2,4.8],"paint":[10.3,9.8,9.9,9.9,9.8,9.9,9.8,9.9,9.8,10.2,10.2,10,10.2,9.9,10.1]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.8,13.9,14.6,30.3,14.8,14,31.1,15.2,14.6,32.3,13.9,13.7,13.9,30.7,14.2],"script":[2.5,2.2,1.6,3.3,2.9,1.9,2.4,2.6,3,3,2.1,2.3,2.5,2.2,2.5],"paint":[11.9,9.6,11.6,9,10.8,10.7,10.6,11,10.5,10.7,9.9,10,10.5,11.2,10.6]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"04_select1k","values":{"total":[8.5,2.9,9.4,8.7,8.5,8.5,5.7,3.4,12.1,3.2,7.4,5.6,5.9,3.4,6.2,4.6,6.8,8.4,3.6,3,9.4,6.2,8.6,3.9,3.3],"script":[0.7,1.1,0.9,0.2,1,0.2,0.2,0.9,1.2,0.8,1.2,1.1,1,0.2,0.6,0.5,1.1,1,0.2,0.7,0.3,0.6,0.5,1,1.2],"paint":[1.3,1.7,2.5,2.1,1,1.5,2,1.2,1.9,1.6,0.9,1.6,1.9,1.4,1.9,1.9,1.4,1.7,2.6,1,1.9,1.4,1.3,1.8,1.4]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"05_swap1k","values":{"total":[26.9,9.7,25.6,9.7,9.5,9.5,10,10.1,10.5,9.2,26.7,9.4,26.2,10.3,9.5],"script":[1.9,0.2,1.2,0.7,1,1,1,1.2,1.5,0.7,0.9,0.9,0.2,0.7,1.2],"paint":[7,8.8,7.3,7.2,7.5,7.8,7.4,7,8.4,7.5,8.7,7,8,7.7,8]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.3,31.2,27.2,29.5,29.1,28.4,29.2,29.8,29.5,29.6,27.7,31.9,29.1,28,29.7],"script":[6.1,7,6.8,6.3,5.8,7.3,6.4,5.8,6.9,7.9,7.3,6.8,6.2,6.7,6.1],"paint":[19.1,20.2,19.2,19.5,19.5,20.4,19.9,20.5,19.7,20.1,19.4,19.8,19.7,20.1,19.7]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"07_create10k","values":{"total":[313.9,317.4,311.7,758.8,746.5,757.4,314.8,313.9,314.7,312,313.9,314.1,312.2,319.9,315.2],"script":[64.3,65.4,62.6,67.2,61.9,64.9,63.6,61.8,64.4,64.2,63.8,63.1,63.2,66,63],"paint":[242.8,244.3,239.4,248.6,246.4,249.1,241.9,242.8,240.9,241.3,240.6,240.9,242.2,247.3,244.9]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.6,39.5,40.4,39.6,39.4,39.3,40.6,40.8,39.1,39.9,39.8,40.2,39.7,39.4,40.5],"script":[6.1,6.3,6.3,5.9,6.2,6.3,6.5,6.5,6.3,6.1,5.9,6.5,6.6,6.7,6.3],"paint":[26.4,26.8,27,27.3,26.4,26.7,26.7,26.7,26.7,27.6,26.6,26.8,27.2,26.6,27.3]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[30.6,30.3,8.2,32.1,9.7,10.8,29.9,31.5,9.7,9.1,8.2,9.8,11.2,28.4,29.7],"script":[7.3,7.6,6.7,8.2,7.4,8,6.8,7.7,7.2,6.8,6.9,7.5,7.3,8.1,7],"paint":[0.9,1,0.2,0.3,1.7,0.8,1.4,1.1,1,1.6,0.7,1.2,1.1,0.3,0.4]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6521072387695312]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7041759490966797]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.758769989013672]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.025686264038086]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.90406036376953]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.4]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.1]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[36.2,33.8,32.2,28,31,32.3,31.9,30.9,31.3,29.2,32.6,30.7,32,32.1,27.5],"script":[2,2.1,2,2.1,2,2,2,2,2,2,2,2.1,2,2,2.1],"paint":[23.5,26.4,24.2,25.1,24.3,24.2,24.3,24.1,24.6,24.1,24.4,25,24.9,24.3,25]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[13.3,13.5,13.3,13.6,18.4,20.1,15.6,13.3,13.5,20.5,16.5,13.8,14.6,20.5,15.1],"script":[3.1,3,2.9,3.2,3,3.3,3,3,3.2,3.3,3.3,3.2,3.2,3.4,3.3],"paint":[10,10.3,10.2,10.3,10.2,10.6,10.3,10.2,10.1,10.2,10.9,10.4,10.5,10.6,10.3]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[31.3,30.9,30.1,30.8,14.4,29.9,29.6,14.9,14.1,14.2,14,30.9,14.3,13.9,30.7],"script":[3.5,2.8,2.6,2.5,2.7,3.3,2.3,3,3.5,2.8,2.6,2.9,2.4,2.3,3.1],"paint":[11.1,12.1,11.1,11.9,11.4,10.4,11.8,11.7,9.6,10.8,10.2,10.8,11.2,10.1,11.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[6.9,5.9,6.1,6.6,6.1,6.1,6.4,10.1,6.9,6.4,8.9,7.2,9.4,5.8,8.2,6.2,7.1,10.9,5.9,7.2,5.3,6.5,7.1,6.4,6.8],"script":[3.1,3.7,4,4.2,4,3.9,4.2,4.5,3.3,3.9,3.3,4.9,4.3,3.9,6.1,3.8,3.6,4.3,4,3.3,3.6,4.3,4.4,3.7,4.9],"paint":[2.6,1.3,2,1.9,1.9,1.8,1.8,1.6,2.2,2.3,1.3,2.1,2.4,1.1,2,2.2,1.8,1.8,1.7,1.6,1.5,2,1.6,2,1.4]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[25.5,8.5,9,8.8,24.9,8.9,8.8,10.4,26.5,8.4,24.4,9.8,26.7,8.8,8.9],"script":[0.2,0.8,0.4,0.9,0.3,1.3,0.9,0.1,1,0.7,0.2,0.9,1.7,0.6,0.1],"paint":[9.3,6.5,8.4,7.4,7.8,6.4,7.8,8.4,8.8,6.7,8.1,8.7,7.8,7.5,7.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,13.4,15.3,12.3,14.2,11.9,13.5,11.5,11.4,14.3,11.4,12.6,11,12.6,11.6],"script":[1.2,1.3,1.2,1,1.4,1,1.2,1.2,1.1,1.2,1.2,1.2,1.2,1.1,1.5],"paint":[10,9.9,9.5,9.6,10.1,10.2,9.4,10,10.1,10.2,10.1,10,9.5,10.1,9.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[342.5,335.3,335.2,332.5,335,335.8,336.8,338,338.2,337.4,333.8,337.3,339.6,336.2,335.4],"script":[80.6,83,85.4,81.5,83.5,82.8,82.9,81.6,83.4,83.7,82.4,82.1,83.6,83.4,84.2],"paint":[245.6,247.6,243.6,244.5,244.1,245,245.4,246.4,247.6,246.2,244.8,247.5,247.2,247.4,242.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.7,47.3,47.5,48.6,36.7,36.4,47.6,47.4,49.4,47.4,47.2,47.4,48.5,47.8,47.5],"script":[7.3,6.9,7.1,6.8,6.9,7.5,7.2,7.1,7.2,6.9,6.9,7,7,6.9,7],"paint":[27.7,27.7,27.7,27.4,29.1,28.3,27.8,27.5,28.2,27.9,27.7,27.6,27.3,28,27]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.8,28,11.4,27.8,11.9,27.2,12.5,27.5,11.5,27.6,27.5,10.3,29.6,27.9,27.8],"script":[10.1,10,8.9,10.6,8.7,9.6,9.5,10,9.7,10.2,10.1,9,10.8,10.4,10],"paint":[1.7,1.9,0.3,0.6,1.4,1.1,0.6,1.5,1,0.3,0.3,1.3,2,1.4,1]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6973276138305664]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.320869445800781]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.4790754318237305]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.158073425292969]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.42086887359619]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[52.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[42.7,34.5,39.2,36.2,40.4,36.4,41.5,38.2,37.1,40.6,39.4,39.1,35.4,40.2,39.5],"script":[9.7,9.7,10.3,10.2,9.9,9.9,9.8,9.8,9.8,9.1,9.2,9.8,10.3,10.2,9.7],"paint":[22.1,23.4,22.6,23.1,23.2,23.4,22.7,23.6,24.6,22.9,22.8,23.3,23.5,23.5,23.2]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[19.4,18.8,20.6,18.8,17.4,18.2,17.8,17,18.4,20.3,17.8,19.3,19.5,22.7,19.6],"script":[5.5,5.6,5.9,5.7,5.8,5.7,5.8,5.9,5.7,5.7,6.3,5.9,5.7,5.7,6],"paint":[10.5,10.9,10.2,11,10.6,10.4,10.3,10.5,10.5,10.6,10.7,10.6,10.8,10.3,10.6]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[50,16.8,51,18.5,49.8,48.3,50,47.7,18.4,49.4,50.3,49.9,17,50.1,48.9],"script":[3.9,3.8,4.5,4.1,4.6,4.2,4.7,4.5,5.2,4.9,4.9,4.2,4.2,4.7,4.4],"paint":[10.7,11.3,13.1,13,10.1,11.3,12.4,11.4,11.5,12.6,13.3,12.8,12.5,13,12.2]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[11.9,15.2,10.2,14.9,10.3,6.2,8,14.7,15.5,7.8,14.8,8.1,7,10.6,7.9,14.9,8.7,8.4,15.8,8.1,8.3,8.2,13.4,10.9,14.4],"script":[2.8,2.1,2.2,3.2,2.5,3.1,3.4,3.1,2.8,3.1,2.8,2.7,2.6,3.6,3.5,3.3,2.9,3.2,2.6,3,2.2,2.2,2.3,2.5,2],"paint":[2.3,2.6,3.2,2.7,2.8,2.5,2.9,3.8,3.6,2.3,2.2,1.6,3,2.6,1.7,3.8,3,2.1,3,1.2,2.9,2.9,2.4,1.9,3.3]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[43.5,44.9,45.9,44.3,45.1,12.1,12.9,44.8,44.2,43.6,12.1,46.1,44.9,44.1,46.6],"script":[2.1,2.6,2.6,2.6,2.6,2.7,2.5,1.9,2.3,2.5,2.3,2.4,2.8,2.2,2.8],"paint":[7.7,9.7,9.5,8.4,9.3,7.7,8.5,9.4,7.1,8.2,8.7,10.9,7.9,8.5,8.1]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[37.8,32.7,35.2,33.5,32.5,33.1,36,32.4,33.7,35.9,32.8,34.7,32.7,35.1,34.8],"script":[26.2,26.5,26.8,27.2,26.3,26.9,26.7,26.5,26.6,27.3,26.7,26.6,26.3,25.8,26.3],"paint":[20.8,20.7,21.2,21.7,20.6,21.6,21.2,21.1,20.9,21.8,21.5,21.1,20.6,20.2,20.9]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[320.6,333.5,327,324.1,324.2,322.6,317.4,331.9,322,320.6,318.9,331.5,327.3,322.5,320.5],"script":[70.8,88.4,89.9,89.9,84.9,74.8,73,88.6,76.3,74.1,73.6,89.7,91.7,92.1,71.9],"paint":[229.9,221.9,222.5,221.1,221.2,232.2,230.8,223.3,233,232.6,232.2,221.8,219.6,220.5,233.2]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.8,46.9,39.8,47.9,46.7,46.9,47.3,47.2,47.1,47.6,39.2,47.9,46.7,46.4,47.5],"script":[10.5,10.5,10.4,10.2,10.5,10.9,10.9,10.4,10.4,10.5,10.5,10.8,10.1,10.1,10.8],"paint":[27,27,28.7,28.2,26.8,26.6,26.7,27.6,26.8,27.4,27.9,27.7,27.1,26.8,27.3]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[48.2,11.3,46.8,11.3,12.9,11,11.5,12.3,13.2,12.8,12,11.6,12.5,12.9,12.8],"script":[8.8,8.8,8.4,8.2,8.9,7.1,7.3,7.9,8.3,8.3,8,8,8.6,9.4,9.2],"paint":[3.9,2.1,3.8,1.7,2.6,2.4,3.2,4.1,2.6,3.1,3.2,1.3,1.8,2.5,2.4]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6626777648925781]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.68025016784668]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.718898773193359]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0023555755615234]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.49948978424072]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.3]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"01_run1k","values":{"total":[35.9,35.5,36.1,36,35.1,35.9,35.3,34.8,35.7,36.4,35.4,34.6,35,35.5,35.6],"script":[10.4,9.8,10.1,10,9.8,9.7,10,9.7,9.9,10.2,9.9,9.6,9.8,10,10],"paint":[24.9,25.2,25.2,25.3,24.7,25.6,24.8,24.5,25.2,25.7,25,24.4,24.7,25,25.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"02_replace1k","values":{"total":[16.9,16.5,16.1,15.6,16.6,16.5,16.3,17.5,16.2,16.7,17.3,16.4,16.7,16.6,17.5],"script":[5.8,5.8,5.4,5.2,5.9,5.8,5.5,6.4,5.8,5.7,6.2,5.7,5.7,5.9,6.3],"paint":[10.5,10.2,10.1,9.9,10.2,10.2,10.3,10.6,9.9,10.4,10.5,10.2,10.4,10.2,10.7]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.1,19,19.4,18.6,19.7,18.6,18.8,19.1,21.9,19.3,19.4,20.7,19.7,22.1,20.7],"script":[6.2,6.2,6.9,6.4,6.5,6.7,6.2,7,7.9,6.2,6.6,7.5,6.8,8,7.6],"paint":[10.9,10.5,10.9,10.5,11.1,9.3,10.3,10.7,11.6,11.6,10.7,12,11.6,12.1,11.4]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"04_select1k","values":{"total":[6.5,6.5,6.6,8,5.3,5.6,5.7,6.3,6.2,5.4,6,5.9,5.3,6.4,5.8,6,7.4,5.8,6,6,6.8,5.9,6.2,6.6,6.4],"script":[3.6,3.7,4,3.7,2.9,3.8,3.6,3.9,3.8,3.5,3.1,3.5,3.6,3.4,3.2,3.7,5,3.7,4.1,3.8,3.3,3.9,3.7,4,3.8],"paint":[1.8,1.3,1.7,1.4,1.7,1.7,1.5,2.3,1.5,1.1,1.2,2.2,1.5,2.4,1.9,1.4,1.8,1.1,1.2,1.1,0.4,1.6,1,2.5,1.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"05_swap1k","values":{"total":[12.4,11.9,12.4,12.8,12.6,13.1,12.6,12.2,13,11.7,11.7,11.2,13.2,12.2,12.2],"script":[3.9,3.6,4.1,4.4,3.7,3.9,3.8,3.7,3.6,3.7,3.7,3,4.8,3.6,3.2],"paint":[7,6.9,7.3,6.7,7.7,8.1,7.3,7.6,8.1,6.7,6.8,7.2,7.3,7.6,7.4]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.9,33.4,32.4,32.4,33.3,34.8,33,34,33.3,34,32.1,33.4,33.3,33.7,32.4],"script":[11.7,11.5,11.2,11.1,11.5,12.4,11,11.5,12,12.2,10.8,11.6,11.6,11.8,10.8],"paint":[21,21.1,19.8,20.1,20.7,21.5,21,21.6,20.3,20.6,20.5,20.6,20.6,21.1,20.5]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"07_create10k","values":{"total":[356.4,356.4,355.4,355.3,354.3,357.3,358.4,359.5,354.9,357.1,359.1,354.6,355.6,355.8,356.5],"script":[106.1,106.1,104.4,105.5,104.5,104.3,105.1,104.5,105,105,105.4,104.1,105.8,104.4,105],"paint":[244.1,243.5,244.1,243.2,243.1,245.9,246.5,247.6,243.7,245.7,246.6,244,243.7,245.2,244.9]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.8,41.3,40.7,41.3,40.6,41.6,41.6,41.4,41.6,41.7,40.4,40.2,41.1,40.2,40.8],"script":[12,12.6,12.5,12.7,12.3,12.8,12.5,12.7,12.6,12.8,12.2,11.8,12.8,11.9,12.6],"paint":[26.9,27.8,27.3,27.7,27.4,27.8,28.2,27.8,28.1,28,27.3,27.5,27.3,27.3,27.3]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,14.5,14.4,14.5,14.4,15.2,14.3,14.4,15,13.7,14.2,14.2,14.6,15.1,15.7],"script":[13.2,13,12.5,12.4,12.3,12.8,12.5,12.1,13,12.3,12.2,12.4,12.9,13,13.4],"paint":[2.1,0.6,1.6,1.9,0.9,1.7,1.7,1.2,1,0.2,0.3,0.6,0.2,0.4,1.3]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7254972457885742]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9808425903320312]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.255450248718262]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.338921546936035]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.915555000305176]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[82.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"01_run1k","values":{"total":[33.2,32.6,32.9,32.2,32.5,32.7,32.6,32.9,32.8,32.6,32.4,32.8,32.3,32.8,32.3],"script":[8,7.6,7.4,7.2,7.2,7.6,7.1,7.7,7.6,7.5,7.1,7.5,7.1,7.7,7.4],"paint":[24.6,24.5,24.9,24.4,24.7,24.6,24.9,24.6,24.7,24.6,24.8,24.6,24.6,24.5,24.3]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"02_replace1k","values":{"total":[15.7,14.7,15.5,16.7,15.6,14.4,14.8,14.9,14.6,14.9,14.6,15.1,14.9,14.4,15.8],"script":[4.8,4.5,5.2,5.3,5.3,4.2,4.6,4.7,4.4,4.6,4.4,4.6,4.6,4.4,4.8],"paint":[10.4,9.8,9.7,10.7,9.7,9.7,9.8,9.7,9.7,9.8,9.8,10.1,9.8,9.6,10.5]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32.4,32,34.1,32.1,31.4,31.8,32.8,34.2,32.5,34.5,31,33.1,30.9,30.7,34.3],"script":[17.9,16.5,19.5,17.2,17.7,17.9,17.8,19,18.8,19.4,17.4,19,16.6,16.2,19.2],"paint":[12.9,12,11.9,12.5,12.1,12,12,12.4,11.2,11.6,11.5,11.8,11.5,11.6,13.3]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"04_select1k","values":{"total":[17.8,19.6,19,21.4,19.7,19.4,19.8,21.1,18.6,18.6,20,19.1,19,20.4,19.2,20.2,18,18,18.5,18.3,19.2,18.1,20.1,18,19],"script":[14.2,15.9,15.3,16.9,15.6,16.3,15.3,16.9,15.3,15,15.8,15.1,15.3,16.9,15.6,16.4,14,14.1,15.2,15.1,15.6,14.5,16.1,15.4,15.1],"paint":[2.4,2.3,1.2,2.3,3,1.9,2.3,2.9,1.5,1.9,3.3,2.5,1.3,2.4,2.2,2,2.1,2.5,1.1,1.3,0.8,2.5,2.7,1.3,0.8]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"05_swap1k","values":{"total":[25,26.3,26.2,25.6,25.7,26.2,27.3,24.6,24.5,25.7,25.3,27.8,26.2,25,24],"script":[14.6,14.6,14.9,14.3,13.6,15.4,16.3,13.5,13.4,14.9,14.6,16.2,14.6,14.5,13.3],"paint":[8.4,9,9.3,9.7,8.6,9.6,8.6,8.5,9.3,8.8,8.6,8.4,9.3,7.5,7.2]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.1,32.5,31.2,35,31.4,30.4,30.9,32.1,30.7,31.5,31.9,30.1,31.6,31,31.1],"script":[10,10,8.8,10.2,8.6,8.6,8.5,8.7,8.4,9,9.6,8,8.7,8.5,8.6],"paint":[21.4,21.6,21.1,23.2,21.5,20,21.1,21.9,20.7,21.1,21,20.9,21.5,21.2,20.8]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"07_create10k","values":{"total":[337.7,339.9,337.4,337.9,339.9,333.4,333.8,337.1,339.3,339.9,339.9,338.1,338.2,340.8,338.5],"script":[86.8,87.3,84.8,86.1,87.6,83.9,84.2,86.8,86.3,89,87.4,87.4,89.1,87.8,85.8],"paint":[244,245.5,245.2,245,245.2,243,242.9,243.2,245.4,243.9,245.4,243.9,242.3,246.1,245.5]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.6,41.9,42.2,43,42.3,42.3,42.2,42.1,41.5,41.8,42.2,42,42.1,41.9,42.9],"script":[13,12.2,12.3,13,12.5,12.5,12.4,12.5,12.1,12.1,12.9,12.1,12.3,12.4,13.8],"paint":[28.6,28.7,28.9,29,28.8,28.8,28.8,28.6,28.5,28.7,28.3,28.9,28.9,28.6,28.1]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.5,19.7,20.8,17.7,19.7,19.9,20,19.6,18.5,18.5,19.5,20.2,16.7,19.7,18],"script":[15.6,17.3,18.5,15.3,17.3,17.7,16.9,17.4,16.8,16.2,17.1,18,15,17.5,15.8],"paint":[1.1,1.5,1.4,1.4,2.1,0.3,0.4,2,0.6,1.7,0.8,1.9,0.6,1.5,1.3]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8756866455078125]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.933509826660156]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.285917282104492]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.015710830688477]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.662057876586914]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[152.4]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[163.5]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"01_run1k","values":{"total":[39.4,38.7,38.8,38.7,39.6,39.8,39.5,39.3,39.2,39.1,38.7,39.5,39.8,39,39.5],"script":[15.2,15,15.1,15.1,15.6,15.6,15.3,15.2,14.7,15.3,14.6,15.3,15.5,15.1,15.9],"paint":[23.7,23.3,23.2,23.2,23.6,23.8,23.8,23.8,24,23.4,23.6,23.7,23.8,23.5,23.3]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"02_replace1k","values":{"total":[18.7,18.6,18.6,19.3,18.9,18.8,18.9,18.5,20.1,18.4,18.6,18.8,19.6,19.6,19.2],"script":[8.2,8.4,8.4,8.8,8.4,8.3,8.4,8.2,9,8.2,8.4,8.4,8.7,8.8,8.7],"paint":[10.1,9.8,9.8,10.1,10,10,10.1,9.8,10.6,9.8,9.8,10,10.4,10.4,10.1]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.5,12.2,12,12.9,12.4,13.3,12.7,13.2,12.6,13.8,14,12.8,12.6,12.7,13.4],"script":[1.5,1.5,1.3,1.9,1.4,1.8,2,2,1.1,1.7,1.6,2,1.4,1.5,1.7],"paint":[12.2,9.7,9.7,9.6,10,10.5,9.8,10.4,10.1,10.8,11.3,9.7,9.7,9.9,10.7]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"04_select1k","values":{"total":[5.8,5.3,5.3,5.6,5.3,5.2,4.9,5.2,5.2,5.3,5.2,5.2,4.7,6.2,5.4,5.4,4.7,5,5,5.2,5.1,5.6,5.1,5.3,5.7],"script":[3.2,2.8,2.8,3.5,3,3.4,2.7,3.3,3.3,3.1,2.8,3.2,2.8,4,3.2,3.6,3.3,2.7,2.7,3,3.3,3.2,2.8,2.9,3.6],"paint":[1.4,1.3,1.3,1.3,1.5,1.6,1,1.2,1.3,2.1,2,1.9,1.7,0.5,1.2,1.3,1.3,1.5,1.1,1,1.7,2.3,1.2,2.2,1.6]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"05_swap1k","values":{"total":[9.6,8.6,8.9,8.7,8.6,8.6,8,8.1,8.8,7.5,8.1,8.1,9.1,8.9,8.7],"script":[0.3,0.5,0.1,0.4,0.1,0.1,0.1,0.5,0.6,0.2,0.2,0.1,0.9,0.8,0.1],"paint":[7.7,7.8,7.8,7.4,7.5,7.3,7.6,6.7,7.6,6.2,6.5,7.4,7,6.7,7.8]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,10.5,10.8,10.8,10.7,11.8,10.9,10.2,10.6,10.3,10.8,10.6,10.7,10.8],"script":[0.2,0.1,0.1,0.4,0.3,0.1,0.2,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.3],"paint":[10,9.4,9.4,9.6,9.8,10.2,11,10.3,9.5,9.9,9.4,10.1,9.9,9.9,9.7]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"07_create10k","values":{"total":[408.7,408.2,405.2,404.4,410.8,409,408.9,406.2,407.8,406.1,409.4,408,407,406.7,408],"script":[153,154.5,152.3,153.5,154.5,156.2,155.3,153.8,153.9,154.6,154.9,154.6,153,152.7,154.4],"paint":[250.3,247.8,247,245.5,249.7,247.4,247.9,247,248.4,246,248.8,247.5,248.6,248.2,247.8]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.9,48.4,48.5,48.5,47.8,49,48.1,49.1,48,48.1,48.8,49.7,48.8,48.6,48.1],"script":[20.8,20.7,20.9,20.9,20.4,21,21,20.9,20.7,20.7,20.7,21.2,20.9,20.8,20.8],"paint":[28.2,26.9,26.8,26.6,26.6,27.3,26.4,27.5,26.5,26.6,27.4,27.7,27.1,27,26.6]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,9.5,9.7,8.9,10.8,10.3,9.7,9.5,9.5,10.3,10.1,10.7,9.8,10,9.8],"script":[8,8.5,7.8,7.6,8.6,8.5,8.2,8.5,8.1,8.4,9.1,9.7,8.6,8.8,8.1],"paint":[1.9,0.2,1.8,1.2,2.1,1.1,0.7,0.9,1.3,1.8,0.9,0.9,1.2,1.1,1.6]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5930089950561523]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.096199989318848]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.174500465393066]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2669696807861328]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.906105995178223]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.1]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"01_run1k","values":{"total":[36,30,29.4,30.8,29.4,31,30.3,29.1,28.9,29.8,30.4,30.1,31.8,32,30.4],"script":[1,1,1,1,1,1,1,1,1.1,1.3,1,1,1,1,1],"paint":[22.5,23.9,23.4,23.5,23.8,23.7,23.7,24,24.1,23.8,23.5,23.6,23.6,23.1,23.6]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"02_replace1k","values":{"total":[13.5,18.1,18.5,18,17.5,16.9,14.8,17.3,16.9,12.5,11.9,11.2,13.3,17.6,17.7],"script":[1.2,1,0.9,0.9,1.1,0.9,1,1.1,1.2,0.9,1.1,0.9,1,1.1,1.2],"paint":[9.9,10.1,9.8,9.8,10,10,9.9,10.4,10.5,10.3,10.4,10.1,10,10.2,10.1]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.8,27,12.5,12.3,27.4,11.6,13.2,12.6,12.5,13,29.9,28.9,28.7,27.2,28.3],"script":[2.2,0.9,0.6,1.3,0.3,0.9,1.6,1.2,0.8,1,1.4,1,1.2,0.6,1.3],"paint":[10.3,10.2,10.4,10.8,11,10.2,11.5,11.3,10.4,11,12.4,11,10.2,10.5,10.4]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"04_select1k","values":{"total":[6.8,3.1,3.9,2.6,3.7,3.4,2.7,4.9,7,3.5,4.4,9.2,4.3,3.7,6.7,5.8,5.5,3.1,3.8,4.4,7.2,3.6,6.7,2.7,3.6],"script":[0.7,0.2,1,0.2,0.2,1.4,0.6,0.9,0.2,1.1,0.8,0.2,0.9,1.4,1.3,0.6,0.8,0.7,0.2,1.2,0.3,0.2,0.4,1.1,0.3],"paint":[1.6,1.4,1.6,1.4,0.5,1,1.5,1.7,2.5,0.8,1.8,1.8,1.2,1.4,1.1,1.1,1.6,1.5,2.3,2,1.7,1.8,2.1,1,1.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"05_swap1k","values":{"total":[25.5,26.4,9.1,9.7,24.7,26.3,25.9,9.8,9.5,9.3,26.5,25.5,9.3,26.3,24.4],"script":[0.7,0.6,0.6,1,0.5,1.8,1.8,0.6,0.9,1.1,1.1,0.7,1.2,1.8,0.9],"paint":[8.2,9.7,7.7,8.6,8.6,8.2,7.3,9,8.2,7.2,8.8,8.4,7.4,7.8,7.6]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[25.4,21.4,21.3,21.6,22.4,21.2,20.2,22,20.6,21.3,20.8,24.8,21.9,21.7,21.4],"script":[1.6,1.4,1.7,1.7,1.6,1.6,1.3,2,1.7,1.6,1.4,1.5,2,1.9,1.4],"paint":[19.1,19.8,18.8,19.4,20.4,19.3,18.8,19.6,18.8,19.5,19.3,21.5,19.4,19.4,19.4]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"07_create10k","values":{"total":[321.1,321.3,319.2,316.7,316.5,326.9,319.2,324.2,321.2,317.7,321.5,323.4,323.2,319.9,317.4],"script":[70.7,74.8,71.1,71.1,69.8,76.1,70.5,76,71.3,70.7,74.2,74.9,77.3,72,70.6],"paint":[241.3,239.5,240.5,239.3,238.9,243.2,238.9,241.2,241,239.3,238.9,242.5,238.8,240.8,240.2]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,39.6,38.2,39.1,39.1,38.8,37.6,38.5,39.5,39.3,37.9,38.7,38.9,39.4,37.3],"script":[6.8,6.9,6.5,6.8,6.5,6.6,6.3,6.6,7.1,6.6,6.5,6.5,6.6,6.5,6.3],"paint":[26.8,27.3,26.7,27.3,27.8,26.8,26.4,27.1,26.2,27.5,26.4,27.3,26.6,26.7,26.3]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.7,10.9,10,9.4,26.7,28.1,25.2,26.9,26.4,9.4,11.4,25.5,26.9,25.7,26.1],"script":[9.1,7.3,8.1,7.8,9.1,9.7,7.5,9,8.4,7.9,8.5,7.7,9.2,8.4,8.4],"paint":[0.7,1.4,0.3,0.3,1.8,2.3,2.2,1.9,1.1,1,0.3,1.4,0.7,0.9,0.9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8458671569824219]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6264963150024414]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.612485885620117]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5450572967529297]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.82894515991211]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[88.2]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"01_run1k","values":{"total":[148.3,150.3,150.1,149.1,147.6,147.4,146.2,149.9,148.8,149.5,148.6,148.8,149,149.1,150.7],"script":[14.1,14.1,13.8,13.7,13.6,14.1,13.7,13.8,13.9,13.7,14.1,14.3,14.1,14,14.5],"paint":[23.3,23,22.8,22.8,23.4,23,22.9,22.9,22.6,23.1,23.1,23.3,22.8,22.6,23]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"02_replace1k","values":{"total":[131.1,129.8,132.3,131.9,131.6,130.8,131.4,132.5,132.8,130.8,131.1,132.7,132.1,133.7,130.6],"script":[13.8,14.1,14.3,14.3,14.1,14.3,13.7,13.6,13.9,14.1,14.3,14.4,14.3,14.1,14.1],"paint":[9.3,9.7,9.6,9.9,9.7,9.9,9.5,9.4,9.3,9.6,10.1,9.4,9.9,9.8,9.7]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[178,177.9,185.2,177.5,177,184.7,179.1,185.1,183.5,176.5,177.5,178.6,178.4,179.1,179],"script":[49,49.8,50,50.7,48.6,50.4,49.2,51.9,49.9,48.6,50.4,50.2,50,49.5,51.2],"paint":[13.5,12.5,13.8,13.4,11.4,14.5,13.7,13.6,14.6,14.4,13,13.9,14.8,12.2,15]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"04_select1k","values":{"total":[159.5,159.4,153.2,158.6,160.2,157.2,156.3,159.4,159.3,158.1,158.1,152,149.8,148.4,159,157.6,157.6,156.8,158.9,159.2,157.1,158.5,151.2,156.5,158.9],"script":[49.5,53.7,50.2,52.6,50.5,51.5,51.1,51.9,50.5,51.3,51,49.8,50.2,50.9,51.6,49.5,49.8,51.9,50.4,52.1,50.1,52.8,50.6,50.3,49.5],"paint":[2.6,2,2.6,1.8,2.6,2.2,2.3,2.8,3.2,2.5,2.5,0.8,2.1,2.2,1.9,2.3,1.4,2.2,2.6,2,2.5,2.6,1.4,2.6,3.1]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"05_swap1k","values":{"total":[184.1,189.2,186.5,177.8,183,178,177,176.5,179.3,179.5,184.7,186.5,177.2,178.4,176.4],"script":[49.1,52.8,51.6,48.8,48.6,47.4,48.2,50.6,49.7,48.7,50.1,58.2,49.1,48.5,48.4],"paint":[8.2,9.9,10.7,9.4,8.4,9.7,9.7,10.1,10.2,11.2,9.3,10.1,9.6,10.2,9.3]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[153,162,152.2,161.3,153.9,159.7,161.8,152.7,152.1,152.1,151.1,152.9,161.7,152.5,153.4],"script":[27.4,28.4,28.2,28,28.1,28.4,28,29,28.2,27.4,27.5,27.3,29.3,27.7,28.3],"paint":[21.1,22,21.7,22.4,21.8,21,22.4,21.4,21.9,20.8,21.9,21.5,21.3,21.9,21.7]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"07_create10k","values":{"total":[907.2,923.6,914.6,913.2,915.2,906.2,916.1,916.1,908.8,916.1,923.7,916.4,916.4,914.6,932],"script":[126.2,132.2,130.9,129.1,130.4,129.6,128.3,130.2,130.9,128.7,128.5,132.2,126.4,129.3,129.4],"paint":[239.5,239.2,237.4,247.1,239.4,239.9,239,237.7,240.3,245,238.8,246.2,240.2,239.3,248.2]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[183.1,180.9,181.6,178.7,180.6,180.3,181.8,172.1,180.5,180.9,181.3,172,174,173.3,173.1],"script":[25.3,26.8,25,24.9,25.6,26.4,25.5,24.8,25.8,25.5,25.4,25.4,25,25,25.2],"paint":[27.7,27.9,28.4,27.5,27.7,27.9,27.9,27.6,28.1,27.8,27.8,27.7,27.8,28,27.5]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[111.5,152.6,110.3,109.1,111.5,143.7,108.9,112,151.9,107.3,110.8,143.7,108,108.6,143.7],"script":[11.8,14.9,11.8,13.2,12.2,13.3,11.7,11.8,12.2,12.8,12.2,11.4,10.8,12.2,13.1],"paint":[2.3,2,1,1,1.6,0.4,1.5,1.4,0.7,1.2,1.4,1.3,1.6,1.7,1.6]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[4.355800628662109]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.993358612060547]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.05091381072998]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.745615005493164]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.01460266113281]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[946.8]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[243.2]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[1087]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.6,26.8,27.9,27.3,27.2,26.9,27.2,27.3,26.9,27.4,27.1,26.8,27,27.2],"script":[3.9,3.6,3.2,3.3,3.3,3.4,3.2,3.2,3.2,3.3,3.3,3.3,3.2,3.1,3.3],"paint":[23.1,23.6,23.3,24.1,23.6,23.4,23.3,23.5,23.6,23.3,23.7,23.4,23.3,23.5,23.5]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"02_replace1k","values":{"total":[11.4,11.4,11.5,11.7,11.3,11.5,11.3,11.7,11.3,11.4,11.6,11.6,11.5,11.8,11.8],"script":[1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.4,1.2,1.2,1.2,1.2,1.2,1.3,1.2],"paint":[9.8,9.8,10,10,9.7,10,9.8,10,9.8,9.9,10,10.1,10,10.2,10.2]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,12.4,11.7,11.9,13.9,11.9,11.8,13.1,13.1,12.4,13,13,13.6,12.4,12.7],"script":[1,1,1.4,0.9,2.6,1,0.7,0.7,0.7,1.2,1.6,1.7,2.1,1.4,1.7],"paint":[9.9,10.2,9,9.8,10.2,9.9,9.5,10.1,10,10.5,10.3,10.3,9.9,10,9.8]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,2.6,2.5,3,3.1,3.6,3.7,3.2,2.7,4,4.2,2.5,2.8,2.7,2.8,2.5,2.9,2.6,2.1,2.3,3.8,3.9,3.3,4.6,3.4],"script":[0.9,0.2,0.7,0.9,0.7,0.9,0.6,0.2,0.9,0.9,1.1,0.2,0.8,0.8,0.2,0.1,0.9,0.6,0.5,0.1,0.8,1,0.8,0.8,1.6],"paint":[0.4,1.1,0.5,1.3,1.5,1.1,0.9,2.6,1,1.4,1.3,1.4,1.3,1.4,2.1,1.2,1.4,1.3,0.7,2,2.6,1.6,0.7,0.4,1.4]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.9,9.2,8.5,9.2,9.5,9.3,8.6,8.8,9.6,9.7,9.5,9.1,9.5,9,9.2],"script":[0.8,1,0.1,0.1,0.5,1.2,0.1,0.5,0.9,0.5,0.2,0.1,0.5,0.5,0.1],"paint":[7,7.4,7.5,7.9,8.1,7.2,7.2,7.7,6.4,8.2,8.5,7.9,7.8,7.4,7.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.3,22.9,23.3,22.1,22.4,21.7,22.2,21.9,22.9,22,22.1,21.6,21.9,22.4,22.3],"script":[1.9,2.2,2.4,2,1.9,1.9,1.9,2.2,2.2,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[19.3,19.8,20.3,19.3,19.8,19.1,19.7,19,20,19.5,19.2,19,19.4,19.9,19.8]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"07_create10k","values":{"total":[289.3,284.8,288.4,286.9,288.4,285.7,288.9,286.7,289.4,290,287.4,288.8,285.8,288.8,286.3],"script":[37.7,37.2,38.9,38.1,38.5,37.9,38.3,36.1,37.8,38.7,37.3,38.4,37.4,37.9,38.5],"paint":[245.8,241.5,243.5,242.8,243.8,241.9,244.7,244.8,245.3,244.9,244,244.6,242.1,244.3,241.7]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.9,31.5,30.5,31.5,31.7,32.3,31.6,30.9,31.3,31.1,30.9,31,31.4,31.7,31],"script":[3.9,4.2,3.9,4.4,4.2,4.6,4.5,4.3,4.2,3.9,4,3.6,3.5,4.5,3.7],"paint":[26.2,26.6,25.9,26.4,26.8,27,26.5,25.9,26.4,26.4,26.2,26.6,27.1,26.5,26.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.6,10.1,9.7,9.8,10,9.3,9.7,10.5,9.2,9.1,9.9,9.6,10.3,9.6],"script":[7.7,7.6,8.3,7.5,7.3,8.3,7.7,7.7,8.2,7.6,7.8,8.1,8,8,7.5],"paint":[0.7,1.1,0.6,1.6,1.2,0.3,0.2,0.9,0.9,0.2,1.1,1.2,0.6,1.3,0.7]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6224489212036133]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7926549911499023]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.860128402709961]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7777929306030273]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.13471221923828]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[69.5]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.6,28.5,28.4,28.5,28.3,28.4,28.8,28.5,28.4,28.2,28.1,28.1,28.5,28.3],"script":[3.7,3.3,3.7,3.7,3.6,3.3,3.5,3.7,3.3,3.4,3.6,3.3,3.6,3.4,3.3],"paint":[24.5,24.9,24.4,24.3,24.5,24.6,24.6,24.7,24.8,24.6,24.3,24.5,24.2,24.7,24.6]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.6,11.2,11.4,11,11.2,11,11.7,10.6,11.4,11.4,11.1,11.1,10.8,11.8,11.2],"script":[0.9,1.1,0.9,1,1,0.9,1.1,0.9,1.2,1.2,1,1,0.9,1.2,1],"paint":[9.4,9.8,10.1,9.6,9.9,9.7,10.3,9.3,9.8,9.9,9.7,9.7,9.5,10.2,9.9]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,13,12.5,12.9,12.4,12.8,12.2,13,13.5,12.6,12.5,12.7,11.8,12.1,12.6],"script":[1.5,1.8,1.3,1.5,1.8,1.6,1.5,2.1,1.5,1.4,1.8,1.5,1.1,1.7,1.6],"paint":[9.3,9.6,10.5,9.8,9.7,9.9,9.8,9.4,10.6,10.2,9.8,9.3,8.2,9.4,10.2]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[5.1,2.7,2.9,2.7,2.7,2.1,2.1,2.6,2.6,2.8,4.4,2.4,2.5,2.3,3.1,2.5,2.5,2.9,2.6,3.5,2.8,3,4.2,2.7,2.9],"script":[0.7,0.6,0.6,0.6,1.2,0.8,0.3,0.2,0.1,0.9,0.6,0.5,0.1,0.2,0.9,0.5,0.8,0.8,0.8,0.5,0.9,1.2,0.6,0.8,1],"paint":[1.3,1.4,1.5,1.5,1.4,1.2,1.7,2.1,2.3,1.8,1.4,0.3,1.5,1,1.4,1.4,0.8,1.9,1.1,1.5,1.2,1.3,0.9,0.3,1.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,8.8,8.9,9,8.6,9.5,9.6,9.7,10.3,9.3,9.6,9.1,8.8,9.4,9],"script":[0.1,0.5,0.1,0.6,0.5,0.2,0.8,0.6,1.2,0.9,0.9,0.2,0.7,0.5,0.9],"paint":[8.3,7.3,7,6.3,7.2,8.3,7.6,8.2,8.1,7.4,7.2,7.1,7,7.9,6.8]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.3,21.7,21.9,21.7,22.1,21,21.4,21.2,21.7,21.6,22.4,22,21.1,21.2,21.6],"script":[1.8,1.6,1.8,1.4,1.5,1.6,1.4,1.7,1.7,1.5,1.5,1.4,1.6,1.5,1.7],"paint":[20.8,19.5,19.4,19.3,19.9,18.7,19.3,18.5,19.4,19.4,19.6,19.8,18.9,19,18.8]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[294.7,294.1,293.5,293.5,296.4,297.5,292.1,294.8,297,295.9,294.6,293.3,295.2,296,294.7],"script":[42.1,42.1,41.8,41.9,42,42.5,41.6,42.4,43.3,43.2,42.9,42.2,41.8,42.2,41.6],"paint":[246.8,245.8,245.5,245.3,247.4,248.6,244.6,246.2,247.4,246.6,245.8,245.1,246.9,247.5,247]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.5,32.5,31.7,31.3,32.4,31.8,32,31.9,31.8,32.9,31.5,32.5,31.6,31.7,31.7],"script":[3.4,3.6,3.5,3.5,3.5,3.5,3.7,3.5,3.5,3.6,3.4,3.7,3.7,3.5,3.4],"paint":[27.4,28.1,27.5,27.1,28.1,27.5,27.6,27.7,27.6,28.6,27.4,28.1,27.2,27.5,27.5]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.5,11.2,10.8,11.1,9.8,10.4,10.3,10.9,10.1,11.6,10.3,9.8,11,10.7],"script":[9,8.8,8.7,8.4,9.3,8.3,8.5,8.5,9.4,8.3,9.8,8.4,7.7,9,8],"paint":[0.9,0.7,2.2,0.9,0.7,0.9,1.1,1,0.6,0.7,1.2,1.4,1,0.3,1.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7117424011230469]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.156473159790039]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1605091094970703]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8840885162353516]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.805948257446289]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[26.1]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[9.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[71.6]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[40.2,39.7,41.5,39.5,40.2,40.2,38.9,39.6,39.5,39.1,39.5,39.4,39.6,39.8,39.9],"script":[15.5,15.3,16.8,15.4,15.5,15.1,14.7,15.2,15.2,15.3,15.3,15,15.5,15.2,15.4],"paint":[24.3,24,24.3,23.7,24.3,24.7,23.9,24,23.9,23.4,23.9,24,23.7,24.2,24]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[25.7,26.6,25.9,26.2,25.8,26,25.9,26,25.9,25.7,26.1,26.4,25.8,26,26.1],"script":[15,15.6,15,15.3,15,15.2,15.1,15.1,15,14.9,15.2,15.4,15.1,15.1,15.1],"paint":[10.3,10.6,10.4,10.5,10.4,10.4,10.5,10.5,10.4,10.4,10.5,10.5,10.3,10.5,10.6]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[53.8,51.9,53.3,53.1,52.4,52.2,51.6,51.8,52.7,53.3,52.5,52,51.9,51.9,52.6],"script":[39.8,39.3,39.8,40.1,39.3,39.4,39.4,39,39.8,39.6,39.8,39.2,38.8,39.8,39.8],"paint":[12.9,10.6,11.1,11.4,12,11.8,11,10.3,12.1,12.6,11.1,11.3,11.9,10.6,11.8]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[38.9,39.8,40,39.3,39,38.7,39.2,39,38.3,38.7,39.8,39.4,39.3,38.8,39.7,39.7,39,38.1,40,38.4,40.5,40.6,39.2,39.1,38.8],"script":[36.4,37.1,36.3,36.9,36.8,36.8,36.8,35.9,35.4,35.8,36.7,36.7,36.9,36.3,37,37.3,36.3,35.2,37.5,36.3,37.9,37.5,36.6,36.8,36.8],"paint":[2.3,1.8,2.4,1.5,1.3,1,0.9,2.2,2,2.2,2.8,2,1.8,1.7,2.5,2.2,2.2,1.9,1.9,1.9,1.6,1.8,1.5,0.9,1.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[47.4,46.2,46.7,47.9,47.4,47,47,50.8,47.5,50,49.2,47.3,47.4,47.6,48.1],"script":[37.7,36.9,37.3,38.2,37.7,37.9,37.3,40.5,37.8,39.6,38.1,38.3,36.8,37.2,37.6],"paint":[7.9,7.3,7.4,8.4,8.5,7.8,8.8,9.2,8.7,8.8,8.3,8,9.4,9.2,9.4]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[50.9,50.5,48.8,49,49.7,49.4,49.2,49.6,49.5,48.6,50.4,50,48.1,50.7,48.4],"script":[28.3,27.6,27,27.1,27.3,27.3,27.5,27.4,27.5,26.9,28.1,27.4,26.8,27.3,26.8],"paint":[21.7,22.1,21.1,21.2,21.3,21.3,20.8,21.6,21.2,21,21.6,21.5,20.6,22.7,20.7]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[452.5,454.4,423,462.4,441.9,440.1,443.9,446.6,431.5,442.8,469,459.2,447,470,437.8],"script":[191.2,190.6,163.2,198,178.2,177.4,181.6,182,162.7,180.8,204.4,196.6,185,207.3,175.4],"paint":[255.2,257.5,254.2,258.6,257.8,256.1,256.4,258.7,260.4,256.5,258.3,256.3,256.3,257.2,256.5]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.9,55.1,55.1,56.1,55.7,55.8,54.7,54.7,54.6,54.3,54.8,54.6,54.1,54.4,54.2],"script":[25.9,26.5,26.5,26.2,27.2,27,26.4,26.3,26.3,26.1,26.3,26.2,26,26.3,26],"paint":[27.2,27.8,27.8,29.1,27.7,28,27.5,27.6,27.6,27.4,27.7,27.6,27.3,27.3,27.5]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.4,23,20.3,20.1,20.9,22.1,22.5,23.5,19.1,22.2,21.4,19,23,20.4,23.3],"script":[21.5,21.2,18.9,19,19.4,20.6,21.1,21.6,18.1,20.6,20.1,18,21.8,19.2,21],"paint":[1.4,1.6,1.3,1,1.4,0.8,0.3,1.8,0.9,1.5,0.8,0.9,0.9,1.1,1.8]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.761448860168457]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.359124183654785]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.491471290588379]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.911900520324707]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[56.13281726837158]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[253.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.9]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[292.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"01_run1k","values":{"total":[35.2,34.2,34.8,35.1,34.9,34,33.7,34.7,35,35.2,34.4,34.6,35.1,34.7,34.4],"script":[11.4,10.9,11,11.2,11.3,10.9,10.5,11.1,11.3,11.5,11.1,10.8,11.4,11,10.6],"paint":[23.2,22.8,23.3,23.4,23.1,22.6,22.6,23,23.1,23.1,22.7,23.2,23.2,23.1,23.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"02_replace1k","values":{"total":[16.8,17.2,16.9,17.1,16.5,16.8,16.8,17,16.1,16.3,17,17.1,16.4,17.1,16.9],"script":[6.2,6.5,6.4,6.5,6.3,6.2,6.3,6.5,5.8,6.2,6.5,6.5,6.3,6.3,6.3],"paint":[9.9,10.1,10,10.1,9.7,10.1,10,9.9,9.8,9.6,9.8,10.1,9.6,10.3,10]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.3,19.2,18.9,18.3,20.2,19.5,16.7,18.5,18.9,17.6,20.1,17.9,18.4,20.5,17.5],"script":[5.8,7.1,6.6,6,6.2,6.6,4.9,5.5,5.9,5.7,6.7,5.5,5.3,6.6,5.5],"paint":[10.2,9.6,10.2,10.6,12.4,10.6,10.5,11.1,11.5,10.5,11.6,9.9,10.7,11.6,9.9]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"04_select1k","values":{"total":[5.7,5.9,5.6,4.8,4.7,5.1,6.5,5.7,5.7,4.7,5.6,4.2,6.3,5.3,4.8,3.6,4.7,5,5,5.1,4.9,5,5.9,5.4,4.9],"script":[3,3.4,2.2,2.6,2.4,3,3.9,2.7,3.1,2.6,2.5,2.1,2.6,2.5,2.7,1.7,2.5,3,2.6,3.2,2.4,2.6,2.4,2.3,2.8],"paint":[1.8,2.3,2.5,1.4,2.2,1.7,2.1,1.7,2.2,0.9,2,2,1.8,2.1,2,1,2,1.8,2.2,1.2,1.3,1.5,1.2,2.6,1.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,11.7,12.3,10.9,12.4,11.8,11.8,11.6,11.5,11.6,10.9,11.8,11.7,11.7,12.4],"script":[2,2.6,3.8,2.2,3.8,2.4,2.5,2.7,2.7,2.1,2.3,2.7,2.9,2.8,3.4],"paint":[7.8,7.3,7.6,6.8,7.6,8.1,8.3,7.4,7.8,8.5,7,6.8,7,7.5,7.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,14,14.3,13.3,14.2,14,13.4,13.6,14.1,14.2,13.9,14.2,13.9,13.6,13.4],"script":[2.5,2.8,3.4,2.8,3,2.8,2.6,2.6,2.9,3.4,2.6,3.3,2.9,2.9,2.9],"paint":[10.1,10.4,10.2,9.8,10.5,10.5,9.8,10.4,10.6,10.2,10.3,9.7,10,10.1,10.1]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"07_create10k","values":{"total":[435.6,434.5,437.5,452.1,443.1,438.7,432.3,442.3,441.6,442.5,435.3,438.7,436,438.8,437.3],"script":[189.1,188.1,192.5,204.7,195.4,191,187.7,193.8,195.8,196.4,189.2,192.2,191.4,193.8,191.8],"paint":[240.2,240.5,238.9,241.4,241.7,241.7,238.7,242.6,239.5,239.7,240.3,240.7,238.2,239.2,239.4]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,38.2,38.7,38,38.2,38.4,39,38.4,39.6,37.8,38.9,38,37.4,38.2,37.9],"script":[10.3,10.5,9.8,9.9,10.2,10.2,11.2,10,9.6,10.2,10.6,9.8,9.6,10,10.1],"paint":[26.7,26.8,28,27.2,27,27.3,26.9,27.5,29.1,26.7,27.4,27.3,26.9,27.3,26.9]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.7,12.6,13,13.1,13.8,13.1,12.2,13.5,12.7,13.7,13.9,13.9,12.7,14.6,15.5],"script":[12.1,10.6,10.5,11.1,11.7,9.9,10.1,10.8,10.9,11.5,11.7,11.7,10.8,11.6,13.1],"paint":[1,0.9,1.8,1.8,1.2,0.9,0.8,2,0.3,1,1.3,0.8,1.7,1.5,0.6]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1372013092041016]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.804512977600098]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.394497871398926]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.757935523986816]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.65065097808838]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[179.5]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[30.2,30.9,29.1,29.8,28.6,28.6,29.9,29.7,30.3,30.6,28.6,28.5,28.6,29.1,28.4],"script":[4.9,5.3,4.7,5,4.8,4.7,5.3,4.9,5.3,4.9,4.6,4.7,4.6,4.6,4.6],"paint":[24.9,25.1,23.9,24.4,23.5,23.5,24.1,24.3,24.4,25.2,23.6,23.4,23.5,24.1,23.4]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[12,12.2,12.3,12.4,12,12,11.9,12,12.2,12.4,12,12.3,11.7,12.2,11.9],"script":[1.6,1.6,1.7,1.7,1.5,1.6,1.4,1.8,1.7,1.7,1.6,1.6,1.5,1.7,1.7],"paint":[10,10.2,10.3,10.3,10.1,10,10.1,9.9,10.1,10.1,10.1,10.3,9.8,10.1,9.9]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,13.6,12.2,13.7,14.6,13.6,13.1,13.1,13.3,14,13.7,12.5,15.4,13.1,13.5],"script":[2.4,2.1,1.3,2.3,3.2,2.2,1.6,1.8,1.8,2.3,1.8,1.6,2.1,1.9,2.3],"paint":[9.8,10.5,9.9,9.9,10.1,10.3,10.2,10.4,10.1,11,11.3,10,11.4,9.8,10.3]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.6,5.2,3.7,4.2,4.5,5.4,4.6,4.9,4.4,5.1,4.8,4.9,4.5,5,4.3,4.2,5.8,4.4,4.4,5.3,5.9,5.9,4.9,5.7,4.3],"script":[2.1,3.5,2.1,2,2.1,3,2.6,2.1,2.6,2.6,2.6,2.1,1.8,2.7,1.7,2.3,3,2,2.3,3.1,3.4,3.4,3,3,2.6],"paint":[1.4,1.6,1,2.1,1.4,1.7,1.5,2.3,1.6,1.8,1,1.6,1.5,1.6,2.4,1.1,1.7,1.5,1.6,1,1.6,2.2,1.8,2.5,0.7]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10.4,11.9,11.7,11.6,10.8,11.5,10.8,11.3,11.9,11.9,12,10.7,10,11.5],"script":[2,1.7,1.3,2,2.6,1.9,2.2,2,1.7,2.9,2.2,3,2.7,2,3.3],"paint":[7.2,7.2,9.4,8.3,7.6,8.1,8.4,7.5,8.5,8,7.3,8.4,6.4,6.4,6.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.4,23.5,25,24.5,23.3,24.1,23.7,23.1,24.6,24,24,23.6,22.7,23.9,25.3],"script":[3.3,3.3,3.8,3.5,2.5,3.4,3.2,2.4,3.4,3.2,3.3,3.4,2.5,3.3,3.8],"paint":[19.4,19.1,20.3,20,20,20,19.4,19.7,20.2,20.1,19.6,19.5,19.2,19.4,20.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[306,307.6,307.4,306.6,306.5,309.1,305.7,306.2,308,305.6,305.6,305.6,305,305.2,305.1],"script":[51.2,52.2,52.3,52.4,52,51.5,51.7,51.3,52.1,51.9,52.3,52.5,51.7,51.7,50.5],"paint":[248,248.9,248.3,247.5,247.7,250.9,248,248.1,249,247.6,246.7,246.4,247,246.6,248]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,32.8,33.6,32,33.3,33.5,33.3,33.4,33.2,32.6,32.1,32.4,32.1,34,32.4],"script":[4,4.1,4.3,4.2,4.2,4.3,4.4,4.4,4.1,4.1,4,4.1,4.1,4.1,4.2],"paint":[27.6,27.9,28.5,27.1,28.2,28.3,28.1,28.2,28.3,27.7,27.3,27.5,27.3,29.1,27.5]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,10.9,12.5,11.3,13.8,12.3,12.8,12.6,12.3,11.8,12.6,12,11.8,12.4,11.8],"script":[10.2,9.4,11.3,9.4,11.6,10.5,10.6,9.8,9.8,10,10.1,10.3,9.7,10.9,9.1],"paint":[0.9,0.6,0.3,1.7,1.1,1,1.9,1.7,2.2,1,1.7,1.1,1.8,0.7,1.5]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6753578186035156]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7713241577148438]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.82611083984375]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8250322341918945]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.915014266967773]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"01_run1k","values":{"total":[27.3,27.1,27.7,27.4,27.3,27.1,27.2,26.8,27,26.5,28.8,27.4,27.1,28.7,29.1],"script":[3.3,3.1,3.2,3.3,3.4,3.2,3.3,3.2,3.3,3.3,3.6,3.3,3.4,3.4,3.8],"paint":[23.6,23.6,24.1,23.7,23.5,23.5,23.6,23.3,23.3,22.9,24.8,23.7,23.3,24.9,24.9]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"02_replace1k","values":{"total":[11.3,11.3,11.8,11.8,11.4,11.5,12.1,11.7,11.7,11.7,11.8,11.7,11.7,11.2,11.7],"script":[1.1,1.1,1.3,1.3,1.1,1.1,1.3,1.2,1.2,1.2,1.2,1.1,1.1,1,1.1],"paint":[9.9,9.9,10.1,10.1,10,10,10.5,10.2,10.2,10.1,10.2,10.2,10.3,9.8,10.2]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.6,13.2,13.4,13.1,13.3,15.1,12.8,13.4,12.8,11.8,14.4,13.9,12.8,12.9],"script":[1.1,1.4,1.9,1.7,1.5,1.9,2.1,1.2,1.3,1,1.4,1.5,1.8,1.7,1],"paint":[10.3,11,10.1,10.8,10.6,10.5,11.5,9.8,11,10.5,9.4,11.9,10.8,10.2,10.4]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"04_select1k","values":{"total":[6,4.2,3.9,2.6,3.4,3,3.8,3.4,4,3.4,3.1,2.9,3.3,3.6,3.4,3.5,3.9,3.6,2.8,2.9,2.9,3.4,4.3,3.5,3.1],"script":[1.7,1.9,1.4,0.9,1.5,1.1,1.4,0.9,1.8,0.9,1,1.5,0.7,1.2,1,1.1,1,1.5,0.7,1,0.8,1.2,1.9,1.3,1.3],"paint":[2.5,2.1,1.6,0.7,1.7,1.1,1.5,2.2,1.4,1.4,1.6,0.7,2.1,1.5,2,1.6,2.6,2,1.5,1.1,1.1,1.2,1.3,2.1,1.7]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"05_swap1k","values":{"total":[9.8,10.6,10.4,10.4,9.9,9.2,9.9,11.8,10.9,9.7,9.4,10.3,10.2,11.1,10],"script":[0.9,2.5,1.5,2,1.6,0.9,1.4,3.4,2,0.9,0.7,1.4,2.2,2.5,1.4],"paint":[7.6,7,7.9,7.8,7.1,6.7,7.6,7.4,7.3,7.7,7.7,7.7,6.9,7,7.4]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.3,22.9,22.2,23.2,22.6,22.9,23.6,23.8,23.8,22.9,23.7,23.7,23.8,24.4,23.4],"script":[2.7,2.8,1.9,2.6,2.2,2.6,2.7,2.7,2.5,2.7,2.6,2.8,2.6,2.9,2.7],"paint":[19.7,19.2,19.6,19.9,19.8,19.8,20.3,20.2,20.5,19.3,20.3,20.3,20.5,20.8,20]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"07_create10k","values":{"total":[294.8,298,296.4,296.2,297.5,298.1,298.8,298.6,295.5,296.8,295.1,295.8,298,295.5,297.2],"script":[43.6,43.3,43.4,43.8,43.7,43.8,44.5,44.4,43.2,43.5,42.6,42.7,43.7,43.1,43.2],"paint":[245.3,248.2,247.2,246.1,247.4,247.8,247,247.7,246.2,247.4,245.7,246.8,247.4,245.6,247.3]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.6,33.3,32.6,32.1,32,32.4,31.8,33,33.4,33.6,33.3,33,32.6,32.7,32.6],"script":[4.4,4.4,4.4,4.3,4.4,4.3,4.3,4.6,4.4,4.4,4.3,4.5,4.4,4.3,4.4],"paint":[27.4,28.1,27.5,27,26.8,27.3,26.8,27.7,28.2,28.3,28.2,27.8,27.4,27.7,27.5]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,11.8,11.8,11.8,12.9,12.4,12.1,11.6,11.2,11.6,13.5,11.1,11.1,11.1,11.4],"script":[9.2,9.3,9.7,10.2,10.4,10.3,10.4,9.5,9.3,9.1,11.3,8.7,9.8,9.1,9.5],"paint":[1.6,1.9,1.6,0.3,1.8,1.4,1.2,0.2,1,0.5,1.3,1.4,0.3,0.8,1.1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6202430725097656]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.65869140625]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6771888732910156]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.670069694519043]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.812206268310547]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.7]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.6]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[31.3,30.9,31,31.4,30.6,30.9,30.7,30.6,31.2,30.7,31.2,30.6,30.9,30.4,30.8],"script":[6.3,6.2,6.2,6.2,6,6.1,6.3,6.2,6.7,6.1,6.4,6.2,6.2,6.2,6.3],"paint":[24.4,24.1,24.2,24.6,24,24.2,23.8,23.9,23.8,24,24.3,23.9,24.1,23.6,23.9]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[19.1,19.1,18.8,19.3,18.3,19,19.2,18.4,19.7,18.7,18.4,19,18.8,18.4,19],"script":[7.1,7,7,7.4,6.8,7,7.1,6.8,7.2,7.1,6.8,7.1,6.9,6.8,7.1],"paint":[11.4,11.5,11.3,11.3,10.9,11.4,11.5,11,11.9,11,11,11.3,11.3,11,11.4]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.1,32.1,34.2,32.9,36.2,34.1,36.6,33.8,35.7,33.9,33.5,36,34.5,32.1,33.9],"script":[21.2,18.6,19.8,18.9,20.2,18.8,22,18.8,21,19.4,19.7,21,20.6,18.7,20.2],"paint":[12.4,11.3,11.6,13.1,12.3,12.1,11.9,13.2,11.8,12.3,12.5,13.1,11.8,11.8,12.1]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[23.2,22.8,21.1,20.6,21.8,20.5,21.2,22.7,21.4,20.7,21.3,21.8,21.8,20.5,20.7,20.8,20.7,21.7,19.9,20.7,20.8,21.8,21.3,20.5,21.7],"script":[19.6,19.1,17.9,17.6,18.7,17.8,18.4,18.6,17.7,17.3,17.6,18.5,18.8,17,17.6,18.5,17.7,18.7,17.3,17.7,18,18.7,17.8,17.6,18.2],"paint":[2.6,1.7,1.5,1.6,2.3,1.1,1.7,2.3,2,1.8,3.1,1.5,1,1.8,2.7,0.4,1.6,1.3,1.2,1.6,1.7,1.5,2.1,1.2,1.9]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[28,28.8,29,29.6,28.5,28,28.2,28.5,29.3,27.7,27.9,27.4,26.9,29.7,29.8],"script":[17.4,17.6,18,18.7,17.7,17.1,17.9,18.3,18.4,17.6,17.6,17.1,17.1,17.8,18.6],"paint":[7.9,8.9,9,8.8,8.5,9.2,7.6,7.4,8.9,7.8,7.7,8.3,7.7,8.4,8.7]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[36.1,35.8,35,34.6,35,35.1,34.2,35.3,34.9,36.4,35.5,36,35,34.3,36.9],"script":[12,12.5,11.8,12,12,11.6,11.7,12.2,11.9,13.2,12.7,12.1,12.6,11.7,12.9],"paint":[22.8,21.7,21.9,21.3,21.9,21.7,21.1,21.6,21.5,22.1,21.5,22.6,21.2,21.4,22.5]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[324.8,323.7,327.3,323.4,322.6,325.3,324.6,322.9,324.4,323,323.8,321.6,320.3,325.6,325.6],"script":[70.6,70.6,71.1,70,69.5,71,69.6,67.9,68.9,70.1,70.2,68.8,69,71,69.9],"paint":[247.8,246.7,249.7,247.2,246.6,247.7,248.3,248.7,249,246.6,247.2,246.2,244.6,247.9,248.3]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.5,41.9,41.4,42,41.9,41.6,42,43.2,42.3,41.5,42.1,41.8,41.2,42.2,41.9],"script":[12.8,12.8,12.2,12.5,12.4,12.6,12.4,13,12.9,12.5,12.6,12.5,11.7,12.9,12.6],"paint":[28.8,28.1,28.1,28.6,28.5,28,28.6,29.2,28.4,28,28.5,28.3,28.5,28.2,28.3]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.3,15.9,15.3,15.5,14.6,13.4,15.4,15.5,13.4,16.2,16.8,13.8,13.2,16.1,14.1],"script":[11.8,14.5,12.9,12.8,12.7,11.5,13.3,12.9,11.4,13.6,13.2,11.6,11,14.3,12.3],"paint":[1.8,0.3,1.7,2.2,0.7,1.1,0.3,1.8,0.4,1.3,2.2,1.2,1.2,1.6,1]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4975700378417969]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.100435256958008]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3394241333007812]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6800298690795898]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.004801750183105]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.3]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.9]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.1]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[37.5,36.4,34.9,34.5,38.3,35.7,38.4,35.5,32.5,32.8,35.1,35.9,35.6,31.2,35.8],"script":[6.2,6.5,6.5,6.3,6.7,6.8,6.2,6.4,6.6,6.4,6.6,6.4,6.4,6.5,6.4],"paint":[23.2,24.2,24.5,24.3,24.2,24.3,24.2,23.9,24.4,24.8,24.4,24.5,24.1,24.4,24.1]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[43.6,35.8,44.7,43.2,43.2,36.1,38.5,43.8,43.3,39,39.2,42.8,37.2,37.8,37.6],"script":[11.9,12.1,13.1,12.9,12.9,12.1,12.1,12.9,12.5,12.3,12.4,13.6,12.3,12.7,13.5],"paint":[23.1,23.3,24,23.7,24.3,23.6,24,23.8,23.5,23.4,23.6,23.5,23.4,24.2,23.6]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32.4,30.9,16,31.7,14.3,30.5,32.5,15.1,15.7,14.8,14.9,17.5,15.1,30.6,30.4],"script":[2.6,3.3,2.6,3.6,2.7,2.9,3.5,2.3,2.5,3.1,2.5,3.3,2.9,3.4,2.9],"paint":[13.4,11.4,11.1,11.5,11.4,11.5,12.3,10.9,13,10.8,10.6,12.6,11.2,9.5,10.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[32.9,24.3,28,22.8,22.5,26,28.1,22.8,30.5,23.7,24,19.6,25.5,23.7,23.9,19.1,24.8,23,23.8,24.6,29.6,27,29.6,23.9,23],"script":[3.1,3,3.4,2.3,3.1,2.8,3.3,2.6,3,2.6,3.2,2.8,2.6,3.4,2.5,2.7,3,2.5,3.3,2.6,2.8,2.6,3.2,2.4,2.5],"paint":[16.3,16,16.2,14.7,15.1,15,14.6,14.7,16,15.2,15.1,15.4,16.2,14.8,15.5,13.7,15.2,13.6,14.4,14.6,17.2,14.4,15.8,13.9,15.2]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[131.5,131,150,147.9,144.6,147.5,145.8,145.8,146.5,129.3,146.5,130.7,132.8,131.6,148.1],"script":[31.1,31.6,31.8,31,30.6,30.8,31.4,31.9,31.3,29.8,31,31.7,31.1,29.9,32.3],"paint":[98.9,97.4,101.4,98.8,96.7,99.5,98.2,97.1,97.4,98.2,99,97.4,99.8,99.1,98.8]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.7,14.8,16.8,21.2,18.8,15.4,14.6,20.6,15.9,16.7,16.3,17.1,17,16.6,14.4],"script":[1.3,1.2,1.2,1.2,1.1,1.2,1.3,1.3,1.5,1.4,1.2,1.4,1,1.3,1.2],"paint":[10.3,11.2,10.5,10.4,11.2,10.5,11.1,11,10.7,10.6,10.7,10.4,10.6,10.2,10.3]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[322.4,326.8,323.6,320.7,328,321.7,320.4,327.8,321.7,330.9,322.1,322.8,319,326.4,325.5],"script":[75.5,75.6,75.4,74.5,75.3,74.7,74.9,77.1,75.4,75.3,74,75.3,74.8,75.5,75.3],"paint":[242.6,240.5,242.5,242.4,245.2,239.8,241.2,243,242.4,245.1,241.7,240.7,240.6,239.9,241.4]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.4,42.7,37.1,43.4,42,41.6,43.2,43.3,42,36.5,40.9,42.7,42.5,42.1,41.7],"script":[8.1,8.3,8.3,8.3,8.4,8.2,8.2,8.2,8.1,8.2,7.9,7.9,8.3,8.1,7.8],"paint":[27.7,28.7,28.3,28.7,27.4,27.8,27.6,28.2,27.8,27.9,27.5,27.8,28.6,27.1,27]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,24.9,25.7,9.2,25.2,26.1,26,26.4,9.6,25.8,10.8,10,10.2,27.3,27.2],"script":[7.3,7.4,8.5,8.1,8.2,8.9,8.9,7.7,7.7,8.3,9,8.2,8.7,9.4,9.8],"paint":[1.7,1.8,1.2,0.3,0.9,1.3,1.1,1.7,1.9,1.2,0.3,0.9,0.7,1.1,0.8]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6131687164306641]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8982019424438477]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8136377334594727]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8730258941650391]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.841801643371582]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.4]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.8]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[69.6]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"01_run1k","values":{"total":[25.6,25.3,25.3,25.2,25.4,25.3,25.7,25.8,25.6,25.9,24.9,25.3,25.7,25.3,25.6],"script":[1.6,1.5,1.6,1.5,1.6,1.4,1.6,1.6,1.6,1.6,1.5,1.5,1.6,1.6,1.5],"paint":[23.6,23.4,23.4,23.3,23.4,23.5,23.8,23.8,23.6,23.9,23.1,23.5,23.8,23.3,23.8]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"02_replace1k","values":{"total":[10.9,10.8,10.9,11.1,10.9,10.8,11,10.9,11,10.9,10.8,10.8,10.9,11.2,10.9],"script":[0.6,0.6,0.5,0.7,0.7,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[10,9.9,10,10.1,9.9,9.8,10,9.9,10.1,10,9.9,9.9,10,10.3,10]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.6,11.1,11.2,11.4,11.5,11,12.1,12.4,10.7,10.7,10.8,12.2,12.5,12.5],"script":[0.5,0.8,0.1,0.6,0.8,0.6,0.3,0.1,0.8,0.1,0.1,0.1,1.2,0.9,0.7],"paint":[10.4,9.3,9.7,9.4,8.8,10,8.9,11.1,10.6,10,8.5,9.5,9.7,10.5,10.7]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"04_select1k","values":{"total":[1.9,2.1,2.3,2,1.6,2.5,2.1,2.8,2,2.4,1.8,2.2,2.5,1.8,2,2.5,2.4,2.4,2.7,2.3,2.1,2.9,2.5,1.4,2.4],"script":[0.1,0.1,0.6,0.4,0.5,0.7,0.1,0.8,0.1,0.6,0.2,0.1,0.5,0.1,0.1,0.7,0.1,0.5,1,0.1,0.1,0.1,0.1,0.1,0.4],"paint":[1,1.9,1.2,1.5,1,1.6,1.4,1.1,1.8,1.3,1,0.8,1.3,1.6,1.1,1.6,1.4,1.7,1.6,1.2,1,1.1,2.1,0.3,1.6]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"05_swap1k","values":{"total":[8.3,8.8,8.4,7.7,7.9,8.3,8.7,8,8.4,8.8,8,8.5,9.3,8.4,7.8],"script":[0.1,0.1,0.3,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,1,0.1,0.1],"paint":[7.3,6.8,7.1,6.4,7.2,7.6,7.3,7.1,7.2,7.7,5.8,7.2,6.6,7.7,6.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.6,10.5,10.4,10.3,10.8,10.3,10.8,10.5,10.9,10.3,10.7,10.4,10.3,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.2,0.2,0.1,0.1,0.1,0.2,0.1],"paint":[9.9,10.7,9.9,9.6,9.7,10.1,9.4,9.9,9.4,10.1,9.6,9.8,9.4,9.6,9.7]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"07_create10k","values":{"total":[268.4,266.7,267.7,269.2,270.6,266.9,268.1,266.3,268.1,267.3,269,267.5,264.3,268,266.7],"script":[17.1,16.8,17.6,17.2,16.5,17.2,17.2,16.6,17.1,17.3,17.4,16.9,16.5,17.8,17.2],"paint":[245.1,244.2,244.4,245.2,247.1,243.7,244.9,244.1,245,244.5,244.9,244.7,242.1,244.3,243.7]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28.2,28.2,28.3,29,28.9,28.5,28.7,27.9,28.4,28,28.6,28.1,27.8,28.3],"script":[1.5,1.5,1.5,1.5,1.4,1.5,1.6,1.6,1.5,1.6,1.5,1.5,1.5,1.5,1.5],"paint":[25.8,26,25.9,26.1,26.8,26.7,26.2,26.4,25.8,26.1,25.8,26.3,25.9,25.7,26.1]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.5,8.8,9.7,8.9,10.5,9.5,8.9,8.1,8.9,8.8,10.6,9.1,9.7,8.8,9.1],"script":[6.7,6.7,7.4,6.8,8.4,8,7,6.7,7,6.5,8.4,7.2,7.8,6.7,7.3],"paint":[0.2,0.6,1.5,0.9,1,0.7,0.9,1.1,0.4,1.2,1.3,0.9,0.8,1.1,1.2]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.59954833984375]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0261878967285156]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0438232421875]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7543220520019531]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.19172191619873]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.5]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"01_run1k","values":{"total":[33.4,33.9,33.6,33.9,34.2,34,33.6,33.4,34,33.6,33.3,33.6,33.5,33.6,33.6],"script":[8.7,8.9,8.7,8.9,8.8,8.6,8.6,8.9,8.9,9.1,8.9,9.1,8.9,8.8,8.7],"paint":[24.1,24.5,24.4,24.4,24.7,24.7,24.5,23.9,24.4,23.9,23.7,24,24,24.2,24.3]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"02_replace1k","values":{"total":[19.8,19.8,19.4,18.9,19,19.1,19.7,19.3,19.5,18.3,19.9,18.3,18.5,19.3,18.7],"script":[8.9,8.9,8.7,8.2,8,8.6,8.8,8.4,8.7,7.9,8.7,7.8,8.1,8.4,8.1],"paint":[10.4,10.3,10.1,10.1,10.5,10,10.4,10.3,10.3,9.9,10.6,9.9,9.9,10.2,10]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11,10.7,11.5,11.5,11.7,11.3,13.4,12,12.1,11.1,11.4,11.8,11.7,11.1],"script":[1,0.1,0.1,0.1,0.7,0.5,0.8,0.5,0.9,1.1,0.1,0.1,0.9,1.2,0.1],"paint":[9.9,9.7,9.7,9.8,9.9,10.1,9.5,11.6,10.5,10,10,10,10.3,9.3,9.4]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.8,2,2.4,8,2.2,5.2,5,4.6,4.2,5.2,8.3,2.4,6.3,8.9,6.1,2,7.2,2.8,3.5,1.9,2.4,6.1,2.2,1.7],"script":[0.4,0.1,0.1,0.4,0.7,0.1,0.1,0,0,0.1,0.1,0.1,0,0.4,0,0.1,0.4,0.1,0,0.1,0,0.9,0.4,0.4,0],"paint":[1.7,0.8,1,1,1.4,1.5,2.9,1.2,0.8,1.7,1.6,1.2,2.2,1.4,2.5,1.9,1.5,2.3,0.8,1,0.9,1,1.6,1.7,1.5]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"05_swap1k","values":{"total":[8.9,9.1,8.7,9,9.4,9.4,8.9,8.8,9.5,9.2,8.3,8.5,8.8,8.9,25.6],"script":[0.2,0.8,0.2,0.5,0.5,0.2,0.9,0.2,1.1,0.6,0.7,1.1,0.5,0.2,0.1],"paint":[7.7,6.3,7.1,7.2,7.7,8.2,6.9,7.8,7.4,7.1,7.4,6.8,7.3,8.1,7.1]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.7,10.6,10.3,10.6,10.6,10.4,11,10.9,10.4,10.4,10.7,10.5,10.7,10.9],"script":[0.1,0.3,0.2,0.1,0.2,0.3,0.1,0.1,0.4,0.1,0.4,0.1,0.2,0.3,0.3],"paint":[9.6,9.9,9.9,9.6,9.8,9.6,9.7,10.2,9.6,9.7,9.3,10.1,10,9.7,10.2]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"07_create10k","values":{"total":[332.2,335.7,334.1,334.1,333.9,335.2,334.5,335.3,334.6,334,331.3,332.8,336.5,333.8,334.4],"script":[84.9,86.1,85.9,85.3,85,86,85,86,85.4,85.3,84.5,85.3,85.8,85.5,84.6],"paint":[241.2,243.4,242.3,242.6,242.4,243.2,243.1,243,243.3,242.7,240.9,241.4,244,242.4,242.7]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,35.5,35.8,36.7,36.5,36.1,35.2,36.5,35.6,35.4,35.5,35.7,35.6,36.8,36.3],"script":[7.8,7.7,8,7.8,8,8,7.7,7.9,7.9,7.8,7.7,7.7,8,8,7.8],"paint":[26.7,26.8,26.9,28.1,27.6,27.2,26.6,27.7,26.8,26.7,26.8,27.2,26.7,28,27.5]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,9.7,10.4,9.7,10.2,10.9,12.3,10.7,10.3,11.2,11.7,10.1,10.2,10.3,10.4],"script":[8.1,7.6,8.5,7.8,7.8,8.7,10.3,9.1,8,9,9.3,8,8.5,8.4,8.9],"paint":[0.9,1.9,0.7,1.1,1.8,1.5,1.2,0.3,1.7,1.6,0.7,1.5,1,0.9,0.2]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7403564453125]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.011449813842773]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.02622127532959]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0410537719726562]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.955354690551758]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[51.2]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[73.1]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"01_run1k","values":{"total":[47.1,44.7,55.8,42.5,49.3,46.5,46.8,50.2,46.9,48,49.5,42.1,50.7,49.3,47.1],"script":[17.8,18.3,17.2,18.2,18.2,17.7,18.2,18.5,17.6,17.8,17.6,18.1,18.1,17.7,19],"paint":[23.5,23.1,20.7,23.8,23,23.4,23.5,23.1,23.3,23.5,24,23.6,23.5,23.2,23.1]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"02_replace1k","values":{"total":[30.1,27.8,27.4,32.1,30.9,32.9,30.2,28.1,29.4,29,32.8,30.3,27.5,29.3,31.9],"script":[15.1,15.2,15.1,15,15.3,15.9,15.6,15.4,15.4,15.4,15.4,15.4,16.1,15.2,15.2],"paint":[10,9.8,9.9,9.7,9.8,10.3,10.1,9.8,9.8,9.8,10,10.1,9.8,10,9.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[53.9,64.6,68.2,53.6,49,71.2,69.8,68,55.2,63.8,49.8,65.1,48.7,64.9,55.6],"script":[40.1,33.7,38.3,37.9,35.5,42.5,39.8,37.4,41.7,33.1,34.4,35.5,34.5,35.5,41.2],"paint":[12.9,13.8,11.9,13.1,12.4,11.7,13.8,11.9,13.2,13.7,12.6,13.5,13.8,11.6,11.3]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"04_select1k","values":{"total":[43.3,44.7,41,42.5,39.3,40.8,45.3,43.9,47,41.3,41.8,41.1,45.1,42.5,44.5,44.8,41.8,46.5,42,43.4,44.9,42.1,45.6,43,40.9],"script":[38.6,36.3,34.5,36.9,33.5,35.8,40,37.8,37.1,34.4,35.2,36.1,39.8,37.1,37.3,38.1,36.5,38.5,35.4,33.4,38.6,36.5,40.9,35.6,35.8],"paint":[2,3.5,4.1,3,3.7,3.2,3.5,2.6,3.2,4,3.3,2.9,2.8,4,3.8,4,2.3,2.6,3.4,4.3,2.6,2.6,2.7,2.8,3.5]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"05_swap1k","values":{"total":[64.4,61,63.2,61.1,62.6,61.7,59.9,59.8,59.4,60,48.2,43.3,45.5,45.2,61.4],"script":[36.3,31.8,34.9,32,32.5,31.9,32.5,32.1,31,32,36.8,30.9,32,33.5,34.1],"paint":[10.5,11.6,10.4,11.4,12.4,9.9,8.3,10.5,11,11.1,9.5,11.2,10.3,9,10.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[43.7,43.8,41,38.3,40.9,45.9,44.5,40.2,39.4,42.3,41.2,45.2,41.4,45.3,43],"script":[18.5,18.1,17.4,17.2,17.2,17.9,17.7,17,17.6,18.1,18.6,17.7,18.5,18,18.1],"paint":[21.8,22.3,21.2,20.4,21.7,21.4,21.1,21.1,20.9,21.6,21.1,20.5,21.7,21.2,21.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"07_create10k","values":{"total":[438.4,432.4,430.3,438.4,431.3,438.6,432.8,436.5,436.1,433.1,433.1,438.9,434.7,432.6,442.6],"script":[188,182,180.9,186.5,182.2,188,185.4,184.3,184,181.1,183.1,185.5,183.7,184.6,188.3],"paint":[239.3,241.3,239.1,242.3,239.8,240.6,238.2,240.8,242.7,241.4,240.9,242.9,240.1,241,243.1]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[65.7,65.5,64.7,60.3,59.2,61.8,60.8,60.1,65.2,65.5,60.5,65.2,66.9,55.9,60.7],"script":[26.8,26.6,26.9,27.3,26.2,26.1,27.4,27.3,26.7,27.6,27,26.9,27.1,27.4,27.1],"paint":[28.4,27.6,27.6,27.4,27.5,27.2,27.7,27.3,27.5,28,27.5,27.3,27.5,27.9,28]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[42.8,42.3,42.1,40.9,43.9,45.9,42,43.3,40.6,46.4,44.6,42.3,44.6,43.2,40.5],"script":[17.8,17.9,18,18.5,18.8,18.5,17.1,17.6,17.1,18.6,18.7,17.6,17.8,17.7,16.6],"paint":[2,2,2.3,2.5,2.1,2.7,3.1,2.7,2.7,2.8,1.5,3.3,1.4,1.7,2.1]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.576343536376953]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.192411422729492]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.601268768310547]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.169883728027344]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.77620983123779]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[495.4]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"01_run1k","values":{"total":[30.7,30.4,31.5,31.4,30.9,30.3,31.5,30.7,30.9,30.6,30.9,30.5,32.1,30.4,30.4],"script":[6.1,5.9,6.3,6.4,6.2,6,6.7,6,6,6,6,6.2,6.6,6,6],"paint":[24.1,24.1,24.7,24.6,24.3,23.9,24.4,24.3,24.5,24.2,24.4,23.9,25.1,23.9,24]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.3,33,33.5,33.4,33.1,33.3,33.7,33.1,33.4,32.9,33.4,33.6,33.5,34.3],"script":[8.6,8.5,8.4,8.6,8.6,8.4,8.5,8.5,8.5,8.5,8.3,8.4,8.9,9.1,8.6],"paint":[24.4,24.4,24.2,24.4,24.3,24.3,24.4,24.8,24.2,24.5,24.1,24.5,24.3,24,25.1]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.2,15.2,14.1,13.9,14.4,14.8,14.7,14.1,13.6,14.6,13.4,14.4,13.7,14.6,13.8],"script":[2.9,2.7,2.3,3.1,2.9,2.7,2.9,2.9,2.8,3.3,2.7,2.7,3,2.5,2.6],"paint":[8.9,11,9.9,9.9,10.5,9.8,9.4,10.5,10.1,10.6,9.6,10.5,10,10.9,10]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"04_select1k","values":{"total":[6.3,6.3,6.4,6,6.3,6,6.2,6.6,6.3,6.6,6.4,6.2,6.1,6.5,6.7,6.1,6.4,7.4,5.7,6.1,6.8,6.5,6.2,6.7,6.6],"script":[4.1,4.1,4.7,3.6,4.2,3.9,4.2,4.5,4.6,4.5,4,3.6,4.5,4.7,4.2,3.5,4.7,5.5,3.9,4,4.8,4.4,4.2,4.6,4.7],"paint":[1.1,1.1,1.6,1.6,1.2,1.3,1.2,0.8,1.2,1.5,1.4,2.4,1.5,1.7,1.2,1.9,1.6,1.2,1.1,1,1.9,1.6,1.9,1.5,1.4]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"05_swap1k","values":{"total":[11.7,11.7,12.1,11.6,11.3,11.5,11.5,12.2,12.1,13,11.4,11.5,11.7,11.3,12.2],"script":[3.2,3.2,3.4,3.4,3.6,2.8,3.4,3.2,3.3,3.2,2.8,3.3,3.3,3.4,3.6],"paint":[6.9,7.1,7.8,7.3,6.6,7,6.4,7.9,7.7,8.4,7.1,6.6,6.9,6.7,7.3]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,12.8,13.3,13,13.6,12.7,12.9,12.8,13.8,13.2,13.8,12.9,12.9,13.1,12.7],"script":[2.4,2.4,2.5,2.4,3.2,2.7,2.4,2.5,3.2,2.5,3.2,2.5,2.4,2.5,2.4],"paint":[9.6,9.8,9.9,9.7,9.8,9.4,10.1,9.7,10,10.1,9.8,10.1,9.9,10,9.6]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"07_create10k","values":{"total":[390.8,389.1,390.1,391.5,388.5,392.6,392.9,389.7,390.5,390.2,390,395.1,394.1,390.9,388.6],"script":[147.9,147.5,147.7,149.4,147,149,145.8,148.5,149,147.6,148.2,151.3,150.2,148.3,146.2],"paint":[236.6,235.4,236,235.8,235.6,236.7,241.1,234.3,235.4,236.3,235.4,236.8,237.4,236.3,235.9]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.9,49.4,49.5,50.9,49,48.5,49.5,48.7,49.8,49.4,48.9,49.6,49.5,49,49.4],"script":[20.1,20.6,20,20.4,20,19.6,20.4,19.7,20.4,20,20.1,20.1,20.3,20.2,20.2],"paint":[27.9,28,28.6,29.6,28.2,28.1,28.3,28.1,28.6,28.5,28,28.6,28.4,27.9,28.3]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.4,18.3,19.1,16.4,17.1,18.4,17.9,18.3,16.8,18.2,17.9,16.2,17.1,16.6,18.3],"script":[16.5,16.9,17.7,15.3,15,17.2,16.4,17.1,15.5,17,16.5,15,16,15.5,16.7],"paint":[0.4,1.3,1.3,0.9,1.4,0.8,1.1,0.3,1.2,0.4,1.3,0.7,0.9,0.9,0.3]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.832932472229004]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.79171371459961]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.793968200683594]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.290390014648438]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.50400924682617]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[229.6]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[65.8]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[293.8]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"01_run1k","values":{"total":[36.5,37,35,37.1,35.2,35.3,35.7,37.8,37.6,38.3,37.8,37.8,37.6,36.2,35.5],"script":[13.4,12.1,12.9,12.3,12.5,12.7,12.9,12.1,12.1,12.2,12.2,12.3,12.3,13.3,12.9],"paint":[22.7,24.6,21.7,24.5,22.3,22.2,22.4,25.1,25.1,25.7,25.1,25.1,24.8,22.5,22.2]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"02_replace1k","values":{"total":[38.1,37.2,37.5,37.3,37.1,38.2,38.1,37.8,36.7,37,37.4,38.2,38.4,37,37.5],"script":[15.1,14.1,14.6,13.9,14.2,14.9,15.2,15.1,13.9,15,14.8,15,15.1,14.2,14.8],"paint":[22.5,22.6,22.5,23,22.4,22.9,22.6,22.3,22.4,21.7,22.2,22.8,22.9,22.4,22.3]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,16.2,14.3,15.5,53.2,14.8,54.5,53.7,54.5,54.2,54.1,15.6,55.1,16,15.4],"script":[2,1.9,1.7,2.3,1.9,1.9,1.8,1.9,1.6,1.6,1.8,1.9,1.4,1.7,2.2],"paint":[12.9,12.7,9.2,12.2,11.2,11.5,12.2,12.3,11.5,11.3,11.2,12.5,12.9,13.4,11.6]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"04_select1k","values":{"total":[11.9,6.8,13.7,8.6,15.4,10.8,13.8,12.8,13.9,15,14.7,11.6,14.4,9,14.9,10.3,15.1,6.1,14.5,5.6,8.6,10.9,6,10.2,15.2],"script":[3.6,3.9,3.9,3.4,3.6,3.5,3.6,4.4,4,3.2,2.9,3.7,4,3.3,3.1,3.8,3.1,4.3,3.7,3.4,3.5,3.3,3.1,3.6,3.1],"paint":[1.6,2.2,1.2,1.4,2,2.2,2.2,1.6,2.1,2,2.4,1.7,1.8,2,2.5,1.1,2.2,1.6,1.4,1.2,0.8,2.2,2.4,1.6,2.5]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"05_swap1k","values":{"total":[17.6,16.5,17.7,16.4,16,16,14.7,17.2,15.7,16,16.7,16.5,15.7,15.8,15.8],"script":[0.9,1.3,1,0.6,1.3,0.9,0.7,0.9,0.2,0.2,0.9,0.9,0.9,0.7,0.3],"paint":[16.1,13.6,15.2,15.3,13,13.9,12.8,15.3,14.3,14.7,15.2,13.7,13.8,14,14.7]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,13.5,13.6,13.7,20.6,14.5,12.1,13.5,12.8,13.3,13.5,12.5,18.8,21.2,14.2],"script":[0.3,0.3,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.3,0.4,0.3,0.2],"paint":[11.1,11.1,10.7,11.2,11.3,11.1,11.7,10.9,11.1,11.3,11,11,11.3,11.7,11.2]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"07_create10k","values":{"total":[],"script":[],"paint":[]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.6,39.9,39.7,39.6,41.2,41.5,40.4,41.9,39.7,40.5,39.9,40.1,39.5,39.6,40],"script":[12.9,12.9,12.8,12.6,14.7,13.6,12.8,14.7,12.9,12.8,12.8,13.2,12.3,13,12.7],"paint":[26,26.3,26.1,26.3,25.8,27.2,27,26.5,26,26.9,26.4,26.2,26.5,25.9,26.6]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.5,17.3,17.2,16.2,15.8,16.3,16.7,18.3,15.2,15.4,16.7,16.5,17,17.5,15.4],"script":[15.2,15.7,15.7,14.6,14.8,13.9,15.1,16.5,13.6,14.4,14.9,14.9,15.8,15.7,13.6],"paint":[1.3,1.3,1.3,1,0.3,1.3,1.4,0.9,0.7,0.8,1.7,0.3,0.7,0.9,1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6192045211791992]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.524650573730469]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.544765472412109]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.465714454650879]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.54783058166504]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[28.8]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[9.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.4]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"01_run1k","values":{"total":[35.5,35.4,37.6,35.8,38,32.6,35.1,33.4,36.5,35.1,37.5,37.3,33.6,33.8,35.3],"script":[26.8,27.4,27.6,28.1,27.1,27.1,27.1,27.5,27.2,27.1,27.4,26.9,27.8,28.5,27.3],"paint":[22.3,22.7,22.9,23.3,22.6,22.5,22.5,23,22.5,22.7,22.4,22.7,23.2,23.8,22.8]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"02_replace1k","values":{"total":[26.8,23.6,24.2,24.5,22.9,25.3,25,25,25.9,23.8,23.4,19.3,24.4,26.4,25.3],"script":[16.7,17.1,16.3,16.5,16.7,17.5,16.5,16.9,16.6,17,16.9,16.6,16.8,16.3,16.7],"paint":[9.7,10,9.8,9.8,9.8,9.7,9.7,9.7,9.7,10.1,10,10,9.8,9.7,9.7]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[42.1,58.3,59.6,57.6,41.9,59.3,58.4,42.1,58.5,42,59.5,40.7,58.6,42.9,59],"script":[34.4,35.5,36.3,35.2,35,37,36.4,35.3,35.7,35,36.3,34.8,36.6,35.7,36.1],"paint":[12,13.1,12.7,12.9,12.9,12.7,13.8,11.2,14,13.2,11.5,11.8,10.8,10.8,12.6]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"04_select1k","values":{"total":[34.2,36.2,34.9,36.3,35.7,36.9,35.1,34,33.6,35.6,34.9,36.4,36.4,34.9,34.7,36.4,35.2,36.6,35.3,38.5,37.9,35.1,34.8,36,34.7],"script":[29.3,29.7,29.5,30.5,30.7,30.4,30.1,28.6,28.5,29.3,29.1,30.2,29.4,29.8,30.3,30,30.1,29.6,29.2,30,29.7,30,30.7,30.6,28.9],"paint":[2.5,3.5,3.1,2.1,2.1,2,2.6,3.4,3.2,2.6,2.7,3.8,2.6,2.1,2.1,4,2,2.9,3,3,3.1,2.8,2.4,2.9,1.3]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"05_swap1k","values":{"total":[63.9,56.7,58.1,41.8,39.8,41.3,56.5,61.1,56.8,41.4,57,58.4,40.3,56.8,55.9],"script":[36,34.6,35.6,34.2,33.3,34.5,33.7,35.7,33.9,35.3,35.2,35.2,33.7,33.9,34.9],"paint":[10.6,12,9.9,9.9,8.2,8.2,9.7,9.8,9.9,9,11,10.9,9.5,9.4,10.3]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[40.4,45.4,39.6,43.9,39,43.5,46.5,37.7,38.8,41.6,40.9,41.7,40.3,45.4,39.4],"script":[16.3,16.8,17.6,16.4,17.2,17.1,16.8,16.2,16.7,16.9,16.3,16.2,16.7,16.3,17.5],"paint":[20.2,20.6,20.5,20.5,20.4,20.6,19.8,19.7,20.4,20.6,20,20.2,20.1,20.7,20.4]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"07_create10k","values":{"total":[318,314.7,317.4,315.5,311.9,313.1,314.7,314.3,311.3,314.2,313.8,313.5,309.6,315.2,314.5],"script":[270.3,271.2,271.9,269.4,269.8,268.8,270.9,269.3,267.2,270.1,270.4,268.9,265.8,270.5,268.1],"paint":[245.6,244.5,244.7,244.5,242.1,244.4,244.8,242.6,241.6,244.7,243.6,242.1,243.2,244.4,242.9]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.7,46.2,48.4,46.1,40.4,39.9,46.9,46.3,40.3,46.8,40.7,40.3,45.5,46.3,45.8],"script":[34.3,35.6,35.5,35.6,35.3,34.8,34.9,35.7,35,35.5,35.4,35,35,34.9,35.3],"paint":[26.3,27.4,27.3,26.8,26.8,26.5,26.5,27,26.3,26.8,26.9,26.5,26.6,26.1,26.8]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.2,19,19.4,20.2,19.8,18.6,19.8,19.9,18.6,19.6,19.5,18.3,18.4,17.7,19.5],"script":[15,15.3,15.9,16.6,16.4,14.3,16.7,16.2,14.7,15.9,16,15.1,15.4,14.3,15.9],"paint":[2.7,2.6,2.5,1.1,2,3.3,2.6,1.2,1.8,2.8,1.5,1.2,1.9,2.8,1]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.401860237121582]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.895707130432129]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.967459678649902]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.6522140502929688]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.13407039642334]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.6]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[118.6]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"01_run1k","values":{"total":[29.3,29.1,29.2,29.2,28.8,28.9,29.3,30.3,29.2,29.3,30.2,28.7,29.1,28.6,28.7],"script":[4.9,4.8,4.9,5,4.9,4.8,4.8,5.2,4.9,4.9,4.8,4.7,4.9,4.8,4.8],"paint":[24,23.9,24,23.9,23.5,23.7,24.1,24.7,24,24,24.9,23.5,23.8,23.5,23.5]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"02_replace1k","values":{"total":[14.6,14.4,14.8,14.3,14.6,15,15.5,14.4,15.3,14.7,14.4,14.2,15,14.4,15.1],"script":[3.8,3.7,4.2,3.8,4.3,4.1,4.1,3.8,4.2,4,4.1,3.7,4.2,3.9,4.2],"paint":[10.3,10.3,10.1,10,10,10.5,10.9,10.2,10.7,10.3,10,10,10.3,10.1,10.4]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,14,15.1,15.3,14.9,15.2,14.6,13.5,15,15.4,15.2,15.1,16.1,15.4,14.3],"script":[2.6,2.8,3.1,3.1,3.6,2.5,2.5,1.7,2.9,3.5,3.3,2.9,3,3.2,2.5],"paint":[10.7,10.1,10.4,11.2,10.4,11.6,11.3,10.8,11.5,10.3,10.3,11.2,11.5,10.9,10.5]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.8,2.1,2.6,2.8,3,2.5,3.1,2.4,2.9,3,2.7,2.5,3.1,2.8,3.5,3.3,2.7,3,2.9,3.5,2.7,3.3,3,2.9],"script":[1.2,0.6,0.3,0.2,0.5,0.9,0.8,0.6,0.5,0.9,0.2,0.6,0.2,1,0.2,1.2,0.8,0.2,0.7,1,1.4,0.6,1.1,0.6,0.6],"paint":[1.9,0.6,1.2,2.2,2.2,1.3,0.7,2.3,1,0.9,1.4,1.5,2.2,1.9,2.5,1.4,1.5,1.4,1.3,1.5,1.4,1.4,2,1.6,2.1]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9,9.9,10.6,9.9,9.3,9.2,8.9,10.1,9.5,9.4,9.4,9.4,9.7,10.1,10.1],"script":[0.9,1.3,0.9,0.8,0.7,1.1,0.9,1.1,0.6,0.8,1.4,0.6,0.5,1.3,0.9],"paint":[7.1,7.5,8.1,7.5,7.7,7.1,6.4,7.6,7.1,7.8,6.8,7.8,8.1,7.6,7.5]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.3,28.7,29.5,28.2,29.5,29.1,29.3,28.6,28.6,28.8,28.8,29.5,28.4,30.3,29],"script":[7.6,7.3,7.6,7.6,7.8,7.8,8.1,7.5,7.3,7.3,7.8,8.1,7.7,7.9,7.5],"paint":[19.6,20.3,20.6,19.8,20.4,20.4,19.8,20.3,20.2,20.6,20,19.9,19.8,21.4,20.8]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"07_create10k","values":{"total":[365.2,364.4,361.6,365.6,363.4,365.9,362.8,363.6,364.9,363.9,366.4,363.9,362.9,366.3,364],"script":[107.2,108.7,108.5,109,109,108.5,109.1,108.2,108.6,108.4,108.9,108.6,108,109.1,109],"paint":[250.9,248.5,246.4,249.8,247.9,250.7,246.7,249,249.8,248.7,249.9,248.8,248.2,249.8,248.5]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.6,44.3,45.2,45.3,44.6,44.6,45.2,45.1,44.9,45.2,45.1,45.6,45.3,45.2,45],"script":[15.7,15.5,15.6,15.6,15.5,15.7,15.6,16,15.8,15.5,16,15.9,15.6,15.7,15.9],"paint":[27.9,28,28.7,28.7,28.2,28.1,28.5,28.3,28.2,28.6,28.3,28.9,28.8,28.6,28.2]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.3,14.6,14,14.8,17,14.4,17,14.5,14.3,18,16.6,16.3,14.5,14.4,14.6],"script":[13.5,13.2,13.4,13.3,14.9,12.8,15,13,12.8,16.2,14.4,14.2,12.7,12.4,13.2],"paint":[0.9,1.1,0.3,0.6,1.6,1.4,1.6,1.5,1.1,1.7,1.2,1.4,1.4,0.9,1.2]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.009720802307129]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.224269866943359]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.155147552490234]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.849298477172852]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.14302062988281]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.8]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[107.7]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"01_run1k","values":{"total":[39.4,40,40.4,40,39.9,39.7,39.9,39.6,40,39.5,39.2,39.3,39.8,40.2,39.1],"script":[16.5,16.7,16.7,16.8,17,16.7,16.7,16.5,16.6,16.4,16.5,16.4,16.6,17.1,16.4],"paint":[22.5,22.8,23.3,22.7,22.6,22.5,22.7,22.7,22.9,22.7,22.2,22.4,22.8,22.6,22.3]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"02_replace1k","values":{"total":[13.6,13.4,13.5,13.3,14.5,13.4,13.5,13.4,13.2,13.7,13.5,13.7,13.1,13,13.4],"script":[2.7,2.7,2.8,2.6,2.8,2.7,2.7,2.7,2.6,2.7,2.7,2.7,2.7,2.4,2.6],"paint":[10.4,10.3,10.3,10.3,11.3,10.3,10.5,10.3,10.1,10.5,10.3,10.6,10.1,10.3,10.3]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,14,13.1,13.8,13.1,13.7,13.4,12.5,14,13.1,13.1,12.8,13.6,13.2,13],"script":[2.6,2.3,1.8,1.4,1.8,2.3,1.7,2.3,2.2,2.2,2.7,2.1,1.8,2,1.6],"paint":[10,10.4,9.9,11.5,10.3,10.8,9.7,9,10.8,9.3,8.7,9.4,10.9,10.2,10.4]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"04_select1k","values":{"total":[8.2,8.9,7.7,7,7.5,6.6,6.9,6.9,7,7.5,7,6.9,8.4,7.4,7.1,7,7.1,6.4,6.2,7.2,7,6.8,6.4,6.6,6.1],"script":[5.4,6.5,4.8,4.7,5.6,4,4.5,4.9,4.6,4.5,4.8,4.6,4.2,4.9,4.3,4.2,4.2,4.1,4.2,4.8,4.4,4.4,4.3,4.5,3.8],"paint":[2.5,1.5,2.7,2.2,1,1.8,1.8,1,1.4,2,2,1.3,0.5,1.9,1.9,1.7,1.4,2.2,0.7,2.2,2.1,1.1,1.6,1.4,2.1]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"05_swap1k","values":{"total":[9,9.1,8.7,9.5,8.6,9,9.8,9.4,9.8,9.9,9.1,8.6,9.7,8.7,9.4],"script":[0.3,0.8,0.7,0.2,0.2,0.8,0.2,1,0.8,0.6,0.8,0.9,1.1,0.9,0.8],"paint":[8.1,6.9,6.1,8.1,7.3,7.3,8.7,7.4,7.6,8.3,7.3,6.5,7.5,6.2,7.5]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[26.6,27.6,26.6,28.2,27.3,28.3,27.8,27.8,28.6,26.4,28.1,26.5,28,26.6,26.4],"script":[4.6,4.8,4.8,4.8,4.8,5.1,4.8,4.4,4.9,4.4,4.8,4.5,4.8,4.3,4.4],"paint":[21.3,21.9,20.5,22.8,21.8,22.2,22.3,22.5,22.8,21.3,22.6,21.3,22.2,21.3,21.2]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"07_create10k","values":{"total":[403.2,404.9,405,403.2,402.7,404.5,405.2,402.7,406.2,402.3,404.3,402.5,403.5,402.9,405.1],"script":[155.7,157.6,156.2,156,156.9,157.8,157.8,157.6,156.7,157.5,157,156.4,155.6,155.8,157.1],"paint":[241.2,241.1,242.5,241.1,240.3,240.3,241.2,239.5,242.9,239.1,241.3,240.7,242,241.1,242]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.8,45.8,44.7,44.9,44.7,45.4,45.7,45.8,45.9,45.1,45.7,45.8,45.4,45.7,45.4],"script":[17.2,16.7,16.4,16.3,16.3,16.5,16.5,16.5,17.1,16.9,16.7,16.5,16.7,17,16.5],"paint":[27.8,28.4,27.7,27.8,27.7,28.2,28.3,28.5,28,27.4,28.3,28.5,28,28,28.1]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[21,22.1,21.2,19.5,20.8,21.1,22.2,21.6,21.5,21.7,21.3,20.4,20.3,19.9,20.6],"script":[19.7,19.7,18.9,18.1,19.2,19.3,20.1,19.4,19.7,19.9,19.6,18.5,18.4,18.1,18.5],"paint":[0.7,1.2,1.7,1.3,1.3,1.6,1.5,2,1.4,1.7,1.2,0.3,0.6,1,1.1]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.202219009399414]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.710570335388184]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.7352933883667]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1548643112182617]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.13487243652344]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.7]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[243.7]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"01_run1k","values":{"total":[35.8,35.3,35.5,36.2,35.3,35,35.1,35,35.6,35.5,35.8,36,36.1,35.8,36],"script":[10.8,10.5,10.4,10.7,10.4,10.8,10.4,10.5,10.5,10.7,10.9,11.2,11.2,10.6,10.8],"paint":[24.5,24.2,24.5,24.9,24.3,23.8,24.1,23.9,24.5,24.2,24.4,24.4,24.3,24.6,24.6]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"02_replace1k","values":{"total":[40.1,39.1,37.9,39.1,39.2,40.1,39.8,39.5,39.7,39.3,38.9,39.6,39.4,39.6,39.7],"script":[14.9,14.2,13.9,14.5,14.4,14.7,14.6,14.7,14.6,14.4,14.2,14.7,14.5,14.3,14.6],"paint":[24.5,24.4,23.6,24,24.3,24.8,24.6,24.2,24.5,24.3,24.4,24.3,24.3,24.7,24.5]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.4,14.3,15.1,14.8,16.6,15.5,14.6,14.1,14.3,13.9,13.6,14.9,14.6,14.5,13.7],"script":[2.7,2,3,3.3,2.5,3.4,2.3,2.5,3.1,2.8,2.1,3.5,3,2.6,2.7],"paint":[9.9,11.6,11.5,10.2,12.6,10.2,10.2,10.4,10.2,9.3,10.3,10,10.4,10.1,9.8]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.8,5.1,3.9,3.6,3.4,3.5,3.5,3.5,3.4,3.3,3.7,4,3.8,3.2,3.6,3.3,3.6,3.7,3.7,3.7,3.8,4.1,3.5,3.3,3.4],"script":[1.6,1.7,1.5,1.8,1.3,1.2,1.2,1,1.2,1.4,1,1.8,1.4,1,1.2,1,1.2,1.4,0.9,0.9,1.5,1.5,1.2,1.5,1],"paint":[2.1,3.3,2.1,1,2,1.8,1.1,2.3,2.1,1.1,2.6,2,2,2,2.2,2.2,2.3,2.1,2.1,2.3,2.1,1.1,2.1,1,1.8]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"05_swap1k","values":{"total":[11.5,9.8,10.2,10.5,9.9,10.2,9.5,9.8,10.6,10.8,10.3,10.2,10.2,10.9,11.2],"script":[2.8,1.6,1.8,2.1,1.9,1.6,1.9,1.8,1.7,2.3,1.8,1.4,1.9,1.4,2.5],"paint":[7.5,7.2,7.4,6.9,7.4,5.7,6.4,7,8,7.3,7.6,7.4,6.9,7.6,7.5]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.6,11.9,11.6,11.7,11.8,12.7,11.5,11.6,12.4,11.8,11.5,11.9,11.6,11.6],"script":[1,1,1.1,1,0.8,1.2,1.8,0.9,1.1,1.2,1,1,1.1,1,1],"paint":[10.3,10.2,10.1,10,9.9,10,10.3,10,9.6,10.4,10.3,10.1,10.1,9.7,10.2]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"07_create10k","values":{"total":[343.4,345.2,343.4,343.2,346.2,342.8,345.2,341.9,342.6,344.9,345.3,342,342.9,342.2,343.9],"script":[98.9,99.9,100.7,99.4,100.7,99.4,99.6,99.8,99.1,100.8,100.3,98.1,99.1,99.4,98.8],"paint":[238.7,238,236.5,238,239.7,237.3,239.5,236.1,237.2,238,238.9,238,238.1,236.4,238.1]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.9,39.1,39.4,39.9,39.5,38.1,38.4,38.2,38.7,38.4,39,39.9,38.3,39.2,38.3],"script":[10.4,10.6,10.4,10.8,10.7,10.3,10.4,10.3,10.4,10.3,10.5,10.6,10.2,10.7,10.2],"paint":[27.5,27.6,27.9,28.3,27.9,27.1,27,26.9,27.3,27.2,27.6,28.4,27.2,27.6,27.2]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.1,19.5,18.3,18.2,19.5,17.4,17.4,20.9,20,18.5,22,21.2,20.9,19.1,17.4],"script":[16.8,17.8,16.2,15.7,17.1,15.9,15.8,19.2,17.6,16,18.5,19.4,18.6,17.6,15.5],"paint":[1.6,1,1.9,1.6,0.9,1.4,0.2,0.4,1.4,1.4,1,0.3,1.2,0.7,1]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7552814483642578]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.350414276123047]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.353641510009766]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7018251419067383]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.109444618225098]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[134.4]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[39.5]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[173.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"01_run1k","values":{"total":[32,31.7,33.5,31.3,31.5,31.6,31.4,31.7,31.3,31.2,31.7,31.4,30.6,31.2,30.9],"script":[7.5,7.4,7,7,7.2,7.2,7,7.3,7,7.2,7.1,7.1,6.9,7.3,7],"paint":[23.9,23.7,25.9,23.7,23.8,23.8,23.8,23.6,23.7,23.4,24,23.8,23.2,23.4,23.3]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"02_replace1k","values":{"total":[11.8,11.8,11.7,11.6,11.6,11.8,12,12,11.9,11.8,11.9,11.7,11.6,11.7,11.8],"script":[1.1,1.1,1.1,1.1,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.1,1.1,1.1,1.2],"paint":[10.3,10.3,10.2,10.2,10.1,10.2,10.4,10.5,10.3,10.3,10.3,10.2,10.2,10.3,10.3]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,11.9,13.1,13.1,13,12.3,12.2,13.2,12.7,12.2,12.8,13.4,13.5,14,13.4],"script":[1.6,1,2.1,1.2,1,1,1.1,1.2,1.2,1.2,1.1,1,1,1.7,1.7],"paint":[10,9.6,9.1,10.4,10.6,10.3,9.7,11.1,10.6,10.3,10.4,10.5,10.7,10.8,10.4]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"04_select1k","values":{"total":[3.6,2.8,3.3,2.7,2.8,2.2,3.2,2.7,2.8,2.8,3.3,3,2.9,3,3,2.6,3.7,3.4,3.1,3,2.9,2.9,2.2,2.5,2.4],"script":[0.8,1,1.3,0.9,0.9,0.8,1.4,0.6,0.6,0.9,1.2,1.5,0.9,0.9,1.2,0.9,1.7,0.9,1,0.7,0.8,0.9,0.6,0.2,0.9],"paint":[1,1.6,1.4,1,1,0.3,1.1,1.9,2,1.7,1.8,1.4,0.8,1.3,1,1.2,1.4,1.3,0.6,2,1.9,1.5,0.7,1.1,0.7]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,9.7,9.8,9.2,9.7,9.9,9.5,9.3,9.9,9.5,9.1,9.1,9,9.4,9.8],"script":[1.2,1,1,0.9,0.6,1.5,0.9,1.2,1,1.1,0.6,1.1,1.1,0.6,1],"paint":[8.4,7.7,7.6,7.2,7.3,7.5,7.5,7.2,7.9,6.6,7.2,6.8,7,7.6,7.3]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.9,22.9,23.7,23,23.4,23.1,22.6,22.9,23.7,22.7,23,22.5,22.5,23.1,22.8],"script":[2,1.9,2.8,2.1,2,1.9,2,2.2,1.8,1.9,2.1,1.9,2.1,2,2.2],"paint":[20,20.3,19.9,19.9,20.7,20.5,19.9,20,20.3,19.8,20,20,19.7,20.1,19.6]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"07_create10k","values":{"total":[316.1,320.5,321.2,319.6,320.2,320.9,322.7,321.9,321.3,319.6,321.9,321.3,319.4,317.2,317.9],"script":[69.8,71.5,72.1,71.2,70.6,72.6,73.5,72.4,72.4,72,72.3,73.6,71,70.6,71.1],"paint":[240.5,243.1,242.7,242,243.5,242.4,243,243.3,242.7,242,243.5,241.5,242.1,240.8,240.9]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36,35.7,36.2,36.4,35.5,35.8,35.6,36.1,35.9,35.9,36.3,37.3,36.7,36.6],"script":[7.8,7.9,7.7,7.9,8,7.7,7.8,8.1,7.9,7.7,7.8,7.6,8,7.9,8],"paint":[27.2,27.3,27.1,27.3,27.4,26.9,27.1,26.7,27.3,27.3,27.2,27.8,28.4,28,27.7]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,9.8,10.2,11.1,10.8,10.4,10.2,11.1,9.7,10.2,11,10.7,10.8,12,10.8],"script":[8.4,8.2,8.3,8.6,8.4,8.7,8.8,8.6,7.6,8.4,8.6,9,8.2,9.2,8.7],"paint":[1.7,0.2,0.3,1,1.5,1,0.3,1.4,1.3,0.4,1.1,0.6,1.8,1.7,1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6011896133422852]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.515812873840332]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.551783561706543]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.446413993835449]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.07883358001709]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"01_run1k","values":{"total":[89.7,91.9,84.9,92,91.4,88.7,88.9,93.7,89.1,88.5,89.7,87.8,93.1,89.6,89],"script":[55.5,56.1,51.4,55.1,54.2,52.7,55.5,56,51.7,56.3,55.1,55.7,56.5,54.5,51.1],"paint":[24,24.6,24.3,24.2,24.4,24.3,24.6,24.5,24.8,24.5,24.2,24.7,24.6,24.5,24.3]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[95.7,101.6,102.4,99.8,98.7,106.9,104,96.3,96.8,99.4,94.7,100.2,97.7,99.7,103.3],"script":[66,66.2,68.2,66.1,65.9,69.2,67.2,65.3,66.2,66.6,65.2,67.3,66.1,66.5,66.5],"paint":[24.7,25.1,25.1,24.9,25.1,24.9,25,24.7,25.1,24.7,24.7,25.1,24.8,25.1,25.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[63.1,91.4,93.8,60.9,61.8,93.2,93.7,62.6,93.1,61.4,62.1,89.9,64.2,63.5,92.4],"script":[36.4,33.8,34.3,34,35.3,36.2,33.9,35.4,34.7,33.7,34.9,33.4,35.7,35.7,34.6],"paint":[25.4,26.1,25.4,25.3,24.8,25,26.1,26.3,25,27,25.6,25.5,27.3,25.3,26.4]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"04_select1k","values":{"total":[34.6,27.6,27,35.4,36.5,40.2,33.5,38.7,32.4,28.3,33,32.2,33.5,37.5,27.6,30.1,34.5,30.4,33.8,34.6,36.4,32.4,39.1,31.5,29.1],"script":[4.8,3.8,4.5,6.3,6.1,6,5.1,6.1,4.4,5.8,5.9,4.7,5.4,5.1,5.5,6.6,4.9,5.2,4.2,5.3,6.5,5.5,5.5,5.7,4.9],"paint":[18.8,18.7,19.8,19.7,19.7,17.8,18.8,19.2,17.6,17,17.7,17.8,19.6,19.8,17.4,17.5,18.8,17.3,18.3,19.9,17.3,19.9,18.8,18.4,17.8]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[56.9,57,54.5,56.9,23.8,59,55.6,56.6,57.2,56.3,56.5,57.6,54.7,54.8,57],"script":[6.8,6.5,5.2,6.1,5.8,6.2,6,6,6.2,6.9,6.1,6.7,5.7,5.7,4.8],"paint":[16.7,17.5,17.2,16.4,17.3,17.2,15.9,16.9,15.9,16.8,17.2,16.8,14.6,16.2,17]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[29.2,24.4,30.9,27.1,29.1,26.6,29.9,27.1,28.9,25.9,22.1,26.9,27,33.7,30.2],"script":[1.9,1.9,1.5,2,2.1,2.1,2.1,1.5,2.3,1.7,1.9,1.8,1.4,1.7,1.8],"paint":[12.7,12.6,12.7,12.3,12.6,12.4,12.8,12.8,12.8,13.1,12.1,11.4,12.5,12.2,12.5]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"07_create10k","values":{"total":[689.4,694.7,680.1,682.4,686.7,687,693.9,681.4,680.7,681.7,676.7,696,679.3,678.1,689.4],"script":[414.1,420,407.3,409.8,415,416.1,418.8,413.1,411.6,414,409.1,425.3,410.5,406.6,418.6],"paint":[260.3,260.5,263.2,260,261.1,260.1,260.4,257.9,259.1,259.2,257.9,261.7,259.8,260.9,259.4]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87,88.3,90.4,88.2,87.5,85.7,86.5,87.2,87.4,89.1,89.9,86.7,89.3,89.6,87.7],"script":[50.8,48.3,50.1,50.3,50.6,49.5,50.5,50.7,49.7,49.8,49.7,50.3,49.6,49.2,49.5],"paint":[28.9,28.7,28.7,29.2,29,29.3,29.1,28.9,28.9,29.8,29,29.3,29.2,29.3,29.3]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[101.2,71.8,72.7,71.6,69.3,69.9,71.5,66.5,67.6,67.2,68.8,97.8,70.1,100.6,70.2],"script":[67.1,67.7,69,67.9,65.8,65.4,67,63,63.9,63.4,66,66,67.1,66.3,66.9],"paint":[3.1,2.3,2.6,3.4,1.5,2.8,3.4,2.2,2.1,2.7,2.4,1.9,2.6,4.7,2.2]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[7.6524658203125]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[21.30520248413086]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[24.7176513671875]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[40.64378547668457]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[127.93461608886719]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[2739.7]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[264.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[2517.7]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"01_run1k","values":{"total":[28.8,28.3,28.5,28.8,28.5,29,28,28.9,28.3,29,27.6,28.3,28.8,28.2,28.3],"script":[3.4,3,3.1,3.5,3.4,3.4,2.9,3,3,3.2,2.9,3,3.4,2.9,3.1],"paint":[25,24.9,25.1,24.9,24.7,25.1,24.8,25.4,24.9,25.3,24.3,24.9,25,25,24.9]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"02_replace1k","values":{"total":[13,12.9,13.3,12.6,13,12.8,12.5,13.5,12.8,13.1,13,13.1,12.8,12.9,13],"script":[2.2,2.1,2.4,2,2,2,2,2.4,2.2,2.5,2.3,2.1,2,2.1,2.2],"paint":[10.4,10.5,10.5,10.2,10.6,10.5,10.2,10.4,10.2,10.2,10.3,10.6,10.4,10.5,10.4]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,14,14.8,13.8,14.3,14.6,14.7,14.3,14.1,13.8,14.1,13.8,14.4,15.2,14.3],"script":[2.9,2.9,3.1,3.1,3,3.3,3.3,3,3.1,3,2.3,3,3,3.9,3.1],"paint":[9.9,10.1,10.6,9.8,10.4,10,9.8,10.2,9.9,9.2,10.3,9.8,9.3,9.8,10]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"04_select1k","values":{"total":[4.8,5.1,5.2,4.7,4.9,4.6,4.9,5.7,4.9,4.8,4.9,5.2,5.3,4.8,5.5,4.8,5,5,4.8,4.8,4.8,5.4,4.8,4.6,5.4],"script":[2.3,3.1,3.2,2.1,2.8,2.7,3,3.3,3,3.3,2.6,2.8,2.9,2.7,3,2.8,2.7,3.2,2.4,2.9,3.1,3.4,3.1,2.8,3.5],"paint":[2.4,1.4,0.9,2.1,1.4,1,1.1,1.4,1.1,0.9,1.3,1.5,1.3,1.9,2.3,1.9,2.1,1.6,1.9,1.7,1.5,1.5,1.6,1.5,1.7]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"05_swap1k","values":{"total":[11.7,11,11.7,11.4,11.8,12.7,12.2,12,11.6,11.6,11.6,11.6,11,11.2,10.5],"script":[2.3,2.9,2.7,2.8,3,3.5,3.9,2.7,3.1,2.5,2.8,3.2,2.5,2.5,2.3],"paint":[7.9,6.9,7.4,7.1,7.3,7.9,7,8.3,7.2,8.1,7.3,7.1,7.5,7.8,6.9]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.7,24.7,24.3,24.7,24.8,24.3,24.7,24.4,23.9,25.6,24.4,24.7,25,24.5,24.9],"script":[3.6,3.9,3.7,3.7,3.7,3.5,3.7,3.6,3.6,3.7,3.6,3.4,3.7,3.5,3.6],"paint":[20.5,20.1,20,20.4,20.4,19.9,20.1,19.4,19.7,21.2,20.1,20.5,20.5,20.3,20.3]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"07_create10k","values":{"total":[300.3,297.3,295.2,298,297.3,297.9,294.8,298.4,294.9,297.8,297.9,296.6,297,297.6,296.9],"script":[37.2,37.6,36.5,36.8,37.4,37.1,36.2,37.8,37.4,37.9,37.6,36.1,37.2,37.8,39],"paint":[256.4,252.9,251.9,254.5,253.3,254.1,251.9,253.8,250.7,253.1,253.6,253.8,253.1,252.7,251.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,33.2,32.7,33.4,33.5,32.7,32.9,33.1,34,34.3,33.6,33,32.5,33.4,33.1],"script":[4,3.8,3.7,3.9,4,3.8,4.1,3.8,3.7,4.1,4,3.8,3.8,4.1,3.7],"paint":[28.2,28.7,28.2,28.7,28.7,28.1,28.1,28.5,29.6,29.4,28.9,28.4,28,28.5,28.6]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.2,9.8,10.5,9.3,9.9,11.1,9.6,9.4,9.7,10.2,10.5,9.2,10.6,10.1,10],"script":[8.1,8,8.7,7.5,8,9.1,7.7,7.6,7.9,7.8,8.6,7.6,8.4,8.2,7.8],"paint":[0.6,1,1.1,0.9,1.1,0.8,1.5,0.9,0.7,1.3,0.6,0.6,2,0.2,1.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7533092498779297]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0781898498535156]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.097209930419922]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9411964416503906]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.29501438140869]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[71.1]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"01_run1k","values":{"total":[31.5,31.5,31.5,31.4,31.6,31.7,32.7,32.2,32,31.2,31.9,31.6,31.4,31.8,31.9],"script":[7.5,7.6,7.6,7.5,7.7,7.7,8.3,8,7.5,7.6,7.9,7.7,7.7,7.6,7.6],"paint":[23.4,23.4,23.4,23.3,23.4,23.4,23.9,23.7,24,23.1,23.4,23.4,23.2,23.7,23.8]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"02_replace1k","values":{"total":[11.9,12.4,12.8,12.6,12.1,11.8,12.9,12.8,12.8,11.9,12.9,12.7,11.8,13,12.7],"script":[2,2.2,2.2,2.1,1.9,1.8,2.2,2.2,2.2,1.8,2.1,2.2,1.8,2.2,2.2],"paint":[9.6,9.8,10.3,10.1,9.8,9.6,10.3,10.2,10.2,9.7,10.4,10.2,9.6,10.5,10.2]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.8,17.2,17,15.9,17.9,16.1,16.6,16.2,17.4,16.3,16.4,16.7,16.5,18.3,16.8],"script":[5.6,5.2,4.9,4.1,5.2,4.6,5,4.7,4.9,4.4,4.3,5.1,4.6,5.5,5.1],"paint":[11.9,10.4,10.7,10.9,10.7,10.4,8.9,10.3,11.5,10.9,11,9.3,10.7,11.6,9.7]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"04_select1k","values":{"total":[6.8,7.9,7.9,8.7,7.2,8.8,7.2,7.7,8.7,7.5,7.4,7.3,7.9,8.3,8.3,6.8,8.1,7.3,6.3,9.8,7.9,8,8.5,7.6,9.2],"script":[4.9,5.8,5.4,5.7,4.9,5.7,4.7,5.8,6,4.7,4.8,5.1,5.2,5.6,6.1,4.7,5.1,5,4.2,6.5,5.6,5.4,5.6,4.7,6.7],"paint":[1.2,1.1,0.9,1.1,2.1,1.4,1.4,1,1.7,1.5,2.5,1.1,1.2,1.8,1.5,1.1,1.6,1.5,1.9,2,0.8,1.2,1.8,1.7,0.8]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"05_swap1k","values":{"total":[14,15.7,15.5,14.3,16.2,13.6,13.7,15.3,15.2,15.3,13,15,14.8,14.6,13.6],"script":[4.6,5.8,6.1,5.1,5.8,4.9,4.9,5.7,5.4,5.9,4.5,5.5,5.7,5.7,4.9],"paint":[8.2,7.4,7.9,6.8,8.3,7.3,8,6.8,8.1,7.6,7.7,7.3,7.1,7.2,7]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.4,24.3,24.1,23.8,24.4,24.4,24.5,23.7,24.2,24.7,23.9,26.1,26.1,26.8,25.6],"script":[3.7,3.2,3.6,3.3,3.4,3.8,3.6,3.2,4,3.8,3.5,3.4,3.9,3.6,3.5],"paint":[20,20.4,19.9,19.8,20.1,19.8,20.2,19.8,19.2,20.1,19.6,21.8,21.6,22.3,21]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"07_create10k","values":{"total":[337.2,332.2,332.6,333.8,332.4,333,333.1,335,335.1,334.1,335.6,334.5,334.3,334.5,334],"script":[87.5,87.7,87.4,87.1,87.5,87.9,87.2,87.7,88.2,86.9,87.3,87.1,87.7,88.1,86.9],"paint":[243,237.6,238.4,239.8,238.2,238.1,239.3,240.7,240,239.2,241,240.4,240.2,238.9,239.4]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.9,37.1,37.4,37.3,37.7,37.1,39.2,37.5,37.6,37.9,37.2,38,37.1,38.8,38.1],"script":[9.3,9.2,9.4,9.4,9.2,9.2,9.4,9.4,9.4,9.5,9.2,9.5,9.1,9.5,9.3],"paint":[27.7,26.9,27.1,27,27.6,26.9,28.8,27.1,27.3,27.5,27.1,27.6,27.1,28.3,27.9]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.7,17.5,16,15.9,19,15.8,15.7,16.8,16.6,15.8,17,16.1,16.7,16.7,17.8],"script":[16,15.6,14.3,14.1,17.6,13.2,13.4,15.3,14.8,14,15.9,14.2,14.3,14.8,16],"paint":[1.7,1.1,0.2,0.3,0.3,1.3,2.1,0.7,1.6,0.8,0.9,0.9,1.2,0.3,1.2]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6144742965698242]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.753422737121582]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.799732208251953]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9173736572265625]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.79255199432373]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.4]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.1]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"01_run1k","values":{"total":[29.7,27.5,29.3,29,26.8,28.9,28.1,27,27,27.1,27.2,29.6,27.1,27.4,27.2],"script":[5.2,4.5,5.1,5,4.5,4.9,4.5,4.6,4.5,4.6,4.6,4.9,4.5,4.6,4.6],"paint":[23.9,22.6,23.6,23.7,22,23.6,23.2,22.1,22.1,22.2,22.1,24.2,22.2,22.5,22.3]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"02_replace1k","values":{"total":[11.7,12.2,11.8,11.7,12,12,12,11.9,12,11.7,11.8,11.7,11.8,12,11.7],"script":[1.8,1.8,1.8,1.7,1.8,1.8,1.9,1.8,1.9,1.8,1.7,1.7,1.7,1.8,1.7],"paint":[9.7,10.1,9.7,9.6,9.8,9.8,9.8,9.7,9.7,9.6,9.7,9.7,9.7,9.8,9.6]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13,12.2,13.6,13.1,12.6,13.1,12.5,15.1,12.5,13,13.1,12.8,12.5,12.6],"script":[1.7,1.6,1.6,2.5,1.8,1.5,1.4,1.5,1.7,1.7,1.6,1.7,1.6,1.7,1.4],"paint":[9.8,9.9,10.2,9.9,10.2,10.1,10.6,9.9,12.1,10.2,10.1,10.8,9.4,9.5,9.9]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"04_select1k","values":{"total":[5.4,2.4,2.7,3,2.6,2.6,2.4,2.8,2.4,2.7,2.7,3,3.1,2.5,2.5,2.7,2.8,3.3,2,2.5,2.6,2.7,2.4,3,2.9],"script":[1.1,0.6,0.9,0.2,0.2,0.2,0.8,1.3,0.7,0.8,0.9,0.6,0.8,0.2,0.5,0.9,0.2,0.8,0.2,1,0.6,0.6,1,1.1,0.5],"paint":[1.2,1,1.1,2.7,2.3,2,0.7,1.3,1.5,1.1,1.2,1.5,2.2,2.2,1.9,1,2.1,0.9,1.5,1,0.7,1.4,1.4,0.9,1.5]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"05_swap1k","values":{"total":[10.3,8.8,10,9.2,8.7,9,9.2,10,10.3,10.2,9.4,9.2,9.8,8.8,9.5],"script":[0.8,0.7,0.6,0.6,0.2,0.8,0.2,0.6,1.2,1.4,0.2,0.3,1,1,0.8],"paint":[8.1,7.5,8.2,7.2,7.1,7.2,8.1,7,8.1,7.8,7.4,7.8,7.5,7.1,6.9]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.8,24,23.2,23.3,23.7,23.3,23.5,23.8,23.1,23.6,23.1,23.1,23.7,23.5,23.5],"script":[3.5,3.3,3.1,3.1,3.1,3.3,3.5,3.3,3,3.3,3.1,3.1,3.3,3.2,3.5],"paint":[20.6,19.8,19,19.6,20.1,19.3,19.3,19.8,19.4,19.3,19.1,19.3,19.7,19.5,19.2]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"07_create10k","values":{"total":[284.7,286.4,284.6,286,284.8,283.9,283.9,285.7,286,286.5,285.4,286.1,281.8,286.7,284.9],"script":[45.3,44.6,45.3,44.8,43.3,43.5,43.9,46,44.7,46.2,45.6,45.6,43.3,46.1,44.3],"paint":[234,236.1,233.8,235.5,235.6,234.9,234.3,233.6,235.4,234.7,234.1,234.6,233,235.1,234.7]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.7,32,33,32.4,32.8,32.1,34,31.8,32.7,32,31.9,32.5,32.4,31.7,32.4],"script":[4.8,4.7,4.8,4.7,4.8,4.8,4.8,4.7,4.7,4.6,4.8,4.6,4.7,4.5,4.9],"paint":[26.2,26.6,27.5,26.9,27.3,26.6,28.5,26.4,27.2,26.6,26.3,27.2,26.9,26.4,26.7]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,12.2,12.7,11.7,13.3,12.5,11.9,12.6,12.3,12.6,15.5,13.8,11.9,12.3,11.8],"script":[10.9,10.6,10.7,10.1,11,10.8,9.5,10.1,9.7,10.8,12.6,11.6,10.3,10.1,10.1],"paint":[0.8,0.4,1,0.6,1.4,1,1.7,1.2,1.8,1.6,1.1,1.7,1,1.6,1.3]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8655071258544922]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.532219886779785]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6095151901245117]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1049346923828125]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.73718547821045]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[18.8]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[95.9]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"01_run1k","values":{"total":[30.5,28.8,28.5,30.7,28.6,29,29.1,28.7,30.7,31,31,31,29,28.6,28.7],"script":[4.9,4.6,4.6,5,4.6,4.7,4.7,4.7,5.2,5.2,5.1,5.3,4.6,4.7,4.7],"paint":[25.1,23.8,23.6,25,23.6,23.9,24,23.6,24.9,25.2,25.3,25.2,23.9,23.6,23.7]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"02_replace1k","values":{"total":[15.3,16.2,16.1,15,15.9,16.9,15,15.6,16.8,14.7,16.8,14.2,15.9,15.4,19.5],"script":[1.5,1.3,1.4,1.3,1.5,1.3,1.5,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.6],"paint":[9.9,9.9,10.2,9.9,10,10,10.2,10,10,10.2,9.8,10,10.3,9.8,10.9]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.1,23,23.1,23.8,12.8,22.6,23,22.9,23.6,12.6,23.4,23.3,22.8,23.5,12.5],"script":[1.9,0.9,0.2,0.7,1.1,1,0.7,1.2,0.6,1.4,1,0.7,0.2,1.2,0.3],"paint":[11.1,9.9,10.1,10.1,10.5,10.1,11.2,11,11.1,11.1,10.4,11.5,10.2,11,10.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"04_select1k","values":{"total":[4.8,2.5,5.7,2.3,7.4,8,2.4,4.3,4,2.3,3.4,6.7,2.8,4.3,4.6,4.3,7,2.2,2,2.7,5.9,5.6,4,2.3,2.4],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.8,0.2,0.1,1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0.8,0.7,0.1,0.1,0.5],"paint":[1.1,1.2,1.6,1,1.3,1.9,1.9,1,1,0.9,1.7,1,1.7,1.1,1.2,1.2,2,1,1.8,0.9,1.7,1.6,1.8,1.4,1.3]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"05_swap1k","values":{"total":[20.6,8.7,20.3,21.5,19.7,19.9,21.5,19.9,9.3,19.6,8.9,18.8,19.6,9,19.5],"script":[0.1,0.2,0.1,0.3,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[8.9,7.4,8,9.1,8,8.4,8.7,8.3,7.7,8.7,8,7.4,7.8,7.7,8.4]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.9,11.1,11.1,11,10.7,10.7,10.7,10.9,11.5,11.1,11,11,11.1,10.7],"script":[0.4,0.4,0.2,0.1,0.4,0.3,0.3,0.1,0.2,0.3,0.2,0.3,0.3,0.2,0.2],"paint":[9.8,10.2,10.1,10.4,10.2,10,9.8,10.1,10.2,10.5,10.1,10.2,9.9,10.3,9.9]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"07_create10k","values":{"total":[311.7,309.2,311.7,311.2,308.9,309.4,309.4,308.2,310.6,308.7,309.7,311.1,308.2,310.9,309.6],"script":[58.4,56.9,58.1,58,58.1,57.6,57.5,57,57.7,57.3,58,58.1,56.7,58,58.3],"paint":[246.9,245.7,246.7,245.6,244.1,245.3,244.7,244.8,246.2,244.8,244.9,245.7,244.6,246.6,244.3]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.9,32.5,34.4,33,32.9,33.1,33.5,33.9,32.8,34.8,33.8,33.8,33.2,32.7,34.5],"script":[4.8,4.4,4.6,4.5,4.8,4.9,4.7,4.8,4.8,5.5,4.8,4.9,4.7,4.6,5.2],"paint":[28.3,27.3,28.9,27.7,27.3,27.3,28,28.2,27.3,28.3,28.2,28.1,27.7,27.3,28.4]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10.1,10.4,9.6,10.7,10,9.6,10.8,9.8,9.6,10.5,10.5,11.1,10.2,9.9],"script":[7.7,8.9,8,8.1,8.1,8,7.6,8.2,7.4,8.1,8.6,8.5,8.9,8.5,8],"paint":[1.4,0.4,1.8,1.3,0.9,0.9,1.2,1.7,1.3,0.9,0.3,1,0.9,0.3,0.6]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.051382064819336]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.226441383361816]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.252026557922363]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3703889846801758]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.332077026367188]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[258.1]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[245.7]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"01_run1k","values":{"total":[39.1,39.3,39.5,40,40.1,38.8,39.2,39.7,40.4,39.9,40.2,40.2,39.7,39.1,39.9],"script":[15.1,15,15.1,15.7,15.7,14.6,14.8,15.2,15.9,15.8,15.5,15.7,15.1,14.9,15],"paint":[23.6,23.9,24,23.9,24,23.8,24,24.1,24,23.7,24.3,24.1,24.2,23.8,24.4]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"02_replace1k","values":{"total":[22.6,22.7,22.3,23.3,23,22.5,22.5,22.7,22.5,23.4,22.6,22.5,23.4,23.3,23.4],"script":[12,12.4,11.9,13,12.3,12.1,12.1,12.4,12.2,13,12.3,12.2,12.5,13,12.9],"paint":[10.1,10,10.1,9.9,10.3,10,10,10,9.9,10.1,9.9,9.9,10.6,9.9,10.1]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[54.3,52.2,53.7,53.9,52.5,54.2,53.8,53.8,53.5,51.6,55.3,52.5,55.9,54.2,57],"script":[41.1,40.6,41.1,40.8,40.9,41.8,40.8,41.2,40.9,39.8,41.5,40.5,42.7,41.3,44.9],"paint":[11.3,10.5,11.7,11.8,10.7,11.5,11.3,11.6,11.2,10.5,11.7,10.3,11.6,11.2,10.8]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"04_select1k","values":{"total":[42,42.2,42.6,43.8,42.4,46,41.8,43.4,42.5,48,47.3,43.5,41.8,42.5,42.6,42.1,42.1,44.6,42.8,43,41.6,47.7,42.3,43.8,42.5],"script":[38.6,38.9,39.6,40.2,39.9,42.4,39.3,40.6,39.8,44.6,44.8,40.5,39.4,38.8,40.1,39.4,39.4,41.1,39.6,40,38,44.8,39.9,39.6,40.1],"paint":[1.4,2.6,2.8,2.4,1.4,2.8,1.6,1.9,2.1,2.4,1.6,2.2,2.1,1.9,1.5,1.9,2.4,1.9,2,1.6,2.4,2,2.2,2.8,1.3]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"05_swap1k","values":{"total":[48.9,49.2,48.3,49.8,47.8,47.9,50.6,48.3,47.6,48.9,48.5,47.8,49.5,49.2,50.5],"script":[39.4,39.8,39.6,39.9,38.8,39,41,39.5,38.8,39.3,39.3,38.9,39.8,39.8,41.2],"paint":[8.3,8.2,7.4,8.1,7,7.3,8,7.2,7.8,8.6,7.4,7.7,8.1,7.8,7.5]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[43.2,43.7,43.4,44.6,42.9,44.7,43.9,43,42.8,42.7,43.2,43.9,42.8,43.4,42.8],"script":[22,22.1,21.7,23,21.9,22.7,22.6,22,21.8,21.9,22,22.2,21.8,22.4,21.8],"paint":[20.3,20.6,21,20.2,20,21.2,20.5,20.3,20,20,20.4,20.3,20.3,20.3,20.3]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"07_create10k","values":{"total":[412.3,414.3,411.3,412.7,411,411.9,411.5,411.9,414.5,416.6,414.4,411.1,415.6,412.5,411.7],"script":[170.5,172.8,169.1,171.7,169.9,170.4,169.7,170.1,172.5,171.1,171.5,169.1,173,172.9,170.2],"paint":[235.8,235.5,236.2,235.1,235,235.4,235.7,235.7,236.1,239.5,236.8,236.1,236.5,233.7,235.6]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.8,57.4,57.1,56.4,57.4,57.4,57.5,56.9,57.6,58.1,57.1,57.2,57.4,57.2,57.7],"script":[29,29,29.1,28.7,29,29.2,29.2,29,29.5,29.9,29.1,29.2,29.3,28.9,29.3],"paint":[27.1,27.6,27.2,26.9,27.5,27.4,27.6,27.1,27.2,27.3,27.1,27.3,27.3,27.5,27.6]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.6,21.2,21.1,24.8,22.7,25,21.6,23.6,23.4,22.4,24.1,22.6,22.2,22,21.6],"script":[22.2,20.3,19.5,22.8,20.9,23.5,19.6,21.8,22.5,20.8,23.2,20.7,20.8,20.8,19.6],"paint":[1.3,0.4,1.2,1.9,1,0.5,1.5,1,0.2,0.7,0.3,0.9,1,0.8,0.7]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8838281631469727]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.98159122467041]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[18.981144905090332]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.208760261535645]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[93.054123878479]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[436.8]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[128]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[575.4]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"01_run1k","values":{"total":[29.6,28.8,29.6,29.7,29.2,29.4,28.9,29.8,29.2,29.8,29.3,28.8,29.9,29.7,29.3],"script":[4.4,4.3,4.8,4.6,4.4,4.6,4.4,4.5,4.3,4.5,4.4,4.4,4.4,4.5,4.5],"paint":[24.7,24.2,24.4,24.6,24.4,24.3,24.2,24.9,24.5,24.9,24.5,24,25.1,24.8,24.4]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[14.4,14.1,13.9,13.7,13.7,14.1,13.7,13.8,13.8,14,14.2,13.8,13.5,14.2,14.3],"script":[3.5,3.5,3.5,3.4,3.5,3.6,3.4,3.5,3.4,3.5,3.5,3.5,3.4,3.5,3.5],"paint":[10.5,10.2,10.1,9.9,9.9,10.1,10,10,10,10.1,10.3,10,9.8,10.3,10.4]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.6,23,24.2,23.5,23.6,23.2,23.3,26.9,24.1,25.1,23.9,25,23.3,24.6,24.9],"script":[11.8,10.7,11.2,11.5,11.1,10.6,11.1,11.3,11.5,11.3,11.9,12.1,10.5,11,11.2],"paint":[11.5,10.5,11.1,8.2,10.3,9.4,9.6,12.9,10.7,11.7,9.6,11,10,12.2,10]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"04_select1k","values":{"total":[12.9,15.5,14.8,13.9,14.8,12.6,14.2,14.1,14.4,13.9,13.3,13.7,14.5,14.1,14.5,13.6,14.4,14.3,15.2,14.1,14.3,14.3,13.4,13.6,13],"script":[9.5,12.1,11.9,10.9,11.7,9.9,11.5,11,11.2,10.6,10.9,11.2,11.3,11.2,11.4,11.1,11.5,10.9,11.6,11,10.9,12.2,10.4,10.9,10.5],"paint":[2.1,1.4,1.3,1.1,0.7,1.1,1.4,2.1,2.1,1.1,1.2,2.1,1.1,1.9,1.2,0.8,2,2.1,2.5,2.3,2.4,1.2,1.1,1.2,1.5]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[20.9,21.7,21.3,20.5,20.5,20.6,20.3,20.6,20.4,21.1,21.2,20.4,20.2,20.2,20.1],"script":[10.6,10.7,11.8,10.5,10.4,10.7,10.1,11.2,10.4,11.3,11.2,10.8,11.3,10.2,10.3],"paint":[8.2,9.1,7.8,7.3,7.7,7.8,8.6,7.5,7.5,8.2,7.5,8.1,7.5,8.5,7.8]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[29.1,27.3,27.9,27.5,27.8,28.3,29.8,27.5,27.9,28.2,27.6,30.3,27.9,27.8,28.4],"script":[7.1,6.3,6.7,6.7,6.7,6.9,7,6.5,6.6,6.7,6.6,7.3,6.4,6.5,6.6],"paint":[20.6,19.2,19.8,19.6,19.8,20.1,21.5,20,20.2,20.1,19.5,21.4,20.6,19.7,20.2]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"07_create10k","values":{"total":[298.3,300,297.5,295.9,297.6,296.1,296.6,298.5,296.9,295.5,297,294.9,296.9,299,295.2],"script":[50.6,50.3,49.9,50.1,50.8,49.7,50.3,50.9,50.6,49.6,51,49.6,50.6,49.8,49.2],"paint":[241.6,242.2,241,239.5,240.3,240.8,240,241.3,240.6,239.6,239.7,239,240.4,242.2,239.9]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,37.5,35.7,35.8,36,35.8,35.8,36.6,36.2,35.9,38.2,37.8,36.1,35.4,37.7],"script":[7.7,8.5,7.5,7.6,7.8,7.6,7.5,7.8,7.7,7.6,9.1,8.6,7.6,7.5,8.5],"paint":[27.5,28.1,27.3,27.4,27.2,27.3,27.4,27.9,27.7,27.4,28.2,28.3,27.6,27,28.2]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.6,9.1,9.6,8.8,8.8,9.9,7.4,9.8,10.4,9.6,9.7,8.7,9.1,9.9,9.1],"script":[7.3,6.9,7.9,6.6,7.3,7.5,5.9,7.7,8.1,7.3,7.3,6.8,7.2,7.8,7],"paint":[0.2,1.5,0.7,1,0.6,1.4,0.2,0.7,1.1,0.9,0.9,1.1,0.6,1,0.8]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5241403579711914]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.042848587036133]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.2474565505981445]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6922159194946289]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.290108680725098]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[3.3]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.2]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[32.8]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"01_run1k","values":{"total":[26.4,26.8,25.8,25.7,27.2,25.8,26,26,26.1,26,26,25.8,25.8,26.3,26],"script":[1.4,1.2,1.2,1.2,1.4,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.4,1.3,1.2],"paint":[24.6,25.2,24.2,24.1,25.4,24.2,24.4,24.4,24.4,24.4,24.3,24.2,24,24.6,24.4]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"02_replace1k","values":{"total":[11.3,11.9,12,12,11.8,11.5,11.4,11.3,11.5,11.9,12.6,11.8,11.6,11.8,11.6],"script":[1,1.2,1.2,1.1,1.1,1,1,1,1.1,1.2,1.4,1.2,1.1,1.1,1.2],"paint":[9.9,10.4,10.5,10.5,10.3,10.1,10,9.9,10,10.4,10.7,10.2,10.1,10.3,10.1]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.1,12.8,14.5,13,13.4,13.3,13.4,13.1,13.4,12.8,14.3,12.5,12.2,12.3,12.6],"script":[1.3,1.1,1.9,1.1,1.3,1.5,2,1.2,0.9,1.2,1.9,1.5,1.3,1,1.3],"paint":[11.9,10.4,11.4,11.3,10.4,10.6,10.4,10.4,11.8,10,10.7,10.3,9.5,10.7,9.4]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"04_select1k","values":{"total":[6.1,2.9,3.4,2.6,3.3,3.1,3.1,3.5,3.1,3.5,3.4,3.8,3.4,3.7,3.2,3,3.4,4.1,3.5,3.3,3.5,3.5,3.4,3.2,3.6],"script":[1.1,1.4,0.6,1,1.4,1,1.4,1.6,1.2,1.6,0.7,1.9,1.2,1.5,0.7,1.4,1.7,1.9,1.5,1.7,1.8,0.9,1.3,1.2,1.8],"paint":[1.8,1.3,2,1.4,1.7,1.5,1.3,1.3,1.1,1.2,2.6,1.8,2,2.1,1.3,0.7,1.6,2,1.2,1.5,1.6,2.4,1.4,1.2,1.1]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"05_swap1k","values":{"total":[9,8.8,9.9,9.5,9.6,9.5,8.8,8.3,9.1,9.4,8.9,10.2,8.6,9.4,9.8],"script":[0.4,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.9,0.1,0.8,0.1],"paint":[7.8,7.5,8.1,7.5,8.2,8.1,7.9,7.3,8.1,7.2,7.3,8.1,6.9,6.5,7.3]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.9,22.7,22.4,22.4,23.9,22.4,22.3,22.7,22.9,22.5,22.5,24.8,22.9,22.3,22.5],"script":[1.8,2,2,1.9,2,1.8,1.9,1.8,1.8,1.9,1.9,2.2,2.1,1.8,1.8],"paint":[19,20,19.7,19.3,20.9,19.6,19.8,20.2,20.3,19.6,20,21.4,20,19.8,19.9]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"07_create10k","values":{"total":[432.4,430.2,433.3,433,434.3,431.8,431.8,431.8,433.3,430.2,431.5,433.4,433.9,433.8,431.4],"script":[179.8,177.8,180.5,178.6,180.1,178,179.9,178.3,179.9,177.3,179.4,178.6,179.7,179.4,178.1],"paint":[246.3,245.8,246,247.9,247.8,247.3,245.5,247,246.8,246.8,245.7,248.3,247.6,248,247]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.4,50.4,51.2,49.9,50.4,50,50.1,50.3,50.2,50.9,50.2,49.7,49.3,50.4,51.3],"script":[21.5,21.5,22.4,21.1,21.3,21.3,21.7,21.3,21.8,22.2,21.7,21.2,21.3,22,22.5],"paint":[28.1,28.1,28,28.1,28.2,28,27.7,28.2,27.5,27.9,27.6,27.7,27.2,27.7,28]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.6,10.3,10.5,9.7,9.8,10.5,10.5,11.2,10,11.2,10,9.2,10.4,10.6],"script":[8.3,7.7,9,8.7,8.4,8.1,9.1,8.8,9.7,8.6,9.6,8.2,7.5,8.8,8.8],"paint":[0.8,1.8,1.1,1.7,0.4,0.9,1,1.7,1.1,0.9,1.6,1.7,1.6,1.4,1.2]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6596689224243164]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.0466508865356445]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.08382511138916]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.015993118286133]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.46217727661133]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.4]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.5]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"01_run1k","values":{"total":[50.7,49.9,50.8,50.6,50.6,50.1,50.1,50.6,50.4,50.1,50.1,50.7,50.4,50.1,50.8],"script":[24.7,24,24.7,24.4,24.3,24.3,24.2,24.1,24.8,24.3,24.1,24.3,24.3,24.2,24.8],"paint":[25.5,25.4,25.6,25.7,25.8,25.3,25.4,25.9,25.1,25.4,25.6,25.9,25.6,25.4,25.5]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"02_replace1k","values":{"total":[15.2,16.9,15.5,15.6,15.8,15.6,15.8,15.4,15.6,16.5,15.9,15.6,15.1,15.5,15.6],"script":[4.4,5,4.5,4.4,4.7,4.5,4.6,4.5,4.6,4.6,4.5,4.4,4.3,4.4,4.2],"paint":[10.4,11.5,10.4,10.7,10.7,10.6,10.7,10.5,10.5,11.4,10.9,10.7,10.4,10.6,10.9]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.4,15.6,14.6,15.2,15.4,15.1,15,14.8,16,16.7,15.5,14.9,14.8,14,15.1],"script":[1,1.2,0.6,1,1.7,1.1,1.6,1.4,1.7,1.3,1.6,1.8,1.3,1,2.2],"paint":[11.8,12.5,12.7,12.8,12.1,12.2,11.4,11.7,12.1,13.4,11.9,10.4,12,11.3,11.6]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"04_select1k","values":{"total":[7.8,8.2,7.1,7.4,7.2,7.4,8.2,7.3,8,7.8,7.8,7.4,7.5,7.7,8.4,7.9,7,6.8,7.3,7.5,7.8,8.4,6.6,7.8,7.3],"script":[4.9,5,4.5,5.2,4.5,4.3,4.6,4.7,5.3,5.5,5.2,4.9,5.3,4.6,5.5,5.2,4.3,4,4.8,5.2,4.7,5.2,4.2,4.9,4.5],"paint":[1.6,1.6,1.7,1.1,0.4,2.5,2,1.6,1.9,1.7,1.3,1.3,1.2,1.3,2.8,1.5,1.7,2.1,1,1.1,1.1,1.9,2.1,2.3,1.3]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"05_swap1k","values":{"total":[12.3,10.7,10.5,11.8,11.3,10.6,11.2,10.6,11,10.6,9.8,10.8,10.8,10.1,9.6],"script":[0.9,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10,9.4,8.3,9.6,9.1,8.5,9.7,9.5,8.4,9.4,8.8,8.3,8.7,8.5,7.7]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[27.9,29.3,29.6,29.4,28.2,29.8,31.1,29.1,29.3,28.9,28.9,30.2,29.1,29.7,29.1],"script":[5.3,5.5,5.6,5.5,4.9,5.8,5.8,5.6,5.6,5.4,5.5,5.7,5.4,5.5,5.5],"paint":[21.3,22.7,22.9,22.9,22.5,23.1,24.1,22.3,22.5,22.5,22.3,23.3,22.9,23,22.5]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"07_create10k","values":{"total":[503,502.1,502.9,505.9,504.3,504.4,505.6,499.5,502.7,504.8,507.2,502.4,501.5,501.8,498.7],"script":[225.9,224.2,224.6,227.4,225.2,224.6,225.3,221.7,225.2,224.8,227.9,224.7,223.5,223.7,222.3],"paint":[268.4,269.6,269.7,269.7,270.2,271.2,271.3,268.9,269.4,271.5,270.7,268.8,269.9,269.7,267.9]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58,57.1,58.7,57.3,57.7,57.2,57.7,57.2,58.1,57.7,57.6,58.4,57.9,58.1,59.2],"script":[27.7,26.7,27.9,26.7,27.2,26.6,27.1,26.8,27.4,26.5,27.2,27.6,26.7,27.4,27.7],"paint":[29.3,29.3,29.8,29.6,29.4,29.5,29.4,29.4,29.6,30.2,29.3,29.6,30.1,29.6,30.5]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.6,25.4,23.6,25.6,23.5,26.3,23.6,23.7,21.5,23.7,27.2,23.2,26.8,24.7,26.1],"script":[24.8,23.6,22.3,23.8,22,24.3,21.8,22.2,19.9,22.3,25.3,20.9,24.8,22.9,23.9],"paint":[1.2,1.6,0.8,0.7,1.4,1.9,1,1.2,1.4,1.2,0.7,1,2,1.2,1.7]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6339302062988281]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.898975372314453]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.917007446289062]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9272851943969727]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[90.93796348571777]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.2]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"sprae-v11.0.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.3]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"01_run1k","values":{"total":[34.3,34.3,33.3,34,34,34.2,33.4,34.3,33.9,33.8,33.9,34.3,34,33.4,34.4],"script":[9.3,9.4,8.9,9.4,9.4,9.3,8.8,9.2,9,8.8,9.1,9.3,9.1,8.8,9.4],"paint":[24.5,24.3,23.9,24,24,24.4,24.1,24.6,24.4,24.5,24.2,24.4,24.3,24.1,24.5]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"02_replace1k","values":{"total":[13.6,14.1,13.9,13.6,13.6,13.6,13.6,13.7,13.5,13.6,13.7,13.8,13.7,13.8,13.5],"script":[2.9,3.1,2.9,2.9,2.9,2.9,2.9,2.8,2.9,2.8,2.8,3,2.9,3,2.8],"paint":[10.4,10.6,10.7,10.3,10.4,10.3,10.3,10.6,10.3,10.5,10.5,10.4,10.5,10.4,10.3]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,12.7,12.4,12.6,12.7,12.2,13.1,13.1,13.7,11.8,13.3,13.8,14,13.8,12.7],"script":[1.4,1.4,1.2,1.6,1.5,1.5,1.8,1.8,1.6,1.5,2.2,2.6,2.1,2.1,1.5],"paint":[11,10.1,9.1,9.9,9.9,9.7,10.6,10,11,9.2,9.9,10.6,10.7,10.8,10.4]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"04_select1k","values":{"total":[4.2,3.3,4.8,3.2,3.7,3.4,4,4.7,4.6,4.8,4.1,4.7,4.2,4.2,3,5.5,4.2,4,4.5,4.2,4.4,4.7,4.6,4.1,3.9],"script":[2.1,1.6,2.7,1.7,1.5,1.6,1.9,2.9,2.6,2.6,1.5,2.4,2.2,1.9,1.9,2.9,2.2,2.2,2.1,2,2.6,2.4,2.6,1.9,1.6],"paint":[1,0.7,0.9,1.2,1.2,1.7,1.8,1.5,1.2,1.4,2.4,1.3,1.9,1.7,1,0.8,1.5,1.7,1.4,1.2,1.7,1.8,1.8,0.4,1.2]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,11.2,12.2,10.2,10.4,11.8,10.9,10.6,12.2,10.2,11.5,10.8,10.1,9.9,10.6],"script":[1,1.9,1.8,1.5,1.3,1.9,1.6,1.4,1.9,2,1,2.2,1.6,1,2.5],"paint":[7.7,7.6,9.1,7.5,7.6,7.6,8.3,8.3,9.1,6.7,9.1,7,7,8,7.2]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[27.7,27.3,27.9,28,28.5,28.2,27.8,30.3,28.2,29.2,29,27.5,28.5,27.3,27.2],"script":[6,5.8,5.9,5.7,6.8,6.1,5.9,7,6.6,6.7,6.8,5.8,6.1,6.1,6],"paint":[20.6,20.5,20,21.5,20.3,21.1,20.7,22,20.8,21.2,21.3,20.7,21.3,20.2,20.4]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"07_create10k","values":{"total":[315.1,314.2,318.9,315.5,315.4,313.4,314.6,315.1,313.6,318,314.7,314.9,315.5,314.7,318.7],"script":[62.8,62.5,62.9,62.6,63,61.7,63,62.8,63,63.7,62.8,63.8,62.6,63.2,64.2],"paint":[246.3,245.4,249.4,246.6,246.4,245.6,245.4,246.3,244.7,248.1,245.7,245.1,246.5,245.3,247.5]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.7,34.2,34.5,34.1,34.2,33.8,34,34,34.2,34.4,35,34.6,34.3,35.4,34.5],"script":[6.1,6.2,6.2,6.3,6.4,6,6.1,6.2,6.2,6.3,6.1,6.3,6.3,6.1,6.2],"paint":[26.7,27.2,27.4,26.9,27,26.9,27,26.8,27.1,27.2,27.9,27.4,27.1,28.3,27.4]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,13.3,13.1,12.4,13,14.7,12.9,13.5,12.6,12.7,13.6,13.2,12.8,13.6,12.4],"script":[10.7,11.4,11.6,10.4,10.5,12.5,11.1,12,10.5,10.9,11.4,10.9,10.7,11.5,10.1],"paint":[1.2,0.3,0.9,1.8,1.2,1.3,0.9,0.7,1.5,1.4,0.6,1.7,1.5,0.9,0.2]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7336082458496094]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.203908920288086]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.311677932739258]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.240530014038086]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.62006950378418]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[123.3]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.6]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.6,26.7,26.2,26.4,26.8,26.5,26.7,26.3,26.2,26.5,26.2,26.6,26.2,26.9],"script":[2.8,2.9,3,3,2.9,2.8,2.8,2.9,2.9,2.9,2.9,3,3,2.9,2.8],"paint":[23.5,23.3,23.4,22.9,23.2,23.6,23.3,23.5,23,22.9,23.2,22.9,23.2,22.9,23.7]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"02_replace1k","values":{"total":[10.9,11.4,11.1,11.3,11.9,11.5,11.5,11.2,11.7,11.8,11.7,11.6,11,11.6,11.2],"script":[0.9,0.9,1,0.9,1,0.9,0.9,0.9,1,1.1,1,1,0.8,0.9,0.9],"paint":[9.7,10.2,9.8,10.1,10.5,10.2,10.2,9.9,10.3,10.3,10.3,10.2,9.8,10.4,9.9]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,12.7,12.9,12.1,13.1,12.3,12.2,12.8,12.5,13.6,13,12.2,13,12.6,12.8],"script":[1.3,1.8,2.2,1.5,1.6,1.5,1.6,2.1,1.6,1.4,1.8,1.2,1.6,1.4,1.3],"paint":[9.6,9.7,9.7,9.1,10.3,9.6,9.6,9.2,10.2,10.9,9.8,9.8,10.3,10.1,10.5]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.1,4.9,3.7,3.4,3.9,2.6,2.3,4.3,3.8,3.1,4.3,3.8,3.7,3.3,3.5,2.8,4.4,3.6,3.2,3.1,2.6,3.2,3.3,2.9,3.5],"script":[1.1,1.2,1,1.5,0.6,1,1,0.9,0.6,1,1.3,0.6,1.2,1,2,1.2,1.1,1.8,1.2,1,0.7,0.9,0.6,0.6,1.5],"paint":[0.4,1.5,1.5,1.4,0.8,1.1,0.7,1.5,1.5,1.6,2,1.5,1.5,2.2,1.4,1.5,2.1,1.6,1.2,1.4,1,2,0.7,2,1.3]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.4,10,10.8,10.8,10.9,11.5,10.9,12.4,10.4,11,12.3,11.8,10.4,10.5,10.7],"script":[1.8,1.3,1.5,1.5,1.7,1,1.6,1.6,1.7,0.7,0.7,1.6,1,1.7,1.1],"paint":[7.5,7.4,7.8,8,8,8.3,6.9,9.7,7.2,9.4,10.6,9.3,8.1,7.7,7.8]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,21.9,22.6,22.2,23,21.9,22,21.9,21.8,21.5,21.8,22.5,21.6,22.2,22.8],"script":[1.7,1.6,1.5,1.9,1.5,1.8,2,1.8,1.6,1.6,2,1.8,1.6,1.7,1.8],"paint":[19.3,19.3,20.3,19.7,20.2,18.8,19.3,19.1,19.3,19.1,19,20,19.3,19.7,19.7]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"07_create10k","values":{"total":[288.6,290.7,289.7,286.8,289.2,289.7,287.2,287.4,290,287.8,289.5,288.9,287.5,286.9,288.6],"script":[39.3,40.1,39.9,40.3,40.5,40.2,39.8,39.7,39.7,40,39.9,39.9,39.3,39.5,39.5],"paint":[242.8,244.3,243.6,240.4,242.5,243.1,241,241.5,244,240.7,243.5,242,241.7,241.4,242.7]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.6,31.6,31.6,32.6,31.4,30.6,31.7,30.8,31.2,31.7,31.2,32.5,30.9,30.6,31.2],"script":[3.5,3.8,3.4,3.7,3.7,3.5,3.5,3.5,3.5,3.8,3.5,3.7,3.5,3.4,3.5],"paint":[26.4,27,27.5,28.2,26.9,26.5,27.4,26.6,26.7,27.2,26.9,28.1,26.7,26.5,26.9]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,9.6,10.1,9.8,10,10.3,11.7,8.8,9.5,9.3,10.7,10.2,10,9.8,10],"script":[7.9,7.6,8.5,7.6,7.9,8.1,9,7.5,8,8.1,8.3,8.1,7.8,7.9,8.1],"paint":[0.2,0.2,0.6,1.2,1.8,1.2,1.9,0.5,0.6,0.3,0.9,1.2,0.2,0.2,1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6177215576171875]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.981268882751465]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0438461303710938]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5413751602172852]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.682016372680664]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.9]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"01_run1k","values":{"total":[29,29.3,29.1,29.2,29.3,28.9,29.1,28.9,29,28.8,29,28.6,28.7,29.5,28.7],"script":[5.5,5.3,5.6,5.4,5.3,5.5,5.4,5.3,5.4,5.4,5.3,5.3,5.2,5.4,5.3],"paint":[23,23.4,23,23.3,23.4,22.9,23.2,23.1,23.1,22.9,23.1,22.8,22.9,23.5,22.9]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"02_replace1k","values":{"total":[14,14,14,14.4,13.6,14,14.8,14.5,13.5,13.7,13.9,14.1,13.7,13.9,14.3],"script":[3.5,3.4,3.3,3.5,3.2,3.2,3.7,3.6,3.2,3.2,3.2,3.4,3.3,3.3,3.5],"paint":[10.2,10.2,10.4,10.5,10.1,10.4,10.7,10.5,10,10.1,10.3,10.3,10.1,10.3,10.4]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,10.8,12.2,11.7,11.8,11.7,12.5,11.9,12.1,12.5,11.5,12.3,12.1,10.8,11],"script":[0.6,0.8,0.8,0.9,0.5,0.2,0.1,0.2,0.7,0.8,0.5,0.8,0.6,0.2,0.6],"paint":[10.3,9.6,10.2,9.6,9.9,10.5,10.9,10.1,10.2,10.6,10,10.1,10.5,9.4,9.4]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.6,2.2,2.1,1.7,2.6,2.1,2.1,1.7,2.2,2.9,2.4,2.3,1.5,1.9,1.4,2.3,1.8,2.2,2.3,2.2,1.9,2.1,2.1,2.4],"script":[0,0.8,0,0.4,0.1,0.8,0,0,0,0,0.8,0,0.6,0,0,0,0,0.6,0,0,0,0,0,0,0],"paint":[1.1,1.2,1,1.5,1,1.3,1.5,1.2,1.3,2,1.5,1.3,1.2,1.4,1.1,1.3,2.1,1.1,0.8,2.1,2,1.7,1.5,1.4,1]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"05_swap1k","values":{"total":[18.6,18.5,19.8,18.5,19.4,19.3,18.3,19.1,18.4,19,18.7,17.9,18.7,19.2,19.3],"script":[8.1,8.9,8.5,8.5,8.7,8.7,8.2,7.9,7.6,7.7,8.4,7.7,8.6,8.7,7.6],"paint":[7.9,6.9,9.4,8.4,9.5,8.5,7.7,9.4,9,9.4,7.8,8.6,8.3,8.8,10]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.1,27.9,29.4,29.4,28.6,29.2,28.4,29.4,28.6,28.5,28,28.2,29.3,28.8,28.6],"script":[6.5,6.3,6.9,6.7,6.4,7.1,6.6,6.3,6.2,6.7,6.6,6.3,7.2,6.7,6.5],"paint":[20.6,20.4,21.3,21.5,20.8,20.7,20.6,21.9,20.9,20.8,20.3,21,20.9,20.7,20.9]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"07_create10k","values":{"total":[306.6,308.3,305.9,308.9,307,309,306.5,305.3,308.3,306.3,304.5,306.5,306.4,306.4,306],"script":[64.7,64.4,64.6,65,64.9,64.9,63.9,65.3,64.2,65.6,64,63.8,64.5,64.2,64.1],"paint":[235.2,236.8,235,236.6,235.7,236.8,236.6,233.9,237.3,234.5,234.2,235.9,236,235.5,235.2]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37,36.9,37.2,38.1,37.6,38,37.6,36.6,37.5,36.9,39.1,38.2,36.7,37.1,37],"script":[8.3,8.3,8.1,8.2,8.6,8,8.5,8,8.5,8.1,8.6,8.1,7.8,8,8.4],"paint":[27.8,27.7,28.1,29,28.2,29,28.2,27.7,28.1,27.8,29.6,29.1,28,28.2,27.7]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,10.1,9.7,10.3,9.9,10.8,11.7,10,10.6,10,11.1,10.3,10,9.8,10],"script":[9.1,8.7,7.9,8.2,7.6,8.7,8.5,7.8,7.9,8.1,9.2,8.1,8.3,8,7.7],"paint":[1.2,0.2,1,0.6,2.1,1,3,1.5,1.7,1.7,1.1,1.3,1.2,0.4,1.2]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5552215576171875]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.800779342651367]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.795473098754883]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7932929992675781]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.497050285339355]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.5]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.3,27.9,28,27.7,28.1,27.4,27.5,27.4,27.3,27.3,27.4,27.7,27.7,27.3],"script":[3.2,3.1,3.1,3.2,3,3.5,3.2,3.2,3.2,3.1,3.2,3.2,3.3,3.2,3.1],"paint":[24,23.9,24.4,24.4,24.2,24.2,23.9,23.9,23.9,23.8,23.8,23.8,24,24.1,23.8]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"02_replace1k","values":{"total":[11.7,11.6,11.7,11.5,12.2,11.6,11.7,11.7,11.6,12,11.6,11.6,11.7,11.7,11.7],"script":[1.1,1.1,1.1,1,1.2,1,1.2,1.1,1.1,1.1,1.1,1.1,1,1.2,1],"paint":[10.3,10.1,10.3,10.1,10.7,10.2,10.2,10.3,10.2,10.6,10.1,10.2,10.3,10.1,10.3]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.5,12.3,13,12.3,13.2,13.6,13.5,13.1,13.6,12.8,12.9,12.9,12.6,14.2],"script":[1.2,1.2,1.1,1.8,1,1.4,1.4,1,1.2,1.2,1.1,1.9,1.3,1.2,1.8],"paint":[11.1,10.6,9.5,10.1,9.8,10.7,10.3,11.2,10.3,11.3,10.3,9.6,10.2,10.4,11]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.9,3.5,3.2,3.9,3.1,3.3,3.3,3.1,4.5,4.4,2.8,3.5,3.9,2.7,5.1,3.9,3.4,2.9,3.3,3.8,3.3,2.9,5.1,3.6],"script":[0.9,1.9,1.1,0.9,1.5,0.6,0.6,1.2,1.4,2.6,1.8,1.3,1.5,1.7,1.2,2.8,1.7,1,1,1,1.9,0.6,1.2,2.9,1.4],"paint":[1.3,1.8,1.6,0.8,1.5,2.1,2.1,1.6,1.5,1.8,2.4,0.7,1.2,1.1,0.7,1.3,1.4,1.6,1,1,1.2,2.4,0.7,2.1,1.3]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,9.5,12.6,10.6,9.6,11.1,9.5,10.1,10,10.1,9.8,10.9,12.2,9.7,11.5],"script":[1.3,0.9,1.8,1.3,1,2.5,1.8,1.4,1.2,1,0.9,2.5,2.5,1.7,1.7],"paint":[8.1,7.5,9.1,8.5,7.8,7.6,6.4,7.4,7.6,8,7.2,7.4,7.7,7.7,8.5]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.4,21.9,21.8,23.1,22.4,21.9,22.1,22.4,23.6,22.5,22.4,21.8,22.5,22.7,23],"script":[1.8,1.7,1.7,1.4,1.8,1.5,1.5,1.8,1.8,1.8,1.7,1.7,1.8,1.7,1.6],"paint":[19.9,19.3,18.8,21,19.9,19.8,19.7,19.6,21,19.9,19.8,19.3,20,20,20.7]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"07_create10k","values":{"total":[290.8,292.1,290.6,289.7,289,287.9,288.7,290.5,288,293.9,290,289.6,288.4,291.2,289.6],"script":[42.8,43.1,42.9,42.7,42.6,42.8,42.6,43,41.5,43.3,43,42.9,43.5,43.1,42.5],"paint":[241,242,241.2,241,240.1,239.1,240,241.1,239.9,244,240.7,240.5,238.4,241.1,240.1]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,32.3,32.4,32.8,33.4,32.3,32.5,32,32.2,32.2,33.1,33.5,32.4,32.3,31.9],"script":[3.5,3.4,3.6,3.4,3.6,3.4,3.3,3.4,3.5,3.4,3.5,3.5,3.5,3.5,3.4],"paint":[27.8,28.1,28,28.6,29,28.1,28.4,27.9,28,28,28.8,29.2,28,28,27.8]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.2,10.2,9.7,11.5,9.7,10.4,9.7,9.9,9.8,9.8,10.7,9.4,9.8,10.6,9.8],"script":[8.2,7.9,8.5,9.4,8.2,8.4,8.5,8.2,7.7,7.8,8.9,7.3,8.2,8.8,7.7],"paint":[1.1,1.7,0.4,0.8,0.6,0.7,0.3,0.2,1.1,0.6,0.7,1.2,0.7,0.7,1.2]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5886220932006836]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2057113647460938]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.224088668823242]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6968460083007812]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.483074188232422]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"uhtml-v4.7.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"01_run1k","values":{"total":[30.9,34.4,32.1,33.1,35.7,32.5,33.3,32.9,37.7,32.1,34.6,37.1,32,32.3,33.8],"script":[4.5,5.4,4.8,5,5.2,4.9,5.4,5,5,5.1,5.1,5.1,5.3,5,5.1],"paint":[22.9,24.6,24.5,24.7,24.1,24.4,24.5,24.4,23.9,24.3,24.4,24.2,24.6,24.5,24.2]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"02_replace1k","values":{"total":[16.7,13,12.3,12.2,14.8,14.8,11.9,14.7,12.4,13,12.5,13.3,13.5,12.5,12],"script":[1.5,1.5,1.6,1.6,1.6,1.5,1.5,1.5,1.8,1.6,1.6,1.6,1.7,1.6,1.7],"paint":[9.9,10,10.2,10.4,10.1,10.1,10,10.1,10.5,10.5,10.1,10.2,10.4,10.2,10.2]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.5,14.1,29.1,15.6,13.4,13.6,13.2,30.3,14,12.9,14.1,13.8,30.4,15.5],"script":[1.6,1.8,2.3,2.2,2.7,2.3,1.9,2,2.5,1.9,2.3,1.7,2.1,2.3,1.9],"paint":[11.4,9.7,11.2,10.9,11.9,10.4,11.6,11,11.2,11.1,9.9,10.4,10.7,12.1,12.1]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"04_select1k","values":{"total":[5.3,4.9,4.7,5.8,5.3,5.6,5.8,5.6,5,5.5,5.1,4.5,5.2,7.6,6,5.3,6.9,6,4.3,5,5.4,4.5,5.6,5.1,6.1],"script":[2.2,2.5,2.7,3.6,2.4,3.3,3.3,3.1,2.9,3.4,3.2,2.7,3.1,2.6,4,3.1,2.4,3.7,2,2,3,2.3,3.2,2.6,3.9],"paint":[3,2.3,1.1,0.9,1.5,2.2,2.3,1.1,1.3,1.9,1.1,0.9,2,1.5,1.4,2,2,1.1,1.1,2.4,2,2,2.3,1.8,1.3]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,11.4,13,28.3,27.9,13,11.5,11.8,12.3,27.9,28.9,11.3,11,28.9,11.4],"script":[2.4,2.7,3.6,3.2,3.2,4.9,2.9,3.1,2.8,2.7,3.4,2.5,3.1,3.4,3.2],"paint":[7.4,8.5,9.2,8.6,8.7,7.6,7.3,7,8.2,8.2,9.4,8.7,7.4,8.9,6.8]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[29.1,24.8,26.2,23.5,22.6,22.5,24.1,22.6,24.6,27.2,23.4,23.7,23.2,23.1,24.1],"script":[3.4,3.5,3.7,3.9,2.9,2.8,3.6,3.2,3.3,3.1,3.6,3.5,3.8,3.2,3.7],"paint":[20.1,19.3,19.9,19.2,19.3,19.6,20.3,19.1,19.1,21.6,19.7,20,19.3,19.7,19.9]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"07_create10k","values":{"total":[306.7,307.5,304.6,308.3,302.4,302,301.5,303.6,305.3,304.5,305.9,304.8,305.5,303.6,304.7],"script":[52.6,53.2,53.3,52.6,54,53.8,53.6,54.7,53.4,52.7,53.1,53.6,52.4,54.1,52.8],"paint":[242.4,243.8,244.8,244.1,243.8,244.2,243.3,243.6,243.2,242.9,244.7,243.9,245.3,244.2,242.2]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42,42,42.8,42.7,41.7,41.5,42,41.2,40.8,41.3,42.8,41.8,43.9,41.3,42.7],"script":[5.3,5,4.9,5.5,5.1,5.1,5.1,4.8,5,5.1,4.8,4.9,5,4.8,5],"paint":[26.5,26.5,27,26.9,26.3,26.7,26.7,26.3,25.9,26.3,27.4,26.3,27.8,26.6,26.3]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.4,11.7,11.2,11.1,11.4,11.5,10.6,11.3,11.3,11.4,28.6,11.1,11.1,12.3,10.9],"script":[9.2,8.3,9.1,9.4,9.8,9.6,8.5,9.1,8.8,10.2,10.4,9,9.9,8.9,9.3],"paint":[1.2,0.9,1.9,0.3,0.7,1.7,1.2,0.8,0.7,0.6,2,0.4,1.2,1.6,1.5]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8970518112182617]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2069835662841797]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.265885353088379]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2054367065429688]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.762065887451172]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.8]}},{"framework":"vanillajs-non-keyed","benchmark":"01_run1k","values":{"total":[25.5,25.4,25.4,25.6,25.3,25.3,25.6,25.4,25.4,25.5,25.4,25.8,25.3,25.3,25.4],"script":[1.5,1.5,1.6,1.6,1.6,1.5,1.6,1.5,1.6,1.6,1.6,1.5,1.5,1.6,1.5],"paint":[23.6,23.5,23.4,23.7,23.3,23.4,23.7,23.6,23.5,23.6,23.4,23.8,23.4,23.3,23.5]}},{"framework":"vanillajs-non-keyed","benchmark":"02_replace1k","values":{"total":[11.9,11.8,12,11.9,12.4,12,11.9,11.8,12.2,12,11.9,12.2,11.8,12,11.8],"script":[1.1,1.2,1.3,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2],"paint":[10.4,10.2,10.4,10.4,10.7,10.5,10.4,10.3,10.6,10.4,10.3,10.6,10.3,10.4,10.3]}},{"framework":"vanillajs-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.8,11.6,11,11.5,11.4,12,12.4,11.6,11.6,11.3,11.7,11.5,12.1,11.3,11.3],"script":[0.1,0.1,0.1,0.1,0.1,1.1,0.6,0.9,0.1,0.1,0.1,0.7,0.9,0.1,0.1],"paint":[10.5,10,9.9,10,10.2,10,10.2,9.9,10.6,9.6,10.1,9.8,9.1,10.3,9.4]}},{"framework":"vanillajs-non-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.7,2.3,2,2,1.6,1.8,1.8,1.3,2.5,1.8,2.4,1.5,1.9,1.8,2.8,2.2,1.9,2.4,1.8,2.3,1.7,2.3,1.7,1.5],"script":[0,0.8,0.6,0,0,0,0.1,0.4,0,0,0.6,0,0.4,0,0,0,0,0,0.7,0,0.7,0,0.8,0,0],"paint":[2,1.4,1.6,0.8,0.6,1,1.4,1.3,0.7,1.5,0.7,1.4,1,1.7,0.3,1.2,2,1.1,1.6,1.6,1.5,1.6,1,1.5,1]}},{"framework":"vanillajs-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,9.2,8.8,9,9,8.9,9.9,8.9,9.1,8.7,8.6,8.5,8.4,8.5,8.5],"script":[0.5,0.1,0.1,0.1,0.4,0.4,1,0.1,0.5,0.1,0.3,0.4,0.1,0.4,0.1],"paint":[6.5,7.9,7.8,7.5,7.6,6.7,7.8,7.9,7.3,7.8,7.3,7,7.1,7.2,7.6]}},{"framework":"vanillajs-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.1,25.8,23,22.9,23,22.4,23.2,23.1,22.8,23.2,23.1,22.6,23,23.4,22.9],"script":[2.4,2.2,2.3,2.3,2.4,2.2,2.1,2.2,2.3,2.2,2.4,2.2,2.3,2.3,2.3],"paint":[20,22.7,20,19.9,19.7,19.6,20.2,19.7,19.3,20,20,19.6,20,20.1,19.8]}},{"framework":"vanillajs-non-keyed","benchmark":"07_create10k","values":{"total":[265.6,265,263.4,265.9,263.8,264.6,266.6,266.1,266.1,267.5,266.7,265.2,266,262.4,267.9],"script":[17.8,18.2,18.1,17.9,18.3,18.1,17.3,18.3,17.9,18.5,18.9,18,18.4,18.1,18.4],"paint":[242,240.6,239.2,241.8,239.8,240.5,243.2,242,242.1,242.9,241.7,241,241.4,238.4,242.5]}},{"framework":"vanillajs-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.8,28.3,28.5,29.3,28.6,28.5,28,28,28.5,29.4,28.3,28.6,29.4,28.5,28.4],"script":[1.6,1.5,1.6,1.7,1.8,1.6,1.5,1.5,1.6,1.6,1.6,1.5,1.6,1.5,1.5],"paint":[26.5,26.2,26.3,26.9,26.1,26.2,25.9,25.8,26.3,27.1,25.9,26.4,27,26.3,26.2]}},{"framework":"vanillajs-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.2,9.5,9.4,9.6,9,8.7,9.7,9.2,9.3,9.2,8.5,9.1,9.4,9.3],"script":[8.2,7.5,7.5,7.4,7.5,7.7,6.6,7.3,7.4,7.2,6.6,6.6,7.2,7.1,7.3],"paint":[1.4,0.8,1,1,1,1.1,0.9,1.5,1.5,1.3,2.4,1,0.3,0.9,1.8]}},{"framework":"vanillajs-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4733390808105469]}},{"framework":"vanillajs-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8889274597167969]}},{"framework":"vanillajs-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9257535934448242]}},{"framework":"vanillajs-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6117067337036133]}},{"framework":"vanillajs-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.01047134399414]}},{"framework":"vanillajs-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12]}},{"framework":"vanillajs-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.4]}},{"framework":"vanillajs-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.3]}},{"framework":"vanillajs-1-non-keyed","benchmark":"01_run1k","values":{"total":[25.7,25.7,25.3,25.7,25.8,25.4,25.4,25.6,25.6,25.5,25.7,25.8,25.6,25.5,25.6],"script":[1.6,1.6,1.6,1.6,1.5,1.6,1.4,1.6,1.6,1.5,1.5,1.6,1.5,1.5,1.6],"paint":[23.7,23.7,23.4,23.8,23.7,23.4,23.6,23.6,23.6,23.6,23.8,23.8,23.7,23.6,23.7]}},{"framework":"vanillajs-1-non-keyed","benchmark":"02_replace1k","values":{"total":[11.6,11.9,12.2,11.5,11.4,11.9,11.9,12.3,11.8,11.9,11.4,11.6,11.8,11.8,11.6],"script":[1.1,1.1,1.2,1,1,1.1,1.2,1.4,1.1,1.1,1.1,1.1,1.1,1.1,1.2],"paint":[10.1,10.4,10.6,10.2,10,10.5,10.3,10.6,10.3,10.4,10.1,10.2,10.4,10.4,10.1]}},{"framework":"vanillajs-1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.1,10.7,10.9,10.9,12.4,10.8,10.6,11.3,11.4,10.4,10.9,11.4,11.7,10.1],"script":[0.4,0.8,0.1,0.1,0.1,0.8,0.1,0.2,0.5,0.5,0.1,0.1,0.1,0.1,0.1],"paint":[8.8,9.3,10.3,9.9,9.1,10.6,9.9,9.3,9.5,9.8,9.4,9.8,9.6,10.6,8.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.5,2.2,2.3,2.1,2.8,2.4,2.7,4.4,2.2,1.9,2.2,2.1,1.6,2.1,1.5,1.7,2.1,2.1,2,1.8,2,1.9,1.9,1.9],"script":[0.4,0,0,0,1,0,0,0,0.9,0,0,0,0,0,0,0,0.7,0,0,0.1,0,0.5,0,0,0],"paint":[1.7,2.3,1.1,1.2,1,1.5,1.6,2.1,1.5,1,1.6,1.6,1.2,1.4,1.9,1,0.9,1.1,2,1.7,0.3,1,1,1.7,0.7]}},{"framework":"vanillajs-1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.6,8.6,9.3,9.1,9.1,8.9,9.4,8.3,9.4,9.3,9.5,9.2,8.7,8.9,8.9],"script":[0.6,0.6,0.1,0.8,0.5,0.1,0.1,0.1,0.9,0.8,0.1,0.7,0.1,0.1,0.5],"paint":[7.8,7.2,7.9,7.2,7.4,7.7,8.3,6.7,7.5,7.3,8.3,7.2,7.6,7.8,7.5]}},{"framework":"vanillajs-1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.6,22.1,23.4,22.4,22.8,22.2,23.5,22.9,22.9,22.8,22.1,23,22.5,22.1,21.9],"script":[2.1,1.8,2.1,1.8,1.9,1.9,1.9,2.1,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[19.7,19.7,20.4,19.9,20.1,19.6,20.9,20.1,20.2,20.4,19.6,20.2,19.9,19.4,19.4]}},{"framework":"vanillajs-1-non-keyed","benchmark":"07_create10k","values":{"total":[266.3,266.7,264.2,262.7,263,266.8,265.4,264.2,262.3,266.5,260.2,264.8,264.4,265.7,263.2],"script":[17.4,17.2,17.2,16.4,16.8,16.9,17,16.7,16.9,16.7,16.4,16.6,16.8,17.1,16.8],"paint":[242.8,243.5,241.2,240.3,239.9,243,242.6,241.4,239.2,243.3,237.9,242.2,241.9,242.7,240.3]}},{"framework":"vanillajs-1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.5,28.3,29.4,28.3,28.8,28.8,29.4,28.9,28.3,28.4,28.6,28.6,29,28.3,28.4],"script":[1.5,1.5,1.6,1.6,1.6,1.6,1.4,1.5,1.5,1.5,1.7,1.5,1.6,1.5,1.6],"paint":[26.3,26.1,27.2,26.1,26.4,26.4,27.1,26.6,26.1,26.2,26.2,26.4,26.7,26.1,26.1]}},{"framework":"vanillajs-1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,8.7,9.1,9.6,8.9,9.4,9.2,9.6,8.8,10.1,10.5,9.3,10.1,9.2,9.7],"script":[8,7,7.2,7.9,7,7.7,7.7,7.2,7.3,7.8,8.5,7.5,7.6,7.2,7.6],"paint":[1,0.2,1,0.6,0.8,0.7,0.7,0.9,1,1.1,0.8,1.6,1.5,1.3,1.4]}},{"framework":"vanillajs-1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4687204360961914]}},{"framework":"vanillajs-1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8940362930297852]}},{"framework":"vanillajs-1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8900146484375]}},{"framework":"vanillajs-1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5870361328125]}},{"framework":"vanillajs-1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.921142578125]}},{"framework":"vanillajs-1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10]}},{"framework":"vanillajs-1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.2]}},{"framework":"vanillajs-1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.6]}},{"framework":"vanillajs-3-non-keyed","benchmark":"01_run1k","values":{"total":[25.1,25,25.1,25.1,25.2,25.1,25.8,25.7,25.9,25.4,25.5,25,25.2,25.4,25.3],"script":[1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.2,1.3,1.3],"paint":[23.5,23.4,23.4,23.5,23.6,23.5,24.1,24.1,24.3,23.7,23.8,23.4,23.6,23.8,23.6]}},{"framework":"vanillajs-3-non-keyed","benchmark":"02_replace1k","values":{"total":[11.1,11.6,11.2,11.3,11.2,11,11.1,11.2,11.2,11.2,11.2,11.3,11,11.2,11.3],"script":[0.9,0.9,0.8,0.9,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.9],"paint":[9.9,10.4,10.1,10,10.1,9.9,10,10.1,10.1,10.1,10.1,10.2,9.9,10,10]}},{"framework":"vanillajs-3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,10.7,10.6,11.2,11,11.8,10.9,11,11.2,11.2,11.3,11.1,12.5,10.6,11],"script":[0.8,0.1,0.1,0.6,0.3,0.8,0.1,0.1,0.1,0.1,0.1,0.3,1.1,0.1,0.6],"paint":[8.7,10,8.8,9.6,9.5,10.3,9.7,9.6,10.1,9.1,9.7,10.1,9.9,9.4,9.8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"04_select1k","values":{"total":[2,1.8,1.8,2,2.3,3.4,2.3,1.8,2.2,2.3,1.9,2.4,2.3,1.9,2.2,4.1,1.6,1.6,1.6,2.2,1.8,2.2,2.6,1.5,2.1],"script":[0,0,0,0,0,0.7,0,0,0,0,0,0.5,0.7,0,0,0,0,0,0,0,0,0,0.9,0,0],"paint":[1.3,1.6,1.2,1.3,2,0.4,2.1,1.2,2,1.8,1.4,1.4,1.5,1.7,2,1.3,1.4,0.7,0.9,2,1.2,2,1.2,1,1.4]}},{"framework":"vanillajs-3-non-keyed","benchmark":"05_swap1k","values":{"total":[8.9,8.3,8.4,8.7,8.7,9.2,7.9,8,8.5,8.3,8,8.5,8.2,8.8,8.5],"script":[0,0.3,0,0,0.5,0,0,0,0.4,0,0,0.4,0,0.9,0.4],"paint":[7.4,7,7.3,7.1,6.4,7.9,6.2,6.6,7.5,7,7.7,7,7,6.9,7.2]}},{"framework":"vanillajs-3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.4,10.4,10.2,10.4,10.6,10,10.6,10.3,10.8,10.5,11.4,10.3,10.3,10.2],"script":[0.1,0.1,0.1,0.1,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.8,9.8,9.7,9.5,9.5,9.6,9.3,9.7,9,9.8,10,10.5,9.8,9.6,9.5]}},{"framework":"vanillajs-3-non-keyed","benchmark":"07_create10k","values":{"total":[257.7,260.1,260.1,259.1,260.9,262.6,262.8,263.6,259.6,260.9,262.3,260.1,259.7,260.3,261.7],"script":[13.4,13.7,13.9,13.6,13.7,13.6,13.6,13.7,13.5,13.7,14,13.8,13.4,13.6,13.9],"paint":[238.5,240.5,240.1,239.9,241.4,242.9,243.2,243.9,240.5,241.4,241.9,240.4,240.2,240.5,241.8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.5,28.4,29.5,28,29,28.8,28,28.3,28.7,27.8,28.2,27.9,28.5,28.1,28.2],"script":[1.3,1.4,1.4,1.3,1.4,1.2,1.2,1.2,1.2,1.3,1.3,1.3,1.4,1.2,1.4],"paint":[26.5,26.1,27.4,25.9,26.8,26.9,26.1,26.3,26.7,25.9,26.2,25.9,26.4,26.2,26.1]}},{"framework":"vanillajs-3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.3,9,9.2,9,8.8,8.8,9.3,8.9,9.1,8.8,9.3,8.8,9.3,9.2,8.8],"script":[7,7.3,7.3,7.5,6.5,6.7,7.5,6.8,7.3,7,7.7,6.7,7.1,6.9,6.7],"paint":[1.6,1.3,1,0.2,1.5,1.2,0.7,1.2,1.3,0.9,0.7,1.1,2,1.3,0.6]}},{"framework":"vanillajs-3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4654998779296875]}},{"framework":"vanillajs-3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.780562400817871]}},{"framework":"vanillajs-3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.7949934005737305]}},{"framework":"vanillajs-3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6037778854370117]}},{"framework":"vanillajs-3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.487105369567871]}},{"framework":"vanillajs-3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"vanillajs-3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.7]}},{"framework":"vanillajs-3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.8]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"01_run1k","values":{"total":[30.5,30.1,30.1,30.4,30.5,29.9,30,31.8,30.1,30,29.9,30.6,30.4,30,30.2],"script":[6.7,6.5,6.4,6.4,6.5,6.3,6.7,7,6.2,6.4,6.7,6.8,6.4,6.4,6.4],"paint":[23.3,23,23.2,23.5,23.4,23.1,22.7,24.2,23.3,23,22.7,23.2,23.4,23,23.2]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"02_replace1k","values":{"total":[13.4,14,13.8,13.9,13.8,14,13.7,14.2,13.4,14.6,14.2,14.1,14.3,13.9,14.1],"script":[2.9,3.5,3.5,3.4,3.2,3.5,3.2,3.6,2.9,3.1,3.6,3.1,3.1,3.1,3.2],"paint":[10.2,10.1,10,10.1,10.2,10.1,10.1,10.2,10.2,11,10.2,10.7,10.8,10.4,10.6]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,14.2,14.2,14.3,14,14.7,13.8,13.5,14.7,14.6,13.9,13.5,15.1,12.8,14.2],"script":[2,2.8,2.5,2.4,2.5,2.4,2.2,2.1,2.8,3,2.4,2.2,2.1,2.1,2.7],"paint":[10.8,10.2,9.4,10.5,10.3,11.3,10.6,10.7,11.2,10.4,10.1,9.8,11.8,8.9,10.4]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.5,3.5,3.1,3,3.9,3.4,3.4,4.3,4,3.2,4.8,3.5,4.5,3.4,3.7,3.5,3.5,4.2,4,3.6,3.9,3.4,3.7,3.4],"script":[0.6,0.6,0.9,0.6,1.5,1,1.5,1.6,1,1.4,1.1,1.2,1,2.1,1.2,1.5,1,1.1,0.7,1.5,1.7,1.3,1.2,0.9,0.6],"paint":[1.8,2.3,1.5,2,0.7,2.1,1.7,1.7,1.5,1.6,1.7,1.4,1.5,1.3,1.2,1.4,1.6,1.2,1.7,2.2,1.1,2.5,2,1.5,2.6]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"05_swap1k","values":{"total":[10.3,10.8,9.8,10.8,10.9,10.2,10,10.1,10.7,9.7,10.1,9.8,9.9,9.3,10.3],"script":[0.9,1.2,1.4,1.4,1.5,1.4,1.7,1.2,1.8,1,0.7,1.1,1.1,0.2,1.2],"paint":[8.4,8.2,7.3,8.3,7.7,7.7,6.7,7.6,7.7,7.1,7.6,7.2,7.7,8.8,8]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[27.6,25.6,26.4,26.6,26.6,26.2,27.9,25.8,27.1,26.3,25.6,25.9,26.1,25.5,26.2],"script":[5.3,4.9,5,4.8,4.7,4.9,5,4.3,5,4.5,4.8,4.9,4.8,4.8,4.9],"paint":[21.2,20,20.7,20.8,20.9,20.4,21.9,20.7,20.8,20.3,20.1,20.2,20.4,19.9,20.5]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"07_create10k","values":{"total":[307.6,303.6,308.1,307.1,308,308,308.3,307.3,310,310,304.6,307.6,307.2,309,308.5],"script":[65.1,61.4,65.8,64.9,64.6,64.9,63.7,65.1,64.8,66.3,63.6,65.1,64.1,65.1,64.9],"paint":[236.5,236,236.2,236.1,237.5,236.8,238,236.6,238.8,237.5,235.1,236.4,236.8,237.6,237.7]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34,33.8,34.7,34.2,34.1,33.6,33.3,33.8,33.8,35,34.1,34.8,34.4,34.2,33.6],"script":[6.3,6.4,6.4,6.2,6.2,6,5.7,6.2,6.2,6.4,6,6,6.3,6.5,6.3],"paint":[26.9,26.5,27.3,27.1,27,26.7,26.8,26.7,26.7,27.6,27.1,27.8,27.2,26.9,26.4]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,10.8,11.6,10.7,12,10.4,11.2,10.9,11,10.5,12.7,11.7,11.5,11.6,11.3],"script":[8.7,8.7,9.1,9.2,9.9,8.9,9.6,9,8.3,9,9.9,9.8,9.6,9.5,9.3],"paint":[1.6,0.6,0.4,0.7,1.9,0.6,1.2,1,1.6,0.6,1.1,1.7,1.1,1.5,1.7]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.852849006652832]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.903599739074707]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9478816986083984]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2316875457763672]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.66105842590332]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[61.7]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"vue-v3.5.13-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[89.6]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"01_run1k","values":{"total":[27.9,27.6,27.7,27.9,27.9,27.9,27.9,27.7,27.9,27.8,27.8,27.7,27.9,28,27.8],"script":[4.2,4.3,4.2,4.3,4.2,4.3,4.2,4.2,4.2,4.2,4.2,4.3,4.3,4.3,4.3],"paint":[23.3,22.9,23.1,23.1,23.3,23.3,23.2,23.2,23.3,23.1,23.2,23,23.2,23.4,23.1]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"02_replace1k","values":{"total":[12.2,12.2,12.2,12.2,12.4,12.3,12.3,12.3,12.5,12.5,13.4,12.5,12,12.4,12.5],"script":[2,1.9,1.9,1.9,2.1,2,2.2,2,1.9,2.3,2.3,1.9,1.9,2.1,2.1],"paint":[9.9,9.9,9.9,9.9,9.9,9.9,9.8,9.9,10.2,9.9,10.7,10.2,9.7,10,10]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12,11.5,11.9,12.3,12.4,12.2,12.2,13.2,12.7,12.4,12.2,13.2,12.7,12.6],"script":[1.2,1.1,1.2,1.1,1.4,0.9,1.2,1.4,1.3,1,1,1,1.5,1,1.4],"paint":[10,9.5,8.8,9,9.5,10,9.8,10.3,10.4,10.5,10,9.6,10.2,10.8,9.9]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"04_select1k","values":{"total":[3.8,2.8,3.4,3.1,4.7,3.6,3,3.6,3,3,3.1,3.4,3.7,3.9,3.7,3.5,3.3,4.1,3.3,3.6,4,3.4,3.7,3.4,3.4],"script":[1.8,1.3,0.9,1.4,1.7,1.4,0.9,1.3,0.9,1.5,0.9,0.9,1.6,1.1,1.6,1.5,0.9,0.9,1.2,1.7,1.7,0.9,1.3,1.5,1.7],"paint":[1.3,1.2,2.4,1.5,1.4,1.3,0.8,1.6,1.5,1.3,1.1,1.4,2,1.7,2,1.8,1.4,2.2,1,1.1,2.1,1.4,2.3,1.6,0.8]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"05_swap1k","values":{"total":[8.5,9.6,9.2,8.8,10.6,9.7,9.6,8.5,9,9.8,9.5,9.8,8.8,10.6,9.3],"script":[0.7,1.2,0.9,0.8,1.1,1.3,0.9,0.5,0.2,0.7,1,0.9,0.6,1.1,1.1],"paint":[6.3,7.4,7.3,7.1,8.4,6.7,8,7.4,8.1,7.7,7.8,7.8,7.3,7.8,6.7]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.1,26.1,25.3,26.7,25.2,26.2,26.6,26.6,26,26,26.8,26.8,25.8,25.9,26],"script":[5.1,5.1,5,5.7,5,5.2,5.5,5.2,5.3,5.3,5.6,5.4,5.4,5.3,5.3],"paint":[22,19.6,19.5,19.8,19,19.9,19.6,20.1,19.6,19.5,20,20.2,19.4,19.7,19.5]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"07_create10k","values":{"total":[304.4,297.7,300.1,303.6,293.8,294.2,296.2,295.8,301.9,301.6,294.1,294.7,303,294.6,294.1],"script":[50.1,46.7,50.9,50.4,47.3,49,47.3,49.5,49.7,49.3,46.5,46.9,49.1,47.6,50.6],"paint":[248.3,244.7,243.7,247.4,240.8,239.5,242.6,240.3,246.2,246.4,241.6,241.3,247.7,241,237.3]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.9,29.7,29.7,29.9,30.1,29.8,29.5,29.7,30.4,29.1,30.4,29.9,29.7,29.8,29.7],"script":[3.5,3.2,3.3,3.3,3.2,3.3,3.5,3.3,3.3,3.2,3.5,3.5,3.2,3.1,3.3],"paint":[25.7,25.8,25.6,25.9,26.2,25.9,25.3,25.7,26.4,25.2,26.2,25.8,25.7,26,25.8]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,11.1,11.2,11.7,11.8,11.2,12.1,11.3,10.9,11.1,12.5,11.6,11.3,10.7,10.8],"script":[9.4,8.8,8.9,9.7,9.4,8.9,9.4,9.2,8.9,9.1,10.1,9.5,9.2,8.6,9.3],"paint":[1.9,1.3,1.1,1.8,2.2,0.3,1.2,0.6,1.8,1.3,0.7,1.6,0.6,1.1,0.8]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6808948516845703]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.763479232788086]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.776782989501953]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.019094467163086]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.961478233337402]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[37.5]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.2]}},{"framework":"vue-jsx-vapor-v3.5.13-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"01_run1k","values":{"total":[27.9,27.2,26.5,26.5,26.7,27.2,26.9,27,27,26.6,27,26.7,26.8,26.4,26.4],"script":[3.5,3.1,3.1,3,3.1,3.6,3.1,3.1,3.1,3,3,3,3.1,3.1,3],"paint":[23.9,23.7,23.1,23.2,23.2,23.2,23.4,23.5,23.5,23.2,23.6,23.2,23.3,23,23]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"02_replace1k","values":{"total":[11.4,11.4,11.5,11.7,11.4,11.3,11.2,11.4,11.2,11.3,11.9,11.6,11.5,11.3,11.4],"script":[1.2,1.4,1.3,1.5,1.2,1.2,1.2,1.3,1.2,1.3,1.6,1.6,1.5,1.2,1.2],"paint":[9.8,9.6,9.8,9.8,9.8,9.8,9.6,9.8,9.7,9.8,9.9,9.6,9.7,9.8,9.8]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,11.9,12.5,12.3,12.1,12.7,11.6,11.6,12.5,11.5,13.4,13.4,13.5,12.3,12.9],"script":[1.2,1,1.4,1.1,1,1.1,1.1,1,1.5,1.1,1.7,1.8,1.8,1.4,1.4],"paint":[10.3,10.2,9.2,10.1,9.8,10,8.9,9.4,10.4,9.4,10.7,10.3,10.7,9.7,10.2]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"04_select1k","values":{"total":[4.2,3.7,4.4,3.2,3.4,4,5.2,4,3.3,4,3.5,3.8,3.9,4.4,3,3.4,3.9,2.7,3.9,3.3,4,3.4,3.9,3.8,3.7],"script":[1.7,1.4,1.7,1,1.1,0.9,3,2,1.4,1.9,1.4,1.5,1.1,1.9,0.7,1.3,1.6,0.9,1.2,1.2,1.3,1.1,1.8,1.2,1.5],"paint":[1.5,1.5,2.6,2,2.2,1.7,1.3,1.9,1.4,1.9,1.4,1.6,2.6,1.5,1.8,2,2.2,1,1.6,1.9,2.6,1.3,2,1.5,1.5]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"05_swap1k","values":{"total":[8.9,10.3,9.2,9.3,9.7,9,8.8,8.9,8.9,9.1,8.9,9.3,9.1,9,9.7],"script":[0.2,1.8,1.1,0.8,0.8,0.8,1,0.8,0.2,0.9,0.2,0.6,0.9,0.6,1],"paint":[7.7,6.8,6.9,7.5,7.5,6.8,6.8,7,7.6,6.7,7.3,7.5,7.2,6.6,7.5]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23,24.1,23.5,23.9,23.4,23.7,22.7,22.5,24.8,24.3,23.6,24.3,23.8,24.1,23.5],"script":[2.3,3.9,3.3,3.4,3.3,3.7,2.3,2.4,4.3,3.7,3.7,3.4,3.4,3.9,3.4],"paint":[19.7,19.5,19.3,19.7,19.3,19.4,19.7,19.5,19.8,19.8,19,20.3,19.7,19.6,19.4]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"07_create10k","values":{"total":[286.1,275.6,280.4,286.9,287.3,280.1,280.7,277.7,287.8,286.9,278.6,281.3,278.3,280.1,286.2],"script":[32.3,31.5,31.9,32.1,32.6,32,31.9,32.5,32,31.9,32.6,32.1,31.6,32.4,32.5],"paint":[247.6,238.6,241.5,248.6,248.7,241.7,241.9,239.5,249.7,249.3,240.4,242.9,241.1,242.1,248]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,30.5,29.3,29.5,29.6,29.4,30.3,29.6,29.8,29.4,30.3,29.4,30.2,29.4,29.9],"script":[3.3,2.9,3.3,2.9,2.9,3.2,3.3,2.9,3.2,3.2,3,3,3.3,2.9,3.1],"paint":[26.2,26.9,25.4,25.9,25.9,25.5,26.2,26,25.9,25.5,26.5,25.7,26.1,25.7,26]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,10.5,10.2,9.7,11.1,9.9,9.8,9.9,10.4,10.2,10.1,9.8,10.2,10.3,10.4],"script":[7.9,8.4,8.3,8.1,8.3,8.1,7.8,8.2,8.8,8,7.8,7.6,8,8.2,8.3],"paint":[0.7,0.8,1.1,1.1,1.6,0.7,1.2,1,0.5,0.4,2,0.6,1.9,1,1.8]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6820049285888672]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.047083854675293]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0740785598754883]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9677982330322266]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.531768798828125]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[36.4]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.9]}},{"framework":"vue-vapor-v3.5.13-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[69.4]}}]
\ No newline at end of file
+[{"framework":"alpine-v3.14.7-keyed","benchmark":"01_run1k","values":{"total":[76,79.4,77.2,77.1,76.6,77.6,77.4,75.8,75.1,77,77.9,75.8,75.8,75.9,76.4],"script":[52.4,55.1,53,53.4,52.9,53.7,53.7,52.3,51.6,53.4,54.2,52.2,52.4,52.5,52.9],"paint":[23.1,23.8,23.7,23.1,23.2,23.4,23.3,23,23,23.1,23.2,23.1,23,22.9,23]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"02_replace1k","values":{"total":[95.1,94.7,95.9,100.1,96.6,95.4,96.7,97,97.3,97.2,95.6,96.9,97.1,97.7,95.8],"script":[70,69.5,71,78.8,71.1,70.2,71.6,71.7,72.2,72,70.2,71.5,71.8,72.3,70.8],"paint":[24.6,24.7,24.4,20.8,24.9,24.7,24.5,24.9,24.6,24.7,24.8,24.9,24.7,24.9,24.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.1,15.9,15.7,16,15.5,15.7,16.5,16.2,16.5,15.6,15.6,16.1,15.1,15.6,15.9],"script":[4,3.6,4.1,4.2,4.2,4.1,4.5,4.5,4,3.1,4,3.7,4,4.1,4],"paint":[11,10.9,9.3,10.9,9.9,10,10.8,10.3,10.2,10.9,10,10.6,9.7,10.2,10.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"04_select1k","values":{"total":[29.5,29.5,29.3,28.5,30.1,29.8,29.7,30,29.7,29.7,30.1,29.1,29.5,34.6,28.8,29.8,30,30.2,31.2,29.5,29,30,29.3,30.2,31.4],"script":[25.6,26.2,26.1,25.7,26.6,26.7,25.6,26.1,25.9,26.1,26.6,25.3,26.4,29,25,26.4,25.5,26,27.3,25.7,25.8,26.6,25.8,26.9,28],"paint":[2.9,2.3,2.1,1.7,2.2,1.4,2.9,2,2,1.2,1.3,3.3,2,3.3,2.6,1.9,3,2.3,2.5,3.2,1.9,1.9,2,2.3,2.1]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"05_swap1k","values":{"total":[26.4,26.6,26.8,27.2,26.6,27.4,27.3,26.3,26.9,27.4,27,28,27.2,27.1,26.5],"script":[10.1,9.8,9.8,10.1,10.7,10.8,9.8,10.6,10.2,9.7,9.7,11.1,10.5,11.3,9.6],"paint":[14.8,14.5,15.3,15.3,14.8,14.6,15,14.6,14.7,16.3,15.9,15.8,15.2,14.1,14.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.2,18.4,18.5,18.8,18.3,18.4,18,18.2,18.6,18.2,19,18.2,18,18.1,18.3],"script":[6.6,6.7,7,7.1,6.8,6.7,6.4,6.7,7.1,6.7,7,6.7,6.7,6.7,6.6],"paint":[10.8,10.6,10.5,11.1,10.7,11.1,10.6,10.6,10.7,10.5,11.3,10.8,10.8,10.9,10.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"07_create10k","values":{"total":[653.4,656.9,646.5,661.4,665.2,654.8,658.4,663.3,667.6,657.4,665.9,666.5,658.9,653.6,671.5],"script":[416.4,416,409,425.5,423,418,423.3,424.4,426.5,421.6,425.9,426.8,419.8,415.7,433.4],"paint":[228.1,231.8,228.3,226.9,232.8,227.9,226.4,230.1,231.9,226.9,230.9,230.5,230.2,229.2,229.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87,87.7,88,88,87.6,87.8,88.9,88.2,86.5,88.2,88,88.4,87.3,88.3,89],"script":[58.5,59.1,59.2,59.3,58.8,58.9,60,59.2,58.1,59.4,59.3,60,58.6,59.5,60.1],"paint":[27.5,27.5,27.7,27.7,27.7,27.8,27.9,27.9,27.3,27.8,27.6,27.4,27.6,27.7,27.8]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[58.9,57.9,60.3,60.4,60.5,59.6,57.5,62,62.1,62,59.7,58.2,58.3,57.1,64.9],"script":[57.4,55.9,58.2,58.7,58.9,57.6,56.1,59.7,60.3,59.6,58.1,56.2,55.9,55.2,62.7],"paint":[0.7,1.6,1.6,0.8,0.8,1.2,0.3,1.7,1.1,1.8,1.2,0.7,2.3,1.4,1.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7817211151123047]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[16.669071197509766]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[16.710464477539062]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5001764297485352]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[155.93081378936768]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.8]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[34.4,35,34.8,34.4,35,34.7,35.6,35.4,34.9,35,35.6,34.7,35.7,34.9,35.5],"script":[12.6,12.8,12.5,12.5,12.9,12.7,13,12.8,12.8,12.7,13.1,12.5,13.1,12.6,13],"paint":[21.3,21.6,21.7,21.3,21.5,21.4,22.1,22.1,21.6,21.7,22,21.6,22,21.8,21.9]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[42.1,42.2,42.3,42.9,42.8,42.9,42.4,42.3,42.8,42.9,42.3,42.5,42.2,42.7,42.7],"script":[19.1,19,19,19.6,19.4,19.1,19.4,19.4,19.5,19.5,19.1,19.2,19.1,19.4,19.3],"paint":[22.4,22.5,22.7,22.6,22.8,23.2,22.4,22.3,22.7,22.9,22.6,22.6,22.5,22.7,22.7]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,19.3,18.8,19.9,19.7,20.3,19.5,19,19.3,19.7,20,18.9,20,19.3,20.6],"script":[7.7,7.1,7.1,7.4,7.4,7.4,7.1,6.7,6.8,7.1,7.1,6.7,7.5,7.1,7.9],"paint":[9.9,9.8,9.3,10.7,10.7,10.8,11.2,10.5,10.5,10.2,11.4,10.6,10.9,10.7,10.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[9,8.8,10.5,9.4,8.6,8.2,9.4,8.8,8.9,8.8,9.6,9.6,9.3,9.1,9.5,9.6,8.8,9.2,9,9.2,8.8,9.1,8.4,9,9.7],"script":[5.8,5.5,7.6,5.3,5.9,5.6,6,6.2,6.3,5.6,6.3,6.6,6.2,6.4,5.9,6.6,6.1,6.2,5.8,6.7,6.3,5.9,5.9,5.4,6.6],"paint":[2,2,2.2,2.8,1.2,1.2,2.1,0.8,1.6,2.3,2.2,2.2,1.9,1.3,3.3,1.2,1.9,2.3,2.5,1.1,0.7,2.3,1.1,2.1,1.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[22.2,22.8,21.6,22.5,21,21.7,21.1,22.1,21.9,22,22,22.1,21.9,22.1,22.5],"script":[6.4,6.8,6.5,7.1,6.8,6.2,6.2,7.2,7.1,6.4,7,6.6,7.1,7.5,7.5],"paint":[14.3,14.2,13.4,13,13.1,12,13.3,13.1,12.4,13.6,13.9,14.1,12.5,12.6,13.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[69.8,70.2,70.4,69,70.1,71.3,69.9,71.3,69.8,70.5,70.3,68,70.9,69.9,69.7],"script":[25.5,25.5,25.4,24.6,25.1,24.6,24.9,25.6,25,25.3,25.7,24.5,25,24.7,24.8],"paint":[43,43.5,43.3,43.4,43.6,45.3,43.7,44.4,43.9,43.8,43.2,42.2,44.1,43.8,43.6]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[342.8,340.6,339.2,340.4,343.3,340.3,342.6,343.2,343.2,344.4,341.4,339.6,342.4,339.9,340.8],"script":[117.3,116.5,116.3,116.1,120.7,117.8,118.6,120.4,119,116.1,116.4,116.9,118.8,118.1,117.7],"paint":[217.8,216.1,215.2,216.7,214.8,214.9,215.5,215,216.2,220.1,217.3,215.1,215.9,214.2,215.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.9,39.9,40.8,40.3,40.8,40.4,40.8,40.9,40.4,40.6,40.9,40.8,41,40.6,40.7],"script":[14.7,14.4,14.5,14.1,14.8,14.5,14.5,14.4,14.4,14.5,14.7,14.5,14.8,14.6,14.6],"paint":[25.2,24.5,25.3,25.3,25,24.9,25.4,25.5,25.1,25.1,25.2,25.3,25.2,25.1,25.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.8,13.8,13.1,15.5,13.3,14.4,13.7,14.3,14.1,13.7,14.2,13.8,14.2,14.2],"script":[11,12.3,11.4,11,13.1,11.6,12.2,11.7,12.8,11.9,11.3,11.8,11.3,12.3,12.3],"paint":[1.7,0.7,1.4,1.5,1.7,0.3,1.1,1.1,0.6,0.8,2.2,1,1.5,0.3,1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4695415496826172]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.462567329406738]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.27407169342041]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.792963981628418]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.33736228942871]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[73.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,32.8,32.5,32.7,32.7,32.8,32.6,32.8,33.4,32.9,32.4,32.6,32.4,32.7],"script":[6.5,6.6,6.4,6.2,6.5,6.3,6.2,6.3,6.5,6.7,6.4,6.3,6.5,6.4,6.5],"paint":[23.1,22.7,23.1,23,22.8,23.1,23.1,22.9,22.8,23.2,23.1,22.8,22.8,22.7,22.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39,39.3,39.4,38,38.5,38.2,39.2,38.7,39.1,39.3,39.7,38,38.1,37.5,39],"script":[12.4,12.6,12.5,11.9,12.4,12.2,12.4,12.3,12.3,12.3,12.6,12.1,12.2,12.1,12.5],"paint":[23.3,23.2,23.2,22.7,22.7,22.5,23.3,23,23.3,23.6,23.5,22.6,22.6,22,23.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,12.5,13.1,12.6,13.1,16.3,12.3,13.2,13.6,12.3,12.2,12.7,12.3,14.2,13],"script":[1.9,2.5,2.3,2.3,2.7,2.4,2,2.4,2.6,2,1.9,2.1,2,1.8,2.4],"paint":[9.4,8.7,9.3,9.4,8.8,11.8,9.3,9.6,10.2,9.1,9,9.5,9.1,11.2,9.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.5,4.1,3.6,3.9,3.6,4.3,4.8,4.4,3.1,3.6,4,3.9,4.8,4.6,4.1,3.5,3.2,4.3,4.3,4,4,4.6,4.1,4.5],"script":[0.3,0.7,1.9,0.6,1,0.7,1.4,1.5,2.4,1,0.9,1.2,1,2.2,2.1,1.8,1.6,1.2,2,1.6,1.2,1.9,2.1,1.4,2.4],"paint":[2.9,2.7,1.5,2.8,2.7,2.7,2.8,2.2,1.3,2,2.5,1.7,2.4,2.3,2.4,1.7,1,1.9,2.2,0.9,1.8,1.6,1.7,1.6,1.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[16.6,16.2,15.4,15.2,15.3,16,14.9,15.4,15.3,15.5,15.7,15.7,15.6,16.9,15.9],"script":[1.6,1.8,1.5,2.6,1.9,1.6,1.2,2,0.7,2.2,1.8,1.6,1,2,1.4],"paint":[12.6,13.4,12.9,11.7,12.5,12.7,12.3,12.2,13.3,12.4,12.3,12,13.1,13.8,13.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,10.9,11.5,11.6,11.9,11.2,11.9,11.3,12.2,11.2,12.3,11,11.6,11.5],"script":[0.8,0.9,0.7,0.7,0.8,0.7,0.8,0.9,1,1.2,0.9,1.2,0.7,0.7,0.9],"paint":[10.4,10.5,9.4,10.3,9.9,10.6,9.5,10,9.6,10.7,9.4,10.2,9.7,10.4,9.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[350.2,348.7,347.5,348.9,349.1,346.7,356.5,349.6,352.3,347.9,349.9,350.8,351.1,348.6,349.9],"script":[68.3,68.6,68.6,68.8,68.5,68,69.4,68.5,68.3,68.5,69.2,68.7,69.5,68.9,68.8],"paint":[229.5,229.3,227.7,228.9,228.9,228,232.2,230.2,229.9,228,230,230.2,230.7,229.7,230.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.2,37.5,37.8,37.4,36.9,36.6,37.3,38.2,38.3,37.3,36.8,38,37.2,37.7,36.6],"script":[6,6.3,6.2,6.2,6,6,6.1,6.3,6.2,6,6.3,6.1,6.3,6.1,5.9],"paint":[27.2,27.3,27.6,27.3,26.9,26.8,27.3,27.9,28,27.4,26.6,27.9,27.1,27.5,26.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.9,18.4,19.9,20.4,20,21.6,18.3,19,20.7,20.7,20.2,19.6,20.5,19.6,19.2],"script":[17.9,16.4,18,18.9,17.7,19.2,16.4,16.6,18.6,18.1,18.1,18,19,16.8,16.8],"paint":[0.3,0.6,0.3,0.9,2.1,1,0.3,1.3,1,1.1,1.5,1.1,0.7,1.3,1.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5145835876464844]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.751943588256836]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.800432205200195]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0664501190185547]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.181106567382812]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[166.5]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[35.3,38.4,39.4,37.8,38.5,38.5,38.7,39.5,38.3,39.4,37.6,38.8,37.9,38.8,38.6],"script":[5.8,5.8,5.8,5.8,5.6,5.7,5.7,5.9,5.8,5.9,5.5,5.9,5.9,5.5,5.7],"paint":[22.7,22.5,22.4,21.9,23.4,22.4,22.7,22.3,22.3,22.2,21.9,22.7,21.8,22,21.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[40.6,41.6,42.2,40,39.6,36.6,42.3,37.8,37.2,38.3,38.1,40.6,39.5,38.7,39.2],"script":[10.1,10.1,10.1,10.1,9.7,10.1,10.1,10.1,10,10.1,10,10.3,10.1,10.3,9.9],"paint":[22.9,23.6,22.8,23.6,23,23.4,23.1,23.2,23.1,23.2,23.8,22.8,23.2,23.2,23]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,27.8,12.3,12,11.5,12.8,11.8,14.3,28.1,12.8,28,12.2,12.4,12.3,12.3],"script":[2.4,2.7,2.2,2.1,2.6,2.5,2.5,2.5,2.1,2.6,2.3,2.3,2.4,2,2.7],"paint":[8.8,8.4,8.9,9.8,8.1,10.2,9.3,10.5,9.9,9.9,9,9.1,9.9,9.5,9.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[5,3.9,4.6,5,4,4.9,3.4,4,4.5,4.6,4,5,3.8,4.6,4.2,3.6,4.5,5,4.8,5,3.9,4.5,4.4,5.3,4.4],"script":[2.2,1.7,2.4,2.6,1.6,2.5,0.9,1.3,2.2,2.2,1.4,2.6,2,2.4,1.3,0.9,1.8,3,2.6,2.1,0.7,2.4,2,2.4,2.2],"paint":[1.9,2.1,1.7,1.7,1.5,2.3,1.3,1.4,2,2.3,2,2.3,1.6,1.7,2.2,2.5,2,1.9,1.6,2.7,2.7,1.7,2.1,2.1,1.3]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[31.8,31.2,15.4,31.2,31.3,31.4,14.9,31.1,15,31.9,14.9,14.5,15,30.3,30.6],"script":[2.6,2,2.6,1.9,1.8,1.8,2.6,1,1.7,2.3,1.5,1.8,2.3,1.9,2.2],"paint":[13.1,12.9,11.9,12,13.8,13.5,11.5,14,13.1,13.1,13.3,12.1,11.7,11.2,12]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,14.1,11,14.8,13.4,14.4,10.9,12,10.4,12.8,16,14.7,10.4,14.1,11.5],"script":[1,1.3,1.4,0.7,1.2,0.6,0.7,0.9,1.2,1,1.2,1,0.9,0.9,1.2],"paint":[9.2,9.3,9.3,8.9,8.8,8.9,9.3,9.7,9,9.3,9.1,9.2,9.1,9.4,9.9]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[347.8,344.9,348,347.8,345.5,349.6,344.8,344.8,348,349.5,344.5,345.9,345.5,343.7,345.6],"script":[56.7,55.4,57,54.9,56.7,56.5,54,55.3,55.4,56.6,55.8,56.3,55.1,56.2,54.7],"paint":[237.1,234.2,235.5,237.5,237.1,238,235.2,236.9,237.5,238.1,236.6,235.1,236.5,235.6,237]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.7,41.3,35.5,41.6,41.5,35.9,41.9,41.5,41,40.9,41.6,41.3,41.3,41.3,41.2],"script":[6.1,5.7,5.8,6,6,6,5.9,6,5.7,5.8,5.9,6,5.9,5.9,5.8],"paint":[26.3,26,26.2,26.6,26.4,26.5,26.5,26.3,26.1,26.1,26.6,26.2,26.4,26.4,26.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.9,13.7,31.2,15.6,15.8,13.9,16.3,14.1,13.8,31.8,14.3,13.9,13.4,15.1,13.5],"script":[14.1,11.8,13.3,13.3,14,12.5,14.5,12.2,12.1,13.7,12.9,11.5,11.8,12.1,11.6],"paint":[1,1,0.9,2,1.5,0.3,0.3,1.3,1.4,0.8,1.3,1.2,0.2,1,1.1]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1282529830932617]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.686117172241211]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.740973472595215]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.720728874206543]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.681446075439453]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[120.5]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.2,30.8,31.3,31.1,31.1,31.5,31.3,30.7,31,31.7,32,31.8,31.6,31.4,31.9],"script":[5.4,5.3,5.5,5.3,5.3,5.5,5.5,5.1,5.4,5.3,5.7,5.5,5.4,5.5,5.5],"paint":[22.5,22.3,22.4,22.5,22.4,22.7,22.6,22.2,22.3,23.1,22.9,22.9,22.9,22.6,23]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[37.7,36.6,36.3,36.2,36.7,36.1,36.2,36.7,36.5,36.2,36.8,37.5,36.6,36.4,37.3],"script":[10.7,10.2,10.2,10.1,10.1,10.1,10,10.5,10.2,10.1,10.5,10.3,10.2,10.2,10.6],"paint":[23.6,23,22.7,22.7,23.1,22.7,22.8,22.8,22.9,22.7,23,23.5,23,22.9,23.4]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,12.5,12.6,12.3,11.5,12,11.4,12.7,12.2,12.7,13.2,12,12.5,13.1,12.2],"script":[2.5,2.4,2.2,2.3,1,2.1,0.9,2.3,2.5,1.8,2.5,2.2,2.7,2.3,2.4],"paint":[9.8,9.1,9.5,8.5,9.5,8.9,9,9.1,8.7,9.7,8.4,8.8,8.8,9.7,9.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4.4,4.1,4,3.9,4.3,3.8,4.2,4.1,4.2,3.7,3.4,3.8,4.5,4.5,4.1,3.4,3.1,4.1,3.7,4.1,4.5,4.6,4.1,4.2],"script":[1.6,1.5,1.1,1.8,1.2,1.9,1.8,1.5,1.8,1.9,1.6,0.6,1.4,1.9,1.3,1.7,0.6,0.6,2.1,1.7,2.1,1.3,1.9,1.7,1.8],"paint":[2,1.7,2.4,1.7,1.8,1.7,1.9,2.6,1.9,1.4,2,2.3,1.3,2.3,2.6,1.3,2.1,1.9,1.2,1.3,1,2.6,2.5,2.3,1.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.7,15.8,14.9,15.6,16.1,16.1,16.6,15.1,15.9,16.2,16.9,16,16.5,14.7,14.8],"script":[2.4,2.5,1.3,2,2.3,1.7,1.6,1.2,1.8,2.1,2,1,2.2,0.6,2.1],"paint":[11.7,12.5,12.6,12.4,12.7,13.4,12.9,12.8,12.1,13,13,13.1,13.6,13,11]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.5,11.5,11.4,11.5,11.4,11.7,12.4,11,11.5,11.2,11.9,11.6,12,11.4],"script":[1.1,0.7,0.7,0.7,0.9,1,1,1.3,0.6,0.7,0.8,1,1,1.4,0.7],"paint":[9.9,9.9,10.2,9.8,10.2,9.5,10.2,10.4,9.9,10.2,9.4,10.5,9.9,10.1,10.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341.7,342.3,343.8,341.1,340.8,343.6,339.6,342.4,343.3,342.8,340.5,339.6,343.3,341.9,342.9],"script":[54.5,55.9,55.2,54.5,55,56.6,55.8,55.6,53.9,56.1,55.6,53.8,56.2,55.7,56.2],"paint":[235.6,235.7,233.8,235.6,235.1,235.5,232.8,235.7,238.3,235.7,234.7,234.6,235.2,235.1,235.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.4,35.8,35.4,35.7,35.4,35.3,36,35.3,35.7,36.1,35.5,35.3,36.2,35.3],"script":[5.8,6,5.7,5.8,5.9,5.9,5.8,5.9,5.8,5.9,5.9,5.6,5.9,5.9,5.5],"paint":[26.7,26.3,26.1,25.7,25.9,25.7,25.7,26.2,25.8,26,26.3,26.1,25.6,26.4,26]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,14.3,15.9,15.4,14.4,14.6,14.8,18.4,15.3,15.5,16.2,15.1,14.7,15.1,14.9],"script":[13.9,12.3,14,12.8,12.5,12.6,11.9,16.3,12.8,13.4,13.8,13.3,12.2,12.8,13],"paint":[1.3,1,0.4,1.6,1.1,1.5,1.6,0.9,1.9,1.2,1,0.4,1.5,1.4,0.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1274042129516602]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.66009521484375]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7217235565185547]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7018194198608398]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.656683921813965]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[116.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,33.2,33.1,33.4,32.9,33.5,33.5,32.5,33.4,33.7,32.4,33,32.8,33.1],"script":[6.3,6.5,6.6,6.7,6.7,6.3,6.6,6.6,6.5,6.6,6.3,6.3,6.6,6.3,6.7],"paint":[23.3,22.9,23.2,23.1,23.3,23.2,23.5,23.5,22.7,23.5,24,22.8,23,23.2,23.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39.5,38.7,38.4,38.4,38.3,39.6,38.1,37.9,39.6,38.6,38.9,39.1,39.1,39.1,38.9],"script":[12.4,12.4,12.3,12.3,12.1,12.6,12,12,12.5,12.3,12.5,12.4,12.4,12.2,12.4],"paint":[23.5,23,22.6,22.7,22.8,23.4,22.7,22.4,23.5,23,23.1,23.3,23.2,23.5,23.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,12.6,13.7,13.1,13.6,12.9,13.7,13.8,14,14,13.1,12.8,12.9,13.5,13.3],"script":[2.3,2.4,2.5,2.8,2.5,3,2.2,2.5,3.4,3.2,2.7,2.5,2.5,3.1,2.5],"paint":[9.7,9.1,9.7,9.4,10.1,8.8,10.3,10,9.5,9.5,9.5,9.2,8.9,9,8.3]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4,5.5,4.4,4.4,4.4,4.3,5.4,4,4.9,4.9,4.4,5.2,4.3,4.3,4.3,4.3,4.4,4.7,4,4.7,4.8,4.9,4.8,4.5],"script":[1.8,1.3,2.8,2,1.7,1.9,2.4,2.1,1.9,2.8,1.8,2,3,2.3,1.7,1.2,1.2,1.5,2.2,1,2.1,1.6,2.4,2.3,1.9],"paint":[1.3,2.6,1.9,1.5,2.4,1.5,1.1,3.2,1.1,2,2.2,1.8,1.4,1.9,2.1,2.1,2.1,2.8,1.5,2.2,1.8,2.8,2.3,2.3,2.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.6,16.1,16.4,15.8,16.9,17.3,15.5,15.7,15,14.9,16.1,17.1,16,14.8,14.8],"script":[2.5,2.2,2.5,1,2.5,2.4,2.4,1.9,1.4,2.2,1.6,1.9,2.4,1.9,1.9],"paint":[11.3,12.4,12.5,12.8,12.8,13.8,11.7,12.7,12.2,11.7,14.2,13.9,12.1,11.9,11.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.9,13.6,13.5,13.8,13.6,13.6,13.7,13.3,13.2,13.4,13.4,13.4,13.5,13.2],"script":[1.5,1.5,1.3,1.4,1.4,1.5,1.3,1.5,1.5,1.3,1.3,1.3,1.3,1.4,1.5],"paint":[11,11.1,11.2,10.9,11.3,11.1,11.2,11.2,10.6,10.8,11,11.2,10.9,11.6,10.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[348,352.5,349.3,351.1,351.4,351.3,351.9,349.2,356.3,349.5,352.8,351.6,355.6,348.3,349],"script":[68.2,68.7,68.6,68.2,68.8,70,70.2,70.1,68.9,69.9,69.3,69.9,69,69.5,69.3],"paint":[228.8,229.2,229.2,230.3,231.4,230.4,230.7,228.2,232.5,228.9,232.5,230.4,231.8,227.8,228.9]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,37.6,37.1,37,37.7,37,38,38.3,37.5,37.5,37.6,38.1,38.2,38.2,38],"script":[6.2,6.4,6.2,6.2,6.2,6.3,6.5,6.3,6.4,6.1,6.2,6.3,6.2,6.5,6.3],"paint":[27.5,27.3,27,26.9,27.5,26.7,27.4,27.9,27.2,27.6,27.5,27.7,27.8,27.8,27.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19,19.7,20.2,21.2,21.1,19.4,20.9,18.9,20.6,18.6,20.2,19.6,19.4,20.7,20.3],"script":[17.3,17.5,18.3,19,18.7,17.4,19.1,17.4,18.8,16.5,17.9,17,17.3,18.3,18.4],"paint":[1.1,0.5,0.3,1.5,1.4,1.1,1,0.3,0.3,1.1,1.2,1.7,1.8,1.6,1.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5208921432495117]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.786499977111816]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.856507301330566]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1196794509887695]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.35379695892334]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[144.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[148.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[36.5,38,38.2,37.9,39.2,39,37.8,36.6,38.1,37.2,38.8,38.5,39.3,39.2,38.8],"script":[5.7,5.8,6,5.7,5.8,5.9,5.8,5.9,5.8,5.9,5.8,5.8,5.8,5.8,5.6],"paint":[22.2,22,21.7,21.9,22.2,21.7,21.7,21.9,22.1,21.9,21.8,22.4,22.2,22.1,21.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[42.8,37.8,39.1,38.9,36.9,44.8,40.7,40.3,37.9,38.9,37.9,41.9,38.6,38.3,40.8],"script":[10.2,10.1,10.1,10.2,10.4,10.3,10.3,10.4,10.6,10.4,10.6,9.9,10.1,10.2,10.2],"paint":[22.9,22.8,23.1,22.9,23.2,23.4,23.5,22.8,23.2,22.8,23.1,22.7,23,23,22.8]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,13.3,13,30,13.8,12.2,13.3,12,28.2,13.6,13.3,11.9,27.7,12.3,12.6],"script":[3.2,3,3.2,2.7,3.3,3.1,3.4,2.2,2.6,3.1,3.6,2.9,2.2,2.8,2.5],"paint":[9.2,9.6,9.4,11.7,9.1,8.2,9.7,8.8,8,9.4,8.7,8.5,9.7,9.4,10]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.8,5.1,4.2,4,4.8,4.5,4.1,4.6,4.6,3.9,4.5,4.7,4.6,3.9,4.8,5.9,5.2,4.9,4.6,4,4.3,4,5,4.6,5],"script":[2.7,2.7,2,2.2,1.9,2.6,2.2,2.4,2.3,1.9,1.9,2.3,2.4,1.3,2.2,2.9,2.3,2.4,2.3,2,2.4,0.9,2.8,2.2,2.7],"paint":[2,2.2,2.2,1.7,2.7,1.7,1.3,1.6,2.2,1.1,1.1,2.3,1.6,2.5,1.1,2,2,1.6,2.1,1.1,1.8,1.9,1.1,1.8,2.2]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.9,14.9,14.9,31.5,14.6,15,14.4,15.6,15.3,14.4,14.8,31.9,30.6,14.4,30.5],"script":[2.2,2.2,1.7,1.8,1.9,2.5,2.3,2,1.3,1.7,2.5,2.5,1.7,1.4,1.7],"paint":[13.6,11.9,12.6,13.5,11.6,12.4,11.9,12.4,11.3,12.6,12,12.6,13.6,12.8,12.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,14.9,15.6,12.3,11.2,15.3,13.9,14.8,12.7,15.3,15.6,13.7,11.6,15.3,13.2],"script":[1.8,1.3,1.9,1.4,0.9,1.8,1.3,1.1,1.4,1.1,1.7,1.4,1.6,1,1.3],"paint":[9.6,10,10.1,9.9,9.8,9.8,10,10,9.7,10.1,9.8,10.1,9.8,10.8,10.3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[346.9,349.2,344.2,349.2,345.4,344.8,343.6,346.9,346.9,347.4,346.9,343.1,344.3,345,346.3],"script":[56.7,56.7,56.3,56.9,56.6,55.5,56.5,57.5,57.4,57.5,57.2,55,57.3,56.6,56.6],"paint":[237.9,235.9,236.3,236.7,235.6,236.3,234.9,236.5,235.6,236.9,236.3,236.4,236,236.3,235.4]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.1,41.4,41.7,42.6,42.8,41.7,42,41.3,43.7,41.8,41.3,41,41.5,43.8,41.9],"script":[6.3,6.1,6.1,6.2,6.3,6.1,6.2,6,6.2,6.1,6,5.8,6.2,6.1,6.2],"paint":[26.6,26.2,26.6,26.5,26.4,26.6,26.5,25.9,26.3,26.3,26.2,26.4,26.3,26.5,26.8]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,16.1,13.9,15.5,16,14.1,32.9,13.6,16.6,31.2,17,14.7,14.5,14.1,13.2],"script":[13.4,14.2,12.3,12.4,13.9,11.2,14.5,12.4,14.7,13.6,15,12.5,12.9,11.9,12.5],"paint":[0.5,1.1,0.7,2.3,1.3,1.3,1.5,0.3,1.2,1.3,1.4,1.8,0.9,2,0.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.134002685546875]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7211294174194336]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7938852310180664]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7688980102539062]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.881278038024902]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[110.6]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[118.5]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.6,32.5,33.1,33,32.7,32.5,32.5,32.5,32.2,33.7,32.4,33.3,32.4,33.3,33.4],"script":[6.6,6.5,6.4,6.6,6.6,6.7,6.7,6.6,6.6,6.6,6.4,6.8,6.4,6.9,6.7],"paint":[22.6,22.7,23.4,23.1,22.8,22.6,22.5,22.5,22.3,23.7,22.6,23.1,22.6,23.1,23.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.9,38.3,39.2,38.4,38.8,37.6,38.5,38.5,37.9,39,38.2,38.4,38.4,38.2,39.2],"script":[12.2,11.9,12.3,12.1,11.9,11.8,11.9,11.8,12,11.9,11.9,11.8,12.1,11.8,12.2],"paint":[23,23,23.4,23,23.4,22.5,23.2,23.1,22.6,23.4,22.9,23.1,23,23,23.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,12.6,11.7,12.8,12.6,12,12.6,12.6,13.1,12.5,12.9,12.8,12.1,12.5,13.2],"script":[2.3,2.4,1.9,2.5,2.3,0.9,2.6,2.1,2.7,2.1,2.7,2.3,2.5,2.3,2.6],"paint":[8.7,9.5,8.7,7.9,9.2,10.3,9.4,9.3,9.7,9.5,9.3,8.7,8.1,9.2,9.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.5,4.2,4.4,3.8,3.8,4.3,4.4,3.9,3.9,4.6,5.1,4.5,4.2,4.9,4.4,4.5,4,3.4,4.9,4.1,3.6,4.4,4.5,4.4,3.5],"script":[2.1,1.6,1.8,1.4,1.8,1.9,1.6,1.2,1.8,1.6,2.7,1.9,2,2.1,1.8,2,1,0.3,2.3,1.9,1.4,1.3,1.5,1.6,0.7],"paint":[1.4,2,1.8,2,1.3,1.9,1.9,2.6,2,2.9,1.9,1.8,1.3,1.6,2.4,1.7,2.9,2.6,1.8,1.6,1.6,2.5,1.9,1.9,2.7]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[123.5,123.8,119.3,122,121.7,125,130.3,123.6,122.8,123,125.3,120.1,123,125.4,123.9],"script":[21.9,21.9,21.8,22.5,21.5,21.6,25.2,23.8,22.3,21.3,23.1,21.4,23,22.7,22.8],"paint":[86.4,86.9,83.3,85.6,85.4,89.8,90.6,84.5,85.6,86.5,86.7,83.8,86.5,88.3,88]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.6,11.7,11.5,11.7,11.2,11.8,11.6,11.3,11.9,11.1,11.4,11.6,11.9,11.6],"script":[0.9,1,1.1,0.7,1.2,0.7,1.2,0.7,0.7,1.2,0.7,1.1,1.2,1.2,1.2],"paint":[10,9.9,9.9,10.2,9.7,9.5,9.9,10.5,10.2,10.4,9.2,9.4,9.6,10.1,9.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[352.5,353.9,354.1,353.9,355.3,359,352.1,354.3,355.4,354.1,350.9,352,354.4,356.1,355.4],"script":[71.3,72,72.8,71.8,72.4,73.7,71.4,72.3,71.9,71.8,71.8,71.3,72.3,71.5,72],"paint":[230.8,230.6,231,231.3,232,233.9,230,231.4,232.3,231.8,228.2,230.2,230.7,232.8,232.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.9,38.2,38.1,37.8,38.1,38,37.8,38.5,37.7,39.1,38.5,37.9,37.4,37.7,37.9],"script":[6.5,6.5,6.7,6.6,6.7,6.7,6.5,6.6,6.7,6.6,6.6,6.7,6.7,6.5,6.7],"paint":[27.5,27.7,27.4,27.4,27.4,27.4,27.6,27.9,27.2,28.3,27.8,27.3,26.8,27.3,27.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.5,21.2,22.1,22.7,22.4,21.6,21.9,22.5,21.3,23.5,22.2,22.1,20.6,20.5,21.2],"script":[19.6,19.4,20.2,20.6,19.8,18.9,20,20.4,19.2,21.7,20.3,20,18.9,18,19.2],"paint":[0.3,0.3,1.2,1.2,2.1,1.7,1.1,1,0.6,1.2,0.5,0.5,0.3,1.7,1.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5740928649902344]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.957246780395508]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.019704818725586]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3534717559814453]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.683992385864258]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[151.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[166.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"01_run1k","values":{"total":[30.6,30.1,31.3,32.4,31.6,31.3,31,30.9,30.7,31.2,31.2,31,30.9,30.9,31.7],"script":[7.7,7.6,8.6,8.9,8.8,8.7,8.5,8.5,8.4,8.7,8.6,8.4,8.6,8.4,8.7],"paint":[22.3,21.9,22.1,22.8,22.2,22,21.9,21.8,21.7,21.9,22,22,21.8,21.9,22.5]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"02_replace1k","values":{"total":[36.2,35.4,36.5,36.6,35.5,36.2,36,37.2,36.6,36.1,36.5,36.8,36.2,35.8,36],"script":[12.5,12.5,13.3,13.4,12.8,13,13.3,13.4,13.5,13.4,13.3,13.4,13.2,13.4,13.5],"paint":[23.1,22.3,22.5,22.6,22.1,22.6,22.1,23.2,22.5,22,22.5,22.8,22.3,21.8,21.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[40,40.1,39.9,39.5,39.7,39.7,39.4,42.1,39,40.7,38.5,39.9,40.8,39.3,39.8],"script":[28.5,27.2,27.7,27.3,27.2,28.1,27.7,28.5,27.2,28.2,26.9,28.8,29.1,27.1,27.2],"paint":[9.7,11.5,10.6,10.6,10.4,9.7,9.3,11.1,10.5,10.7,9.2,8.9,9.7,10.5,10.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"04_select1k","values":{"total":[30.1,32,29.3,29.9,29.7,30.4,29.9,31.4,31,29.8,30.2,29.6,32.4,29.6,33.4,30.7,30.8,30.7,30.1,31.7,30.4,30.3,30.6,30.6,30.4],"script":[26.3,28.5,25.6,26.4,26.1,27.2,26.5,27.9,27.6,26.6,27,26.3,28.2,25.7,29.2,27.6,27.1,27.4,27.3,28.1,27.5,27.1,26.7,27.2,27.1],"paint":[2.4,1.8,2.1,1.8,2.2,2,1.9,1.8,2.6,1.1,1.9,2.3,1.2,2.1,2.9,1.1,2.3,2,1.2,1.6,1.6,1.7,2.4,1.6,2.2]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"05_swap1k","values":{"total":[42,42.3,42.9,41.1,42,41.7,41.3,42.5,42.7,46.5,40.8,44.1,41.9,43.4,42.7],"script":[27.5,26.9,27.5,26,26.8,26.9,26.6,27.2,27.2,28.6,26.3,28.5,26.7,27.7,28.1],"paint":[12.3,13.1,13.9,13.1,13,11.8,13.2,13.1,13.9,14.4,12.6,13,14,14.2,12.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[91.6,95.2,89.8,90.2,91.6,90.5,88.7,90,90.2,89.9,90.6,90.3,90.8,89.9,90.8],"script":[46.1,50.2,45.7,45.7,47.5,45.4,44.6,45.5,45.9,46.2,45.7,46,47.2,45.2,46.4],"paint":[43.5,43.4,42.6,43.2,42.8,43.6,42.9,43.2,42.7,42.6,43.4,43,42.5,43.4,43.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"07_create10k","values":{"total":[310,303.4,312.5,317.8,314.8,313.9,314,315,316.6,314.8,311.5,316.2,318.2,317.7,313.4],"script":[80.8,76.3,87.9,90.8,87.9,87.9,87.1,87.6,88.9,87.7,87.1,88.4,90.3,87.8,87],"paint":[221.2,219.3,217.1,219.5,219.2,218.5,219.1,219.7,220.1,219.4,216.8,219.9,220.4,221.7,218.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.7,41.5,42.4,43.1,41.9,42.4,42.7,42.7,42,42.8,43.1,43.2,42.9,42.3,43.5],"script":[15.3,14.9,15.2,15.8,15.1,15.3,15.5,15.6,15.1,15.4,15.8,16,15.8,15.6,16],"paint":[26.3,25.6,26.1,26.1,25.8,26.1,26.2,26.1,25.8,26.3,26.3,26.1,26,25.6,26.4]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,12.5,12.6,13,13.1,13.5,14.8,12.3,13.1,13.7,13,13.3,12,13.4,12.8],"script":[11.1,11,10.5,10.9,11.2,11.8,12.7,10.9,10.9,12.2,10.9,11.4,10.8,11.4,10.1],"paint":[1.8,0.7,1.4,1.4,0.7,0.3,0.5,0.3,0.8,0.9,1.2,0.9,1,1.1,1.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6324319839477539]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4939041137695312]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.546539306640625]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.399325370788574]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.93657112121582]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"01_run1k","values":{"total":[67.8,67.8,65.7,67,66.7,67.9,68,64.4,66.9,69.9,64.2,68.4,66.2,70.4,68],"script":[37.1,36.8,36.2,37.2,37.1,37.3,37.5,37.3,36.6,36.8,36.5,36.8,36.6,37.7,38.2],"paint":[24.4,23.9,24,24.5,23.8,23.7,24.2,24,24.4,24,23.8,24.5,24.1,24.6,24.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"02_replace1k","values":{"total":[70.7,72.9,69,70.6,69,71.3,70.5,72,71,71.5,69,70.7,69.6,71.3,70.2],"script":[41.2,42.4,41.6,41.5,40.9,41.3,40.3,41.7,40.8,41.6,40.9,41.6,40.7,42.3,41.4],"paint":[23.7,23.8,24,23.8,23.6,23.8,24,23.9,23.7,24,23.7,24.2,23.9,23.9,24]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38.9,39.5,55,38.7,54.4,38.6,40.7,38.1,38.8,40.2,54.1,54.8,38.4,39.5,38.7],"script":[24.4,24.1,24.2,23.1,23.5,23.9,24.7,22.8,22.9,23.5,22.8,23.4,22.9,24.1,24],"paint":[13.2,13.7,13.9,13.9,14.2,13.6,13.4,14.3,14.2,15.2,12.4,13.9,14.5,13.2,14.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"04_select1k","values":{"total":[11.8,12.2,12,13.3,11.4,11.3,12.3,12.1,12,11.3,10.9,11.6,11.5,13.9,15.4,11.8,11.8,12.4,12,10.2,10.6,11.9,11.5,12,11.6],"script":[7.4,6.8,6.3,6.7,6.7,6.2,6.3,6.9,6.6,6.3,6.1,7.2,6.7,7.3,6,6.9,7.1,6.6,7,6.2,6.2,6.5,7.3,6.2,7],"paint":[3.1,3.3,5,3,3.6,3.8,4.1,4.1,5,2.6,2.4,3.2,3.6,4.6,4.3,3.4,3.2,3.6,3.4,3.1,3.6,4.3,3,3,3.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"05_swap1k","values":{"total":[44.1,42.9,44.6,43.2,45.3,43.3,57.9,58.1,61.4,42.8,43.7,42.7,59,60.4,60.2],"script":[23.7,22.9,24.2,25.1,25.7,25,23.9,24.3,26,24.8,23.6,23.5,23.6,24.9,25.1],"paint":[17.1,16.3,17.3,16.4,17.3,16.7,15.7,16.4,18.3,16.5,17.4,16.1,17.3,17.5,17.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[68.4,69.8,71.7,69.5,69.8,69.4,68.8,69.5,68.9,69.5,69.1,69,69.5,68.9,68.9],"script":[18.5,19.2,17.7,19.3,19.2,19.2,18.9,19.1,18.8,19.4,18,19.2,19.6,19.2,18.9],"paint":[48.3,49.2,47.5,48.6,49,48.8,48.5,48.3,49,48.4,45.9,48,48.3,48.7,48.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"07_create10k","values":{"total":[537.7,542.2,541.8,542.6,543.2,543.1,547,542.7,539.5,541.1,543.9,536.5,549.5,546.8,543.6],"script":[288.2,289.2,290.6,292.9,294.1,291.7,299.1,292.5,290.4,292.6,293.1,289.9,295.2,289.1,294.2],"paint":[244.2,248,245.8,244.8,244.2,246.2,242.8,245.2,243.7,243.4,245.3,241.5,249.1,252.6,244.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[82.5,78.3,79.1,79,79.6,79.5,81.4,79.2,82.2,80.7,80.1,79.2,84.4,81.1,79.5],"script":[45.7,44.7,45.8,45.8,46,46.2,45,46.1,45,45.8,46,46.1,45.6,45.9,45.7],"paint":[28.3,28.5,28.3,28.2,28.2,28.3,28.1,27.2,29,28.9,28.8,27.9,29.3,28.9,28.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.3,20.9,22.7,23.2,21.3,21.8,23.3,42.3,24,42.9,22.1,23.4,42.9,22.7,23],"script":[19,17.4,18.6,18.6,17.9,18.1,19.9,18.9,18.9,17.5,18.5,19.5,17.1,18.2,18],"paint":[3.4,2.3,1.8,3.6,2.9,3.5,2.3,1.7,2.8,3,2.6,2.1,3.2,2.6,3.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.589818000793457]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.91542911529541]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.991326332092285]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[50.80441665649414]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[103.83210372924805]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.4]}},{"framework":"art-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[31.8,39.4,33.3,33.4,33.9,40,33.7,39.8,31.9,32.3,31,37.8,31.8,34.2,33.1],"script":[5.4,5.6,5.9,6.1,5.9,5.7,5.6,5.7,5.8,5.5,5.5,5.7,5.3,5.8,5.7],"paint":[21.2,21.6,21.9,21.9,22.8,22.8,22.4,22.1,21.4,22.3,21.9,22.2,21.6,23.1,22.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[36.9,35.7,38.5,35.3,36.6,37.6,38.1,37.4,38.7,33.6,37.9,34.3,39.3,38.1,35],"script":[8.7,8.6,8.2,8.4,8.5,8.8,8.7,8.6,8.6,8.9,8.6,8.6,8.6,8.6,8.6],"paint":[22.8,22.6,22.5,22.5,21.9,22.9,22.1,22.6,22.4,22.6,22.1,22.1,22.4,22.7,22.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[36.4,17.8,34,34.7,18.4,18.9,20,36.8,16.7,17.1,34.4,17.1,33.6,35.2,17.8],"script":[5.8,5,5.1,4.6,5.3,4.8,5.5,6.3,4.5,4,4.7,4.2,4.9,5.2,5.1],"paint":[10.5,12.2,11.7,11.9,12.2,11.2,13.2,14.5,11,11.6,12.2,11.2,12.3,11.8,12]}},{"framework":"art-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[12.1,5.7,5.7,6.3,5.5,12.1,7.6,8,8.6,12.1,9.7,8.3,11.2,5,12.2,13.8,13.3,5.2,12.3,5,11.2,8.1,12.2,12,6.3],"script":[3.1,1.8,2.4,2.2,1,1.3,2.3,1.4,2,1.5,2.6,1.1,2.7,1.9,2.2,1.7,2.6,1.6,1.9,1.7,3.2,2.4,1.5,1.7,3],"paint":[3.3,2.3,3.1,2.9,3.4,2.3,3,1.8,2.6,3.1,3.7,2.4,3.9,2.9,3.4,3,3.7,2.7,2.8,2.6,3.1,3.4,3.1,3.3,3]}},{"framework":"art-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[34.3,32,32.4,33.6,33.3,32.9,33.7,32.8,33.7,32.3,33.7,33,33.1,32.9,32.7],"script":[1.8,2.1,1.9,1.6,1.5,1.4,1.8,1.9,2.6,2.3,2.1,1.9,1.2,2.3,2.3],"paint":[14.8,14.7,15.4,15.7,16.7,15.6,15.3,15.1,14.8,13.2,15.1,14.9,16,15.6,14.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.5,13.4,13.6,16.9,18.2,17,13.3,15.9,13.2,12.8,16.4,13.3,18.6,15.2,13.4],"script":[1,0.9,1,1.3,1.4,0.8,0.8,0.8,1,0.8,1,1.3,1.8,0.9,0.9],"paint":[11.5,11,11.3,11,10.8,11.6,11.2,11.2,11,10.6,11.8,10.6,11.4,11.2,11.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[286,289.1,291.3,288,289.7,286.8,290.9,287.8,293,285.3,288.9,290.6,287.8,290,287.8],"script":[69.8,71,67.4,70,66.9,67,66.9,68.4,66.3,67.1,70,70.2,72.2,68.5,68.6],"paint":[212.8,211.6,214.5,213.4,214.4,215.9,214.6,212.1,216.8,214.4,211.7,213,211.8,213.9,214.9]}},{"framework":"art-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.8,40.2,40,53.1,41,40.8,41.1,40.9,40,39.9,34.4,39.4,39.3,41.9,40.4],"script":[7,7.2,7.2,7.5,7.3,7.3,7.3,7,7.2,7.2,7.3,7.2,7.1,7.2,7.2],"paint":[26.9,26.9,26.7,26,27.9,27.6,26.3,25.8,26.8,26.7,26.6,26.4,26.3,27.6,27.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,12.3,12.9,11.7,11.9,11.7,11.7,32.3,13.8,12.2,11.4,12.7,11,32.4,13.8],"script":[8.6,7.8,9.1,7.9,8.5,8.7,8.1,8.4,9.3,9.4,8.3,8.8,7.9,7.6,9.4],"paint":[1.6,3,2.2,3.6,2.7,1.7,2.4,2,2.5,1.9,2.6,3.4,2.3,2,2.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.530360221862793]}},{"framework":"art-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.815603256225586]}},{"framework":"art-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.858466148376465]}},{"framework":"art-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8146648406982422]}},{"framework":"art-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.57434844970703]}},{"framework":"art-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"01_run1k","values":{"total":[32.7,32.1,33.3,32.6,32.6,32.5,32.2,31.9,33.2,31.7,32.3,32.2,33,32.3,31.8],"script":[9.9,9.4,9.6,9.7,9.8,9.6,9.9,9.4,10,9.4,9.9,9.7,10.3,9.7,9.6],"paint":[22.2,22.1,23.1,22.3,22.2,22.3,21.7,21.9,22.6,21.8,21.9,21.9,22.1,22.1,21.7]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"02_replace1k","values":{"total":[39.3,39.2,39.3,39.2,39.5,39.3,39.6,39.4,39.6,38.6,39.3,39.3,39.1,39.1,39.1],"script":[14.9,15.3,15.2,15.2,15.5,15.2,15.7,15.3,15.4,14.5,15.4,15.1,15.3,14.8,15],"paint":[23.9,23.3,23.5,23.4,23.5,23.5,23.3,23.5,23.6,23.6,23.3,23.7,23.2,23.7,23.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,24.1,14.8,12.9,12.6,11.4,22.7,26,12.4,24.9,13.5,24.4,11.9,13.9,22.7],"script":[1.1,2.2,2.1,1.9,1.4,1.3,1,1.2,1.8,0.9,1.9,1.8,1.2,1.2,2.1],"paint":[10.2,10,11.2,10.4,10.3,9.9,9.4,12.2,10.4,12.1,10.8,10.3,8.4,11.7,9.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"04_select1k","values":{"total":[7.3,7,6.7,7.2,6.9,7.6,6.6,7.8,6.5,9.4,6.2,6.5,7,8.1,7.9,7.4,7.1,7.1,6.2,6.3,7.8,7.5,7.2,6.4,6.5],"script":[4.4,4.2,3.9,4.8,3.1,3.8,3.5,4,3.8,3.6,4,4.5,3.9,4,3.8,4.3,4.8,4.3,4.3,4.3,4,4.9,4.9,4.5,4.1],"paint":[1.3,2.6,2.6,1.7,2.7,2.3,1.5,1.8,2.5,2.6,1.6,1.8,2,2.2,2.2,1.6,1.5,2,1.7,0.8,1.4,1.7,1.7,1.8,1.8]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.3,17.4,15.9,16,18,16.7,15.3,17.4,17.3,16.6,17.5,18.4,18.9,15.5],"script":[1.6,2.2,2.9,1.9,2.3,3.5,3.6,2.2,3.7,3.4,2.4,3.7,4,3.4,1.9],"paint":[13.2,13.2,13.4,13.4,12.7,13.2,11.6,12,13.4,12.5,13,12.5,13.4,14,12.7]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.7,12,11.9,11.9,11.6,11.6,12.4,12.5,11.6,11.8,11.5,12.4,11.6,11.5],"script":[1.2,0.9,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2],"paint":[9.5,10.2,10.6,10.2,10.4,9.4,9.8,10.2,10.4,9.9,9.7,9.8,10.5,9.8,9.4]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"07_create10k","values":{"total":[342.6,343.6,346,344.1,340.3,341.7,345.1,345,344.1,343.9,344.7,346.4,342.9,343.8,342.7],"script":[110.1,109,109,110,107.5,108.6,108.9,109.2,108.5,109.9,109.8,109.1,108.4,108.1,108.2],"paint":[224.1,226.6,228.8,226.2,224.9,225.1,227.9,227.2,227.5,226.1,227,229.1,226.1,227.6,226.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,39.4,38.3,38.4,38.7,38.5,39.8,38.9,39.8,38.9,38.9,39.3,39.2,39.3,39.9],"script":[10.9,10.7,10.7,10.9,10.9,10.9,10.9,10.8,10.8,10.5,11,11,10.9,11,10.8],"paint":[27.9,27.6,26.5,26.5,26.8,26.5,27.9,27,27.9,27.4,26.7,27.2,27.3,27.3,28]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.3,22.6,23.7,22.4,22.3,23,22.8,24.8,22.5,24,23.6,22.8,22.3,23,22.4],"script":[20.4,20.4,21,20.5,20.4,21.2,20.4,22.3,20.1,21.9,21.3,20.4,20.6,20.8,20.7],"paint":[1,1.2,2,1.2,1,1.3,1.5,1.6,1.4,0.6,1.2,0.7,1.1,1.2,1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9729595184326172]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.929535865783691]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.9566802978515625]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.956061363220215]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.92422866821289]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[203.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[56.3]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[216]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[81.8,84.2,83.1,84.1,83.8,85.1,84.3,82.8,82.9,84.1,83.2,85.2,85.4,82.7,84],"script":[52.2,53.9,53.4,53.7,53.6,54.8,53.5,52.5,52.8,53.6,53,55,55.1,52.6,53.1],"paint":[26.3,27,26.5,27.1,27,27,27.5,27.1,26.9,27.3,27.1,26.9,27.1,26.9,27.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[98.2,105.1,97.4,99,98.8,98.9,98.9,98.6,97.7,99.1,98.3,98.6,98.2,98.2,97.5],"script":[67,72.1,67.1,68.2,67.8,67.8,67.5,67.7,67.1,67.3,67,67.6,67.3,67.4,67],"paint":[27.6,28.9,26.9,27.5,27.6,27.6,27.9,27.5,27.3,28.3,27.9,27.4,27.4,27.4,27.2]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.8,94.6,95.2,95.9,94.8,94.4,95.4,93,93.5,94.5,94.2,94.1,95.2,94.8,95.7],"script":[50,50.3,50.1,50.8,50.8,50.5,50.3,49.8,50.1,50.9,50.9,50.3,51,50.6,49.6],"paint":[13.1,11.8,13.2,12.3,13.4,12.7,10.9,11.7,12.5,12.4,12.4,12.3,12.5,11.8,12.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88.7,83,81.4,81.3,85.5,83.6,83.9,79.9,82.4,80.8,79.9,81.8,80.6,84.3,84.5,84.2,82.4,81.2,82.2,82.6,83.2,83,82.9,83.3,83.8],"script":[43.4,44.8,42.9,42.6,42.9,43,43.2,43,43.8,44.5,44.6,44.8,44,45.4,43.5,43.6,43,43.8,44.5,45.2,46.1,43.5,44.8,44.4,44.4],"paint":[2.9,3.1,2.6,2.1,2.2,2.6,2.7,3,3.1,2.4,2.9,2.9,2.3,3,2.1,2.6,1.6,2.2,2,2.1,2.8,2.2,2.2,2.6,2.4]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[95.1,88.1,83.6,86.6,86.5,85.2,84.7,88.4,81.5,95,84.2,86.1,82.4,88.6,94.5],"script":[40.1,41.2,40.1,39.8,40.3,41.1,40.3,42.3,40,40.7,40.3,40,40.6,40.3,39.2],"paint":[17,14.6,16.1,14.2,14.6,15.1,14.6,15.1,16,14.3,15.2,14.6,14.6,15.2,14.9]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[93.4,35.4,34.6,36.7,34.4,34,36.3,35.3,36.4,34.4,36.8,35,35.4,36.9,39.5],"script":[21.6,20.2,20.7,20.2,21.7,21.1,21,20.2,21.5,21.8,21,21,20,21.7,21.5],"paint":[11.3,10.6,11.2,11.3,10.9,10.8,11,11.3,11.2,11.4,11,10.9,11.4,12.2,11.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[752.2,776.6,768.9,760.1,769.3,760.9,766.9,749.6,758,761,765.5,770.9,762.8,770.6,767.6],"script":[436.2,430.2,429.3,437.4,425.5,424.7,428.5,435.8,444.8,441.5,441.5,427,440.6,428.7,432],"paint":[257.8,292.3,286.5,265.1,288.6,283.2,284.9,256.2,256.9,263.9,267.9,287.5,265.9,286.7,281.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[117.2,115.8,111.7,119.3,112.3,111,111.9,114.4,114.1,111.5,111.1,116.9,117.5,114.7,111.3],"script":[65.1,65.1,65.6,65.5,66.3,65.8,65.3,65.6,65.3,65.2,64.8,65.6,65.2,66.1,65.3],"paint":[26.3,25.9,26.6,25.9,26.4,26.2,26.1,26,26.6,26.4,26.1,26.3,27.1,25.8,26.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.1,41.8,42.5,42.4,44.4,43.8,44.1,42.2,42.2,43.3,41.5,41.7,41.1,41.8,42.1],"script":[43.2,39.7,40.5,40.8,42.2,41.1,42.4,40.3,40.5,40.8,39.8,40,40,39.7,40.4],"paint":[1.8,1.9,1.1,0.7,1,2.6,0.7,0.9,0.7,1.9,1.7,1.2,0.4,1,1.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[41.078660011291504]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[52.697035789489746]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[52.88167858123779]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[49.37940216064453]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[134.09615325927734]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4208.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1377]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[77.8,80.6,81,85.3,79.2,81.5,85.1,82.3,86.4,79.6,84.7,81.3,80,79.7,85.6],"script":[47.8,50.1,50.6,50.3,49.5,50.3,49.6,50.8,51,49.7,48.9,50.7,49.9,49.4,50.3],"paint":[26.6,27.3,27.3,27.1,26.5,27.7,27.5,27.2,27.7,26.6,28.2,27.1,26.8,27,27.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[82.1,91,91.5,92.3,91.8,91.9,91.4,90,90.6,89.8,90.8,90.4,90.7,91.6,90.7],"script":[56.2,58.5,59.7,59.5,59.6,59.5,59.1,57.9,59.1,58.1,58.2,58.1,58.9,59.3,58.9],"paint":[22.2,29,28.4,29.2,28.6,28.9,28.8,28.4,28,28.2,29.1,28.8,28.4,28.8,28.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.7,94.8,95.7,94.4,94.7,94,94.6,95.1,88.3,93.9,94.6,94.4,94.1,94.4,95],"script":[40.2,40.8,40.7,40,39.8,40.3,39.6,39.5,40.1,39.7,40.4,40,39,39.6,40.8],"paint":[12.6,12.2,12.6,12.1,12.6,13.5,11.8,12.2,11.5,11.4,14.1,11.8,13.1,12,12]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88,81.8,79.6,87.2,87.3,88.3,87.8,88.1,88,88.2,89.1,87.7,87.1,82.1,79.6,87.4,88.1,83.3,88.2,80.5,87.4,87.9,89,87,88.8],"script":[38.1,38.4,38.4,35.8,38.1,39,37.9,37.3,36.4,38.1,37.9,38,37.8,35.7,36.3,38.2,36.4,37.3,38.4,37,37.3,37.3,37.5,38.8,37.4],"paint":[1.9,1.9,2.4,3.2,3.6,3.1,2.3,2.7,1.9,2.3,3.2,2.1,2.1,1.7,2.3,2,2.2,1.7,1.3,2.1,2.5,2.7,2.5,3,2.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[88.8,85.3,87.9,86.6,93.9,87.7,94.8,83.1,94.4,94.6,94.5,89.9,88.6,89.9,88.4],"script":[32.8,32.1,33.4,33.1,33.3,32.4,32.1,31.5,32.8,32.3,33,32.2,32.6,32.8,32.6],"paint":[16.3,15.4,15.6,13.4,14.3,15.2,15.7,15.4,14.9,14.1,14.7,14.2,14.2,15.3,14.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[84.8,87.2,90.5,91.4,86.9,87.8,91,89.8,87.8,90.4,85.5,90.8,90.6,88.8,89.9],"script":[18.3,19,18.1,18.6,17.8,18.8,17.5,18.2,17.6,19.5,18.6,17.9,18.9,18.3,18],"paint":[11.5,11.5,11.2,12.1,11.6,11.8,11.4,11.3,11,11.4,11.4,11.5,11.4,11.3,11]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[731.9,735.3,734.3,733,732.1,739.4,741.7,741.3,732.8,738.5,738.5,736.3,738.3,736.7,743.6],"script":[396,399.3,404.6,402.2,402.2,400.4,409.6,407.7,404.8,409.1,405.5,402.8,402.9,402.3,413.3],"paint":[281.9,280.4,276.4,274.8,275.9,283.1,278.4,279.2,274.7,275.9,276.5,279.9,281.8,280.5,276.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[117.9,108.9,107.8,110.7,107.2,110.9,115,112.6,112.6,110.2,112.9,111,111.7,113.8,111.8],"script":[55.2,54.5,53.7,54.6,54.5,54.3,54.3,54,54.7,54.9,54.4,54,54.1,54.3,55.7],"paint":[31.4,32.7,32.4,32.4,31.9,32,32.5,32.5,32.4,32.6,32.5,32.7,32.7,33.2,32.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[43.3,43.5,42.8,45,45.8,43.8,43.6,44.1,42.9,43.9,42.9,41.6,42.8,42.2,42.9],"script":[41.8,41.4,41.3,43.4,43.7,42,42.3,42.6,41.6,41.7,41.2,40.6,41.2,41,41.2],"paint":[1.3,1.8,0.6,1.5,1.4,1,1.2,0.3,1.1,2.1,1.2,0.9,1.5,1.2,1.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[51.824092864990234]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[64.79552936553955]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[64.815016746521]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[61.357441902160645]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[136.91233348846436]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12639]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2951.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"01_run1k","values":{"total":[24,24,24,24.3,24.2,24.4,24.2,23.9,24.3,24.3,23.9,24.1,24.3,24.2,24.6],"script":[2.4,2.4,2.3,2.3,2.4,2.4,2.4,2.3,2.4,2.4,2.3,2.3,2.4,2.4,2.4],"paint":[21.2,21.3,21.4,21.6,21.5,21.7,21.4,21.2,21.6,21.5,21.2,21.4,21.6,21.4,21.8]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"02_replace1k","values":{"total":[27.5,27.7,27.2,27.1,27,27.3,27.5,27.3,27.3,27.4,27.3,27.3,27.5,27.2,27.6],"script":[4.8,4.8,4.7,4.7,4.6,4.8,4.7,4.9,4.7,4.7,4.8,4.9,4.8,4.8,4.8],"paint":[22.3,22.5,22.1,22,22,22.1,22.4,22.1,22.2,22.3,22.1,22,22.2,22,22.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.8,10.9,10.5,11.3,11.9,10.2,10.6,11.2,10.6,11.3,10.3,10.4,10.9,10.2,11.1],"script":[0.7,0.8,0.6,1.2,0.7,0.2,1.3,0.9,0.9,0.9,0.5,1,0.6,0.2,1.2],"paint":[8.9,8.8,8.5,9.2,10.3,9.4,7.8,8.2,8.6,8.9,8.2,7.7,8.2,8.4,8.9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.8,2.9,2.2,2.3,2.7,2.7,2.5,2.5,2.4,2.7,3.1,2.3,2.6,2.4,2.5,2.9,2.1,2.2,2.2,2.6,2.5,3.2,2.9,2.8],"script":[0.6,0.9,1,0.7,0.1,0.8,0.8,0.1,0.6,0.1,0.5,0.8,0.1,0.1,0.5,0.9,0.8,0.6,0.5,0.1,0.3,0.5,1,0.5,0.1],"paint":[1.6,1.3,1.8,1.3,1.3,1.8,1.1,1.5,1.1,1.8,2.1,2.2,1,2.4,1.8,1,2,1,1.6,1.2,2.2,1.3,1.4,2.2,1.5]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.6,13.7,14,13.5,13.6,13.4,12.9,13.2,13.7,13,13,13.5,13.4,13],"script":[0.1,1,1,1,0.1,0.8,0.6,0.5,0.7,0.8,0.6,0.6,0.8,1.2,0.1],"paint":[12.1,10.1,12.1,12.3,12.1,11.5,11.7,11.4,11.9,11.6,11,11.5,11.5,11.2,11.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.5,10.2,10.6,10.4,10.4,10.4,10.4,10.3,10.4,10.4,10.4,10.1,10.4],"script":[0.5,0.5,0.3,0.3,0.4,0.1,0.1,0.5,0.4,0.5,0.3,0.3,0.3,0.2,0.5],"paint":[8.9,9.1,9.3,9.2,9.5,9.6,9.6,8.9,9.1,8.9,9.5,9.5,9.5,9.3,9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"07_create10k","values":{"total":[262.1,259.5,262.5,260.1,258.8,259,260.1,258.4,257.8,257.9,259.1,258.8,258.6,258.9,258.1],"script":[28.3,27.1,27.6,27.1,27,27.8,27.5,27.3,27.6,27.6,27.5,27,27.3,28,27.3],"paint":[225.8,225.3,227.5,225.6,224.7,224,225.5,223.9,222.7,223.1,224.4,224.5,224.2,223.6,223.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,27.1,27.7,28,27.9,28.1,27.4,29.1,27.3,27.8,27.4,27.9,27.4,27.4,27.1],"script":[2.2,2.1,2.1,2.1,2,2,2.1,2,2,2,2,2,2.1,2,2],"paint":[25.7,24.3,24.9,25.2,25.1,25.3,24.6,26.2,24.5,25,24.6,25.1,24.6,24.7,24.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.4,8.8,9.3,8.7,9,10.1,8.8,8.4,9.5,9.6,9,8.9,8.6,8.6],"script":[7.6,7.1,6.5,7.4,6.9,7.3,8.4,6.7,7,7.7,7.7,6.7,7.5,6.8,6.8],"paint":[0.9,1.1,2.1,0.6,1,0.7,1,1.1,0.2,0.9,0.7,1.1,0.2,0.3,0.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6568641662597656]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5198593139648438]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.527395248413086]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7604484558105469]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.253190994262695]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"01_run1k","values":{"total":[36.2,28,29.5,34.6,29.6,29.5,29.8,36.1,34.4,28.8,32.7,33.2,35,28.9,29.6],"script":[5.8,6.2,6.1,6,6,6.4,6.2,6.1,5.9,6.2,6,5.9,6.1,6.5,6.1],"paint":[20.8,21.5,21.4,21.5,21.1,21.6,21.6,21.5,21.3,21.5,22.9,20.9,21.2,21.5,21.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"02_replace1k","values":{"total":[33.8,33.6,38.2,39.5,33.2,38.5,40.4,38.5,38.2,32.9,33.6,39.8,33.6,33,33.2],"script":[11.1,10.4,10.5,10.6,10.8,10.6,10.5,10.4,10.6,10.8,11.2,10.7,10.9,10.5,10.7],"paint":[22.2,22,21.9,22.2,22,21.5,22.5,21.6,21.9,21.8,22.1,21.7,22.4,21.9,22.1]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,12.9,13.7,13.1,13.1,29.6,29.3,15.1,14.2,12.8,13.5,14.3,12.8,14,12.4],"script":[3.3,2.5,2.9,3.1,3,3.4,2.2,3.4,3.6,2.5,2.5,3.1,2.6,3.8,2.7],"paint":[10.2,9.5,10.4,8.9,9.2,10.1,10.7,10.9,10.4,9.6,10.2,10.1,9.3,9.7,9.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"04_select1k","values":{"total":[3.9,4,4,3.6,3.5,3.4,4.7,3.7,4.2,3.5,3.4,3.9,3.4,3.8,3.8,3.9,4.3,3.9,3.9,3.2,3.3,3.6,4.2,3.8,3.9],"script":[1,1.8,2,1.5,1.6,1.2,2.3,1.6,1.7,1.4,1.7,1.3,1,1.9,1.3,1.4,2.2,1.6,1.7,1.3,1.5,1.5,1.5,1.6,1.6],"paint":[2,1.8,1.8,2,1.3,1.4,2.2,1.8,2,2,1.3,2.5,1.9,1.5,1.6,1.6,2.1,1.6,1.2,1.1,1.6,1.5,2.1,1.8,2.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14,13.9,13.9,13.5,13.4,29.2,14.9,29.9,13.6,12.7,13.6,14.9,29.7,13.8],"script":[2.2,1.5,0.7,1.7,1,1.4,0.9,1.9,0.8,1.1,1,1,1.7,1.7,0.9],"paint":[11.5,11.7,12.1,12.1,11.6,11.4,12.7,12.1,13.2,12.5,11.1,11.5,11,11.7,12.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.9,9.6,9.8,10,10.3,9.6,9.3,10.1,10.3,9.3,9.8,9.3,9.8,9.6],"script":[0.9,1,0.4,0.4,0.9,1,0.6,0.7,0.9,0.4,0.6,0.8,0.7,0.4,0.5],"paint":[8.6,8.9,9.1,8.9,9,8.9,8.9,8.6,9.1,9.5,8.5,8.7,8.4,8.9,8.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"07_create10k","values":{"total":[300.6,298.5,296.8,296.1,294.8,294.5,294.9,296.7,292.5,292.9,294.4,296.8,295.3,296.1,294.9],"script":[68.8,71.4,69.9,71.1,71.5,70.9,68.8,69.6,70.6,72.7,70.8,70.6,69.6,70,70],"paint":[221.9,218.4,218.7,217.4,216.3,218.2,217.8,222,218.2,216.2,218.6,218.5,217.8,217.6,217.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,36.8,37.5,36.9,36.7,32.9,31.6,31.5,32.9,32.1,32.4,36.5,31.9,32.1,32.6],"script":[6.7,6.7,6.8,6.9,6.8,7,6.8,6.8,6.8,6.7,6.9,6.7,6.8,6.9,6.9],"paint":[24.8,24.6,25,24.4,24.2,25.3,24.3,24.3,25.3,24.8,25,24.5,24.2,24.7,25.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,11.6,11,11.3,28.4,11.6,11.2,27.1,11,11,11,11.2,11.3,11.2,11.9],"script":[8.9,10.1,8.6,9.7,10.2,9.7,9.2,9.3,8.8,8.8,9.8,9,9.7,9.4,9.2],"paint":[0.6,0.3,0.9,1,1.5,0.9,1.7,1.3,1.5,1,0.3,1.6,1.1,0.9,0.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7147645950317383]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6536054611206055]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.831300735473633]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5437440872192383]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.028746604919434]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[69.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.4,23.5,23.8,23,23.4,23.2,23.4,23.3,23.3,23.6,23.6,23.6,23.7,23.2],"script":[1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.9,1.8,1.9,1.9,2,1.9,1.9],"paint":[21,21.2,21.3,21.5,20.8,21.2,21,21.2,21,21.1,21.3,21.4,21.3,21.5,21]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"02_replace1k","values":{"total":[26.3,26.2,27.5,26.4,26.4,26.5,26.5,26.6,26.9,26.4,26.6,26.6,26.3,26.5,26.7],"script":[4.2,4.1,4.4,4.1,4,4.2,4.1,4.3,4.2,4.2,4.1,4.5,4.1,4.2,4.3],"paint":[21.7,21.7,22.7,21.8,21.9,22,22,21.9,22.2,21.8,22.1,21.6,21.7,21.9,22]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.8,11.2,10.9,11.2,10.3,11,10.9,10.8,12.2,11,10.1,10.1,11.2,12.3],"script":[0.2,0.6,0.6,0.8,0.6,0.5,0.8,1,1,0.9,0.9,0.8,0.9,0.6,1],"paint":[9.2,8.8,8.9,9.4,9.2,8.4,9.3,9,8.8,9.5,8.4,8.3,8,9.5,9.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"04_select1k","values":{"total":[5.3,2.4,2.2,2.4,2.7,2.6,2.6,2.3,2.1,2.3,2.9,2.4,2.2,3.3,2.8,2.3,2.3,2,2.4,2,2.3,2.5,2,2.6,2.2],"script":[0,0.1,0,0,0,0.6,0.7,0.6,0,0.4,0.7,0,0,0,0,0,0,0.1,0.4,0,0,0.1,0,0,0],"paint":[1.3,0.6,1.3,1.4,1.7,1.6,1.8,1.4,1.6,1.8,2.1,2.3,1.3,1.9,2.6,2.1,1.4,1.8,1.8,1.3,1.4,1.2,1,2.5,2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.6,13.3,12.6,13.3,15.1,14.2,13.8,13.3,13.5,12.4,13.9,13.6,12.3,12.3],"script":[0.9,0.1,1,0.1,0.1,0.6,0.1,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1],"paint":[11.2,11.8,11.4,11.5,11.9,13.7,12.6,12.4,11.9,12.2,10.2,12.8,11.8,11.3,11.3]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.7,10.3,10.7,10.5,10.4,10.7,10.6,10.3,10.4,10.4,10.6,10.4,10.4],"script":[0.5,0.4,0.3,0.5,0.4,0.2,0.3,0.3,0.2,0.4,0.2,0.5,0.5,0.4,0.4],"paint":[9.4,9.2,9.8,8.9,9.6,9.9,9.5,9.7,9.2,9.3,9.7,9.5,9.5,9.4,9.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"07_create10k","values":{"total":[259.7,257.4,259.3,257.7,257.6,258.6,258.1,257,256.6,257.5,258,255.8,257.3,259.2,255.6],"script":[25.9,26.7,26.2,26.2,25.7,26.5,25.9,26.2,26.2,26.5,26.4,26.1,26.7,26.2,26.5],"paint":[225.8,223.5,225.8,224.4,224.6,225.1,225,223.8,223.3,223.7,224.4,222.5,223,225.8,221.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.3,27.7,27.4,27.4,27.5,27.2,27.1,27.7,27.2,27.5,27,27,27.4,26.7],"script":[2,2.1,2.1,2.1,2,2,2,2,2.1,2,2,2,2,2.3,2],"paint":[24.5,24.5,24.8,24.5,24.7,24.8,24.4,24.3,24.8,24.4,24.7,24.2,24.3,24.3,24]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.4,8.6,9.3,9.5,9,9.2,9.3,9.6,9,9.4,9.6,9.9,9.6,9],"script":[7.4,7.2,7.1,7.3,7.6,7.3,6.8,7,8,6.7,7.7,7.8,7.9,7.8,7.4],"paint":[0.2,2,0.5,0.8,0.7,0.6,2.2,2,0.3,2,0.6,1.7,1.5,1.6,0.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8716039657592773]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.732985496520996]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.804154396057129]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0994253158569336]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.591866493225098]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.5]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"01_run1k","values":{"total":[32.6,31.8,32.3,32.2,32.8,32.4,31.6,32,32.3,32.1,32.5,32,32.5,32.4,32.1],"script":[10.5,9.8,10.3,10.2,10.7,10.4,10,10.1,10.3,10.2,10.4,10.1,10.5,10.4,10.1],"paint":[21.6,21.5,21.5,21.4,21.6,21.4,21.1,21.4,21.5,21.4,21.6,21.3,21.5,21.5,21.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.9,36,35.8,35.7,35.8,35.6,36,35.6,36.3,35.7,36.5,35.6,35.7,35.6],"script":[12.7,13.2,13.5,13.1,13.2,13.2,13.1,13.6,13.2,13.3,13.1,13.5,13,13.2,13.2],"paint":[22.1,22.1,21.9,22.2,22,22.1,21.9,21.9,21.9,22.4,22.1,22.4,22.1,21.9,21.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22,21.9,23.3,22.7,22.2,22.2,22.6,22.1,22,21.8,22.3,22.4,22.8,23,22.7],"script":[9.7,9.7,10.5,10.4,9.9,10.1,10.1,9.7,10,9,10.3,10.9,10.4,9.5,10.2],"paint":[10.1,10.1,10.8,9.2,11.1,9.9,10.7,11,10.1,11.8,10.6,9.7,11.4,10.7,10.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"04_select1k","values":{"total":[8.8,9.2,9.1,9.2,9.2,8.5,9.1,9,9.2,9.1,8.6,8.8,8.4,8.4,9.5,9.4,9,9.7,8.9,9.6,8.9,9,9.1,9.1,9.6],"script":[6.2,5.8,6.6,6.1,6.7,5.6,6,5.5,6.7,6.1,5.6,5.8,5.7,5.4,6,6.1,5.9,6.2,6,6.3,6.3,5.8,6.3,5.9,6.3],"paint":[0.8,1.5,0.8,1.7,1.1,2.7,1.5,1.9,1.4,1.1,1.2,2,1.1,2.1,1.8,2.1,2.4,1.7,1.1,1.5,1.2,2.3,1.4,2.2,2.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[20.9,21,20.6,22,20.8,20.9,21.2,20.5,21,22.2,21.3,21.2,21.1,19.8,20.6],"script":[6.3,6.8,7.2,7,7.2,7,7.2,6.9,6.3,7.1,7.2,7.1,7,7.1,7],"paint":[12.9,12.3,11,12.9,11.7,12.6,12.7,11.6,12.5,12.9,10.9,12.4,13.1,11,12.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,14.4,13.9,13.7,13.8,14,14.3,14.3,14.3,13.9,14.3,14,14.6,14,13.7],"script":[3.7,3.8,3.5,3.4,3.4,3.6,3.7,3.6,3.6,3.5,3.6,3.6,3.7,3.6,3.4],"paint":[10.4,9.8,9.5,9.8,9.8,9.4,9.8,10.2,9.4,9.8,9.9,9.5,10.2,9.8,9.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"07_create10k","values":{"total":[321,320.1,325.4,324.9,324.4,324.9,325.7,324,325.1,325.9,326,326.5,322.8,328.3,323.8],"script":[98.3,97.9,101.5,102.5,102.3,101.8,103.1,101.5,101.8,102.2,104,103.8,101.2,101.8,102.6],"paint":[215.4,215.2,216.4,215.4,215,216.1,215.7,215.6,216.3,216,215,215.9,214.7,218.9,214.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,38.7,40,39.5,38.9,39.7,38.7,39.4,39.1,39.6,39.3,39.1,39,39.4,38.9],"script":[12.3,12.4,13,13.4,12.7,13.3,12.6,13.3,13,13.1,12.9,12.9,13.1,13.2,12.8],"paint":[24.8,25.5,26,25.2,25.3,25.5,25.1,25.3,25.2,25.5,25.5,25.3,25.1,25.3,25.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,11.7,12.7,13,12,10.9,10.9,11.8,11.6,12.1,12.6,12.1,12.4,12,12.3],"script":[10.1,9.1,11,10.6,9.6,9.6,8.7,9.7,9.5,10,10.3,9.9,10.2,10,10.1],"paint":[1.8,2.4,1.1,1.2,1,1,1.1,1,1.5,0.2,1.6,1,0.2,1.1,0.7]}},{"framework":"crank-v0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.673858642578125]}},{"framework":"crank-v0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6606321334838867]}},{"framework":"crank-v0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7591915130615234]}},{"framework":"crank-v0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9849462509155273]}},{"framework":"crank-v0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.612318992614746]}},{"framework":"crank-v0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"01_run1k","values":{"total":[33.1,31.1,31.4,32.4,31.4,31.9,31.1,31.1,33.4,31.4,32,31.3,31.9,31.1,31.7],"script":[10.2,9.3,9.5,9.9,9.6,9.5,9.4,9.2,10.3,9.9,9.8,9.6,9.8,9.4,9.9],"paint":[22.3,21.4,21.5,22,21.4,22,21.3,21.5,22.5,21.2,21.8,21.3,21.7,21.3,21.4]}},{"framework":"dark-v1.4.2-keyed","benchmark":"02_replace1k","values":{"total":[37.3,36.8,37.3,37.8,38,38.1,37.7,37.3,37.4,37.1,37.1,37.2,36.8,37.1,36.8],"script":[13.8,13.6,13.9,14.3,14,13.6,14.2,13.5,13.4,13.3,13.9,13.8,13.7,13.7,13.6],"paint":[22.9,22.7,22.8,22.9,23.4,23.9,22.9,23.1,23.4,23.1,22.6,22.8,22.5,22.8,22.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.3,14,13.2,12.7,12.1,15.3,13.6,12.3,12.4,12.2,12.5,13.2,12.5,12.6],"script":[2.3,1.6,2.4,1.9,1.6,2,2.2,1.6,2,2.3,2.3,2.4,2.5,2.2,2.2],"paint":[8.4,9.2,10.1,9.2,9.5,9.5,11.7,11.1,8.8,9,8.1,8.5,9.5,9.1,8.4]}},{"framework":"dark-v1.4.2-keyed","benchmark":"04_select1k","values":{"total":[3.1,8.2,3.3,2.8,4.3,4.8,5.5,3,4.8,2.3,3.2,5.2,3.1,3,2.3,2.9,8.6,2.8,3.3,2.6,3.4,2.8,5.6,3.4,2.8],"script":[1.1,0.1,1.1,0.6,0.5,0.2,0.9,0.9,0.1,0.1,0.8,1.2,1.2,0.9,0.1,0.2,0.8,0.1,0.8,0.1,0.9,0.1,0.1,0.6,0.8],"paint":[1,2.9,1.4,2,1,1.5,1.6,1.4,1.4,2,2.3,1.8,1.3,1.5,1.1,2.5,1.4,1.8,2.3,1.7,1.5,1.5,1.9,1.5,1.1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.1,16.1,15.9,16.6,18.3,16.4,17.3,16.3,17.4,16.8,18.6,16.5,16.2,16.4],"script":[2.9,2.8,2.9,3,2.7,3.1,2.8,3,2.7,3.7,2.9,3.3,3.1,3,2.8],"paint":[12.2,12.3,12.5,11.4,12.6,13.3,12.1,12.7,11.1,12.1,12.5,13.9,12.7,12.2,12.9]}},{"framework":"dark-v1.4.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,11.7,12.3,12.4,12.8,11.9,12.6,12.4,11.8,12.1,12.4,12.4,12.1,11.8,12.2],"script":[1.6,1.5,1.4,1.7,1.7,1.5,1.7,1.6,1.4,1.6,1.5,1.8,1.6,1.5,1.7],"paint":[10.2,9.5,9.9,9.8,10.1,9.8,10.3,10.2,9.4,9.2,10,9.9,9.8,9.3,9.8]}},{"framework":"dark-v1.4.2-keyed","benchmark":"07_create10k","values":{"total":[320.6,317.2,319.4,318.6,317.5,319,319,319.3,321.3,318,319.2,318.9,319.6,319.2,319],"script":[96.8,94.5,96.4,95.5,96.3,96.3,96.1,98.5,97.2,95.9,95.5,95.4,94.6,97.1,95.5],"paint":[215.7,214.7,214.8,215.2,213.2,214.6,214.3,213,215.6,214,215.4,215.4,217.2,214.2,215.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.4,38.8,40,39.8,39,39.2,39.6,39.8,39.3,39.5,39.6,39.3,39.4,39.3,39.8],"script":[11.2,11.3,11.8,11.7,11.4,11.6,11.5,11.4,11.4,11.7,11.9,11.6,11.5,11.7,12],"paint":[26.1,26.5,27.2,27,26.6,26.5,27,27.3,26.8,26.8,26.7,26.7,26.9,26.6,26.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,11.3,12.7,13.9,12.1,13.7,11.7,12.5,11.9,12.8,12.3,12.4,12.6,11.9,13.5],"script":[10.2,9.1,10.8,11.8,9.7,11.3,9.5,10.2,9.8,10.5,9.9,10.1,10.6,9.8,11.1],"paint":[1.4,0.3,1.3,1.2,1.8,1.2,1.8,2,1.8,0.9,2.1,0.3,0.8,1,2.2]}},{"framework":"dark-v1.4.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.717982292175293]}},{"framework":"dark-v1.4.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.554884910583496]}},{"framework":"dark-v1.4.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.562204360961914]}},{"framework":"dark-v1.4.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2533397674560547]}},{"framework":"dark-v1.4.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.470160484313965]}},{"framework":"dark-v1.4.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"dark-v1.4.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.3,23.2,23.3,23.2,23.3,23.3,23.6,23.1,24.1,23.3,23.3,23.4,23.3,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.6,21.5,21.6,21.5,21.6,21.6,21.9,21.5,22.4,21.6,21.6,21.7,21.6,21.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"02_replace1k","values":{"total":[25.9,25.7,25.8,25.7,25.8,25.7,26,25.7,25.6,26,26.7,25.8,26,25.9,25.7],"script":[3.2,3.2,3.2,2.9,3.2,3.1,3.4,3.2,2.9,3.2,3.2,3.3,3.3,3.2,3.2],"paint":[22.3,22.1,22.2,22.4,22.3,22.2,22.2,22.1,22.3,22.4,23,22.1,22.3,22.2,22.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.1,9.3,9.6,9.8,10.5,10.2,10.7,10.2,10.2,10.2,9.9,10.1,10.3,10.4,10],"script":[0.8,0.1,0.1,0.6,0.8,0.1,0.9,0.7,0.1,0.1,0.1,0.6,1,0.8,0.6],"paint":[8.3,8.2,8.8,8,9.5,9.2,8.8,8.3,8.6,9.1,8.9,8,8.4,8.1,8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"04_select1k","values":{"total":[1.9,1.9,2.7,2.5,2,2.3,2.1,2.5,2.3,1.8,2.8,2.1,1.8,3,2.2,2.9,2.1,1.6,2.2,2.5,2.5,3.6,2.2,2.6,2.2],"script":[0,0,0,0,0,0,0,0,0,0,0.7,0,0,0.7,0,1,0,0,0,0,0.5,0.4,0,0.6,0],"paint":[1.3,1,2.5,1.7,1.8,1.5,1.6,1.5,1.8,1.6,1.9,1.8,1.3,2.1,2,1.7,1.8,1.2,1.1,2.3,1.5,2.1,1.3,1.8,1.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.3,11.9,13.4,12.8,13.4,12.3,12.3,12.8,13.3,12.4,11.9,12.7,12.7,11.9],"script":[0.1,0.9,0.1,0.2,0.1,0.6,0.1,0.1,1,0.7,0.1,0.1,0.5,0.4,0.6],"paint":[11.2,11.4,10.8,11.9,12,11.4,11,11,11,10.8,11.2,10.7,11.1,11,10.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.2,10.1,10.4,10.2,10,10.2,10.1,10.2,10,10.3,10.1,10.9,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.4,0.3,0.3,0.3],"paint":[9.1,9.5,9.3,9.6,9.5,9.6,8.9,9.4,9.4,9.5,9,9.2,9.4,9.8,9.6]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"07_create10k","values":{"total":[246.9,246.6,246.2,245.4,245.5,245.2,247.4,246.9,245.7,245,247.8,245.4,246.1,246.6,244.4],"script":[15.2,15,14.9,15,15.1,15.1,15.2,15,15,14.7,14.9,15,15.1,15.4,15],"paint":[224.7,224.5,224.2,223.3,223.2,223,225.2,224.6,223.6,223.2,226,223.4,223.8,223.8,222.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.9,27.2,27.2,26.8,27.2,27.1,27.1,26.9,26.8,27,27.4,27.2,27.2,27.1,27.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.4,1.3],"paint":[24.9,25.1,25.2,24.7,25.2,25,25,24.9,24.8,24.9,25.3,25.2,25.1,25,25.3]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.1,8.9,9.3,9.1,9.2,9.6,9.2,9.3,9.2,9.8,8.7,9.4,9.7,9.2],"script":[7,7.8,6.7,7.4,7.3,7.1,7.5,7.3,7.1,7,7.9,7,6.8,7.7,7.6],"paint":[1.1,1.1,1.2,0.7,1.6,1.9,1,0.6,1.2,1.2,0.6,1.5,1.6,1.8,0.8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5591974258422852]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8510255813598633]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8704309463500977]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6288022994995117]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.650117874145508]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.9]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[34.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"01_run1k","values":{"total":[25.6,25.8,25.5,25.5,26.5,25.6,25.5,25.8,25.6,25.8,25.5,25.6,25.8,25.6,25.7],"script":[3.9,3.9,3.9,4,4,4,3.9,3.9,3.9,4,4,3.9,4.2,3.9,4],"paint":[21.4,21.5,21.2,21.1,22.2,21.3,21.2,21.5,21.3,21.4,21.1,21.3,21.3,21.3,21.3]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"02_replace1k","values":{"total":[28.6,29.4,28.6,29.1,28.6,28.7,28.8,28.7,29.2,28.4,28.4,28.8,28.6,28.7,28.9],"script":[5.8,5.8,5.9,6.1,5.8,5.5,6,5.8,6.2,5.7,5.7,5.9,6,5.9,6.1],"paint":[22.3,23,22.1,22.4,22.2,22.7,22.3,22.3,22.4,22.1,22.1,22.3,22,22.2,22.3]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,11.7,11.7,10.9,11.4,11,11.6,11,11.9,11.9,14.2,11.1,11.6,11.6,11.2],"script":[1.5,1,1,1.2,0.7,0.9,0.9,0.9,1.4,1.2,1.2,0.8,0.9,1,0.9],"paint":[8.4,9.8,9.1,7.7,9.7,8.8,9.5,9.2,9.8,9.5,12,9.4,9.7,9.9,8.9]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,3.1,2.6,1.9,3.2,2.6,2.1,2.9,2.2,2.9,2,3,2.8,2.2,2.3,2.6,2.7,2.2,2.7,2.4,2.7,2.5,2,2.5,2.4],"script":[0.1,0.1,0.1,0.2,0.7,0.1,0.3,0.7,0.1,0.1,0.1,0.8,0.7,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.1,0.1,0.1],"paint":[2.3,2.9,1.8,1.1,1.3,2.5,1.4,2.1,2,2.6,1,1.6,2,1.2,1.1,2.4,1.8,1.6,2.5,1.8,1.2,2.3,1.1,1.7,2.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.1,13.2,12.9,12.4,13.1,13.5,12.9,13.3,13.1,13.6,13,13,12.9,12.6],"script":[0.1,0.1,0.1,0.1,0.1,0.5,0.8,0.1,0.1,0.1,1.1,0.6,0.9,0.1,0.5],"paint":[12.2,11.2,12.6,12.3,11.6,11.1,11.6,11.5,12,11.6,11.5,11.1,10.4,11.6,11.1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.2,10.3,10.2,10.4,10.7,10.5,10.4,10.6,10.3,10.3,10.4,10.5,10.1,10.3],"script":[0.3,0.3,0.1,0.3,0.2,0.3,0.1,0.1,0.4,0.4,0.4,0.2,0.3,0.2,0.2],"paint":[9.1,9,9.7,9.1,9.7,9.8,9.6,9.9,9.6,8.7,8.9,9.7,9.7,9.2,9.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"07_create10k","values":{"total":[270.1,268.8,272.3,271.5,272.8,273.5,271.7,271.3,271.1,272.5,270.4,271.9,270.9,273.3,270.6],"script":[40.9,41.3,42.2,41.5,42.3,42.5,41.7,41.8,41.3,42.2,41.9,42.6,42.5,42.8,41.5],"paint":[222.2,220.5,223.1,222.5,223.4,223.7,222.8,222.3,222.6,223,221.4,222.1,221.3,223.4,222]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.2,31.4,31.9,31,30.6,31,31.4,31.9,30.7,31.4,32.2,32.1,31.4,32.1,32.2],"script":[4.3,4.3,4.4,4.3,4.3,4.3,4.3,4.3,4.2,4.3,4.4,4.4,4.3,4.4,4.4],"paint":[26.1,26.4,26.7,26,25.6,26,26.3,26.8,25.8,26.3,27,26.9,26.4,26.9,27]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.7,10.7,10.8,10,10.5,11.7,11.1,11.9,10.7,9.8,10.6,10.3,10.4,10],"script":[7.9,9.2,8.5,8.6,7.9,8.6,9.2,8.6,9.9,8.3,7.5,8.8,8,8.8,7.9],"paint":[1.2,0.2,1.9,1.2,1.2,0.2,0.4,1.3,1.1,1.3,1.5,1.1,0.7,1,1.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6055803298950195]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.723968505859375]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.716464042663574]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8136444091796875]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.80059051513672]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.6]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[28.6,27.9,28,30.8,28.2,27.8,28,27.9,28.2,28.3,28,28,28.6,29.4,28.6],"script":[6,5.8,5.8,6.3,5.8,5.8,5.8,5.8,5.9,5.8,5.8,5.8,6,6,5.9],"paint":[22.1,21.5,21.6,23.9,21.8,21.4,21.6,21.5,21.8,21.9,21.6,21.5,22,22.8,22.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[31.2,31.5,32.1,31.2,31.4,31.6,31.4,31.6,31.7,31.4,31.4,31.4,31.7,31.3,31.7],"script":[8.7,8.8,8.8,8.8,8.7,8.7,8.7,8.8,8.9,8.7,8.7,8.7,8.9,8.7,8.7],"paint":[21.9,22.1,22.7,21.8,22.1,22.2,22.1,22.2,22.2,22.1,22.1,22.1,22.2,22.1,22.4]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,18.9,18.8,18,18.4,18.2,20.2,18.5,18.6,18.4,18.6,17.9,18,18.7,18.2],"script":[7.5,6.3,6.8,6.4,6.6,6.3,7,6.2,6.6,6.2,6.6,6.7,6.3,6.6,6.1],"paint":[10.7,9.3,10.2,9.8,10.3,10,10.7,9,10.2,10,10.3,9.8,9.8,9.7,10.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[10.9,11,10.7,10.5,10.8,10.6,10.3,10,10.7,11.5,10.7,10.3,11.2,11,11.3,11,10.9,10.4,10.9,10.6,10.8,10.7,11,9.9,10.7],"script":[8.3,8.4,7.9,8,8,7.2,7.5,7.6,8.3,8.5,7.8,7.8,8.2,7.8,7.9,8.1,7.5,7.9,7.7,7.8,8.2,8.2,8.3,7.2,8.5],"paint":[1.2,1.7,0.7,2,1.2,2.9,1.1,1.4,1,1.9,1.4,2.1,1.5,2.2,2.6,1.7,2.7,0.9,1.8,1.8,1.3,1.9,1.5,1.8,0.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[22.3,22.5,22.3,23,24.9,23,23.5,22.5,22.6,23.3,23,23.2,23.3,22.2,22.7],"script":[7.9,8.2,7.3,8.2,8.3,8.3,8.6,7.9,8.1,7.6,8.1,8.4,8.6,7.8,8.2],"paint":[12.9,12.3,13.9,12.3,14.6,13.6,13.2,11.9,11.8,14.1,12.6,13.3,12.4,12.2,12.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15,16.2,14.8,14.8,14.7,14.6,14.6,14.3,14.6,14.7,14.6,14.6,14.6,16.2,14.2],"script":[4.2,4.4,4.2,4,4.2,4.2,4.2,4,4,4.2,4.2,4,4.1,5.2,4],"paint":[10,10.9,10,10,9.9,9.8,9.6,9.7,9.8,9.7,9.8,10,9.8,9.9,9.4]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[275.4,272.9,274.6,273.4,274.1,276.2,277.6,274.3,274.6,276.5,275.8,274.1,278.1,273.1,273.2],"script":[42.7,41.8,41.7,41.5,41.6,42.1,41.5,41.2,41.8,41.1,41.5,41,42.3,41.3,41.6],"paint":[225,223.5,225.5,224.4,224.9,226.5,228.6,225.6,225.1,227.9,226.8,225.7,228.2,224.1,224]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.5,33.2,33.7,33.6,33.2,34,34.1,34,33.3,34.2,34,33.4,33.9,33.8],"script":[6.6,6.4,6.5,6.6,6.7,6.7,6.4,6.8,7,6.5,6.6,6.5,6.5,6.7,6.6],"paint":[26.1,25.2,25.7,26.1,26,25.6,26.6,26.3,26.1,25.8,26.6,26.5,25.9,26.2,26.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.6,23.2,23.4,23.6,22.7,22.5,23.6,24.1,22.5,24.9,22.9,22.2,22.6,25,23.4],"script":[22.5,21,21.3,21.3,20.8,20.5,21.9,22.5,20.3,22.8,20.6,20.5,21,22.5,21.4],"paint":[0.3,0.8,0.3,1.6,0.9,1.2,0.3,0.7,1.3,1.9,2.1,1.1,0.5,1.5,0.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.85980224609375]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.347280502319336]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.402106285095215]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.592020034790039]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.665785789489746]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[276.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[343.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.3,24.5,24.5,25,24.6,25.3,24.5,24.4,24.8,24.5,24.3,24.7,24.4,25],"script":[2.6,2.3,2.3,2.4,2.4,2.5,2.6,2.4,2.3,2.6,2.3,2.4,2.3,2.4,2.6],"paint":[21.6,21.7,21.7,21.7,22.2,21.8,22.3,21.7,21.7,21.8,21.8,21.5,22,21.7,22]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"02_replace1k","values":{"total":[29.6,28.8,29.2,29.1,29.4,29.9,29.6,29.9,29.5,29.6,29.5,29.8,29.3,28.8,29.6],"script":[6.4,5.9,6.1,6,6.2,6.2,6.3,6.2,6.2,6.3,6.2,6.5,6,6,6.4],"paint":[22.6,22.3,22.6,22.6,22.7,23,22.8,23.2,22.6,22.7,22.7,22.8,22.8,22.3,22.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.6,10.8,10.2,11.6,13.2,11.4,12.2,11.8,11.5,11,11.6,13.1,10.6,10.9],"script":[1.3,1.3,0.6,0.9,0.9,1.8,1.3,1.1,1.4,1.2,0.7,1.2,1.5,0.7,1.2],"paint":[8,9.5,9.3,8.3,9.6,10.3,8.8,10.4,8.9,8.8,9.7,9.2,9.7,9.3,8.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.4,2.3,3.1,2.5,2.4,2.2,2.6,2.8,2.5,1.8,2.4,1.8,2.6,2.4,2.7,3.8,2.1,2.5,2,2.4,1.9,3,2.4,2.5],"script":[0.3,1.1,0.1,1.1,0.1,0.1,0.4,0.1,0.8,0.1,0.1,0.6,0.1,0.8,0.1,0.8,0.7,0.6,0.1,0.1,0.1,0.1,1.1,0.7,0.5],"paint":[1.8,0.7,2.1,1.9,1.5,1.3,1.6,2.3,1.8,2,1.5,1.4,1.7,1.8,2.2,1.2,1.8,1,1.8,0.9,2,1,1.1,1.6,1.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"05_swap1k","values":{"total":[16.8,15.3,15.5,15.7,16.6,15.9,15.9,15.9,16,15.9,15.7,15.3,16,16.3,15.7],"script":[3.2,2.3,1.9,2.5,2.7,1.9,2.3,2.2,2.2,2.5,2.6,2.7,2.3,1.9,2],"paint":[12.2,11.9,12.2,12.1,12.7,12.1,12.3,12.2,12.8,12.7,12.1,11.4,12.3,13.6,12.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11.3,11.6,11.3,11.3,11,11.2,12,11.5,10.9,11.1,11.5,10.9,11.9,11],"script":[0.8,1.2,1,1,1.1,0.9,1.1,1.1,1.1,1.1,1.2,1.1,1.1,1,0.8],"paint":[9.5,9.6,9.3,9.8,9.7,9.6,9.8,10.2,9.5,9.2,9.4,9.4,9.2,10.5,9.5]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"07_create10k","values":{"total":[258.8,256.8,256.8,258.6,256.1,257.5,258.4,258.9,256.7,256.8,256.7,257.2,256,260.4,257.5],"script":[26.8,26.8,26.4,26.6,26.7,27.1,26.5,27.5,26.4,26.6,27.1,26.6,26,27.2,26.7],"paint":[224.1,223,223.4,224.8,222.3,223.5,224.8,224.3,223,223.2,222.6,223.5,223.1,226.1,223.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,30.3,29.9,30.3,30.5,30,30.1,30.8,30,30.1,30,29.9,30.2,29.6,30.1],"script":[3.6,3.7,3.6,3.6,3.8,3.7,3.7,4,3.6,3.6,3.7,3.6,3.7,3.5,3.6],"paint":[25.8,25.9,25.5,25.9,26,25.5,25.7,26.1,25.7,25.7,25.5,25.6,25.7,25.3,25.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.2,9.1,9.2,9.1,9.6,9.2,9.3,9.4,9.5,10.4,9.2,9.5,9.2,8.9],"script":[7.7,7.7,7.2,7.2,7.3,7.4,7.6,7.4,8,7.5,8.4,7.4,7.4,7.3,7.6],"paint":[0.3,0.6,0.9,0.7,0.2,2,0.7,1.6,0.2,1.8,0.3,1.6,1,1.3,0.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5691156387329102]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2270917892456055]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.202507972717285]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7002172470092773]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.952178001403809]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[46.9,45.8,43.9,44.5,45.3,45.3,47.2,44.8,50.7,44.8,44.9,43.1,44.8,45.5,44.9],"script":[21.3,21.4,20.1,20,20.4,20.4,20.2,20.2,20.2,19.8,20.2,19.7,19.8,20.2,20],"paint":[21.5,21.7,22.1,21.7,22.1,21.8,21.7,22,22.1,21.9,22.2,21.9,22,22,22]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[55.7,53.6,46.9,46.6,47.6,48.5,47.6,47.2,53.6,46.4,46.4,53.8,47.3,47.5,55],"script":[23.4,23.7,22.4,22.8,23.1,23.4,22.7,23.3,23,23.1,22.9,23.7,23.2,22.9,25],"paint":[22.8,23.2,23,23,23.2,23,23,22.9,22.7,22.9,23,22.6,23,23,23.3]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,34.6,36.3,18.7,36.4,35.7,34.9,34.8,20.7,35.2,35,34.6,19.5,36,34.8],"script":[8.1,7.8,9.1,7.4,8.6,8.3,8,8.5,7.9,8.3,8,7.8,7.6,7.5,7.9],"paint":[10,10.3,10.8,10.2,11.1,10.8,11.3,9.7,12.6,10.6,11.2,10.7,11,12.3,10.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[6,2.5,4,3,2.1,3.5,5.4,4,3,3.3,6.3,2.8,2.9,3.5,2.7,3.2,3.4,3.1,4.5,5.7,2.9,6.2,2.9,2.4,2.8],"script":[0.4,0.5,0.4,0.9,0.4,0.3,0.8,0.6,0.8,0.6,0.9,0.7,0.8,1,0.9,0.8,0.1,0.9,0.2,0.3,1,0.8,0.2,0.2,0.9],"paint":[2.3,1.1,1.7,1.4,1.4,1.7,2,1.1,2.1,1.7,1.7,2,1.9,1.9,1.3,1.7,2.2,1.6,1.6,1.1,1.8,2.4,1.5,2,1.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[39.2,37,42,23.7,39.9,38.8,39.6,38.8,24.1,39.6,39.3,23.3,41.2,24.4,24.6],"script":[8.7,8.3,11.4,8.8,10,9.8,9,9.8,9.8,10.5,9.8,8.6,10.6,9.3,10],"paint":[14.1,11.5,13.9,14.3,13.6,12.4,14,12.9,12.3,12.7,13.4,13.4,13.8,14.1,12.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.1,15,12.1,11.4,13.9,12.6,14.9,15.3,14.5,14.6,11.8,11.4,13,12.8,15.6],"script":[0.4,0.2,0.5,0.2,0.5,0.2,0.2,0.2,0.4,0.3,0.3,0.3,0.2,0.2,0.2],"paint":[10.7,11.2,10.6,10.2,10.2,10.4,10,10.8,10.6,10.6,10.8,10.5,10.7,10.1,10.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[398.6,399.4,400.4,402.7,400.2,402.8,401.2,401.6,403.2,398.7,401.3,402.2,400.6,402,403],"script":[179.9,181.4,181.7,181.9,180.3,181.3,182.6,182.7,183.2,181.5,181.8,183.2,180.7,182.2,181.8],"paint":[211.8,212.9,212.9,215.8,213.8,217,213.8,212.7,214.4,212.9,214.1,215.8,214.2,214.7,215.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.5,48.5,49.7,49.5,54.3,50.1,55.3,54.1,49.3,55.4,49.2,56.6,58,49.1,53.9],"script":[20.4,20.8,21.2,21.3,20.7,21.7,21.2,20.9,21.3,21.3,21.1,21.1,21.4,21.2,20.9],"paint":[27.9,27.4,28.2,27.9,28.2,28,28,27.5,27.6,27.8,27.7,27.8,28.9,27.6,27.3]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.2,19.4,39.7,19,19.5,18.6,41,18,19.1,39.2,18.4,38.2,39.9,38.9,40.3],"script":[16.3,16.9,17.5,16.3,18.5,16.8,18.2,17,17.1,16.9,16.5,15.9,17.5,17.3,18.4],"paint":[1.6,0.3,1.1,0.9,0.9,0.4,0.3,0.9,1.6,1,1.5,1.4,0.9,1.1,0.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8104143142700195]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.155107498168945]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.316567420959473]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3834924697875977]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.342079162597656]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"01_run1k","values":{"total":[30.1,29.7,30.1,30.6,30.2,30.7,30.2,30.2,29.9,30.5,30.4,30.4,30.3,30.6,30.3],"script":[7.3,7.1,7.6,7.5,7.5,7.7,7.5,7.5,7.4,7.6,7.4,7.6,7.6,7.6,7.5],"paint":[22.3,22,21.9,22.5,22.2,22.4,22.1,22.2,21.9,22.4,22.5,22.3,22.2,22.5,22.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"02_replace1k","values":{"total":[32.5,32.9,33.6,33.9,33.5,34.1,33.6,33.2,33,33.5,33.8,33.8,33.9,34,33.9],"script":[9.5,9.7,10.1,10.3,10.3,10.1,10.3,9.9,10.1,10.3,10.1,10.5,10.4,10.4,10.5],"paint":[22.4,22.6,23,23,22.6,23.4,22.7,22.6,22.4,22.6,23.1,22.8,22.9,23.1,22.9]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,12.5,12.6,15.1,12.5,13.2,12.5,13.6,12.3,13.7,12.8,12.5,14.4,13,13],"script":[2.7,2.3,2.1,2.8,1.9,2.8,2.1,2.9,1.4,2.4,2.1,2.4,2.6,2.5,2.7],"paint":[10.2,9.2,9.8,10.5,9.2,9.5,9,9.8,9.4,10.7,9.8,8.7,10.6,9.5,9.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,3.3,3.4,3.1,3,3.4,2.9,2.8,2.6,3.3,3.1,3.3,2.8,3,2.8,2.9,2.8,3.7,3.3,3.4,2.7,3,3.5,2.8],"script":[0.6,0.2,0.8,1,1,0.9,0.8,0.6,0.8,0.8,0.8,0.9,0.6,0.2,0.6,0.6,0.6,0.9,0.9,1,0.8,1,0.9,1.1,0.2],"paint":[1.3,2.5,2.3,1.7,2,1.6,1.7,2.1,1.9,1.6,0.8,1.5,2,1.5,1.6,1.2,1.4,1.1,1.9,1.8,1.5,1.5,1.2,2.2,2.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"05_swap1k","values":{"total":[14.7,16.1,14.6,14.6,14.6,15.2,15.1,14.5,14.7,15,15.2,14.6,14.8,15.2,13.9],"script":[2.1,1.6,2.2,1.6,1.8,1.5,2.7,1.7,1.6,1.5,1.8,2.6,1.8,2.5,2.2],"paint":[11.6,13.3,11.1,11.2,11.4,12.5,10.8,11.5,12.2,12.3,12.4,11.2,12.1,11.5,10.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.8,11.7,11.5,11.6,11.5,11.4,11.3,11.6,11.5,11.5,11.7,11.7,11.7,11.4],"script":[1.3,1.5,1.3,1.5,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.5,1.5,1.3,1.3],"paint":[9.7,9.6,9.7,9.6,9.9,9.6,9.3,9.3,9.3,9.7,9.6,9.7,9.7,9.6,9.5]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"07_create10k","values":{"total":[303.9,302.6,304.1,304.7,308,304.2,306.9,304.4,305.7,304.5,304,308.8,306.9,305.9,303.6],"script":[73,73.2,73.8,74.4,76.7,73.2,73.9,73.7,74,73.5,74.1,74.2,74.8,76.1,74.2],"paint":[223.5,221.8,222.6,222.7,223.7,223.6,225.5,223.1,224.3,223.4,222.6,226.8,224.2,222.1,222]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,34.8,35,35.8,34.8,35,34.6,34.9,34.7,35.8,34.7,34.5,34.6,35.4,34.7],"script":[7.7,7.5,7.8,7.9,7.8,7.7,7.8,7.8,7.5,7.7,7.6,7.8,7.8,7.8,7.7],"paint":[27.4,26.3,26.2,26.9,26,26.3,25.9,26.1,26.2,27,26.1,25.7,25.8,26.6,26]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.2,13.3,14.2,13.9,13.9,14.1,14.3,13.7,12.7,13.6,14.4,12.6,14,14,14],"script":[12.1,11.7,12.2,11.9,11.4,12.2,12.6,11.5,10.7,11.6,12.1,10.5,11.6,11.8,11.9],"paint":[0.6,0.6,1.8,1.7,1.2,0.5,0.8,1.4,1.2,0.7,1.6,0.8,1.6,2,1.9]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7444276809692383]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9700183868408203]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9568958282470703]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.6423349380493164]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[24.023038864135742]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[135.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[169.3]}},{"framework":"doohtml-keyed","benchmark":"01_run1k","values":{"total":[24,24.2,24.3,24.2,24,24.1,24,23.9,24.1,24.3,23.7,23.9,24,24.1,24.2],"script":[1.8,1.8,1.8,1.8,1.8,1.9,1.8,1.9,1.8,1.8,1.8,1.8,1.9,1.8,1.9],"paint":[21.8,22,22.1,22,21.8,21.9,21.8,21.7,21.9,22.1,21.5,21.7,21.8,21.9,22]}},{"framework":"doohtml-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.8,26.5,27.4,27.2,28.9,28.7,26.8,27,26.8,27.3,27.2,27.6,26.9,27.9],"script":[3.9,3.8,3.7,3.9,3.9,4,4.1,3.8,3.8,3.9,3.9,3.8,4.3,3.9,4],"paint":[22.4,22.6,22.4,23.1,22.9,24.5,24.1,22.5,22.8,22.6,23,22.9,22.8,22.5,23.5]}},{"framework":"doohtml-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.1,9.8,10.2,10.4,10.6,9.8,10.1,10.5,10.2,10,10.3,10.1,10.1,9.9,10.2],"script":[0.1,0.3,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.9,0.5,0.1,0.2,0.1],"paint":[9,8.4,9.1,9,8.9,8.3,8.5,8.9,9,8.9,8.2,8.6,9.3,9.1,9.5]}},{"framework":"doohtml-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.2,2.1,2.1,2.1,2,2.1,2.5,1.7,2.1,2.1,2.2,2.2,1.6,2.6,2.5,1.9,1.8,2.6,2.5,2,1.9,2.2,2.4,1.7],"script":[0,0,0,0,0.1,0,0,0,0,0.1,0.2,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0],"paint":[1.3,1.5,2,2,1.8,1.7,1.5,1.7,1.6,1.9,1.2,1.2,2,1.5,1.6,1.5,1.8,1.4,2.4,1.5,1.9,1.1,1.2,1.5,1.6]}},{"framework":"doohtml-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.5,13.8,11.9,12.5,13,12.7,12.4,13.2,13.4,12.4,12.9,13.7,13.1,12.5],"script":[0.1,0.1,0.1,0,1,0.1,0,0,0.1,0.9,0,0.1,0.9,1,0],"paint":[12.7,12.3,13,10.9,10.6,11.8,11.8,11.5,11.9,11.1,10.8,12,11.3,10.6,11.4]}},{"framework":"doohtml-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.4,10.2,10.2,10.1,10.3,10.2,10.3,10.1,9.9,10.4,10.3,10.2,10.5,10.2],"script":[0.1,0.3,0.1,0.3,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3],"paint":[9.5,9.6,9.5,9.1,9.6,9.4,8.7,9.6,9.5,9.4,9.8,9.7,9.6,10,8.8]}},{"framework":"doohtml-keyed","benchmark":"07_create10k","values":{"total":[252.8,249.8,251.7,250,250.1,253.2,249.9,251.5,250.2,251.7,250.1,251.3,251.9,251.8,250.6],"script":[18,17.6,17.7,17.5,17.4,17.4,17.7,17.8,17.8,17.7,17.6,17.6,17.7,17.7,17.6],"paint":[227.4,225.1,226.9,225.4,225.6,228.7,225.1,226.5,225.3,226.8,225.4,226.2,226.3,227,225.8]}},{"framework":"doohtml-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.8,27.6,27.9,27.8,27.8,27.9,28.3,29.1,28.4,27.8,27.8,27.9,28.1,27.8],"script":[1.8,1.8,1.8,2.1,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[24.8,25.3,25.1,25.1,25.2,25.2,25.3,25.7,26.5,25.9,25.2,25.2,25.4,25.6,25.2]}},{"framework":"doohtml-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,10.2,9.2,8.8,9.4,9.6,10,9.8,9.3,10,9.9,9.8,9.8,9.7,9.7],"script":[7.6,8,7.6,7.2,7.4,7.9,7.4,7.6,7.3,8.2,7.8,8,7.9,7.9,7.8],"paint":[1.6,1.2,1.4,0.6,0.9,0.3,1.5,1,0.9,0.7,0.7,1.5,1.7,1.4,1.1]}},{"framework":"doohtml-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6259469985961914]}},{"framework":"doohtml-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9350957870483398]}},{"framework":"doohtml-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.919051170349121]}},{"framework":"doohtml-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6705598831176758]}},{"framework":"doohtml-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.025126457214355]}},{"framework":"doohtml-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"doohtml-dom-keyed","benchmark":"01_run1k","values":{"total":[23.5,24,23.8,23.7,23.9,23.9,23.8,23.7,23.9,23.9,24.1,24.1,23.7,23.8,24.1],"script":[1.8,1.9,1.8,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[21.3,21.8,21.6,21.5,21.6,21.6,21.6,21.5,21.5,21.5,21.9,21.7,21.5,21.6,21.8]}},{"framework":"doohtml-dom-keyed","benchmark":"02_replace1k","values":{"total":[26.6,26,26.4,26.6,26,26.1,26.2,26.7,26.4,26.7,26.7,26.3,26.7,26.3,26.1],"script":[3.7,3.8,3.7,3.9,3.7,3.7,3.7,3.8,3.6,3.7,3.8,3.8,3.9,3.7,3.7],"paint":[22.5,21.8,22.3,22.3,21.8,22,22.1,22.4,22.4,22.6,22.5,22.1,22.4,22.2,21.9]}},{"framework":"doohtml-dom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,10.4,9.9,9.6,11.3,10.2,9.8,10,10.7,10.3,10.5,10.2,10.7,9.8,10],"script":[1.2,0.5,0.1,0.1,0.1,0.6,0.1,0.1,0.9,0.4,0.8,0.9,1.1,0.1,0.1],"paint":[8.3,8.3,8.8,8.3,9.6,8.2,8.8,8.3,8,8.9,8.5,8.2,8.2,8.6,8.9]}},{"framework":"doohtml-dom-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.6,2.5,1.9,1.6,2.1,1.5,2.3,2.7,2.6,1.6,2.1,2.7,2.3,2.2,2.5,2,2.8,3.3,3.1,2.4,2,2.1,2.4,1.9],"script":[0,0.9,0,0,0,0.6,0,0.4,0,0,0,0,0,0.4,0,0,0,0,0.7,0.7,0,0,0,0.4,0],"paint":[2.5,1.6,1.3,0.9,1,1.4,1.3,1.8,2.4,2.5,1.4,1.9,2.5,1.8,2,1.4,1.8,1.8,1.4,2,2.1,1.9,2,1.9,1.1]}},{"framework":"doohtml-dom-keyed","benchmark":"05_swap1k","values":{"total":[12.3,12.4,12.8,12.4,12.1,12.7,12.7,12.7,12.4,11.5,13.2,12.3,12.9,12.1,13.2],"script":[0.2,0.3,0,0,0,0.1,0.9,0,0.1,0.1,0.6,0,0.1,0.1,0.1],"paint":[11.4,10.7,11.7,10.9,11,10.9,11,11.7,11.3,10.3,12,11.6,11.6,11,12]}},{"framework":"doohtml-dom-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.9,10.3,10.3,9.9,10.1,10.1,10.3,10.1,10.2,10.2,10.3,10.3,10.1,9.8],"script":[0.2,0.1,0.3,0.1,0,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1,0.1,0.1],"paint":[9.3,10,9.4,9.7,9.3,9.6,9.7,9,9.3,9.6,9.6,9.1,9.5,9.5,9.5]}},{"framework":"doohtml-dom-keyed","benchmark":"07_create10k","values":{"total":[247.5,249,247.4,247.2,249.6,247.7,247.3,248.8,249.3,248.9,249.5,249,250.2,248.5,248.7],"script":[17.8,17.9,17.9,17.8,18.3,17.4,17.9,18.4,18.6,17.8,18.4,17.9,18.3,18.5,18.2],"paint":[222.5,224,222.2,222.3,224.1,222.9,222.3,222.9,223.6,223.9,223.9,223.9,224.8,222.9,223.4]}},{"framework":"doohtml-dom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.7,27.3,27,27.8,27.6,28.8,28,30.5,27.4,27.4,27.3,27.9,27.3,27.8,27.8],"script":[1.9,1.8,1.8,1.8,1.8,1.8,1.8,2.2,1.8,1.8,1.8,1.8,1.8,1.9,1.9],"paint":[25.1,24.8,24.5,25.3,25.1,26.3,25.4,27.5,24.8,24.8,24.8,25.3,24.8,25.2,25.2]}},{"framework":"doohtml-dom-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.8,8.8,8.6,8.6,9.4,9.1,9.7,8.9,9.2,8.6,8.4,9.1,9.3,9.3],"script":[6.8,7,7.3,6.7,7,7,8,7.1,7.2,7.2,7.1,6.5,6.9,7.4,7.3],"paint":[1.3,0.9,0.7,0.2,1,0.9,0.9,1.5,1,1.2,0.7,0.3,1.1,0.9,0.9]}},{"framework":"doohtml-dom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6155729293823242]}},{"framework":"doohtml-dom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8904695510864258]}},{"framework":"doohtml-dom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9163751602172852]}},{"framework":"doohtml-dom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.659876823425293]}},{"framework":"doohtml-dom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.011741638183594]}},{"framework":"doohtml-dom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-dom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-dom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"doohtml-lite-keyed","benchmark":"01_run1k","values":{"total":[24,23.6,23.6,23.4,23.3,23.5,23.8,23.4,23.8,23.4,23.7,23.5,23.7,23.9,23.7],"script":[1.6,1.6,1.6,1.6,1.6,1.7,1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[22,21.6,21.6,21.5,21.3,21.5,21.8,21.4,21.8,21.4,21.7,21.5,21.7,21.8,21.7]}},{"framework":"doohtml-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.1,26.3,25.8,26.1,26.1,26.4,26.8,26.4,26.2,26.6,26.2,26.2,26.1,26.5,25.9],"script":[3.4,3.5,3.4,3.4,3.4,3.5,3.6,3.5,3.4,3.6,3.5,3.4,3.5,3.6,3.4],"paint":[22.3,22.4,22,22.2,22.3,22.5,22.8,22.5,22.4,22.6,22.3,22.4,22.2,22.5,22]}},{"framework":"doohtml-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.8,10.3,10.8,10.5,10.6,11.6,10.9,11.4,10.4,10.7,10.7,10.6,10.3,9.6],"script":[0.5,0.9,0.1,0.5,0.5,0.6,0.5,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.1,8.7,9,9.3,9,9,9.4,8.6,9.4,8,9.7,8.2,8.9,9.1,8.5]}},{"framework":"doohtml-lite-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.1,2.1,2.8,2.7,2.2,1.5,2.6,2.5,2.6,1.5,2.4,2.2,1.8,3.4,2.6,1.9,1.9,1.9,1.9,2.6,3,2.3,2.6,2.9],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0.7,1],"paint":[1.6,1.1,1.9,1.8,2.1,2,1.3,1.7,1.4,1.6,0.9,1.5,1.5,0.9,1.3,2.1,1,1.1,1.1,1.5,1.8,0.4,1.7,1.8,1]}},{"framework":"doohtml-lite-keyed","benchmark":"05_swap1k","values":{"total":[12.7,12.9,13.4,12.6,13.1,12.1,12.5,12.5,12.3,13.4,12.7,12.5,12.3,12.7,12.8],"script":[0.1,0.1,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[11.5,11.7,11.4,11.4,11.2,11.1,11.4,11.5,10.7,11.2,11.7,11,11.2,11.4,12.1]}},{"framework":"doohtml-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.4,10.4,9.9,10.3,9.9,10.3,10.3,10.2,10.1,10.1,10,9.9,10.6,10.2],"script":[0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0,0.1,0.2,0.1],"paint":[9.6,9.7,9.7,9.2,9.3,9.5,9.6,9.5,9.6,9.3,9.4,9.1,8.8,9.8,9.5]}},{"framework":"doohtml-lite-keyed","benchmark":"07_create10k","values":{"total":[246.8,248.5,250.1,247.1,246.2,247.6,247.3,247.6,247.3,247.3,244.8,247.7,247.1,250.4,247.8],"script":[16,16.5,16.4,16.2,16.4,16.4,16.5,16.1,16.6,16.3,16.3,16.6,16.2,16.5,16.3],"paint":[223.4,223.9,226.2,223.6,222.7,223.9,223.6,224,222.8,223.9,221.3,223.7,223.7,226.3,224.3]}},{"framework":"doohtml-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.4,27.5,27.4,27.7,27.4,27.4,27.4,26.9,28.1,27.2,27.7,27.6,27.8,27.9,27.6],"script":[1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[25.1,25.1,25,25.3,25,25,25,24.6,25.7,24.8,25.3,25.2,25.4,25.6,25.3]}},{"framework":"doohtml-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.8,9.1,8.8,9.2,9.6,9.1,9.1,9.2,8.7,8.8,9.4,9.6,9.6,9.5,9.5],"script":[6.7,6.7,6.8,7.3,7.7,7,7.4,7.4,6.7,7.2,7.5,7.5,7.3,7.6,7.5],"paint":[1.3,1.8,0.9,1.5,0.6,1.9,1.2,0.6,1.4,0.3,0.3,1,2.1,0.8,1.8]}},{"framework":"doohtml-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5995111465454102]}},{"framework":"doohtml-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9950637817382812]}},{"framework":"doohtml-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0396852493286133]}},{"framework":"doohtml-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6799840927124023]}},{"framework":"doohtml-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.508091926574707]}},{"framework":"doohtml-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7]}},{"framework":"doohtml-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"01_run1k","values":{"total":[33,33.9,33.6,33.9,34,33,32.8,32.9,33.6,33.4,34.3,33.7,33.7,33.2,33.7],"script":[10.7,11.1,10,11.5,11.5,10.2,10.4,10.1,11.2,10.6,11.7,9.9,10.2,10.3,10],"paint":[21.8,22.3,23.1,21.8,22,22.2,21.8,22.2,21.8,22.2,22,23.2,23,22.3,23.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"02_replace1k","values":{"total":[36.3,37.1,36.5,36.2,36.8,36.8,37.1,36.9,36.8,36.7,37.5,36.6,36.9,36.4,36.7],"script":[13.1,13.6,13.1,13,13.6,13.3,13.4,13.5,13.4,13.2,13.7,13.2,13.3,13.3,13.3],"paint":[22.6,22.9,22.8,22.6,22.7,22.9,23.2,22.9,22.8,22.9,23.2,22.8,23.1,22.5,22.8]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11,11,10.7,11.6,10.4,9.7,11.1,10.8,11.3,11.8,10.7,10.8,10.4,10.7],"script":[0.8,0.7,0.1,0.6,0.2,0.9,0.6,0.6,0.7,0.8,0.8,0.8,0.6,1,0.6],"paint":[8.2,9.1,9.4,9.2,10.5,8.5,8.2,8.9,9.1,9.3,10,9.3,9.3,8,9.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.2,1.8,2.4,2.8,2,1.7,2.5,2.1,3.1,2.1,1.9,2.6,2.2,2.4,2.3,2.3,2.5,2.2,2.2,2.4,2.7,2.5,2.2],"script":[0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,1,0.1,0.1,0.1,0.1,0.5,0.1,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[2.1,1.9,1.4,1.6,1.7,2.6,1,1.5,2.3,1.6,2,2,1,1.7,2.1,1,1.1,1.2,0.8,1.1,0.9,2,1.3,1.2,2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.1,14.2,12.7,14.2,13.9,12.3,13.1,13,13.2,13.6,12.7,13.3,13.1,12.9],"script":[0.6,0.9,0.8,0.5,0.1,0.1,0.1,0.9,0.1,0.3,0.8,0.1,0.1,0.1,0.1],"paint":[11.8,11.3,12.5,10.6,11.7,12.9,10.7,11.2,11.8,11.8,10.9,12.3,11.7,12,11.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.2,10.7,10.4,10.4,10.3,10.2,9.9,10.2,10.7,10.2,10.3,10.4,10.2,10.5],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3,0.1],"paint":[9.4,9.6,10.1,9.5,9.4,9.4,9.6,9.1,9.6,9.8,9.6,9.2,9.5,8.8,9.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"07_create10k","values":{"total":[328.2,325.8,325,327.1,328.5,325,325.7,325.9,329.9,326.8,329.2,327.1,325.7,328.9,327.6],"script":[103.5,101.2,101.9,101.8,104.5,101.2,102.6,101.7,100.5,101,100.4,100.4,100.6,100.9,101.7],"paint":[217,217.4,215.7,217.9,216.8,216.5,215.9,217,222.1,218.6,221.5,219.5,217.9,220.7,218.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,36.7,38,37.8,36.7,37.3,36.6,37.7,37.2,37.2,37.5,37.3,37.3,37.7,37.6],"script":[10.3,9.8,10.4,10.2,9.4,10,9.7,10.3,10,10,10.3,10,10,9.8,10.1],"paint":[26.3,25.9,26.6,26.6,26.2,26.4,25.9,26.4,26.2,26.3,26.2,26.3,26.3,26.8,26.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.4,14.4,13.5,14.2,12.9,14.1,13,13.9,14.5,14.6,14,12.9,13.9,13.6],"script":[11.1,11,12.6,11.5,12.1,11.6,11.3,11.4,11.7,12.4,12.8,12.1,11,11.7,11.2],"paint":[1.7,1.2,0.8,1.6,0.9,0.8,1.3,0.3,0.7,1.3,1,0.5,1.3,1.4,0.9]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6594076156616211]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.6918230056762695]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.681046485900879]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.913792610168457]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.75600814819336]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"01_run1k","values":{"total":[32.8,31.6,32.4,31,32.4,34.4,30.4,32.3,31.1,31.9,32.9,30.5,34,35,32.9],"script":[5.6,6.1,5.7,6,5.6,5.9,6.1,6,6.1,5.7,6,5.9,5.8,6,6.1],"paint":[21.2,21.5,21.5,21.9,21.6,21.4,21.7,21.4,21.5,22,21.4,22.2,21.4,21.5,21.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"02_replace1k","values":{"total":[35.6,36.4,31.5,36.9,37,37.7,36.2,35.8,38.5,38.5,37.7,31.4,36.1,31.1,36.3],"script":[8,7.8,8.3,8.3,8.2,8.3,7.8,7.7,8.3,8.2,8.3,8,8,8.2,8.4],"paint":[22.5,22.2,22.6,22,22.3,22.1,22.3,22.1,22.1,22,22.2,22,21.9,22.4,22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.8,12.5,14.9,13.2,28.6,29.4,13.4,14.8,31.4,14.3,15.8,13.2,31.4,13.1,13.4],"script":[2.3,2.4,1.8,2.9,2.5,2.9,2.7,2.8,4,2.5,3.3,2.2,2.4,2.3,2.4],"paint":[10.3,8.7,9.7,9.6,9.4,10.6,9.8,9.2,10.1,9.2,11,10.7,12.5,9,9.1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"04_select1k","values":{"total":[9,5.3,8.3,9.9,3.4,6.7,6.7,5.1,9,6.7,7.7,5.2,6.8,7.1,5.5,8.2,11.8,9,8.9,3.6,7.7,6.7,7.7,3.1,4.7],"script":[0.7,0.9,1.4,1.9,1.1,0.8,0.3,1.5,1.4,0.3,0.6,1,0.3,0.9,1.2,0.3,0.4,1.4,0.4,1,1.5,1.1,1.9,0.9,1.1],"paint":[2.4,1.7,1.5,1.5,1.9,1.9,1.3,1.8,1.6,2.1,2,1.2,1.4,2.7,1.5,2.6,1.9,1.3,2.5,2.5,2.2,1.8,1.8,2,2.1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"05_swap1k","values":{"total":[30.4,15.3,14.9,15.7,15.9,30.7,15,30.1,14.9,15.1,14.6,13.8,30,16.6,29.3],"script":[1.5,0.9,1.3,1,1.2,1.1,0.3,1.5,0.9,1,1.3,1.3,1.9,1.6,1],"paint":[13.4,11.1,11.6,12.1,13.1,12.5,12.6,11.5,12.2,12,10.7,11.9,12.1,13,13]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,15.9,12.3,15.3,12.5,11.5,13.3,11.6,13.4,17.5,11.7,13,11.7,14,15.1],"script":[0.6,0.6,0.6,0.4,1.3,0.9,0.6,0.6,0.6,0.5,0.6,0.6,0.3,0.7,0.6],"paint":[10.4,10,10.3,10.6,10.8,10.2,10.3,10.3,10.5,10.5,10.2,10.5,10.5,10,10.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"07_create10k","values":{"total":[720.8,290.6,285.3,284.5,730.2,717.4,294.5,290.4,718.4,718.8,284.3,292.4,717.3,284.2,285.2],"script":[62.4,61.7,62.7,63.1,61.7,64,63.8,61.4,63.1,61.4,61.4,63.6,60.6,61.8,63.1],"paint":[219.8,214.2,214.6,213.3,222.4,221.1,217.7,216.2,222.9,221.3,214.5,219.1,219.5,214.3,213.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,33.4,37.4,32.4,38.1,37.8,33.3,33.3,38.8,37.6,33.3,38.1,37.6,37.8,33.5],"script":[6.4,6.5,6.2,6.2,6.5,6.6,6.6,6.6,6.5,6.5,6.5,6.5,6.3,6.4,6.6],"paint":[25.3,26,25.2,25.3,25.5,25.2,25.8,25.8,24.9,25.1,25.9,25.7,25.3,25.5,25.9]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[31,31.2,30.7,31.4,30.8,34.1,10.5,30.9,31.6,32.1,11.3,12,10.2,10.4,32.4],"script":[8.6,8.9,8.2,8.2,7.8,10.6,8.4,8.2,8.3,8.6,8.2,8.5,8.5,8.5,9.5],"paint":[1.5,1.6,0.3,0.3,2.2,2.2,0.7,0.8,2.3,1.3,0.3,1.2,0.3,1,0.3]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6522407531738281]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6669139862060547]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6915035247802734]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0234966278076172]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.142183303833008]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.6]}},{"framework":"ember-v6.4.0-keyed","benchmark":"01_run1k","values":{"total":[48.2,47.1,48.9,47.2,48.1,49.2,48.7,48.7,48.4,48.2,48.1,48.9,48.7,47.7,48.2],"script":[25.8,25.4,26.8,25.4,26.3,27.1,26.5,26.4,26.2,26.6,26.1,26.7,26.6,25.8,26.3],"paint":[21.9,21.3,21.7,21.4,21.3,21.7,21.8,21.8,21.9,21.2,21.6,21.8,21.8,21.5,21.6]}},{"framework":"ember-v6.4.0-keyed","benchmark":"02_replace1k","values":{"total":[64.9,65,64.7,63.8,65.5,65.1,65.5,65.1,65.2,65,64.1,65.6,65,65.1,64.9],"script":[41.4,41.6,41.1,40.1,41.8,41.2,41.7,41.2,41.8,41.4,40.6,41.6,41.5,41.6,41.5],"paint":[23.1,22.9,23.2,23.3,23.2,23.4,23.4,23.5,23,23.1,23,23.5,23,23,22.9]}},{"framework":"ember-v6.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.6,20.4,20.2,22.5,20.7,19.5,20.1,19.1,20.6,19.3,20.3,20.7,20.4,21.5,20.1],"script":[8.4,8,7.6,8.9,8.3,9,8.7,7.7,9.1,8.5,8.5,8,8.6,8.8,8.3],"paint":[10.2,10.9,11.9,12,11.4,9.1,9.4,9.9,10.4,9.1,10.2,11.7,10.2,11.5,10.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"04_select1k","values":{"total":[15.5,16.5,14.3,15.1,15.5,16.4,14.1,15.4,14.9,15.6,15.7,15.8,16.3,15,15,15.4,15.3,15.2,14.9,14.5,15.2,15.3,15.4,15.9,15.5],"script":[12.5,14,11.8,12,12.5,12.8,12,12.2,12.4,12.1,12.6,12.8,13.1,12.4,12.2,11.9,12.7,12.2,12,12.1,12,11.9,12,12.6,11.6],"paint":[1.7,2.2,1.9,2.3,2.2,2.6,1.1,2.4,1.7,2.8,1.6,2,2,1.3,2.1,3.3,1.6,2.8,1.8,1.2,2.3,2.9,2.9,2.6,3.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"05_swap1k","values":{"total":[23.9,24.7,24.2,24.7,23.7,24.3,22.1,26.7,24.4,22.8,23.7,23.8,23.6,25,24.4],"script":[8.7,9,8.9,8.8,7.6,9,8.8,9.1,8.3,7.9,8.3,8.6,8.3,8.6,8.8],"paint":[13.2,14.7,13.4,14.9,14.5,14.5,12.1,16.3,14.3,13.8,14.3,13.9,13.6,15.7,14.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.9,16.3,16.3,15.8,15.8,16.4,16.6,16.2,16.4,16.4,17,17,16.3,15.9,16.4],"script":[5.4,5.4,5.1,5.4,5.4,5,5.4,5.2,5.5,5.4,5.5,5.5,5.4,5.3,5.4],"paint":[10.8,10.6,10.6,9.5,9.5,10.1,10.5,10.1,10.4,10.3,10.7,10.6,10.4,9.6,10.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"07_create10k","values":{"total":[427.8,426.3,427,427.7,426.4,428.4,428.4,427,428.1,428.6,431.8,427.9,427.3,430.9,425.5],"script":[196.7,195.2,195.9,196.9,194.2,197,197.1,195.3,196.6,197.9,201.6,196.6,195.1,198.1,194.1],"paint":[224,223.9,223.9,223.5,224.9,224.2,224.3,224.7,224.2,223.6,223.2,224,225.1,225.5,224.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.9,60.2,60.7,60.2,61.2,61.7,60.7,60,60.5,60.7,60.8,60.7,60.4,60,60],"script":[33.9,33.4,33.5,33.1,34.1,34.1,33.5,33.2,33.4,34,33.9,33.9,33.5,33.1,33.2],"paint":[26.1,25.9,26.3,26.2,26.2,26.7,26.2,26,26.2,25.9,26,26,26.1,26,26]}},{"framework":"ember-v6.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.2,22.3,24.8,22,22.5,21.9,22.7,23.3,22,23.2,22,21.9,23.1,22.4,22.1],"script":[20.9,20,23.2,20.7,21.3,20.2,20.7,21.6,20.1,21.9,20.9,20,21,20.6,20.4],"paint":[1.2,2,0.7,1.2,0.3,1.6,1.5,1.6,1.7,0.6,0.4,1.1,1.6,0.6,1.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[8.27157211303711]}},{"framework":"ember-v6.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[14.21378231048584]}},{"framework":"ember-v6.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[14.169471740722656]}},{"framework":"ember-v6.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.093180656433105]}},{"framework":"ember-v6.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.913761138916016]}},{"framework":"ember-v6.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[1109.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[223.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[992.4]}},{"framework":"endr-v0.2.1-keyed","benchmark":"01_run1k","values":{"total":[29,29.3,29.1,29.5,28.5,29,29,29,28.9,29.2,29.4,29.2,28.9,31.5,29],"script":[6.3,6.3,6.5,6.5,6.3,6.4,6.5,6.4,6.4,6.5,6.7,6.6,6.5,6.6,6.5],"paint":[22.1,22.4,22.1,22.4,21.6,22,22,22.1,21.9,22.2,22.1,22.1,21.9,24.3,21.9]}},{"framework":"endr-v0.2.1-keyed","benchmark":"02_replace1k","values":{"total":[31.5,31.4,31.7,31.9,31.5,32,31.8,31.6,31.8,31.4,31.9,33.1,32.2,31.5,32.1],"script":[8.5,8.4,8.7,8.7,8.7,8.8,8.7,8.9,8.7,8.7,8.7,9.1,8.8,8.7,8.7],"paint":[22.4,22.4,22.4,22.7,22.2,22.6,22.6,22.1,22.5,22.1,22.6,23.4,22.8,22.2,22.8]}},{"framework":"endr-v0.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.9,12.6,13.9,13.2,14.2,18.2,13.9,13.7,13.9,13.8,13.5,14.3,13.5,13.1],"script":[2.5,3.3,2.4,2.8,3,3.1,3.3,3,3.6,3,3.2,2.8,3.5,2.6,2.9],"paint":[10.3,9.6,9,10.1,8.9,10.2,12.8,9.5,8.3,9.6,8.7,9.4,9.1,10,8.8]}},{"framework":"endr-v0.2.1-keyed","benchmark":"04_select1k","values":{"total":[4.7,4,3.6,3.4,3.5,3.8,3.3,3.1,3.7,4.3,3.4,3.1,4.3,3.9,3.6,3.9,3.3,3.3,3.5,3.4,3.7,3.9,3.7,3.3,3.7],"script":[1.9,1.4,1.5,0.9,1.4,1,1,1,1.5,1.8,1,0.7,1.9,2.2,1.3,1.7,1.5,0.7,1.4,1.6,1.2,1.4,1.7,0.7,0.9],"paint":[1.7,2,1.5,1.4,1.4,2.2,1.8,1.3,2,2.3,1.6,1.8,2.2,1.6,2.1,1.5,1.3,1,1.2,1.3,1.4,1.6,1.2,2.5,1.8]}},{"framework":"endr-v0.2.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,16.7,13.8,14.2,13.5,14.2,14.2,14.6,13.4,15.2,15.8,14.1,14.9,14.9,14.5],"script":[0.7,1,0.9,1.1,0.9,0.9,1.1,1.1,0.9,1.3,0.3,0.6,0.9,1.1,1.2],"paint":[12.2,14.7,11.8,11.9,11.7,12.1,11.4,12.9,11.6,12.2,14.3,12,12.6,12.4,12]}},{"framework":"endr-v0.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.9,11,11.3,11.4,10.9,10.9,10.8,11.6,10.6,10.9,10.8,11,11],"script":[0.6,0.6,0.6,0.7,0.7,1,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6],"paint":[9.5,9.1,10.6,9.7,9.5,9.6,9.6,9.3,9.3,10.3,9.3,9.4,9.7,9.5,9.9]}},{"framework":"endr-v0.2.1-keyed","benchmark":"07_create10k","values":{"total":[295.1,297.3,298.1,301,298.2,299,300.2,299.6,299.6,300.1,297.6,299.7,302.6,302.7,300.1],"script":[68.3,68.6,69.3,70.2,69.6,69.8,70.1,69.7,71,70.4,68.9,69.6,70,71.2,69.4],"paint":[218.7,220.7,220.5,222.5,220.6,221,221.8,221.7,220.4,221.3,220.5,222,224.4,222.8,222.7]}},{"framework":"endr-v0.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,34.9,34.3,33.6,33.9,33.7,33.5,34.4,34,34.2,34,33.2,34.1,33.9,33.9],"script":[7.1,7.1,7.1,6.7,6.9,6.5,6.9,7.4,7.1,6.8,6.9,6.5,6.7,6.9,6.7],"paint":[25.8,26.8,26.3,25.9,26.1,26.2,25.7,26.1,26,26.4,26.2,25.8,26.4,26.2,26.3]}},{"framework":"endr-v0.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,11.9,12.8,12.5,11.9,12,12.8,12.8,10.3,12.5,14.3,12.2,11.5,11.5,11.6],"script":[11.3,9.7,10.9,10.5,10.3,10.6,10.4,10.5,8.6,10.3,11.8,10.3,9.7,9.8,10.1],"paint":[1.4,0.7,1.4,1.8,0.7,0.9,1.4,1.1,0.7,1.5,1.6,1,0.4,1.1,0.3]}},{"framework":"endr-v0.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5984573364257812]}},{"framework":"endr-v0.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.399202346801758]}},{"framework":"endr-v0.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4502687454223633]}},{"framework":"endr-v0.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6829929351806641]}},{"framework":"endr-v0.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.966672897338867]}},{"framework":"endr-v0.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"endr-v0.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"endr-v0.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[29.6,30,29.9,29.9,30.1,30,30.5,30.1,29.7,29.5,30.2,30.2,29.9,30.5,30.8],"script":[6.7,6.8,6.7,6.8,6.9,6.8,7,7,6.7,6.7,6.8,7.1,6.7,6.8,6.8],"paint":[22.4,22.6,22.6,22.6,22.7,22.6,23,22.6,22.4,22.3,22.8,22.6,22.6,23.1,23.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34.4,34.9,34.5,34.9,35.7,34.2,34.7,35.2,35.3,35.2,35.2,34.4,35.6,34.7],"script":[10.5,10.4,10.6,10.4,10.7,10.9,10.2,10.7,10.8,10.9,10.7,10.7,10.6,10.8,10.7],"paint":[22.9,23.4,23.7,23.5,23.7,24.1,23.4,23.4,23.8,23.8,23.9,24,23.4,24.2,23.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,11.5,11.9,12.2,11.6,11.1,13,11.7,11.6,11.6,12,12.4,11.9,12.5,11.5],"script":[1.1,1.3,0.2,1.2,0.6,0.2,1,0.8,0.9,0.2,0.9,1.3,0.6,1.1,0.6],"paint":[10.4,8.7,10.7,9.5,9.1,9.6,10.9,9.7,9.4,9.9,9.4,9.8,10.3,9.7,9.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[5.2,1.7,2.7,2.5,2.6,2.2,1.8,2.3,2.2,2.8,2.5,2.3,2.6,1.9,2.5,2.7,2.4,2.4,2.7,2.2,2.3,2.7,2.6,2.3,2.6],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.9,0,0,0],"paint":[1.8,0.7,2.5,2.3,1.6,2,1.3,2.2,1.1,2.1,1.7,1.4,2,1,1.7,2.2,1,1.7,1.6,2,1.1,1.3,2.5,1.3,1.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.1,14.7,14.9,14.7,15.5,14.3,15.2,14.8,15,14.5,14.9,15.3,14.9,15.5],"script":[1.5,0.6,0.7,1.3,0.9,1.8,0.9,1.4,1.1,0.9,0.7,1.2,0.9,1.3,1.4],"paint":[13.3,13.5,13,11.8,12.6,12.4,12.2,12.4,12.7,12.8,12.5,11.8,12.1,12.1,12.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11.2,11.5,10.9,11,11.2,11.5,11.4,11.2,10.9,11.2,11,11.3,12.1,11],"script":[0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.6],"paint":[10.5,9.9,10.3,9.5,10,10.1,10.4,10.3,10.3,10,9.8,9.2,10.2,10.6,9.8]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[316.6,316,315.9,317.9,315.5,313.6,315.6,317.9,315.1,316.9,314,321.3,315.3,318.8,315.8],"script":[78.3,78,78.1,78.4,78,77.4,78.6,78.3,78,77.6,77.8,77.3,79.1,78.2,78.3],"paint":[230.3,229.9,229.9,231.3,229.7,228.3,229.1,231.2,229.1,231.5,228.4,235.2,228.4,231.9,229.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37,37.6,36.3,36,36.6,36.3,36.3,37.1,36.7,36.3,36.8,36.3,36.6,38.1,36.6],"script":[7.4,7.4,7,7,7,7.1,7.1,7.5,7.5,7,7.1,7,7.1,7.5,7.1],"paint":[28.6,29.1,28.3,28.1,28.6,28.3,28.2,28.7,28.2,28.3,28.6,28.3,28.5,29.6,28.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.5,9.8,9.5,9.8,10.7,9.6,9.9,9.8,9.4,9.4,9.8,9.4,9.3,9.4],"script":[7.3,7.5,7.9,7.7,7,8.2,7.4,7.5,7.5,6.9,7.4,8,7.5,7.7,7.9],"paint":[1,1.8,0.3,0.6,2.5,1.3,1.9,1.4,1.3,2.2,1.2,0.4,0.2,0.7,0.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5856914520263672]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0971603393554688]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0983171463012695]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7394895553588867]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.766292572021484]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"01_run1k","values":{"total":[37.6,34.9,44.7,30.9,32.1,31.8,35.7,33.1,32.6,37.6,30.8,30.4,35.5,30.6,37],"script":[8.1,8.4,8.2,8,8.1,8.2,8.1,8.4,8.3,8.3,8.4,8.4,8.3,8.1,8.2],"paint":[21.3,21.4,21.1,21.5,21.8,21.7,21.6,21.3,21.6,21.3,21.4,21.7,21,21.6,21.7]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"02_replace1k","values":{"total":[41.4,35.5,35.4,35.7,35.4,35.7,36.2,36.4,38.5,37.8,40.5,38.9,36.9,36.8,37],"script":[12.5,12.7,12.7,12.6,12.6,12.4,12.7,12.6,12.4,12.7,12.3,12.8,12.5,12.5,12.5],"paint":[22.4,22.3,22.2,22.4,22.2,22.7,22.4,22.2,22.1,22.5,22.9,22.3,22.3,22.1,22]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.8,49.2,46.5,17.3,17.3,47.7,18.7,16.9,46.3,48.8,46.8,49.5,17.6,17.2,17.5],"script":[4.4,4.2,4.1,4.4,4.4,4.4,4.8,3.6,5,4.1,4.4,6.3,4.6,4.3,3.8],"paint":[12,13,11.2,11.2,11.5,10.7,12.3,11.4,10.5,12.1,11.1,12.2,10.6,12.7,11.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"04_select1k","values":{"total":[6.6,12,9.3,6.3,12,7.4,6.5,9.4,11.3,5.7,10.6,6.8,7.2,10.4,12.1,8,8.7,10.8,8.5,12.5,8.7,6.7,6.8,7.2,7.3],"script":[2.5,2.8,2.2,2.5,2.4,3.2,3.6,2.9,2.4,2,2.3,2.4,2.6,2.6,1.9,2.6,2.4,3,2.7,3.3,2.7,3.4,3.1,3.4,2.6],"paint":[2.9,3.8,3.4,3.3,3.5,2.4,3.2,3,3.6,1.7,2.9,2.4,3.7,3.9,3.5,2.6,1.8,3.6,3.3,1.8,3.1,2.4,2.7,2.9,2.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"05_swap1k","values":{"total":[48.9,49.3,52.9,48.6,50,48,19,50.2,48.8,50.8,17.1,49,50.2,48.5,18.5],"script":[2.8,2,2.7,2.1,2.5,2,2.5,3.2,2,2.6,1.9,2.1,2.5,2.5,2.3],"paint":[14.4,15.4,16.2,15,14.7,14.8,15.4,14.8,13.4,14.8,13.3,14,15,12.7,14.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,17.5,17.5,15.2,13.9,15.1,14.6,16,16.1,16.4,16.4,13.9,12.2,13.5,14.4],"script":[5.2,5.1,5.2,5.5,5.5,5.1,5.4,5.1,5.4,5.9,5.5,5.5,5,5.5,5.4],"paint":[10.4,10.2,10.9,10.8,11.2,11.2,11,11.3,10.8,11.4,11.4,11.3,10,11.5,11.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"07_create10k","values":{"total":[300,297.9,301.4,295.3,301.5,295.6,298.8,304.9,297.8,296.3,293.7,299.6,297.1,297.3,294.2],"script":[84.9,84.5,86.2,87,82.8,84.9,83.8,84.1,84.2,87,85.5,85.8,88,82.3,83.9],"paint":[201.7,206.3,205.5,203,205.6,204.3,205.3,209.5,202.5,203.9,203.1,203.1,203.2,207,205.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44,36.6,43.2,36.5,36.1,44.4,44.4,44.5,44,36.1,36.6,45.2,44.4,44.3,36.6],"script":[9.5,9.8,9.2,9.7,9.8,9.1,9.5,9.4,9.4,9.8,9.8,9.7,9.4,9.3,9.6],"paint":[25.5,26.3,25,26.3,25.8,25.3,25.8,25.8,25.6,25.8,26.3,26,25.8,25.9,26.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,13.2,12.3,12,12.7,12.8,11.6,11.3,12.3,13.3,12.2,12.2,11.3,45.9,12.2],"script":[8.5,8.7,9,9,8.1,8.6,8.5,7.1,9,8.5,8.3,8,8.1,9.2,9],"paint":[1.8,1.6,3,2,2.5,1.4,2.4,1.6,2,2.3,2.7,2.7,2.9,2.1,2.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6613597869873047]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.632147789001465]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.6517791748046875]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9440460205078125]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.451199531555176]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.4]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"01_run1k","values":{"total":[57,53,54.3,55.6,53.6,52.6,56.6,55.8,52.7,55.6,55.7,54.2,55,57.4,56],"script":[30.1,30.2,30.3,30.7,29.9,30.1,30.6,30,29.6,30.4,30.9,30.6,30.2,30.7,30.6],"paint":[22,21.8,21.6,22.2,22,21.5,22.1,22.3,21.8,21.6,21.7,21.6,22.5,21.6,21.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"02_replace1k","values":{"total":[70.7,66.1,65.9,64.1,65.1,63.4,64.8,66.7,69.2,67.1,66.6,67.8,65.4,65.1,66.2],"script":[39.9,40.1,39.7,40.5,39.4,39.7,39.9,39.6,40.3,40.8,39.4,39.9,40.5,40.3,39.7],"paint":[23,23.2,23.3,23.1,23.6,23.4,23.5,23.6,23.3,23.3,23.1,23.1,23.1,23.5,23.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.4,34.9,35.2,34.5,35.4,18.1,36.6,36.5,34.5,37.9,36.3,36.7,35.9,35.1,36],"script":[4.5,4.7,4.8,4.5,4.5,5.2,5.8,4.1,4.3,4.3,4.7,5.1,4.8,5.3,3.6],"paint":[13.1,12.5,11.9,13.4,13.1,12.1,12.2,13.6,11.8,11.5,13.7,13,13.3,12.4,14.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"04_select1k","values":{"total":[22,19.5,20,17.4,20.1,16.7,20.8,17.3,18.8,19.8,19.1,16.9,16.9,18.6,18,17.1,21.1,20,17.5,19.4,19.9,17.7,22.7,17.4,18.9],"script":[13.7,13.1,13.6,12.9,12.5,12.2,13,13.5,12.6,13.3,13.5,12.4,13,13.3,12.9,12.8,12.9,12.2,12.3,12.6,12.9,13.1,13.6,13.8,13.4],"paint":[2.9,3,4,2.7,3.3,3.2,3.4,2.5,3.8,2.8,4,2.7,2.9,4.2,3.6,3.3,3.5,3.3,2.7,2.9,3,2.9,2.8,2.9,3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"05_swap1k","values":{"total":[39,40.1,38.9,37.9,37,22.4,36.8,40,40.8,38.7,38.9,38.9,19.5,37.9,37.2],"script":[5.2,4.3,4.4,4.6,4.3,4.8,4.7,4.7,4.6,4.4,4.3,4.7,4.9,4.7,4.5],"paint":[15.7,14.4,15.5,15.2,15,14.5,15,15.2,14.9,16.2,15.3,15.9,13.6,14.5,15.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.7,21.7,20.4,20.4,20.3,21.4,23.1,22,22,22.5,20.1,19.9,20,19.9,23.1],"script":[7.9,7.9,8,7.7,8.3,7.8,8,7.9,7.9,7.9,7.7,7.5,7.7,7.7,8.1],"paint":[10.9,11.2,11.3,11.7,11.5,11.8,11.4,11.4,11.7,11.6,11.8,11.6,11.5,11.3,12.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"07_create10k","values":{"total":[426,424.4,424.8,421.6,423.4,423.2,425.7,423.9,428.6,425.2,423.3,440.8,425.6,426.6,425.1],"script":[198.4,197.6,197.9,195.6,196.2,196.5,198,196.9,198.9,195.8,197.2,211.4,199.5,198.6,197.6],"paint":[224.3,223.4,223.2,222.4,223.3,223.4,224.4,223.3,223.4,225.9,222.1,222.1,222.8,224.4,224]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[75.1,64.5,69.5,66,68.7,62.8,68,62.5,69.5,67.5,66.3,63.1,62.9,65.6,66.1],"script":[36,36.3,35.2,34.2,36.4,35.3,35.7,34.8,36.3,35.6,34.7,35.3,35.6,34.2,34.8],"paint":[26.9,27.7,26.6,26.9,27.3,27,27.3,27.3,27.3,27.1,26.9,27.4,26.8,26.7,26.5]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.1,23.6,22,21.7,22.1,43.9,23,23.2,46.4,24.2,46.8,22.7,20.7,25.3,23.2],"script":[19.7,19.4,18.8,18.3,19.5,21.1,19.5,19.1,23,19.8,21.4,19.3,18,22,19.2],"paint":[3.2,2.9,1.4,2.3,1.9,3.3,2.9,2,3.1,3.1,3.7,1.8,2.2,2.5,2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.299428939819336]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[11.194477081298828]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.205013275146484]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.253968238830566]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[61.13966941833496]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[111.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[28.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[116.4]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"01_run1k","values":{"total":[32.8,32.7,33.1,32.3,32.6,31.7,33,32.2,33.2,32.6,32.5,32.8,32.1,32.1,31.9],"script":[9.9,9.6,10.1,9.6,9.6,9.4,10.1,9.7,10,9.8,9.6,9.8,9.6,9.7,9.7],"paint":[22.3,22.6,22.4,22.2,22.4,21.7,22.4,22,22.7,22.2,22.3,22.5,22,21.9,21.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"02_replace1k","values":{"total":[33.5,34.1,33.6,34.1,33.9,33.6,34.4,33.3,34,34.1,34.3,34.9,34,34,34.5],"script":[11.3,11.3,11.1,11.2,11.2,11.1,11.5,11,11.4,11.1,11.4,11.7,11.3,11.3,11.2],"paint":[21.7,22.2,21.9,22.4,22.1,21.9,22.3,21.7,22.1,22.4,22.3,22.6,22.1,22.1,22.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,11.8,12.4,12.4,12.4,11.7,12.4,12.4,12.7,13.3,11.7,12.5,13.8,12.5,13.5],"script":[1.3,1.3,1.5,1.5,0.7,1.5,1.2,1.5,2.3,2,1.2,1,1.5,1.4,1.8],"paint":[9.7,9.5,9.9,9.8,10.4,9.4,9.9,9.9,9,10.2,9.7,10.5,10.9,10.5,9.9]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"04_select1k","values":{"total":[4,4.5,4.2,4.8,4.1,4.4,4.5,4.5,4.5,3.6,4.3,3.6,4.6,4.4,4.3,4.3,4.5,4,4.3,4,4.6,4.4,4,4.8,4.6],"script":[2.1,1.8,2.1,2.7,2.4,2.3,1.9,2.1,2.1,1.6,2.4,2,2,2.1,1.9,2.8,1.8,1.6,1.4,2.1,1.9,2.3,2.4,2.4,2.2],"paint":[1,2.5,1.9,2.1,1.6,2,2.5,2.2,1.5,0.9,1.3,1.1,2.2,2.2,2.3,1.3,1.7,2,2.5,1.2,2.6,0.5,1,2,1.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.9,14.3,14.2,14,14,14.5,14.2,14.4,15.2,15.5,14.5,15.4,15.1,13.9],"script":[1.4,1.4,1.1,1,1.3,0.7,1.7,1.3,1.3,0.9,0.3,0.8,1.2,1.5,1],"paint":[12.4,11.9,12,11.8,12.4,12.2,11.6,11.5,12.2,13.3,14.9,12.1,13.2,12.1,12.3]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.9,11.1,10.9,10.9,10.5,11.5,10.9,11,10.4,11,10.5,10.8,10.8,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,9.4,9.3,9.7,9.6,9.3,10.2,9.6,9.4,9.5,9.9,9.6,9.6,9.3,9.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"07_create10k","values":{"total":[319.9,320.2,319,320.7,320.7,320.1,314.6,320.7,322,320,319.1,318.3,318.3,320,321.2],"script":[94.5,94.9,95.1,95.8,94.8,95.2,89.2,95.7,95.3,95,94.7,95.8,94.7,94.9,94.8],"paint":[217.6,218.1,216.4,217.4,218.5,217.5,218.3,217.4,219.3,217.6,217.2,215.3,216.3,217.9,218.5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.6,37.1,37.2,36.9,37.5,37.3,36.6,36.5,37.1,36.5,36.5,36.9,36.9,36.9],"script":[9.6,9.4,9.6,9.6,9.5,9.6,9.5,9.4,9.3,9.5,9.5,9.6,9.6,9.5,9.3],"paint":[26,26.2,26.5,26.6,26.4,27,26.8,26.3,26.3,26.6,26.1,26,26.4,26.4,26.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.4,12.8,15.3,13.7,13.4,13,13.7,13,12.9,14.1,13.1,13.1,12.5,13.3,13.4],"script":[11.2,11.5,13.1,11.8,11.3,10.8,11.8,10.5,11.1,12.2,11.3,10.9,10.9,11.9,11.8],"paint":[1,0.6,0.7,1,1.9,1.9,0.6,1.4,1.2,1.7,1,1.5,0.2,0.2,1.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6014366149902344]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.145123481750488]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.201883316040039]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0667591094970703]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.03434658050537]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"01_run1k","values":{"total":[32.6,32.4,32.6,32.2,32.3,32.5,32.2,32.1,32.2,32,33.3,32.6,32.3,32,32.3],"script":[9.9,9.7,9.6,9.6,9.6,9.9,9.7,9.5,9.7,9.4,10,9.9,9.6,9.6,9.4],"paint":[22.2,22.1,22.4,22.1,22.2,22.1,21.9,22.2,22,22,22.7,22.1,22.1,21.8,22.4]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"02_replace1k","values":{"total":[38.5,37.2,37.9,37.4,37.3,37.8,37.4,38.5,37.5,38.2,37.5,38,37.3,37.4,38.1],"script":[14.3,13.7,14.3,14.4,14.1,14.3,14.2,14.4,14.1,14.3,14.5,14.5,14,14.4,14.6],"paint":[23.5,22.9,22.9,22.5,22.7,23,22.7,23.6,22.8,23.3,22.4,22.9,22.7,22.4,22.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,19.5,22,18.9,18.8,19.5,20.9,20.7,20,19.4,19.5,20.1,19.8,18.5,22.2],"script":[7.4,7.9,9.1,7.5,7.3,7.3,9.1,8.2,8.7,7.3,6.6,8.4,8.5,6.9,9.4],"paint":[10,9.3,11.7,9.4,9.7,10.8,10.4,9.9,9.9,10.6,10.9,10.5,9.3,10.8,10.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"04_select1k","values":{"total":[8.5,7.2,7.6,7.8,7.8,7.5,9.1,8.4,8.2,9.1,8.7,6.8,8.7,8,7.3,8,7.7,9.7,7.7,7,8.3,7.6,7.7,8.6,7.6],"script":[5.1,4.7,5,4.6,5,4.6,5.6,5.2,5.7,5.6,5.9,4.1,5.9,4.9,4.3,4.9,4.6,6.4,5,4.7,5.3,4.6,4.7,5.5,4.9],"paint":[1.1,1.4,1.8,2.9,1.4,2.1,2.1,2.2,1.2,2.5,1.1,1.4,1.3,2.4,2.8,2.5,1.9,2.1,1.8,1.3,1.5,2.3,2.4,2.4,2]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"05_swap1k","values":{"total":[20,22.1,18.1,18.5,19,18.6,20.2,18.1,19,18.5,18.5,18,20.9,20.4,20.4],"script":[5.1,6.1,4.8,4.6,4.8,4.9,5.1,4.4,4.6,4.5,4.4,4.6,5.2,5.7,5.6],"paint":[13,13.5,12.1,12.5,13,12.1,13.1,12.3,12.7,12.5,13.4,12,13.8,12.9,12.7]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,14.5,15,14.7,15,14.7,14.6,14.9,15,14.9,15.2,14.9,15.2,15,14.9],"script":[4.2,4.2,4.3,4.3,4.3,4.2,4.3,4.5,4.3,4.2,4.2,4.4,4.3,4.4,4.2],"paint":[9.4,9.7,10,9.5,10.1,9.8,9.4,9.7,10,10,10.1,9.8,10,9.8,9.8]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"07_create10k","values":{"total":[332.8,328.4,332.4,331.3,328.3,328.3,329.5,327.1,328.5,330.8,327.3,352.3,330.6,328.1,329.5],"script":[98.8,98.2,98,97.5,99,99.4,98.5,97,98.2,99.2,99.1,99.4,98,97.8,98.7],"paint":[226.3,222.4,226.4,225.9,221,221.3,223.4,222.4,222.5,223.1,220.6,245.1,224.1,222.9,222.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.4,40,39.9,39.7,40.1,39.5,39.6,39.8,39.9,40,39.9,40.2,40.6,39.4,40.6],"script":[12.5,12.8,12.9,12.5,12.7,12.6,12.7,12.7,12.6,12.8,12.8,12.8,13,12.6,12.7],"paint":[26.9,26.3,26,26.2,26.5,25.9,25.9,26,26.3,26.2,26.1,26.3,26.5,25.8,26.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,16.2,16.2,16.1,16.4,16.1,18.3,16.4,15.7,16.7,16.4,15.7,16.5,15.9,15.8],"script":[14.6,14.2,14.4,14,15,14.2,15.7,14.4,13.3,14.9,14,13.8,14.4,13.6,14.1],"paint":[0.3,1.8,1.6,1,0.3,1,1.9,1,1.5,0.3,2.2,1,0.7,1.4,0.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7422618865966797]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8538818359375]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.23066520690918]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.265583038330078]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.978217124938965]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[78.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"01_run1k","values":{"total":[30.2,29.8,29.9,30.3,30.4,30.3,29.9,31,30.1,30.3,31.2,29.7,30.4,29.8,29.7],"script":[8.8,8.6,8.8,9,9.1,9.1,8.8,9,9,9.3,9.5,8.8,9.1,9,8.7],"paint":[20.9,20.7,20.6,20.8,20.8,20.6,20.6,21.4,20.6,20.5,21.2,20.3,20.8,20.3,20.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"02_replace1k","values":{"total":[33.3,32.4,33.4,33.9,32.8,33.7,33.2,32.7,33.3,33.3,33.3,33.3,33.9,32.7,33.4],"script":[11,10.7,11,11.2,10.8,11.1,10.9,11,11,11.2,11.3,11.3,11.3,10.9,11.2],"paint":[21.7,21.2,21.9,22.1,21.4,22.1,21.7,21.2,21.7,21.6,21.5,21.4,22,21.3,21.6]}},{"framework":"helix-v0.0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.2,18.9,20.1,19.3,18.2,18.8,18.5,21,19.2,19.7,18.9,18.3,18.7,18.2,18.3],"script":[7.1,7.2,8.2,6.8,7,6.7,7.2,7.1,6.3,7.4,7.1,7.2,6.9,7.5,6.9],"paint":[9.6,9.1,10.5,10.2,9.7,8.5,9.4,11.8,11.6,10.2,10.4,9.3,10.6,8.8,10]}},{"framework":"helix-v0.0.10-keyed","benchmark":"04_select1k","values":{"total":[5.8,5.5,4.7,5.7,5.6,4.8,4.8,4.9,5.9,5.6,5.5,5.1,5.4,5.1,5.5,5.7,7.4,5.1,4.5,5.2,5.4,5.4,5.7,4.7,5.5],"script":[2.7,2.8,2.8,3.2,2.8,2.9,2.5,3.3,3.3,2.9,2.8,2.7,3,3.2,3,3.5,3.5,3.2,2.6,2.4,2.9,3,3.5,2.7,2.6],"paint":[1.7,2.2,1,2.3,2.6,1.8,2.2,1.1,2.5,2.3,1.1,1.3,2.2,1.8,1.5,2.1,2.1,1.1,1,2.1,1.6,0.8,2.1,1.6,2.8]}},{"framework":"helix-v0.0.10-keyed","benchmark":"05_swap1k","values":{"total":[108.7,106.7,108.5,108.8,107,109.7,109.9,108.5,108.4,107.4,107.6,108.1,109.1,107.4,108],"script":[21.2,20.5,23.6,22,20.8,22.8,23.1,21.3,22,21.3,22.8,21.9,21.5,21.2,20.9],"paint":[84.7,84.5,82.6,83.5,83.6,83.6,84.8,84.4,83.5,83.1,81.8,84.8,85,84,85.1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,12.1,12.5,12.2,12.7,12.5,12.1,12.1,12.2,12.8,12.7,12.2,12.2,11.8,12.1],"script":[2.2,1.9,2.2,2.2,2.2,2.1,2.2,1.9,2.2,2.1,2.2,1.9,2.1,1.9,1.9],"paint":[10,9.6,9.6,9.7,9.9,9.8,9.3,9,9.4,9.8,9.3,9.5,9.1,9.6,9.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"07_create10k","values":{"total":[400.1,401.6,409.9,399.9,405.5,400.8,401.1,406.9,404.1,403.3,400.8,402.7,405.8,407.9,406.6],"script":[178.1,178.6,182.8,177.2,181.3,174.4,176.4,182.1,180.8,180.3,175.3,179.1,182,183.7,181.5],"paint":[214.7,215.7,219.9,215.4,217,219.2,217.3,217.5,216.1,215.4,218,216.2,216.4,216.9,217.7]}},{"framework":"helix-v0.0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,35.9,36.5,36.8,36.1,36.1,36.3,36.4,36.1,36.5,36.3,36.4,36.1,36.3,36.3],"script":[9.6,9.7,9.8,9.6,9.6,9.5,9.7,9.7,9.7,9.9,9.5,9.7,9.8,9.6,9.9],"paint":[25.1,25.2,25.8,26.3,25.6,25.6,25.6,25.8,25.5,25.6,25.8,25.8,25.4,25.8,25.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.6,13.7,12.8,11.8,11.8,12.1,12.4,12.8,12.7,13.2,11.7,12.1,11.9,12.3,13],"script":[10.1,11.3,10.7,10,10.1,10.5,10.2,10.8,10.2,10.8,9.9,10.3,9.7,9.8,10.7],"paint":[1.1,1,0.3,0.2,0.3,1,1.8,0.9,1.5,1.2,1,0.4,1,2.3,1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.300863265991211]}},{"framework":"helix-v0.0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.725496292114258]}},{"framework":"helix-v0.0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.292157173156738]}},{"framework":"helix-v0.0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0953903198242188]}},{"framework":"helix-v0.0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.235087394714355]}},{"framework":"helix-v0.0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[264.7]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[32,31,30.4,31.1,31,31.3,31.3,30.3,31.3,31.1,31.3,31,31.3,31,31.5],"script":[9.2,8.9,8.4,8.6,8.6,8.9,8.7,8.5,8.8,8.7,8.6,8.4,8.7,8.5,8.6],"paint":[22.2,21.5,21.3,21.9,21.8,21.8,22,21.3,22,21.7,22.1,22,22,21.9,22.3]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.7,35.9,36.9,35.7,35.5,35.9,36.5,35.4,35.4,35.3,36.4,35.9,36.7,35],"script":[12.3,12.5,12.2,12.6,12.4,12.3,12.5,12.9,12.3,12.2,12.4,13.1,12.5,13,12.3],"paint":[22.4,22.6,23,23.6,22.7,22.6,22.7,23,22.5,22.6,22.3,22.6,22.8,23.1,22.1]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.3,12.9,12.4,12.8,15.1,14.3,14.2,15.4,13.2,12.6,14.6,12.6,12.4,13.7],"script":[1.9,2.1,2,1.7,1.6,2.1,2.3,3,3.2,2.3,1.5,2.4,1.6,1.9,1.8],"paint":[9.5,10.1,9.9,9.6,9.9,11.8,10.9,9.8,10.7,9.6,9.8,10.6,9.8,9.4,11]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.5,3.4,4,3.5,3.4,3.9,3.8,3.4,3.6,3.5,3.4,3.7,4.2,4,3.6,3.4,3.9,4.1,3.1,4.1,3.5,4.4,3.1,3.8,3.9],"script":[1.5,1.4,2.4,1.3,1,2.1,1.8,1,1.3,1.5,1.6,1.7,1.5,1.4,1.2,1,1.3,1.8,0.9,2.1,1,2.3,1,1.2,2.1],"paint":[2,1,1,2.1,1.6,1.2,1.8,1.3,2.1,1.9,1.6,1.7,1.8,2.1,2.3,1.4,2.4,2.2,2,1,1.5,1.3,1.2,2.4,1.2]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[18.3,17.3,16.7,16.7,17,17.1,18.3,17,17.5,19.9,17,17.9,24.5,17.4,18.1],"script":[4.3,4.4,3.6,3.9,3.8,4.3,4.2,4.4,4.7,5,3.5,4.2,5.2,4,4.5],"paint":[12.7,11.4,11.9,10.9,11.1,11.6,12.8,11.3,12.2,13,12.4,13.1,16.8,12.7,12.2]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,13.5,12.8,12.4,12.5,13,12.7,13,12.9,13.4,12.9,13.2,12.8,12.7,12.5],"script":[2,2.3,2,2.1,1.9,2.3,2.2,2.3,2,2.1,2.2,2.2,2.3,2.3,2.1],"paint":[9.7,10.3,10.2,9.4,10.1,10.1,10,10.1,10.2,10.5,10.3,10.3,9.5,9.8,9.9]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[326.9,325.5,328.8,328.4,325.7,327.2,322.4,321.8,322.3,326.7,324.8,321.9,321.6,322.8,328.6],"script":[91.8,90.4,91.9,90.8,94,94.1,90.2,90.7,91.2,95.5,90.4,89.7,89.3,89.8,95.2],"paint":[226.7,226.5,228.3,228.6,223.7,224.7,224.5,223.2,223.3,223.4,226.2,224.2,224,225.1,225.6]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.3,36.7,37.9,39.7,38.1,37.9,37.8,37.6,37.6,37.9,37.8,38.8,38.1,36.6,38.3],"script":[10.4,9.8,9.9,10.3,10.2,9.8,9.9,9.8,9.7,10.1,10.1,10,10,9.2,10.3],"paint":[26.9,25.9,26.9,28.3,26.8,27.1,26.8,26.8,26.8,26.7,26.6,27.5,27,26.3,27]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,17.1,15.3,14.1,13.4,12.6,13.3,14.3,14.1,13.6,14.4,13.4,15.5,15.5,13.4],"script":[10.9,14.7,12.4,12,11.3,10.3,11.1,12.5,11.8,11.6,12,11.3,13.1,13.2,11.6],"paint":[1.8,1.4,1.6,1.5,1.2,1.8,0.8,0.9,1.2,1,1.2,1.1,1.4,1.4,1]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5902833938598633]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.638214111328125]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.687821388244629]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6624860763549805]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.004850387573242]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.3]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.9]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"01_run1k","values":{"total":[30.5,30.1,30.5,31.9,30.5,30.4,30.1,30.1,30.4,30.7,30.2,30.3,30.2,30.5,29.9],"script":[8.6,8,8.3,8.8,8.1,8.3,7.8,8.1,8.2,7.9,8.1,8.2,7.9,8.2,8],"paint":[21.3,21.6,21.7,22.5,21.8,21.6,21.7,21.6,21.8,22.2,21.7,21.7,21.9,21.9,21.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"02_replace1k","values":{"total":[44.4,43.1,44.5,43.4,43.5,43.8,43.7,43.1,43,43.5,43.7,44,43.8,43.9,44.2],"script":[20.2,19.4,20.2,19.7,19.9,20,19.9,19.6,19.3,19.4,19.7,19.7,19.8,19.8,20.1],"paint":[23.6,23.1,23.7,23.1,23,23.3,23.2,22.9,23.1,23.5,23.5,23.7,23.4,23.5,23.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,18.6,18.5,17.7,17.7,17.9,17.6,18.8,17.2,17.6,17.5,17.3,17.3,17.9,18],"script":[6.7,7,6.6,5.7,6.3,6.3,6.5,6.5,6.1,6.7,6.3,6.3,6.4,6.7,6.4],"paint":[10.2,9.6,10,11.2,9.1,9.5,9.3,10,9.2,8.9,9.6,8.9,9.2,10.1,9.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"04_select1k","values":{"total":[6.6,6.5,5.7,5.3,5.3,5.9,5.8,5.5,5.7,5.7,5.8,5.5,5.5,5.8,5.7,5.4,5.7,5.8,5.5,5.4,6.1,6.3,5.6,5.9,5.6],"script":[3.4,3.8,3.6,2.9,3.6,3.2,3.7,3.5,3.1,3.6,3.7,3.4,3.4,3.9,3.3,3.1,3,3.1,3.3,3.3,3.8,4.3,3.9,3.6,3.1],"paint":[1.5,1.6,1.5,2.3,0.7,2.1,1.7,1.1,2.3,2,1.2,1.8,2,1.1,1.6,2.2,2.3,1.8,1.3,2,2.1,1.8,1.6,2.2,1.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"05_swap1k","values":{"total":[17.4,16.3,16.5,16.6,17.6,17.7,16.4,16.5,15.8,17.1,17.4,16.7,17.3,16.2,17.5],"script":[3.6,3.1,3.7,3.5,4,3.5,3.3,3.4,3,3.7,3.1,3.7,3.8,3.7,3.9],"paint":[12.8,12,11.9,11.3,12.1,12.7,12.1,12,11.2,11.5,13.4,11.8,11.5,11.1,12.1]}},{"framework":"hono-v4.6.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.1,12.5,11.9,13.3,12.2,12.2,12.8,11.9,12.2,11.9,12.3,12,12.2,11.9],"script":[1.6,1.8,1.7,1.5,1.8,1.8,1.5,1.9,1.5,1.4,1.6,1.8,1.7,1.8,1.6],"paint":[10.1,9.8,10.3,10,10.3,9.5,10.4,9.8,9.9,9.9,9.5,10,9.7,10,9.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"07_create10k","values":{"total":[319.7,318.2,316.9,314.2,318.5,321.7,313.7,316.5,314.6,321.1,314.1,314.4,314.4,315.9,316.4],"script":[92.8,92.7,92.1,90.8,92.1,93.8,90.2,90.4,90.3,92.6,90,90.5,89.6,90.1,90],"paint":[219.2,218.4,217.6,216.3,219.1,220.3,216.8,218.8,217,221,217.2,216.9,217.9,218.1,219.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,35.7,36.3,35.5,35.9,35.9,35.9,36.8,35,36.4,35.6,35.1,36,36.5,35.7],"script":[8.9,9,9,8.8,9,9,9.2,9,8.8,9,8.7,8.7,9.1,9.4,8.8],"paint":[25.7,25.7,26.4,25.8,25.9,25.9,25.8,26.8,25.3,26.5,26,25.5,25.9,26.1,26]}},{"framework":"hono-v4.6.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.8,28,28.7,28.2,28.8,29.4,29.2,31.4,29.9,30.3,29.7,30.3,29,27.9,31.1],"script":[25.1,26.2,26.8,26.3,26.6,27.6,26.8,28.9,27.8,28.2,27,27.8,26.9,25.3,28.4],"paint":[1.5,1,1.2,1.1,0.9,0.3,1.3,2.1,1.5,0.9,0.4,0.9,0.3,1.7,1.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6364593505859375]}},{"framework":"hono-v4.6.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.252861976623535]}},{"framework":"hono-v4.6.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.883572578430176]}},{"framework":"hono-v4.6.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8905172348022461]}},{"framework":"hono-v4.6.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.327643394470215]}},{"framework":"hono-v4.6.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.9]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"01_run1k","values":{"total":[36.9,37.3,37.3,37,37.3,38.5,37.1,37.4,37.5,37.6,38.4,37.8,37,37.2,37.5],"script":[14.8,14.9,15,14.9,15,16.3,15,15,15.1,15.4,15.9,15.4,14.9,14.9,15.1],"paint":[21.5,22,21.8,21.6,22,21.7,21.6,21.9,21.9,21.7,22.2,22,21.6,21.8,21.9]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"02_replace1k","values":{"total":[41.6,42.2,41.6,43.4,41.1,42.9,42.6,43.5,42.3,42,41.5,42.9,41.5,41.8,41.8],"script":[18.1,18.8,18.3,19.3,18,18.8,18.5,19.2,18.2,18.3,18.1,18.9,18.3,18.1,18.6],"paint":[22.9,23.1,22.7,23.5,22.7,23.5,23.5,23.9,23.6,23.2,23,23.4,22.6,23.3,22.8]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,12.3,11.6,12,11.5,12.6,13,12.1,12.6,11.8,12,11.4,11.5,12.3,11.4],"script":[1.5,1.5,1,1.7,1.4,1.9,2,1.7,1.6,1.8,1.2,1.5,1.3,1.5,1.3],"paint":[8.7,8.6,9.7,8.9,8.9,9.7,10.3,9,10,8.8,8.5,8.8,8.8,9.8,9.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"04_select1k","values":{"total":[3,3.6,3.5,3.9,3.4,3.2,3.4,3.6,3.4,3.7,3.8,3.7,3.6,3.8,3.6,3.9,3.4,3.3,3.3,3.3,3.8,3,3.7,3.7,3.6],"script":[0.9,1.4,1.1,1.5,1.5,1.3,0.7,1.3,0.7,1.7,1.7,1.7,1.6,1.6,1.4,1.7,1.2,1.4,1.1,1.4,1.6,1.2,1.8,1.8,1.3],"paint":[2,2.1,2.3,1.5,1,1.8,2.6,2.1,2.3,1.7,1.7,1.8,1.7,2.1,1.9,1.4,1.3,1.6,1.5,1,2,1,1.1,1.1,2.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.9,13.8,13.2,12.8,14.2,15.4,13.2,13.1,13.6,13.1,12.7,13,12.6,12.8],"script":[0.1,0.1,0.1,0.1,0.6,1.1,0.5,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[11.6,11.9,12.2,12.2,11,11,13.8,10.9,12.4,11.8,11.5,11.9,12.1,11.6,11.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.4,10.3,10.4,10.4,10.6,10,10.2,10.2,10.3,10.3,10.4,10.2,11.4,10.3],"script":[0.2,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.3],"paint":[9.4,9.8,9.6,9.1,9.8,10.3,9.6,9.5,9.5,9.8,9.4,9.1,9.1,10.7,9.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"07_create10k","values":{"total":[384.4,382.6,381.6,385.3,383.8,383.8,383.5,388.6,383.8,385.7,384.7,384.3,385.6,382.5,383.5],"script":[151.9,151.3,150.1,151.5,152.3,151.7,151.7,153.1,151.9,152.1,151.4,151.8,152.7,151.4,150],"paint":[225.1,224.2,224.1,226.1,224.4,224.7,224.8,227.6,224.6,226.4,226.2,225.1,225.8,224,226.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.2,45.4,46.4,46.6,47.2,45.7,45.8,46.4,46.8,46.4,48,45.3,46.1,46.1,46.2],"script":[19.1,19.2,19.4,18.8,18.7,18.6,18.8,19.3,19.6,19.6,18.6,18.9,19,19.1,18.8],"paint":[26.1,25.4,26.2,26.9,27.5,26.2,26.2,26.2,26.3,25.9,28.5,25.6,26.3,26.2,26.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.4,10,11.5,11.6,10.8,11.6,10.7,10.9,10.2,10.4,10.2,10.5,10.3,9.9],"script":[8.9,8.5,8.6,9.7,9.8,9.3,9.6,8.6,8.9,9.3,8.9,8.2,8.7,9.1,8.4],"paint":[1.1,1.1,0.6,0.7,1.4,1.3,1.9,1.4,0.8,0.8,1.4,1.7,1.7,0.3,1.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5977210998535156]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.044669151306152]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.07186222076416]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.159616470336914]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1341495513916]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"01_run1k","values":{"total":[33.2,29.1,34.1,30.2,32.8,33.2,34,29.2,30.6,29.8,32.2,30.7,28.2,30.9,28.3],"script":[4.6,4.6,4.8,4.8,4.8,4.7,4.8,4.8,4.7,4.7,4.6,4.9,5.2,4.7,5.4],"paint":[21.6,22,22.2,22.4,22,22.4,22.5,22.3,22.2,22,21.9,22.4,22.7,21.8,22.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"02_replace1k","values":{"total":[31.6,37.3,36.2,36.6,35.3,36.1,35.6,35.4,35.9,35.7,37.1,35.6,36.5,31.2,32.3],"script":[8,7.5,7.7,7.2,7.3,7.6,7.7,7.3,7.3,7.4,7.2,7.6,7.2,7.8,7.6],"paint":[23.2,22.1,22.5,22.4,22.3,22.2,22.3,22.5,22.3,22.3,22.1,22.3,21.7,23,22.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.2,12.6,12.9,13.9,27.9,30.3,28.7,28.6,13.6,12.1,12.5,12.7,28.6,28.8,29.7],"script":[2.3,2.6,2.3,2.7,2.8,3.4,2.7,2.7,3.6,2.2,3.2,3.3,2.9,2.6,3.8],"paint":[10.8,9.1,8.3,9,9.2,10.1,9.2,9.4,8.4,9.4,9.1,9.3,9.1,10.2,9.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"04_select1k","values":{"total":[5.2,3.7,3.9,3.4,3.7,3.4,7.8,3.6,3.9,3.8,3.7,4.3,3.6,3.2,3.3,4.2,4.9,4.2,3.4,3.8,4,4.1,3.5,3.7,3.4],"script":[1.4,1,2,1.6,1.6,1.5,0.8,1.5,1.6,1.5,2.1,1.7,1.2,0.3,1.1,1.8,1.1,2.4,1.5,1.7,1.8,1.4,1.6,1.3,1.8],"paint":[1.8,2.3,1.4,1.7,1.8,1.1,2.1,2,1.5,1.6,1.4,1.7,1.5,1.2,2.1,2.3,1.7,1.7,1.1,1.5,2,2.6,1.1,2.3,1.4]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"05_swap1k","values":{"total":[14.9,33.9,29.1,30.9,31.1,30.3,14.5,13.7,14.2,13.8,14.4,32.8,29.8,13.9,14.6],"script":[0.9,2,1.7,2,1,1.5,1.6,1.8,1.3,1,1.6,1.8,1.3,1.6,1.6],"paint":[12.7,15.4,11.4,12.5,12.8,12.2,12.4,11.8,12.2,11.5,11.3,14.9,12.5,11.6,12]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[9.8,13.2,10,10.1,9.7,11.3,9.8,12.1,9.7,9.7,9.8,9.9,9.7,10,9.4],"script":[0.9,1,0.7,0.9,0.7,0.7,0.7,0.7,0.8,1,0.9,0.7,0.8,0.9,0.7],"paint":[8.6,9,9,8.6,8.6,8.8,8.8,9,8.7,8.2,8.6,8.7,8.7,9,8.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"07_create10k","values":{"total":[285.1,288.8,292.6,289.9,288.2,286.4,287.8,284.3,289.9,288.5,293.2,290.9,288.8,288.4,289.5],"script":[54.2,54.7,54.9,55.4,55.1,56.3,55.7,55.6,54.9,54.9,54.7,54.8,56.6,55.1,55.8],"paint":[227.3,227.9,227.1,226.2,227.8,226.6,226.5,225.3,225.7,227.5,228.9,227.2,227.5,227.5,228.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.9,36.3,31.8,36.1,36.5,36.5,36.3,36.3,36.1,35.8,33,36.6,37,36.3,36.1],"script":[5,5.1,5.2,5,5.2,5.3,5.1,5.1,5.2,5.2,5.2,5.4,5.1,5.1,5.1],"paint":[26.3,26.3,26.2,26.2,26.5,26.5,26.4,26.5,26.1,25.9,27.3,26.2,26.3,26.1,26.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.2,9.9,26.8,27.1,10.8,25.9,10,27,10,10,26.1,9.5,9.9,26.5],"script":[7.9,8,7.5,9,9.5,7.9,8.2,7.5,9.3,8.3,7.7,8.4,7.8,7.8,8.6],"paint":[0.3,1.9,1.6,1.5,0.3,1.4,1.8,1.6,0.7,1.2,1.6,1,1.6,1,0.9]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5475978851318359]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.968770980834961]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0763368606567383]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6267261505126953]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.886277198791504]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[32,33.4,32.4,30.8,34.3,31.2,30.7,30.3,33.8,32.9,33.9,35.7,34.6,35,33.9],"script":[6.3,6.2,5.7,5.8,5.8,6.1,6,6,6,5.9,5.6,5.7,5.6,5.7,5.7],"paint":[21.7,22,21.6,22,21.8,22.1,21.9,21.8,22.1,22.2,21.7,21.5,21.7,21.9,21.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[35.2,35,33.4,31.6,33.1,33,32.7,32.4,32.2,31.8,31.5,35,34.4,37.5,31.9],"script":[8.9,8.5,8.7,8.6,8.8,8.8,8.8,9,8.7,8.7,8.4,8.8,8.8,8.4,8.4],"paint":[23,22.4,22.8,22.7,23.1,22,22.7,22.7,22.7,22.7,22.8,23.2,22.2,22.2,22.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.2,27.7,10.6,26.9,11.2,12.6,27.8,27.5,11.3,26.7,12,11.2,27.7,11.8,11.1],"script":[1,1.6,1.1,1.5,1.2,0.4,1.1,1.4,1,2.4,1,1.3,0.9,0.8,1.1],"paint":[9.3,10.3,9.4,9.8,9.7,11.2,10.3,10,10,8.5,10.4,8.8,10.9,8.8,9.8]}},{"framework":"imba-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.6,3.3,3.7,6.4,2.8,6.9,3.8,3.4,3,2.8,3.4,3.4,3.4,2.6,3.7,3.2,3.4,3.3,3.4,8,3.6,5.2,3.6,3],"script":[1.6,1.2,1.1,1.1,0.6,1.2,0.6,1.5,0.5,0.8,0.8,1.1,1.1,1.2,0.9,0.6,1.1,1.1,0.8,1.2,1.4,1.5,0.9,1.1,1.1],"paint":[1.6,1.8,1.3,2.4,1.7,1.3,1.3,1.8,1.1,2,1.1,1.6,1.2,1.1,1.1,2.1,1.3,1.3,2.1,2.1,2.4,1.3,1.7,1.1,1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[15.7,29.7,32.8,30.5,30.4,14,30.3,29.5,30.6,13.7,13.8,29.5,15.5,30.9,30.6],"script":[1.7,0.9,2.2,0.9,1.2,1,1.4,1,0.3,0.3,0.3,1.9,1.7,1,1.2],"paint":[13.4,12.6,13.7,13.5,13.8,11.7,14.1,13.3,14.9,12.5,12.3,13,13.1,14.6,13.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,9.2,11,9.8,11.6,12.7,14.2,10.1,12,12.2,9.5,12.1,11,9.8,10.4],"script":[0.3,0.6,0.6,0.5,0.3,0.5,0.6,0.6,0.9,0.3,0.4,0.4,0.5,0.6,0.7],"paint":[9,8.3,8.8,9.1,8.6,9,8.4,8.8,9,8.9,9,8.5,8.8,9.1,8.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[290.8,296.7,293.1,297.5,290.9,293.4,293.8,291.8,291.9,289.8,297.7,291.8,292.6,291.9,293.6],"script":[69.3,71.5,70.9,69.1,69.2,71.6,71.8,71.5,69.9,70.7,70.2,71,70.6,71,70.4],"paint":[218.1,217.5,218.7,218.2,216.5,218.3,218.5,216.7,218.4,215.3,218.6,217.2,218.4,217.3,218.3]}},{"framework":"imba-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.5,62.1,61.1,66.3,61.8,67.8,62.1,65.7,61.7,61.9,65.1,67.3,60.8,66.6,68],"script":[15,14.9,14.6,14.7,14.5,14.7,15.1,14.4,15,14.6,14.2,14.9,14.7,14.3,14.3],"paint":[46.3,46.7,46,46.5,46.8,47.5,46.5,46.4,46.2,46.8,46,46.6,45.6,46.8,46.4]}},{"framework":"imba-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.5,11.5,27.4,11.2,27,26.6,10.2,10.2,11.7,27.1,27,27.3,11,10.4,27.2],"script":[10.9,8.1,9.4,8.2,9.6,8.6,8.7,8,9.8,9.1,9.5,9.8,9.4,8.4,9.4],"paint":[0.7,1.9,1.4,1.9,0.5,1.1,1,0.3,1.7,1.9,0.6,2,0.3,0.2,1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.848170280456543]}},{"framework":"imba-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6432600021362305]}},{"framework":"imba-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6237621307373047]}},{"framework":"imba-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0587453842163086]}},{"framework":"imba-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.993185997009277]}},{"framework":"imba-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.7]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,29.5,29.8,30.3,30,29.9,30.3,30,30.6,29.6,30.2,29.9,30.5,30.3,29.9],"script":[7.5,7.5,7.7,7.9,7.7,7.8,7.9,7.8,8.5,7.4,7.7,7.7,7.9,8.1,7.8],"paint":[21.9,21.4,21.5,21.8,21.8,21.5,21.9,21.6,21.6,21.6,21.9,21.7,22,21.6,21.6]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[61.5,61.7,61.5,61.4,62.2,61.5,61.7,61.6,61.2,61.8,61.4,62.4,61.2,61.2,60.8],"script":[39.7,39.9,39.9,39.6,40.1,39.4,40.1,39.9,39.2,39.7,39.7,39.8,39.4,39.8,39.1],"paint":[21.4,21.3,21.2,21.3,21.6,21.7,21.2,21.3,21.6,21.6,21.3,22.1,21.3,21,21.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,20,21.2,19.8,20.1,20.7,21.3,20.1,20.7,22.5,20.7,20,20.4,19.7,20.5],"script":[8.8,9.1,8.3,8.9,8.9,9.1,9.1,8.8,9.3,9.1,9.2,9.6,8.9,8.2,9.2],"paint":[9.6,7.9,11.1,8,8.3,8.8,10.1,9.4,9.6,10.2,9.4,9.3,9.7,9.6,9.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[11.8,12.4,11.3,13.1,11.9,11.7,11.6,12.1,12.1,11.4,12.4,12.3,12.9,12.1,11.9,11.5,11.5,12.4,12.5,12.2,11.6,11.9,11.6,12.2,12],"script":[8.4,9.7,8.4,9.7,8.9,8.8,8.5,9.2,8.9,8.4,9.5,9.4,9.9,8.8,9,8.6,8.8,9.1,9,9.7,8.7,8.8,8.5,8.9,8.6],"paint":[2.4,1.2,1,3,1.8,1.2,1.3,2.2,2.1,1.3,1.9,0.8,2.8,2.3,2.3,2,1.5,2.2,2.5,1.2,1.9,1.1,2.8,1.7,2.4]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[108.4,110.3,109.2,105.8,109,108.2,108.8,109.3,106.8,108.3,107.6,109,106,106.9,108.4],"script":[20.9,21.4,21,20,21.4,21.1,22.4,21.2,20.8,22.4,20.5,21.2,21.6,21.3,21.1],"paint":[84.8,87.4,86,82.6,86.4,85.9,83.8,85.8,83.3,82.6,83.9,86.2,82.8,82.8,85.5]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[58.1,57.2,58.3,58.2,59.5,57.9,57.6,57.8,57.2,57.4,58.1,58.6,57.6,57.8,57.3],"script":[13.1,13.3,13,13.4,13.9,12.9,13.2,13.8,12.4,12.9,13.7,13.2,12.7,12.8,13],"paint":[43.3,42,43.5,43.7,44.2,43.5,43,42.3,43.4,42.8,42.4,43.7,43.3,43.8,42.9]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296.4,297.9,300.8,297.2,296.9,300,297,296.8,298.4,296.8,296.9,298,298,300.9,301],"script":[76.8,76,76.4,75.8,75.1,77.3,76.3,76,77.8,75.2,76.4,76.7,75.8,75.8,77.5],"paint":[212.5,215,217.3,214.4,214.8,215.8,213.5,213.8,213.6,214.3,213.6,214.3,215.3,216.4,216.3]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,35.9,36.2,36.6,36.6,36.7,36.3,36.1,36.4,36.2,36.6,36.1,36.6,36.6,36.1],"script":[9.4,9.1,9.4,9.4,9.6,9.4,9.3,9.4,9.2,9.3,9.5,9.1,9.4,9.5,9.2],"paint":[26,25.9,25.9,26.3,26.1,26.3,26.1,25.8,26.3,25.9,26.2,26,26.3,26.1,26]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,12.2,12.5,13.9,13.2,12.9,12.4,13.1,12.5,12,11.9,12.6,12.8,12.5,13.1],"script":[10.2,10.8,10.7,11.9,11.1,10.8,10.8,11,9.9,10,9.6,10.4,10.1,10.5,11.5],"paint":[1,0.2,0.4,0.9,0.5,1.1,1.1,1.1,1.5,1.1,0.9,2,2.3,1.6,1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6214685440063477]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.976534843444824]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.997494697570801]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8504953384399414]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.28676414489746]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.4,24.5,24.5,24.5,24.9,24.9,24.5,24.8,24.5,24.5,24.5,24.7,24.8,24.6],"script":[2.9,2.9,2.9,2.8,2.9,2.9,3.1,2.9,3,3,2.9,2.9,3,2.9,3],"paint":[21.5,21.1,21.3,21.3,21.2,21.7,21.5,21.1,21.4,21.1,21.3,21.3,21.3,21.5,21.3]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"02_replace1k","values":{"total":[27.6,27.5,28.8,27.7,27.9,28,27.6,28.3,26.8,27.2,27.2,28.1,27.5,27,27.1],"script":[5,4.9,4.9,5,5,5,5.2,5,4.8,4.8,4.9,5.3,4.9,4.9,4.9],"paint":[22.3,22.1,23.5,22.3,22.5,22.5,21.9,22.4,21.6,22,21.9,22.2,22.2,21.7,21.7]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.9,11.7,11.7,12.2,11.3,11.9,13.3,11.3,11.1,11.6,13.4,11,11.3,10.4],"script":[1.6,1,1.3,1.2,1.3,0.6,1.3,0.9,1.2,1.2,1.1,1.8,1.2,1,0.6],"paint":[9.4,9.8,9.4,9,9.8,9.5,9.7,11,9.4,8.9,9.5,10.4,8.8,9.1,8.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.8,3.1,2.2,2.8,2.5,2.5,3,2.2,3,2.7,3.1,2.8,3.9,2,3,2.3,2.8,3,3.2,3.3,2.8,2.5,2.8,2.8],"script":[0.1,0.6,0.8,0.1,0.9,0.9,0.9,0.8,0.1,0.8,0.8,1.1,0.8,0.8,0.1,0.1,0.1,0.5,0.1,1.1,1,0.7,0.7,0.1,0.8],"paint":[1.4,1.5,1.1,1.9,1.1,1,1.1,1.3,1.5,2,1.8,1.8,1.2,3,1.7,1.9,1.3,1.4,2.6,2,1.8,1.7,1.5,1.6,1.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"05_swap1k","values":{"total":[13.4,12.8,14.4,13.5,13,13.4,13.6,12.9,14.3,15.7,13.2,13.8,13.7,13.1,13.5],"script":[1,0.8,1.1,1,0.6,0.9,0.9,1,0.6,1.6,0.2,1,0.9,1.1,0.2],"paint":[10.4,10.9,12.1,11.4,10.9,11,11.8,11,12.7,12.5,11.2,11.7,11.7,9.7,12.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,9.9,11,10.6,10,10.7,10.3,10.4,10.8,10.4,10,10.4,10.4,10.5],"script":[0.5,0.4,0.1,0.4,0.3,0.1,0.4,0.4,0.3,0.5,0.1,0.2,0.3,0.3,0.3],"paint":[9.7,9.5,9.2,10.3,9.6,9.3,9.7,8.6,9.7,9.7,9.2,9,9.7,9.4,9.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"07_create10k","values":{"total":[258.9,261.2,260.7,259.1,260.8,262,260.7,262.2,263.1,260.8,263.2,261.9,260.9,263.7,260.4],"script":[32.9,32.9,32.8,32.2,32.7,33,32.9,32.4,32.9,32.4,33.5,32.3,32.4,32.8,32.4],"paint":[219,221.1,220.7,219.7,221.1,221.4,220.2,222.2,223,221.3,222.4,222.2,221.4,223.4,220.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.5,29.6,29.3,28.9,30.2,30.2,29.6,29.5,29.1,29.4,29.5,33,29.5,29.7],"script":[3.3,3.4,3.6,3.7,3.4,3.6,3.6,3.7,3.7,3.7,3.5,3.8,3.3,3.4,3.6],"paint":[25.1,25.3,25.2,24.8,24.6,25.9,25.8,25.2,25,24.6,25.1,25,28.9,25.4,25.3]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.5,9.1,10.8,11.1,9.5,9,9.7,9.9,10.2,10,12,9.8,9.5,9.2],"script":[8.1,8.5,7.8,8.6,8.7,7.2,7.5,7.5,7.5,7.9,8,10.4,7.4,7.6,7.7],"paint":[0.3,1.3,0.3,1,1,1.7,0.8,1.3,0.7,1.2,1.8,0.6,1.2,1.7,0.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5350837707519531]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7847232818603516]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8461036682128906]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7868881225585938]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.106175422668457]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[23.8,23.7,23.7,23.6,24.1,23.8,23.4,23.6,23.4,23.8,24,23.8,23.6,23.8,23.9],"script":[1.9,1.9,1.8,1.8,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.9],"paint":[21.5,21.4,21.4,21.4,21.9,21.5,21.1,21.4,21.2,21.5,21.7,21.5,21.4,21.5,21.7]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[26.6,27.4,26.4,26.3,27.1,26.8,27.1,26.9,26.9,27,27,27.2,27.2,27.2,27],"script":[3.8,4,3.9,3.9,4,4,4.1,4.1,4.1,4.1,4,4.3,4.1,4.2,4.1],"paint":[22.4,22.9,22,22,22.7,22.4,22.6,22.5,22.4,22.5,22.6,22.6,22.6,22.5,22.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.7,11,10.5,10.1,10.8,11.6,12.4,11.3,10.4,10.4,10.9,10.8,10.9,11.3],"script":[1.7,1.2,1,1.1,1.1,1.2,0.9,1.4,0.9,0.9,1,0.9,0.9,0.9,0.8],"paint":[8.7,9.2,9,8.1,7.8,8.8,9.8,10.1,9.5,8,7.8,8.8,8.9,8.9,9.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[3,2.9,2.7,2.6,2.5,2.7,2.8,2.6,3.3,3,2.8,2.5,3.3,2.6,2,2.6,3.2,2.7,2.7,2.8,3.5,3.2,3,3.1,2.5],"script":[1.2,0.3,0.9,0.2,0.9,0.8,0.2,0.2,0.8,0.2,0.9,0.6,0.9,0.2,0.1,0.2,0.9,0.8,0.9,0.2,1.4,0.9,0.2,0.9,0.6],"paint":[1,2.5,1.7,2,1.1,1.2,2.5,2.3,1.6,2.7,1.8,1.9,2.2,1.5,1,2.3,2.1,0.9,1.2,1.4,1.4,1.6,2.7,1.3,1.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.3,13.6,13.5,13.4,13.8,13.8,13.3,13.8,14.2,13,14.1,13.4,13.9,13.6],"script":[0.7,1.3,1.2,0.6,0.7,0.9,1.1,0.3,1.1,0.6,0.2,1.3,0.8,1.2,0.7],"paint":[11.7,10.6,11.1,11.6,11.4,11.8,11.9,12.4,11.1,11.6,11.6,11.7,11.3,11.7,11.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,9.9,10,10.7,10.6,10.8,10.5,10.7,10.6,10.8,10.6,10.7,10.4,10.6],"script":[0.5,0.2,0.2,0.3,0.4,0.3,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.2,0.3],"paint":[9.7,9.5,9.2,9.4,9.7,9.6,9.7,9.3,9.7,9.4,9.6,9.2,9.4,9.3,9.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[262,259.9,258.6,262,260.7,260.3,260.7,259.4,260.3,261.5,260.8,260.9,259.7,261.7,259.4],"script":[26.6,26.7,26.3,27,26.8,26.6,27,27.2,27.2,26.4,26.7,26.5,26.4,26.4,26.9],"paint":[228.1,225.8,224.9,227.7,226.5,226.3,226.2,224.8,225.9,227.5,226.8,227.1,225.8,228.1,225.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.7,28.5,28.4,28.5,28.9,29.1,28.1,29.5,28.7,28.6,29,28.8,28.9,28.5,28.8],"script":[2.1,2.1,2.1,2,2.1,2.2,2,2,2.1,2.1,2.1,2.1,2,2.1,2.1],"paint":[25.8,25.7,25.5,25.7,26,26.1,25.3,26.6,25.8,25.8,26.1,25.9,26.1,25.7,26]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10.4,9.8,9.4,9.8,10.7,9.7,9.5,10.7,10.1,10.1,10.2,9.6,9.9,9.7],"script":[7.7,8.4,7.9,7.9,7.9,8.4,7.7,8,8.8,8.1,8.2,8.2,8.2,7.9,7.7],"paint":[1.1,1.1,0.3,0.9,0.2,1.3,0.8,0.7,1.7,1.6,1.7,0.9,0.3,0.9,1.4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.589665412902832]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.292473793029785]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.303622245788574]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6993551254272461]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.6083402633667]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,32.7,32.6,32.3,32.3,31.7,32.7,32.5,32.1,31.8,32.7,32,31.9,31.9,32.4],"script":[9.8,10.2,9.9,10,10,9.6,10.1,10.3,10.1,9.8,10.2,9.9,9.9,9.9,10.1],"paint":[21.5,22,22.2,21.7,21.7,21.5,22.1,21.6,21.5,21.5,22,21.6,21.5,21.5,21.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.3,39.1,38.5,38.7,38.6,38.1,38.7,39,38.5,38.4,38.3,39,38.6,38.6,38.1],"script":[14.8,15,14.9,14.8,14.7,14.7,14.9,15,14.8,14.9,14.8,14.8,14.7,15,14.7],"paint":[22.9,23.5,23,23.4,23.4,22.9,23.2,23.5,23.2,23,23,23.6,23.3,23,22.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.3,10.9,11,10.6,11.4,11,11.3,12.5,11,10.9,11.5,11,12.2,11.2],"script":[0.5,0.3,0.5,0.9,0.5,0.9,0.8,0.9,0.7,0.9,0.6,0.2,0.2,0.6,0.9],"paint":[9.2,8.9,9.4,9.2,9.1,8.9,9,9.5,10.8,9.1,9.7,9.5,9.8,10.4,9.2]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.6,3.2,2.8,2.8,2.5,2,2.7,2.1,3,2.3,2.8,2.5,3.1,2.5,2.5,2.4,3,2.2,2.5,2.1,2.4,2.1,1.9,2.8],"script":[0.7,0.4,0.9,0.1,0.8,0.1,0.1,0.7,0.1,0.1,0.5,0.1,0.1,0.8,0.6,0.1,0.1,0.7,0.1,0.1,0.4,0.6,0.3,0.1,0.8],"paint":[1.8,2.1,1.8,2.6,1.9,2.3,0.9,1.9,1.9,2.8,1.4,2.6,2.1,2.2,1.4,2.3,2.1,2.1,1.7,1.2,1.6,1.3,1.7,1,1.9]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,15.6,16.1,15.4,15,14.9,15.8,15.7,14.5,17.5,15.9,15.3,15.2,15.9,14.9],"script":[2.2,2.2,2.5,1.4,1.9,2.1,2.7,1.5,1.7,2.7,2.6,2.5,2.4,1.8,1.9],"paint":[11.6,12,12.7,12.7,12.1,11.5,12.1,12.7,11.7,13.8,12.4,11.4,11.6,12.9,12]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.6,11.5,11.6,11.6,11.6,11.5,11.9,12.1,11.9,11.5,11.7,11.6,12.2,11.6],"script":[1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.5,1.3,1.3,1.3,1.3],"paint":[9.5,9.4,9.5,9.4,9.7,9,9.6,9.8,10,10,9.5,9.2,9.8,10.3,9.1]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"07_create10k","values":{"total":[337.8,337.9,341.3,339.8,338.9,341.1,339,340.3,339.7,337.9,337.8,336.6,336.9,337.1,337.6],"script":[110.6,110.5,111.5,112.5,111.1,110.6,111.8,112.1,111,109.8,109.5,109.8,110,109.6,109.2],"paint":[220.2,220,222.4,220.1,220.9,222.9,220.2,221.3,221.7,220.8,221.2,219.9,220,220.5,221.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,37.8,38.1,38.3,38.6,38.4,38,38.8,38.4,38.7,38.7,38.4,38.3,38.2,38.8],"script":[11.5,11,11.2,11.3,11.6,11.5,11.4,11.3,11.3,11.5,11.5,11.4,11.4,11.7,11.7],"paint":[26.3,25.8,26,26.1,26,25.9,25.7,26.5,26.2,26.3,26.3,26.1,26,25.6,26.3]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.4,18.7,18.4,18,18.2,19.1,17.8,18.9,18.5,18,18.6,18.8,18.9,18.2,18],"script":[16.1,16.9,16.7,16.6,16.4,17.1,16.7,17.2,16.7,16.1,17.2,16.9,16.9,16.4,16.2],"paint":[1.3,0.6,0.6,0.2,0.9,1,0.9,0.9,0.7,1.1,1.2,1.6,0.2,0.9,0.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6391324996948242]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.451436996459961]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.480386734008789]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.007399559020996]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.12287139892578]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.3]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"01_run1k","values":{"total":[53.2,52.4,53.8,53.1,53.1,53.2,53,53,52.8,53.6,54.1,53.7,53.4,52.5,53.9],"script":[29.6,28.7,30,29.5,29.2,29.5,29.1,29.5,29.1,29.8,29.6,29.9,29.8,29.1,30],"paint":[23.1,23.3,23.3,23.2,23.4,23.3,23.4,23,23.3,23.4,24.1,23.2,23.1,22.9,23.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"02_replace1k","values":{"total":[67.4,67,69.9,69.9,68.7,68.7,69.2,68.4,67.8,68.1,67.4,68.2,67.9,67.6,67.2],"script":[43.5,42.9,45.2,45.6,44.3,44.7,44.7,44.4,44,43.7,43.3,44.1,43.6,43.5,43.3],"paint":[23.4,23.6,24.3,23.8,23.9,23.5,24,23.5,23.3,23.9,23.6,23.7,23.8,23.6,23.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.9,12.8,13.8,13.5,12.8,13.3,13.2,13.4,12.6,13.6,12.9,13.8,12.9,13.7],"script":[2.1,1.9,1.5,1.5,1.4,1.6,1,2.1,2.4,1.4,1.8,1.8,1.5,1.7,1.2],"paint":[11,9.4,10.3,11.6,10.6,9.5,10.9,9.7,9.4,9.2,10.4,9.6,10.9,9.8,11]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"04_select1k","values":{"total":[11.7,11.4,11.1,10.9,10.6,11.6,11.1,11,10.7,10.9,11.1,11.2,11,11.7,11.2,11.3,12,10.6,10.6,10.8,11.6,11.9,10.4,10.7,11.7],"script":[8.2,8.4,7.9,7.3,7.6,8.1,7.9,8.2,7.6,7.5,8,8.4,8.2,8.3,8.3,8.1,8.3,7.5,7.1,7.3,8.5,8.4,8,7.8,8.7],"paint":[2.6,1.2,1.9,2.6,2.5,2.1,2.3,1.7,2.5,2.1,2.1,1.9,1.8,2.3,1.2,1.5,2.6,2.8,2.6,2.3,2,2,1.1,1.4,2.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"05_swap1k","values":{"total":[106.7,111.1,108.1,114.9,106.6,112.4,111.8,112.4,111,111.5,107.6,109.3,113.5,111.1,108.8],"script":[18.8,19.8,20.1,21.6,19.7,20.1,21.1,21.9,19.9,20.4,18.3,19.5,20.7,21.2,20.6],"paint":[86.2,90,86.6,91.8,85.4,90.3,88.5,88.8,89.2,89.7,87.3,88.5,91.4,88.4,85.9]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,13.4,13.1,13.3,13.3,12.8,12.6,12.8,13.4,13.1,12.9,12.9,13.1,13.1,12.8],"script":[1.4,1.5,1.6,1.8,1.6,1.5,1.4,1.5,1.8,1.6,1.5,1.5,1.5,1.6,1.4],"paint":[10.7,11.2,10.4,10.9,11.2,10.6,10.9,10.4,10.7,10.8,10.4,11.1,10.9,10.9,11.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"07_create10k","values":{"total":[480.4,481.8,479.8,478.9,480.8,480.5,485.6,481.1,477.8,482.5,481.5,480.8,484.1,482.1,480.1],"script":[233,232.3,233.2,235,233.6,234.2,234.9,232.7,231.7,233.9,234.1,234.2,235,235.4,233.3],"paint":[238.7,241.3,238.3,235.3,238.8,238.1,242.2,240.2,237.8,240.3,239,238.4,240.4,238.5,238.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.6,59.7,60.9,59.1,59.6,60.5,59.9,59.9,59.6,60.1,60.7,59.5,59.5,60.8,59.8],"script":[30.1,31.8,33.1,31.6,31,31.9,32.1,30.8,31.3,31.7,31.1,30.6,30.9,32.3,31.4],"paint":[27.5,27,26.9,26.6,27.6,27.6,26.8,28.1,27.4,27.5,28.5,27.9,27.6,27.5,27.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[40.3,46.9,40.2,42.8,38.8,43.5,41.4,38.7,39.5,41.1,43.2,40.3,38,39.2,37.6],"script":[38.5,45.5,38.2,40.8,37.3,42,39.9,37.6,38.5,39.4,41.3,38.7,36.8,37.9,36],"paint":[1,1.2,1.9,1.3,1.4,1,1.4,1,0.9,1.6,1.8,0.6,1.2,1.2,1.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.820317268371582]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.580552101135254]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.606609344482422]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.201192855834961]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.30915069580078]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[70.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.8]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"01_run1k","values":{"total":[25.3,25.7,25.2,25.1,25.1,25.1,25.1,25.3,25.4,25.3,26.2,25.2,25.2,25.1,25],"script":[3.9,4.2,3.9,3.9,3.8,3.9,3.8,3.8,3.9,3.8,4,3.9,3.8,3.9,3.8],"paint":[21,21.1,20.9,20.9,20.9,20.8,20.9,21.1,21.2,21.1,21.8,21,20.9,20.8,20.8]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"02_replace1k","values":{"total":[28.2,29,28.2,29.1,28.8,28.2,28.7,29.6,28.3,28.5,29,28.9,29.4,28.6,28.4],"script":[6.1,6.4,6.1,6.2,6.2,6.1,6.3,6.2,6.2,6.3,6.3,6.3,6.5,6.3,6.2],"paint":[21.5,22.1,21.5,22.3,22,21.6,21.8,22.8,21.6,21.6,22.1,22,22.3,21.7,21.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.9,14.9,13.8,11.5,11.6,12,12,11.6,11.9,11,11.9,11.5,11.9,11.7],"script":[1.8,2.1,1.8,2.7,1.5,1.5,1.1,1.8,1.4,1.8,1.5,1.7,1.7,1.8,1.3],"paint":[9,8.1,10.7,9.2,9.1,9.1,10.2,9.3,9,8.2,9.2,9.3,9.6,8.6,9.2]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.7,3,4.5,2.2,3.4,2.2,2.7,2.8,2.3,2.6,2.2,2,2.5,2.4,2.4,2.7,3,2.7,2.7,2.4,2.7,2.2,2.4,3],"script":[0.1,0.5,0.8,0.9,0.6,0.4,0.1,0.8,0.6,0.1,0.5,0.1,0.1,0.3,0.6,0.1,0.5,0.9,0.9,0.1,0.2,0.6,0.1,0.1,1.1],"paint":[2.7,2.1,1.4,1.7,1,1.6,2,1,2.1,2,1.4,2,1.1,0.4,1.5,2.2,0.6,1.9,1.4,1.2,1.5,1.8,2,1.4,1.3]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"05_swap1k","values":{"total":[14,14.4,13.8,14.2,13.6,13.7,14,13.4,14,15,14,14.1,14.4,14,15.4],"script":[1.3,1,0.9,1.8,1.2,0.7,1,0.6,1.2,1.5,1.1,1.2,1.3,0.9,1.3],"paint":[12.4,11.8,12,10.8,11.3,12.4,11.6,11.5,11.7,11.7,11.1,11.2,11.1,12.1,13.1]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.4,10.8,11,10.4,10.3,10.3,10.4,10.4,10.4,10.4,10.7,10.8,10.4],"script":[0.4,0.3,0.3,0.5,0.3,0.3,0.5,0.5,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9.3,9.3,9.6,9.7,10.2,9.6,9.4,9,9.5,9.5,9.6,9.7,9.5,9.7,9.4]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"07_create10k","values":{"total":[265.6,265.5,266.1,263.3,265,263.5,264.8,263.8,265.3,264.1,265.1,265.1,265.2,267.9,266],"script":[44.8,44.3,44.7,44.2,44.3,44.2,43.9,44.5,44.7,44.3,44.2,44.4,44.9,44.7,44.6],"paint":[213.8,214.3,214.4,212.3,213.9,212.4,213.8,212.3,213.6,213,214,213.4,213.4,216.2,214.5]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.3,30,29.6,29.5,29.8,28.5,29.9,30.1,29.2,29.7,29.5,29.9,28.5,28.5,29.6],"script":[4.1,3.7,3.8,3.8,3.8,3.6,3.6,4.1,3.6,3.7,3.8,3.8,3.6,3.6,3.8],"paint":[26.5,25.5,25,24.9,25.1,24.2,25.6,25.2,24.8,25.2,24.9,25.4,24.1,24.2,25]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.5,10.8,11.4,10.7,11.2,11.2,11.2,10.4,11,11,10.5,11.8,10.7,11.4],"script":[9.1,8.5,8,9.2,8.5,9.3,8.8,9,8.2,8.6,8.3,8.6,9.9,8.5,9.4],"paint":[0.3,1.1,1.9,1.5,1,0.7,1.4,1.2,1.2,0.7,1.7,0.7,0.8,0.4,0.9]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7653446197509766]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.192120552062988]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.145864486694336]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0154342651367188]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.1110897064209]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"01_run1k","values":{"total":[60,60,60.5,60.2,59.7,60.3,59.6,59.9,60.1,59.9,60.6,60.6,59.6,59.7,60.3],"script":[37.4,37.1,37.1,37.4,37,37.1,36.9,37,37,37.1,37.3,37.6,36.6,36.6,37.2],"paint":[22.1,22.4,22.9,22.4,22.2,22.7,22.3,22.4,22.7,22.3,22.8,22.5,22.6,22.7,22.6]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"02_replace1k","values":{"total":[88.5,87.3,88.2,87,89,87.4,89,88.4,87,88,88.8,88.6,89,89,89.3],"script":[64.3,67.3,67.8,62.9,64.6,67,64.6,64.2,67.2,68.1,68.5,63.9,64.3,64.5,65],"paint":[23.6,19.5,19.9,23.6,24,19.9,23.8,23.7,19.4,19.4,19.9,24.2,24.2,24,23.8]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,14.5,15.5,17.2,15.1,17,16.4,16.1,15.7,15.6,15.2,16.1,16.6,15.7,15.6],"script":[3.9,3.8,4,5,4.1,4.2,4.4,4.7,4.4,3.9,4.1,4.1,4.3,4.2,3.4],"paint":[10.3,9.3,10.3,10.9,9.6,11.7,10.7,10.8,10.1,10.4,10.4,10.6,10.6,11.3,11.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"04_select1k","values":{"total":[8.1,6.7,7.4,6.8,7.4,7.8,7.9,7.9,8.1,7.2,6.9,9.2,7.9,7.6,7.2,7.4,7.1,7,7.2,7.1,8.2,6.8,7.3,7,8.4],"script":[4.7,4.6,4.6,4.6,5,4.6,4.9,5.2,5.1,4.8,4.6,6,5.6,5.1,5.1,4.6,4.6,4.3,4.6,4.9,5.3,5.3,5,4.8,5.8],"paint":[3.2,2,2.6,1.1,1.9,2.6,2.8,2.1,1.8,1.8,2.2,2,2.2,1.5,1.6,1.8,2.3,2.6,1.7,1.2,1.9,1.3,2.1,1.6,2.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.6,105.7,111.1,106,106.4,105.9,111.9,106,107,108,105.9,108.5,104.7,106.2,107.3],"script":[15.8,15.6,17.2,15.8,15.8,15.4,17.5,15.5,16.7,17,16.4,16.3,15.5,16.1,16.1],"paint":[88.1,87.4,91.7,87.8,87.9,88.1,92.7,88.3,88.9,88.4,88.1,90.4,86.4,87.1,88.9]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,12.8,13.5,12.4,13.1,12.7,12.2,12.7,12.7,12.5,12.8,12.7,12.8,13.4,12.7],"script":[2.2,1.8,1.9,1.9,1.9,1.8,1.9,1.8,1.8,2,1.9,1.9,2.1,2.2,1.9],"paint":[9.8,10.1,10.9,9.9,10.6,10,9.5,10.2,10.2,10,10.2,10,10,10.1,10.2]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"07_create10k","values":{"total":[483.7,482.1,484.1,484.1,483.2,480.5,489.4,478.4,484.6,482.2,485.7,483.8,486.5,483.5,485.6],"script":[241.3,239.8,240.5,239.9,240.9,238.5,244.2,237.9,239.5,240,241.1,239.8,244.3,240.8,241.8],"paint":[234.5,234.7,235.7,235.5,234.4,234.4,237.2,232.9,237.2,234.4,236.5,236.3,234.6,234.9,236.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[63.5,62.9,62.4,63.2,63.2,62.9,63.9,63,63.7,63.6,63.2,62.4,63.7,62.8,63.1],"script":[36.1,35.9,35.3,36,35.8,35.8,36.4,36.1,36.2,36.6,36.5,35.5,36.3,35.3,36],"paint":[26.5,26.1,26.3,26.2,26.5,26.3,26.6,26,26.7,26.2,25.8,26,26.5,26.6,26.2]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[34,34.2,33.1,32.5,34.3,32.5,33.3,33.5,33.1,33.9,34.3,32.7,32.9,32.7,36.1],"script":[32.3,32.7,31.9,31.2,32.8,30.2,32,32.3,31.6,32.2,32.5,31.7,31.1,31.2,34.3],"paint":[1.6,1.3,0.9,0.3,1.4,2.2,1.2,0.3,1.5,1.7,1.7,0.3,1,1.1,1.7]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.3472471237182617]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[15.237695693969727]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.313368797302246]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.09581184387207]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[114.90720176696777]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[720.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[634.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,32.2,33,32.8,33.5,33.9,33.2,33.7,32.1,33.4,32.7,33.1,33.7,33.7,33],"script":[10.5,10.6,11.2,11.3,11.1,11.8,11,12.1,10.8,11.6,11.3,11.5,11.6,11.7,11.5],"paint":[20.8,21.1,21.3,21,21.8,21.5,21.7,21,20.8,21.3,20.9,21.1,21.5,21.4,21]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.7,37.9,37.4,37.4,37.6,37.4,37.6,37,36.8,37.1,37,37.2,37.8,36.8],"script":[13.9,13.6,14.9,14.7,14.8,14.8,14.4,14.8,14.2,14.4,14.6,14.5,14.5,14.8,14.4],"paint":[22.1,22.5,22.5,22.2,22.1,22.2,22.4,22.2,22.2,21.9,22,22,22.1,22.3,21.9]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.4,17.1,17,17.4,17.6,17.2,17.5,18.1,17.5,16.5,17.5,17.2,17,17.8,18.4],"script":[5.9,5.7,5.7,5.7,6.1,5.8,5.8,6.4,6,5.8,6.2,6,5.7,6,5.9],"paint":[9.3,9.6,9.2,9.3,9.7,9.2,9.8,9.9,9.4,9.8,9.7,9.8,9.2,10.1,10.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"04_select1k","values":{"total":[4.7,4.6,5.3,4.6,5.2,4.9,4.3,5.1,4.2,5.2,4.9,4.6,4.9,4.2,4.9,4.4,4.7,4.3,4.3,4.2,4.8,4.4,5,4.3,4.5],"script":[2.3,2.2,2.3,2.3,2.5,2.3,2.3,2.4,2,2.7,2.3,2.3,1.7,2.3,2.2,2.4,2.5,2.4,1.9,2.1,2.3,2.1,2.4,1.4,2],"paint":[2.3,2.1,1.7,1.5,2.6,1.9,1,2.5,1.2,1.5,1.6,1.8,2.2,1.2,1.8,1.6,1.7,1.3,1.5,2,2.3,0.9,1.8,2,1.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"05_swap1k","values":{"total":[107.6,108.7,106.1,108,105.3,107.7,109.3,112,105.4,111.8,108,108.4,108.1,106.9,108.3],"script":[20.3,20.5,21,20.6,20,21.4,20.9,23.5,21.2,23.7,20.6,21.5,20.7,20.9,21.4],"paint":[84.6,86.2,82.4,84.9,82.6,83.8,86.1,86.9,82.5,86.2,84.7,83.6,85.9,82.6,84.7]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,13,13.4,13.4,13.8,13.3,13.4,13.9,13,14,12.9,13.4,13.4,13.7,13],"script":[2.4,2.6,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5],"paint":[10.1,9.9,10.2,10.2,10.3,9.5,9.9,10.5,9.2,10.8,9.7,10.2,10.2,10.7,9.6]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"07_create10k","values":{"total":[410.9,408.3,409.3,411.3,411.6,413.1,409.8,413.1,406.9,416.4,413,415.9,412.2,414.5,408.5],"script":[185.1,185.2,185,185.6,187,185.7,187.2,188.7,184.2,188.7,187.8,188.2,187,189,183.4],"paint":[217.8,215.7,217,218.3,217.4,219.5,215.5,216.9,215.6,219.8,217.4,219.6,218.1,218.4,217.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.8,36.4,37.3,37.2,37.2,36.9,37.3,37.6,36.9,37.3,37.2,37.4,37.2,37.3,37.1],"script":[10,10,11,10.8,10.6,10.8,10.9,11,10.7,10.8,10.9,11,10.7,10.7,10.7],"paint":[25.8,25.5,25.4,25.4,25.7,25.1,25.4,25.7,25.3,25.5,25.4,25.4,25.6,25.6,25.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.4,13.9,11.9,12.9,16.6,12.1,13.6,14.1,13.4,13.7,13,12.8,12.9,12.9],"script":[11.5,11.4,11.5,10,10.8,14.1,9.4,11.3,11.8,11.6,11.2,10.7,11,10.8,10.4],"paint":[1.9,1.6,1,0.6,0.7,2.1,0.7,1.4,1.2,0.6,1.3,1.2,0.8,0.6,1.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.149679183959961]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.756658554077148]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.269742965698242]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.692923545837402]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.592573165893555]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[176.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[28.5,29.6,30.1,29.6,29.8,29.6,29.3,29.4,29.4,29.7,29.5,29.9,29.4,29.5,30.3],"script":[6.6,7.1,7.5,7.1,7.4,6.9,6.8,7,6.9,7.1,6.9,7,7.1,6.8,7.5],"paint":[21.4,22,22,22,21.8,22.2,21.9,21.8,22,22.1,22,22.4,21.7,22.1,22.2]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[34.8,34.4,34.9,35.4,34.4,34.8,35.2,36.2,34.9,34.5,34.7,34.4,35.2,34.6,34.7],"script":[11.3,11.2,11.3,12,11.2,11.3,11.4,11.9,11.4,11.2,11.6,11.3,11.5,11.2,11.3],"paint":[23,22.6,23,22.8,22.6,22.9,23.3,23.7,22.8,22.8,22.5,22.5,23.1,22.8,22.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.4,15.3,14.5,14.5,16.1,20.4,18.3,14.8,16.1,15.5,15.1,16.4,15,15.9,14.8],"script":[4,3.7,3.5,3.7,3.7,4.3,4.5,3.7,4.4,3.6,3.8,4.6,3.3,4.5,3.5],"paint":[9.7,10.1,9.8,9.5,11.3,13.9,12.4,9.4,10.5,10,9.7,10.5,10.5,10.7,9.7]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[6.2,5.8,5.6,6,5.2,5.3,5.7,5.8,6.2,6.1,5.9,5.3,5.9,5.4,5.5,5.4,5.9,5,6.1,7.1,5.3,6.2,5.7,5.2,5.4],"script":[3.7,3.1,3.2,3.2,3.4,2.8,3.2,3,3.9,3.1,3.7,3.1,3.4,3,3.4,3.3,3.4,2.9,3.7,5,3.5,3.4,3.1,3.5,3.2],"paint":[1.9,2.6,1.2,2.7,1.2,2.1,1.4,2.7,1.8,2.4,1.6,1.3,2.3,2.1,2,0.9,2.4,2,1.8,2,1.3,2.4,1.7,1,1.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[16.7,16,16.3,15.9,16.2,15.7,17.6,16,16.6,16.3,16.1,16.3,16.5,17.2,15.6],"script":[3.6,2.9,3,3.4,2.8,3.2,3.1,3.5,3.1,3.2,3.5,3.1,2.9,3.6,3.5],"paint":[11.8,12.1,12.3,10.8,12.2,10.7,13.4,11.2,12.3,11.5,11.5,12.3,12.6,12,10.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,12.7,12.8,12.5,13,12.6,12.6,12.6,13.1,13.9,12.4,12.6,12.7,12.5,12.6],"script":[2.4,2.4,2.4,2.4,2.4,2.2,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[9.4,9.8,9.6,9.6,10.2,9.8,9.4,9.7,10.1,10.6,9.4,9.7,9.7,9.6,9.6]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[301.1,298.4,299.8,300,302.2,302.3,298.5,300.7,300.5,299.5,300.9,301.5,300.1,300.4,301.7],"script":[66.7,65.8,66.6,66.1,66.6,66.4,65.6,68,67,66.1,66.1,65.1,66.6,66.4,66.7],"paint":[226.8,225.1,225.8,226.5,228.2,228.6,225.4,225.2,226,225.9,227,228.5,225.9,225.9,227.5]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.8,34.1,35.4,34.9,34.8,34.3,34.3,34.9,34.5,33.8,34.1,33.6,34.2,35,34.3],"script":[7,6.8,7.1,6.7,7.1,7,6.9,7,7,6.7,6.9,6.8,6.8,7.2,7],"paint":[26.9,26.3,27.4,27.3,26.8,26.4,26.4,27,26.6,26.2,26.3,25.8,26.5,27,26.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.6,17.7,18.4,18.2,18,18.2,17.7,18.4,17.9,18.9,18.8,17.8,16.2,18.1,18.2],"script":[15.7,15.3,16.2,16.2,15.6,15.8,15.8,16.3,15.4,17.1,16.8,15.7,14.3,15.5,15.8],"paint":[0.3,1.8,0.9,0.8,2.1,1.2,1.1,1.6,2.1,1.2,1,1.3,0.5,1.8,1.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7738256454467773]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.465622901916504]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.5286149978637695]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.54787540435791]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.14680194854736]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[189.6]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[48.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[224.2]}},{"framework":"lit-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.7,26.3,26.4,27,27.3,26.5,26.5,26.3,26.7,26.6,27.7,29.4,26.5,26.4,26.1],"script":[4.4,4.4,4.4,4.6,4.5,4.4,4.3,4.4,4.4,4.3,4.8,5.2,4.5,4.4,4.3],"paint":[21.8,21.5,21.6,21.9,22.4,21.7,21.7,21.5,21.9,21.9,22.4,23.6,21.6,21.6,21.4]}},{"framework":"lit-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.9,29.3,30.6,30.1,31.1,30.3,29.8,30,30,30.1,30.5,30.5,29.9,30.2,29.9],"script":[6.7,6.6,7.1,6.6,6.9,6.8,6.7,6.9,6.9,6.7,7,6.9,6.7,6.9,6.7],"paint":[22.6,22.2,22.9,22.9,23.6,22.9,22.4,22.6,22.6,22.9,22.9,23,22.7,22.8,22.6]}},{"framework":"lit-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.9,11.8,12.4,13.1,13.2,12.1,12.8,13.1,12.3,12.7,13.1,12.4,12.5,12.3],"script":[2.4,1.8,1.5,2.4,2,2.6,2.5,2.1,2.2,2,1.5,2.1,1.9,1.4,1.7],"paint":[9.9,10.2,9.4,9.1,9.8,8.8,8.6,9.6,9.9,9.1,10,10,8.3,8.9,9.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.3,4.5,4.5,3.7,4.5,4.5,3.7,4,4.5,4.2,3.9,3.4,4.1,3.8,3.7,4.3,4.1,4.3,3.9,4.6,4.6,4.1,4.3,4],"script":[1.4,1.7,1.9,1.8,1.6,2.1,2,1.5,1.8,1.7,1.5,1.5,1.6,1.3,1.7,1.2,1.4,1.9,1.5,2,1.9,2.2,1.7,1,1.5],"paint":[1.4,1.6,2.5,1.9,1.9,1.9,1.5,2,1.5,1.8,1.5,1.5,1.7,2.7,1.6,1.4,2.4,1.2,2.6,1.1,2.6,2.1,1.7,3.1,2.4]}},{"framework":"lit-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[15.2,14.9,15.5,15.7,16,16.2,15.7,15.6,15.3,15.6,16,16.2,15.5,15.4,14.1],"script":[1.8,1.6,2.4,1.8,2.1,2,1.8,1.3,1.9,2.5,1.5,1.8,1.5,1.6,1.3],"paint":[12.5,11.8,11.6,12.9,12,13.1,12.4,13.4,12.8,12.1,13,12.4,13,12.1,11.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.7,11.8,11.8,11.6,11.9,11.6,11.8,11.3,11.9,11.6,12.2,11.8,11.7],"script":[1,0.9,0.8,1.1,0.9,1.2,1,1.1,0.9,1,1.2,1.1,1,1.1,1.1],"paint":[10.1,9.7,10.2,10.2,9.9,9.5,10.3,9.7,10.3,9.7,10.2,9.2,10.6,10,9.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[280.9,279.7,282.2,276.2,278.4,279.2,281.2,280,280.5,279.7,280.2,278.3,281,280.1,279.1],"script":[44.4,44.6,44.4,43.6,44.5,44.4,44.5,44.5,44.7,44.3,44.1,44.3,46.6,44.8,44.6],"paint":[228.7,227.3,229.8,225,226.3,227,228.6,227.9,228,227.6,228.2,226.4,225.9,227.5,226.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.5,32.8,31.7,31.3,31.7,33.1,32.6,32.4,31.9,32.3,32.2,31.4,33,32.4],"script":[4.9,4.8,5.2,5,4.8,4.8,5,5,5.1,5.1,5.1,5,4.9,5,5.1],"paint":[26,25.9,26.5,25.8,25.7,26.1,27.1,26.6,26.3,25.9,26.2,26.4,25.7,27.2,26.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,11.6,11.7,11.2,11.2,11.8,12.5,11.9,13.6,12.3,11.8,11.6,10.5,13.7,11],"script":[9.9,10.1,9.6,9.7,9.4,9.8,10.4,10.6,10.1,10.2,10,9.7,9.1,10.4,9.9],"paint":[0.7,0.6,1.5,0.7,1.1,0.8,0.7,0.3,1.3,1,0.9,1,1.2,1.1,0.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6813297271728516]}},{"framework":"lit-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8658885955810547]}},{"framework":"lit-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8727407455444336]}},{"framework":"lit-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8226385116577148]}},{"framework":"lit-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.105656623840332]}},{"framework":"lit-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.9,26.7,26.1,25.8,26,26.2,26.5,26,26.6,25.7,25.7,26.3,26.6,26.1,26.2],"script":[3.9,3.8,3.6,3.6,3.8,3.7,3.8,3.8,3.7,3.5,3.5,3.5,3.8,3.5,3.7],"paint":[22.6,22.5,22.2,21.7,21.8,22.1,22.4,21.8,22.4,21.8,21.8,22.4,22.4,22.2,22.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[28.8,29.4,29.7,29.3,29.2,29.3,29.6,29.3,29.1,29.4,29.5,29.8,29.1,29.7,29.2],"script":[6.2,6,6.3,6.3,6.3,6.4,6.3,6.4,6.2,6.3,6.4,6.2,6,6.5,6.2],"paint":[22,22.9,22.7,22.4,22.4,22.4,22.8,22.4,22.3,22.5,22.6,23.1,22.5,22.7,22.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.1,11.5,11,11,11.8,11.4,12.1,11.6,10.9,11.4,12.4,11.5,11.2,12.1],"script":[1.5,1.3,1,1,1.6,1.5,1.4,1.5,1,1.4,1.1,1.1,1.5,1.7,1.5],"paint":[9.1,8,8.8,9,8.5,10,8.3,9.5,9.9,8.6,9.4,10.2,8.8,8.6,9.3]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,3.7,3.4,4.2,4,3.6,4,3.8,3.3,3.8,3.7,3.2,2.9,4,3.4,3.6,3.4,3.5,3.9,4.4,3.5,3.7,3.6,3.6,3.9],"script":[1.1,1.3,1,1.5,1.4,1.5,1.7,1.1,1.1,1.2,1,1,1,1,1.1,1.5,1,1.4,1.7,2.1,1.3,1.5,0.6,1.3,1.5],"paint":[1.8,1.9,1.7,2.5,2.1,1.8,2.2,2.1,1.3,1.6,2.2,2.2,1.1,2.1,2.2,1.4,2.3,1.4,2.1,1.7,1.4,1.7,2.2,2.2,2]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.6,14.3,15.3,13.8,13.6,14.2,14.7,14,14.5,14.7,13.7,14.1,14.1,14.5,14.3],"script":[0.9,0.6,1.2,1.2,1,1.5,1.1,0.9,1.6,1.3,1,1.3,1.1,1.3,1.8],"paint":[12.3,12.2,12.7,11,11.1,11.5,12.5,11.2,11.4,12.3,11.5,11.6,11.8,12.6,11.4]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,11.3,11.4,11,11.5,11.5,11.4,11.1,11.2,11.1,11.8,11.3,11.3,11,11.3],"script":[1,0.6,1,0.7,0.9,1,0.7,0.8,0.8,0.7,0.9,0.8,1,0.8,0.8],"paint":[10.9,10,9.8,9.7,9.7,9.8,10.4,9.2,9.7,9.6,10.4,9.6,9.7,9.7,9.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[269.1,270,269.8,268.6,269,269.8,269.8,269.1,269.7,268.4,272.9,271.8,269,272,270],"script":[37,37.5,37.1,36.4,37.7,37.6,37.1,37.5,37.5,37,37.6,37.6,37.6,37.2,37.1],"paint":[224.8,224.9,225.3,224.8,224,224.7,225.2,224,224.6,223.5,227.4,226.4,223.9,226.9,225.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,31.6,32,31.8,32.1,31.4,31.9,31.6,31.5,31.9,31.8,31.2,31.7,32,31.9],"script":[4.2,4.4,4.2,4.4,4.4,4.2,4.3,4.1,4.2,4.4,4.1,4,4,4.1,4.1],"paint":[27.4,26.5,27,26.6,26.9,26.4,26.7,26.6,26.6,26.7,26.9,26.4,26.9,27.1,27]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,13,11.8,11.8,12.6,12.4,11.6,11.4,11.6,11,12,11.7,12.3,11.9,12.5],"script":[10.7,11,10,10.2,10.5,10.3,10,9.1,9.4,9.4,10.3,9.7,11.2,10.5,9.7],"paint":[0.9,1.1,1.7,0.6,1.9,1.6,0.7,2.1,1.4,1.1,1.5,0.9,0.9,1.2,1.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5653495788574219]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.640188217163086]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.658935546875]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.726384162902832]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.03464698791504]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.7]}},{"framework":"lui-v2.2.0-keyed","benchmark":"01_run1k","values":{"total":[28.9,28.5,29,28.5,28.8,28.5,28.5,28.6,28.4,28.6,28.4,28.8,28.4,28.5,28.7],"script":[6.2,6,6.4,6,6.2,6.1,6,6,6,6,6,6.1,6,6,6],"paint":[22.1,21.9,22.1,22,22,21.8,22,22.1,21.8,22.2,21.9,22.1,21.8,22,22.1]}},{"framework":"lui-v2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.3,32.7,32.3,33.1,32.5,32,32.4,32.6,32.8,32.2,32.4,32.3,32.4,32.4],"script":[8.8,8.8,8.9,8.9,9.2,8.9,8.7,9,8.8,8.9,8.6,8.8,8.8,8.9,8.9],"paint":[23.3,22.9,23.3,22.8,23.4,23,22.7,22.9,23.2,23.2,23,23.1,23,23,23]}},{"framework":"lui-v2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.6,14.3,14.9,14.2,14.8,14.5,14.6,14.5,14.9,14.5,14.4,14.2,14.3,14.7,16.4],"script":[3.5,3.4,3.8,3.1,3.6,3.4,3.4,3.9,3.5,3.5,3.3,3.4,3.2,4,3.7],"paint":[10,9.6,9.3,10.2,10.3,9.9,10,9.5,9.7,9.5,9.5,9.9,9,9.4,11.6]}},{"framework":"lui-v2.2.0-keyed","benchmark":"04_select1k","values":{"total":[10,9.1,9.1,11.2,9.4,9,9.4,9.2,9.4,8.9,9.4,9.5,9,9,8.7,9.1,8.8,8.9,9.4,10.3,9.1,9.7,9.8,9.9,9.4],"script":[6.6,6.4,6.2,6.9,6.2,5.8,6,6.2,5.8,5.9,6.1,6.2,6.2,5.8,5.4,5.6,5.6,5.9,5.9,6.9,6.1,6.4,6.6,6.7,6.5],"paint":[2.4,1.3,1.8,1.8,1.3,2.2,1.8,1.5,2.8,1.4,2.3,2.3,0.9,1.5,1.9,3.1,2.3,2,2.3,2.2,2,2.1,2.2,2.4,1]}},{"framework":"lui-v2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[100.4,102.2,100.6,101.6,101.9,101.5,100.9,100.7,101.6,101.1,100.1,102.5,102.9,101,101.8],"script":[11.3,12.7,11.4,12.5,12.5,11.5,12.1,11.6,11.8,12.9,12.4,12.2,11.8,11.4,12],"paint":[86.7,87.7,86.8,86.4,87.4,87.6,86.5,86.5,87,84.8,85.2,87.6,88.7,86.8,87.7]}},{"framework":"lui-v2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.1,11.1,11.2,11.6,11.4,11.3,11.5,11.5,10.9,11.4,11,13,11.2,11],"script":[0.5,0.5,0.5,0.5,0.4,0.5,0.3,0.4,0.5,0.3,0.5,0.5,0.5,0.5,0.5],"paint":[10.1,10,10,9.8,10.7,10,10.2,10.4,10.2,10,10.5,9.7,11.8,10.1,10.1]}},{"framework":"lui-v2.2.0-keyed","benchmark":"07_create10k","values":{"total":[279.6,282.4,280.5,283.6,289.4,280.8,280.4,279.6,282.9,281,280.9,283,281.4,280.3,282.1],"script":[57.4,59.2,58.3,58.4,57.4,58.5,58.6,58.3,57.8,58.4,58,59.2,58.6,58.4,59],"paint":[215,216,215,218,222.1,215.1,214.7,214.2,218,215.3,215.7,216.6,215.5,214.8,215.9]}},{"framework":"lui-v2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.4,33.5,34.2,33.5,33.5,34.1,34.1,34.5,33.4,34.7,33.9,33.6,34.1,34.1,33.7],"script":[5.9,5.8,6.2,5.9,5.9,6,6,6.3,5.8,6.3,6.3,5.8,6,6.3,5.9],"paint":[26.5,26.8,27.1,26.7,26.7,27.2,27.2,27.3,26.7,27.4,26.6,26.8,27.2,26.8,26.9]}},{"framework":"lui-v2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,11.8,10.9,11.1,11.6,11.7,11.9,11,11.6,11.8,11.6,10.8,11.1,11.4,11.8],"script":[9.1,9.8,9.4,8.8,9.6,9.3,9.8,9.2,9.6,9.6,9.5,9,9.6,9.4,9.7],"paint":[1.1,0.4,0.3,1.2,1.2,1.7,1.5,1,1.8,1.4,1.1,0.2,0.9,0.7,1.8]}},{"framework":"lui-v2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5827789306640625]}},{"framework":"lui-v2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8807802200317383]}},{"framework":"lui-v2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9674386978149414]}},{"framework":"lui-v2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.710139274597168]}},{"framework":"lui-v2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.75620174407959]}},{"framework":"lui-v2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.4]}},{"framework":"lui-v2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.5]}},{"framework":"lui-v2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.6]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"01_run1k","values":{"total":[28.5,28.7,28.4,28.2,28.6,28.9,28.9,28.5,28.7,28.2,28.4,28.3,28.7,28.7,28.7],"script":[6,6,6,6,6,6,6.4,6,6.1,5.9,6.1,5.9,6,6,6.3],"paint":[22,22.1,21.8,21.7,22,22.4,22,21.9,22,21.8,21.8,21.9,22.1,22.2,21.9]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.5,32.5,33.1,32.7,32.3,33.1,32.5,32.3,32.5,33.1,32.1,32.6,32.6,32.1],"script":[8.8,8.8,8.9,9,8.8,8.9,9.2,8.9,8.9,9,9.2,8.8,9,9.2,8.7],"paint":[23.2,23.1,23,23.5,23.2,22.8,23.4,23,22.7,23,23.3,22.8,23,22.8,22.9]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.7,14.1,14.4,14.1,14.7,14.4,15.6,15,15,14,14.9,14.7,14.3,14.1,14.4],"script":[3.3,3.4,3.6,3.4,3.8,3.5,4.3,4,3.9,3.4,3.5,4.1,3.6,3.8,3.6],"paint":[9.6,9.4,9.9,9.5,9.2,9.8,10.2,10,9.6,9.5,9.4,9.6,9.6,9.3,9.9]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"04_select1k","values":{"total":[10.1,9.7,10.1,9.6,9.7,9.9,9.6,9.9,10.3,9.7,8.9,9.5,9.5,9.6,9.8,9.9,9.9,9.4,8.8,10.1,9.8,9.6,9.2,9.1,9.5],"script":[6.7,6.8,6.8,6.5,6.4,6.7,6.5,7.2,7.2,6.1,5.9,6.5,6.3,6.5,6.7,6.5,7,5.7,6.1,7,6.8,6.3,6.4,6,6.8],"paint":[1.5,1.3,1.9,1.7,2.6,1.5,2.3,1.9,2,3.2,1.4,2.7,1.9,1.6,0.7,1.7,1.9,2.2,1.2,1.8,1.7,1.7,1.3,2.1,1]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[101.4,100.3,102.2,101.7,102.8,102.2,104.4,100.5,103.2,99.3,101.8,102.1,101,101.5,102.1],"script":[12,11.8,12.8,12.6,11.8,12,13.4,11.5,11.7,12.3,12.7,11.9,12.4,12.5,11.8],"paint":[86.9,86.9,87,87,89.3,87.7,88.1,87.1,89.2,84.8,86.7,87.7,86.6,86.8,87.8]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.4,11.7,11.4,11.3,10.9,10.6,11.2,10.7,10.8,11,12.2,11.4,10.8,11],"script":[0.5,0.5,0.4,0.5,0.7,0.5,0.4,0.4,0.3,0.4,0.7,0.6,0.6,0.5,0.6],"paint":[9.7,10.1,10,10.3,10.1,9.7,9.1,10.2,9.6,10,9.9,10.4,10.2,9.5,9.5]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"07_create10k","values":{"total":[285.7,283.2,283.4,281.3,281.2,285.5,282.8,284.1,282,283.6,282,285.8,282.4,284.3,282.2],"script":[58.9,58.7,57,57.3,57.6,57.7,58.1,57.9,57.4,57.8,57.5,60.7,57.1,58.6,57.7],"paint":[219,216.8,218.5,216.4,216,220,217.1,218.2,217.4,218.3,217.2,217.9,218.2,218.3,217.2]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,32.8,34.3,36.5,33.7,34,33.5,33.6,34.3,33.6,34,34.1,35,33.8,34.1],"script":[5.9,5.9,6,6.4,5.9,6,5.8,5.8,6.2,5.9,6,5.9,6,6,5.9],"paint":[26.7,26.1,27.4,28.9,26.8,27,26.8,26.9,27.1,26.7,27.1,27.2,28,26.9,27.3]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,11.9,12.1,11.4,11.9,11.4,10.5,12.4,11.3,11.4,11.3,10.9,12,11.7,11.5],"script":[10,9.5,9.8,9.4,9.5,9.5,8.9,10.2,9.6,9.7,9,9.5,9.5,9.6,8.9],"paint":[0.9,2.1,1.6,0.3,1.8,1.7,0.2,1.2,0.7,0.3,1.3,0.3,2.2,0.9,1.6]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5812788009643555]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.926778793334961]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.931809425354004]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6809272766113281]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.74577045440674]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.6]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.5]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.8,26.9,27.1,29.3,26.7,27.3,26.8,26.8,27.8,26.8,27.1,26.9,27.1,26.9],"script":[4.9,4.8,4.8,4.7,5.2,4.7,5,4.7,4.7,5.1,4.7,4.9,4.7,4.8,4.8],"paint":[21.6,21.6,21.7,21.9,23.5,21.6,21.9,21.7,21.7,22.1,21.8,21.8,21.8,21.9,21.8]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"02_replace1k","values":{"total":[30.7,31.4,30.4,31.1,31.4,31.1,31.2,30.9,31.1,31.3,31.7,31.6,31.7,30.7,30.7],"script":[7.9,8.4,7.9,8.1,8.2,8,7.9,8,7.9,7.8,8,8.2,8.1,7.8,8],"paint":[22.2,22.4,22,22.5,22.6,22.5,22.7,22.3,22.6,22.9,23.1,22.9,23,22.3,22.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.6,15.5,15.7,15.9,16.7,17,16.5,16.1,16.6,16.5,14.7,16.7,15.3,15.5,16.2],"script":[5,5.1,4.4,5.1,5,5.5,4.5,4.9,5.5,5,4.9,5.6,4.6,4.7,5.6],"paint":[9.5,8.3,9.9,9,9.4,9.2,10.1,9.6,9.3,9.9,8.6,8.9,9.5,9.6,9.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"04_select1k","values":{"total":[6.7,7,7.4,6.5,6.4,6.4,6.7,6.7,8.8,8,6.7,8.4,6.8,7.3,7.3,6.9,6.7,6.4,6.4,6.3,7,7.1,7.6,6.9,6.8],"script":[4.7,4.5,5.1,4.6,4.2,4.5,4.9,4.8,5.6,4.8,4.6,5.5,4.3,4.3,4.8,3.9,4.5,4.4,4.3,3.9,4.4,4.9,4.6,4.7,4.4],"paint":[1,2.3,1.7,1,1.2,1.7,1.3,1.7,2.9,2.3,1.7,1,1.4,2.8,1.5,2.4,0.5,1.9,1.4,1.9,1.9,2,2.7,2.1,1.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"05_swap1k","values":{"total":[18.2,17.9,17.4,17.3,19.1,18.3,20.1,17.7,17.7,18.4,18,17.7,18.7,17.5,17.1],"script":[4.6,4.8,4.5,4.9,5,4.8,6.1,4.8,4.1,5,4.8,4.7,5,4.9,4.6],"paint":[12.9,11.1,12,10.7,11.6,12.4,12.6,11.9,12.6,12.2,11.8,11.9,11.3,11.6,11.5]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,13.7,14,12.7,13.8,14.3,13.5,13.8,13.6,13.5,15,15,13.5,14,14.1],"script":[3.1,3.4,3.6,2.5,3.5,3.6,3.3,3.4,3.3,3.1,4.1,3.9,3.1,3.6,3.4],"paint":[9.9,9.4,9.5,9.6,9.7,10.1,9.7,10,9.8,9.7,10.3,10.2,9.7,9.4,10.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"07_create10k","values":{"total":[273.9,268.3,271.1,271.1,271.2,272,270.2,273.1,271,271.2,271.9,273.2,271.9,271,274.3],"script":[41.4,41.1,41.4,41.1,40.5,41.5,41.7,40.5,40,40.5,41.2,41.6,40.9,39.7,40.7],"paint":[225.4,219.9,222.3,222.8,223.3,223.4,221.2,225,223.5,222.9,223.6,224.3,223.6,223.9,226.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.8,33.7,33.6,34.1,33.6,33.8,33.3,33.4,33.3,33.4,33.5,33.4,33.9,33.2,33.5],"script":[6.8,6.7,6.6,6.7,6.6,6.4,6.6,6.7,6.4,6.5,6.7,6.4,6.6,6.3,6.6],"paint":[27,26.1,26.1,26.4,26.1,26.5,25.8,25.7,26.1,26,25.9,26.1,26.4,26,25.9]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,11.6,10.8,11.9,11.5,11.3,11.1,11.6,11.3,12.5,12.1,11,11.8,11.4,11.6],"script":[10.6,9.6,8.7,9.5,9.6,9.3,8.9,9.4,9.6,10,9.4,9.5,9.7,9.7,9],"paint":[0.8,0.6,1.9,1.5,0.3,1.1,1.3,1.3,1.1,2.3,2.3,0.7,1,1.1,1.7]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8073711395263672]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.333477020263672]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3469905853271484]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3774919509887695]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.8456974029541]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[58.4]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[24.9,24.8,24.6,25,25.1,24.9,24.8,24.8,24.6,24.8,24.8,24.9,25,24.9,24.8],"script":[2.7,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.6,2.7,2.7,2.7,2.6,2.6],"paint":[21.8,21.8,21.6,22,22,21.9,21.7,21.8,21.6,21.8,21.7,21.8,22,21.9,21.8]}},{"framework":"malina-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.6,27.7,27.4,27.7,27.7,27.6,28.2,28,27.8,27.5,27.9,28.6,27.6,27.5],"script":[4.6,4.6,4.6,4.6,4.7,4.6,4.7,4.9,4.7,4.6,4.6,4.8,4.7,4.6,4.7],"paint":[22.8,22.5,22.6,22.4,22.6,22.6,22.5,22.9,22.9,22.7,22.4,22.6,23.5,22.6,22.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.7,10.9,12.5,10.9,10.8,13.1,12,12.1,10.7,10.9,10.7,10.8,11,10.5],"script":[0.5,1.1,1,1.3,0.6,0.2,0.8,1.2,0.7,0.2,0.6,0.2,0.6,0.8,0.6],"paint":[9.9,10,8.9,9.8,9.2,9.6,10.8,9.1,9.9,8.6,9.7,9.5,9.5,8.7,8.7]}},{"framework":"malina-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,3,2.8,2.9,3,2.8,3,2.3,3.9,2.8,2.2,2.4,2.6,3.1,2.8,2.8,2.4,2.4,2.4,2.3,2.2,2.4,2.6,2.7,2.9],"script":[0.6,0.6,0.8,1,0.8,0.1,0.1,0.1,0.8,0.6,0.1,0.7,0.7,0.1,0.9,0.6,0.5,0.3,0.1,0.1,0.1,0.5,0.1,0.9,0.6],"paint":[1.6,2.3,1.1,1,0.5,1.5,2.6,1.3,1.4,1.7,1.6,1.6,1.7,2.8,1.4,2,1.8,1.9,2.2,1,2,1.8,1.5,1.2,1.5]}},{"framework":"malina-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[15,13.3,14,15.4,14.8,14.5,14.3,14,14.9,15.7,15.2,13.4,17,13.9,14.4],"script":[1.7,0.9,1.1,1.4,1.8,1.5,2,2,1,1.2,1.8,1.1,2.2,1.2,1],"paint":[12.1,11.7,11.1,12.9,11.5,12.3,11.2,11.8,13.6,12.9,12.4,11.3,13.8,11.7,12.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,10.7,11.3,11.5,10.9,11,11.1,10.8,10.9,10.9,10.9,10.9,11.3,11,10.5],"script":[0.7,0.6,0.7,0.9,0.7,0.7,0.8,0.7,0.6,0.6,0.7,0.7,0.6,0.7,0.6],"paint":[9.8,9.2,10.3,10,9.4,9.7,9.7,9.2,9.4,9.6,9.5,9.6,10.1,9.1,9.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[257,257.5,259.5,257.2,257.7,257.5,256.8,256.8,256.8,258.4,256.9,255.3,256.8,259.1,256.1],"script":[28.2,27.9,28,28.2,27.7,27.7,27.7,28.2,27.6,28.1,27.3,27.7,27.9,27.9,27.6],"paint":[221.5,222.4,224,221.2,222.6,222.8,221.9,221.4,221.9,223.1,222.4,220.6,221.7,223.8,221.3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,30.3,30.3,30.5,30.5,31,30.3,30.7,30.9,30.8,30.7,31.3,31.1,31.4,30.2],"script":[3.1,3.1,3.2,3.1,3.3,3.1,3.2,3.3,3.2,3.3,3.1,3.5,3.3,3.2,3.2],"paint":[26.2,26.4,26.4,26.6,26.4,27.1,26.4,26.7,26.9,26.8,26.8,27,27.1,27.4,26.3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.2,9.1,9.2,9.9,10.3,9.7,9.6,9.2,10.7,10,8.3,9.9,9.2,8.7],"script":[7.5,7.8,7.8,7,7.8,8.8,7.4,7.9,7.4,8.5,7.3,6.3,7.6,7.6,6.8],"paint":[0.2,0.7,0.2,1.3,1.8,0.5,1.3,0.6,1,2,2.1,1.8,1.4,0.3,0.9]}},{"framework":"malina-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5475587844848633]}},{"framework":"malina-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.524415969848633]}},{"framework":"malina-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.535733222961426]}},{"framework":"malina-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7301301956176758]}},{"framework":"malina-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.066320419311523]}},{"framework":"malina-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[30.6,28.5,28.4,28.9,28.1,28.5,28.3,28.9,29,28.9,28.6,28.4,28.9,28.2,28.5],"script":[6.6,6.8,6.7,6.7,6.3,6.5,6.7,6.8,6.9,6.8,6.6,6.4,6.6,6.5,6.6],"paint":[23.4,21.2,21.2,21.7,21.2,21.4,21.1,21.6,21.5,21.6,21.5,21.5,21.7,21.1,21.3]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.3,31,31.3,31.3,31.3,32.3,31,31.2,31.2,31.2,31.1,31.2,31.8,31.2,31.4],"script":[8.5,8.6,8.7,8.8,8.4,8.4,8.4,8.8,8.6,8.6,8.5,8.5,9.3,8.5,8.6],"paint":[21.2,21.8,22,21.9,22.3,23.3,22,21.9,22,22.1,22,22.2,21.9,22.1,22.3]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.9,15.6,14.7,16,14.4,15.1,15.9,15.3,15.1,14.5,15.1,15.3,15.4,14.7],"script":[4.6,5,4.8,4.6,5.1,3.8,4.8,4.6,4.3,4.9,4.7,5.1,4.9,4.2,4.8],"paint":[9.3,7.6,9.2,8.9,9.8,8.9,9,10.2,10.4,8.8,8.6,8.9,9.4,9.9,8.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[4.2,2.8,3.4,2.9,2.9,3,2.9,2.8,2.7,3.4,2.5,2.1,3,2.9,2.5,3.1,3,3,2,2.1,3,3.2,2.7,2.8,2.5],"script":[0.1,0.1,1.1,0.8,0.1,1,1.1,0.5,0.5,0.8,0.9,0.3,0.9,0.5,0.1,1.1,0.1,0.9,0.1,0.2,1.1,0.9,0.5,0.9,0.1],"paint":[2.6,2.1,1.6,0.5,2.6,1.7,1.1,1.1,1.4,2.4,1,1.1,1.5,1.5,2,1.2,2.8,1.5,1.1,1,1.8,2.1,2,1.3,1.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[13.7,12.8,12.7,13.1,13,12.9,12.3,12.6,13.5,13.9,13.4,14,12.9,13.2,12.9],"script":[0.9,0.1,0.1,0.1,0.4,0.2,0.1,0.5,0.7,0.7,0.1,0.8,0.4,0.1,0.5],"paint":[11.7,11.2,11.6,12.1,11.5,11.5,11,11.2,11.7,11.9,12.6,12.9,11.5,11.8,11.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.5,10.6,11.2,10.4,10.3,10.6,10,10.3,10.4,10.3,10.7,10.1,10.7,10.5],"script":[0.2,0.3,0.4,0.3,0.4,0.4,0.3,0.2,0.2,0.3,0.3,0.3,0.1,0.3,0.1],"paint":[9.9,9.4,9.8,10.2,9.6,9,9.7,9.3,9,9.4,9.3,9.8,9.5,9.9,9.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[280.1,277.4,274.6,277,274.6,279.9,278.7,278.8,278.7,276.9,277,280.5,277.5,276.3,276.8],"script":[47.9,47.9,46.8,47.5,47.3,48,47.4,47.4,49.2,47.3,46.7,47.6,47.2,46.6,47.2],"paint":[224.3,222.5,220.5,222.1,220.1,223.8,223.9,223.6,222.3,222.5,223,224.9,223,222.6,222.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,32.1,32.7,33.9,33.2,33.7,33.6,32.4,33.4,33.2,33.7,33.2,33,32.5,33.1],"script":[6.4,6,6.3,6.4,6.4,6.7,6.4,6.3,6.4,6.2,6.5,6.4,6.4,6.3,6.1],"paint":[25.6,25.2,25.5,26.5,25.9,26.1,26.2,25.2,26,26.1,26.2,25.8,25.7,25.3,26.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,13.8,15.3,14.9,15.6,15,15.8,15.8,14.9,15.4,14.8,14.7,15.2,14.2,15.8],"script":[12.9,12.6,13.5,13.2,13.4,13,13.9,13.8,13.5,13.6,12.7,12.7,13.3,11.7,14],"paint":[1.3,1,1.2,0.7,0.7,0.9,1.1,1.7,0.5,0.6,0.3,1.1,0.5,1.6,0.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7664394378662109]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.671788215637207]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8554611206054688]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0164203643798828]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.509987831115723]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[65.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[35.4,35.8,35.7,35.8,36.4,35.7,36.1,36.1,35.6,35.6,36,36.1,35.8,36.3,36],"script":[12.7,13.1,12.9,12.8,13.4,12.8,13.1,13.2,12.7,13.1,13,13,13,13.3,13.2],"paint":[22.1,22.1,22.3,22.4,22.5,22.4,22.4,22.3,22.4,22.1,22.4,22.6,22.3,22.5,22.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[39.9,38.3,39.2,39.1,39.5,39.3,38.4,38.5,39.1,39.7,39.1,38.6,39,38.9,39.9],"script":[15.3,15.1,15.3,15.6,15.8,15.6,15.1,15.2,15.5,16.1,15.6,15.2,15.6,15.2,15.8],"paint":[24,22.6,23.4,22.9,23.1,23.1,22.7,22.7,23,23.1,22.9,22.8,22.8,23.1,23.6]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.6,11.7,12.4,12.3,11.6,13.8,13.5,12.7,11.9,11.7,11.3,11.4,12.2,11.4],"script":[1.1,1,1.3,1.7,1.9,1.4,2.1,1.3,2,1.5,1.3,1.4,1.1,0.9,1.3],"paint":[9.8,9.3,9.2,9.4,8.7,8.7,9.8,10.5,9.6,8.7,9,8.8,9.3,10,8.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[5.4,2.7,1.9,2.4,2.5,1.6,2.6,2.4,2.8,2.6,2.4,2.5,2.4,2.2,2.3,2.2,1.8,2.1,2.3,2.1,2.6,2,2.2,2.1,2.4],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.9,0,0.8,0.1,0.1,0.1,0,0.1,0,0,0,0.7,0.1,0.1,0,0.3,0.1,0.7,0],"paint":[1.4,2.5,1.5,1.6,1.9,1,1.2,1.5,1.9,2.4,0.7,2,2.2,0.9,1.8,1.2,1.5,1.3,1.2,2,2.4,1.2,1.9,1.3,2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.9,13.1,14.7,12.8,13.2,13.1,12.9,12.3,13.4,13.2,12.4,12.7,13.2,13.1,12.5],"script":[0.7,0.1,0.1,0.6,0.1,0.9,0.9,0.1,0.1,0.1,0.4,0.4,0.5,0.5,0.1],"paint":[11.2,11.9,13,10.5,11.6,11.1,10.6,11.3,11.9,11.8,11.1,11.3,11.3,10.9,11.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.6,10.4,10.9,10.3,10.7,11.9,10.3,10.2,10.4,10.7,10.3,10,10.5],"script":[0.2,0.1,0.3,0.3,0.5,0.3,0.3,0.5,0.1,0.3,0.3,0.3,0.4,0.2,0.3],"paint":[9.4,9.3,9.8,9.5,10.1,9.6,9.8,10.7,9.5,8.9,9.6,9.8,9,9.2,9.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[336.5,337.1,339.7,340,339.4,337.1,337.5,338.3,339.8,338.2,340.1,337.7,341,344.1,337.7],"script":[115,113.9,118.8,115.3,115,112.4,115.4,114.5,115,115.1,115.5,114.6,115,117,115.3],"paint":[214.3,216,213.8,217,217.2,217.4,215,216.4,216.7,215.7,217.4,215.7,218.4,218.8,215.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,39.3,39.3,39.2,38.8,40.8,39.6,38.6,40,39.3,39.3,40,39.4,39,39],"script":[12.8,12.9,12.7,12.6,12.5,13.3,12.9,12.5,13.1,13,12.6,13.2,12.8,12.9,12.6],"paint":[25.3,25.4,25.6,25.6,25.4,26.5,25.7,25.1,26,25.3,25.7,25.8,25.7,25.1,25.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15,15.7,15.9,15.7,15.2,14.6,15.9,15.8,15.7,16,16.7,15.1,15.4,15.6,15.5],"script":[13.3,13.5,13.6,13.5,13.1,12.7,13.1,13.4,13.4,13.5,13.2,13.6,13.6,13.6,13.8],"paint":[1.1,0.3,0.8,0.8,1,1,1.7,1.3,1.2,2.3,2.4,0.9,0.7,0.9,1]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.758763313293457]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.133251190185547]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1670188903808594]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1239166259765625]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.575115203857422]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93.1]}},{"framework":"marko-v6.0.88-keyed","benchmark":"01_run1k","values":{"total":[25.4,24.2,25.8,24.3,24.4,24.4,24.8,23.9,24.6,24,24,23.9,24.5,24.1,24.1],"script":[3.8,3.7,4.1,3.7,3.6,3.7,4,3.8,3.9,3.8,3.7,3.6,3.7,3.7,3.7],"paint":[21.2,20,21.3,20.2,20.3,20.4,20.5,19.8,20.3,19.9,19.9,19.9,20.4,20,20.1]}},{"framework":"marko-v6.0.88-keyed","benchmark":"02_replace1k","values":{"total":[29.3,29.1,29.7,28.9,29.3,28.9,28.9,28.9,30.2,29.5,29.2,28.7,28.9,28.6,30.9],"script":[6.5,6.5,6.5,6.3,6.4,6.4,6.2,6.5,6.6,6.6,6.3,6.4,6.5,6.5,6.4],"paint":[22.3,22,22.6,22,22.4,22,22.1,21.9,23,22.4,22.4,21.7,21.9,21.6,23.8]}},{"framework":"marko-v6.0.88-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12.9,13.1,21.3,12.3,20.2,12,13.1,13.2,12,12.6,11.7,13,13.5,14],"script":[2,3,3.1,3.8,1.7,2.8,2.3,2.6,2.2,1.9,1.6,2.1,2.2,2.2,2.4],"paint":[9.2,9.3,8,15,9.1,14.6,8.4,8.4,9.8,8.7,10.1,8.3,9.4,9.1,10.6]}},{"framework":"marko-v6.0.88-keyed","benchmark":"04_select1k","values":{"total":[5.3,3.6,4,3.8,3.7,3.2,3.7,4.1,3.9,3.1,3.9,3.4,3.3,3.6,3.4,3.7,3.8,3.9,3.6,4.2,3.6,2.7,4.1,4,3.3],"script":[0.7,1.2,1.8,1.6,1.9,1.8,0.7,1.8,1,1.8,1,1,1.6,1,0.7,1,1.6,1.8,1.9,2.3,1.3,1.1,1.6,2.2,1.2],"paint":[1.8,1.5,1.3,1.4,1.6,1.3,2.3,1.5,2.2,1.1,2,1.2,1.1,1.8,1.6,2.5,2.1,1.9,1.2,1.6,2.2,0.7,2.1,1.8,2]}},{"framework":"marko-v6.0.88-keyed","benchmark":"05_swap1k","values":{"total":[18.1,16.6,15.4,15.6,14.9,15.3,17.3,15.5,15.8,16.1,15.6,15.7,14.9,16.3,15.7],"script":[2.6,2.9,2.7,2.3,2.4,2.9,2.8,2.4,2.5,2.6,2.3,2,2.5,2.7,2.8],"paint":[14.4,12.8,11.7,11,11,11.6,14,11.5,11.9,11.1,11.5,12.8,11,11.7,10.4]}},{"framework":"marko-v6.0.88-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,10.9,11.4,10.9,11.5,11.5,11,11.4,11,11.3,11,11.1,11.1,11.1,11.3],"script":[0.8,0.7,1.4,0.7,1.2,0.9,1.1,0.9,0.7,1.1,0.8,0.9,0.8,0.9,0.9],"paint":[10.7,9.6,9.5,9.6,9.6,10,9.3,9.9,9.4,9.6,9.6,9.6,9.7,9.6,9.7]}},{"framework":"marko-v6.0.88-keyed","benchmark":"07_create10k","values":{"total":[272.9,268.6,268.8,267.2,268.5,271,268.5,270.8,270.6,268.2,272.6,270.2,270.8,267.5,272.1],"script":[38.1,35.9,35.7,36.7,36.7,36.1,36.5,37.2,35.9,36.4,36.5,36.2,36.6,36.7,36.6],"paint":[226.2,224.5,225.1,222.4,223.6,226.8,224,225.3,226.7,223.6,227.9,225.9,225.9,222.9,227.2]}},{"framework":"marko-v6.0.88-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.4,31.9,30.5,29.9,32.1,30.7,31.4,30.8,31.8,31.3,31.5,31.7,30.7,30.7,30.6],"script":[4.4,4.6,4.4,4.4,4.6,4.4,4.5,4.5,4.6,4.5,4.5,4.5,4.5,4.5,4.4],"paint":[25.2,26.6,25.3,24.8,26.8,25.5,26.2,25.5,26.4,26,26.3,26.3,25.5,25.4,25.4]}},{"framework":"marko-v6.0.88-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.9,10.7,11.5,10.9,11.8,11.2,11.4,10.9,11,11.4,11.2,10.3,12,11.3],"script":[9.4,9.2,8.6,9.1,8.6,10.3,9.3,9.2,8.8,9.6,8.8,9.1,8.3,9.3,8.9],"paint":[1.3,1.2,1.4,1.4,1.7,0.7,0.4,1,0.3,1.2,0.6,1.9,0.9,1.5,1.5]}},{"framework":"marko-v6.0.88-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5834779739379883]}},{"framework":"marko-v6.0.88-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6622543334960938]}},{"framework":"marko-v6.0.88-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.700641632080078]}},{"framework":"marko-v6.0.88-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9512443542480469]}},{"framework":"marko-v6.0.88-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.230067253112793]}},{"framework":"marko-v6.0.88-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11]}},{"framework":"marko-v6.0.88-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"marko-v6.0.88-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.3]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"01_run1k","values":{"total":[40.6,39.9,42.4,42.7,37.7,37.1,37.6,38,39.7,35.6,42.6,41.4,38.7,40.8,40.2],"script":[13.1,14.5,13.5,14.7,14.6,13.4,13.4,13.9,13.6,13.2,14.9,14.5,13.2,14,14.7],"paint":[20.7,21.6,21.8,22.2,22.6,22,21.6,21.8,21.9,21.9,21.7,21.7,21.7,21.9,21.7]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"02_replace1k","values":{"total":[49.1,49.3,49.5,50.8,48.3,47,43.9,43.6,48.2,47.8,47.7,49,47.6,49.3,48.6],"script":[20.1,19.5,19.8,20.5,19.8,20.3,20.5,20.2,19.5,20.1,19.8,19.3,20.2,20.1,19.9],"paint":[23.1,23,23.3,23.2,23.2,23.1,22.9,23,23.3,23,22.7,23.3,23.1,23.3,23]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"03_update10th1k_x16","values":{"total":[56.5,22.3,58.5,20.5,20.9,58.3,20.7,19.5,59,20.5,20.1,57.7,21.9,58.8,21.7],"script":[6,7.8,7.5,6.4,7.1,6,6.3,6.5,7.4,6.6,6.9,6.5,6.8,7.4,7.6],"paint":[11.4,12.9,12.6,12.3,11.8,14.2,11,11,12.6,12.7,12,12.7,11.4,12.9,13]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"04_select1k","values":{"total":[11.9,15.7,13.8,13.8,14.2,15.6,10.5,9.8,10.8,9.5,15.7,15.6,9.6,16.8,15.6,11.4,9.3,13.6,12.1,10.9,15,11.9,12,13.4,11.4],"script":[7.4,6,5.5,6.2,5.9,6,5.2,5,5.2,5.6,6.7,6.9,5.5,6,5.8,6.2,5.1,5.5,6.2,4.3,5.7,5.2,5.2,4.6,6],"paint":[4,3.5,3.1,3.6,3.7,3.7,2.7,2.8,4.7,2.8,3.1,2.8,3,4.8,3.6,3.6,3.2,3.9,4,2.9,5.2,2.3,3,3.3,3.7]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"05_swap1k","values":{"total":[109.2,147.9,145.8,145.3,108,147.3,107.8,145.8,143.9,104.9,105.4,145.6,148.2,105.8,146.1],"script":[17.1,18.5,18.4,18,18.6,17,17,17.5,17.9,16.9,16.9,18.9,17.5,16.4,17.8],"paint":[89.1,88.7,86.5,86.2,86.5,89.8,87.5,87.4,85.3,86,86,85.9,92.6,85.9,85.3]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"06_remove-one-1k","values":{"total":[15,15.6,14.9,14.7,15.2,15.8,15.7,15.9,15,16.4,15.4,14.6,16.1,19,14.7],"script":[2.7,2.6,2.6,2.4,2.9,2.5,2.5,2.7,2.8,2.7,2.5,2.4,2.7,3.1,2.7],"paint":[11.4,11.2,10.9,11,11.1,12.5,11.9,12.1,11,11.2,11.4,11.1,12.1,11.7,10.7]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"07_create10k","values":{"total":[361.7,351.7,354.9,352.6,362.6,353.7,355.3,359.7,359.2,357.1,354.9,364.1,352.6,359.9,352.1],"script":[126.4,122.2,126.2,123.7,128.6,124,121.2,128.5,128.5,123,123.7,128.6,123.6,126.4,122.7],"paint":[225.1,224.7,224.3,224.6,227.8,225.4,224,225,224.9,224.9,222.6,225.9,224.7,228.8,225]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.6,54.7,55.1,42.4,42.6,52.9,44,55.2,53.7,52.7,42.8,53,53.9,54.2,53.1],"script":[14.6,15.2,15.1,15.2,14.8,13.9,15.7,14.4,14.8,13.8,15.3,14.3,14.9,14.7,14.2],"paint":[26.4,26.5,26.7,26.5,26.5,26.8,27.1,28.8,26.4,26.8,26.2,27.6,26.4,26.8,26.8]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"09_clear1k_x8","values":{"total":[66.2,66.2,22.9,68.6,21.9,23.1,23.4,23.9,68.2,23.5,68.3,22.8,22.8,21.3,68.5],"script":[19.6,18.9,18.5,18.4,18.3,18.9,18.8,19.2,18.1,18.7,17.3,18.4,19.2,17.9,17.5],"paint":[2.1,3.1,2,3.9,2.1,2.8,3.9,3.8,3.9,2.9,2.9,2.7,2.3,2.4,3.9]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7770347595214844]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.245203971862793]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.424333572387695]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.064295768737793]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.91492462158203]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.3]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.6]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[66.9]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"01_run1k","values":{"total":[25.9,25.6,25.6,25.8,25.9,25.5,25.8,25.6,25.7,25.9,25.4,26.1,25.3,26,26.3],"script":[4.1,3.9,3.8,4,4.1,3.9,3.8,3.8,3.9,3.9,3.8,3.8,3.9,4.1,4.2],"paint":[21.5,21.3,21.4,21.5,21.4,21.2,21.6,21.4,21.4,21.6,21.3,21.8,21.1,21.5,21.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,29.1,29.3,29.2,28.8,29,29.2,29.2,29.2,29,29.5,29.3,29.3,29.6,29.3],"script":[6.2,6.1,6.2,6.2,6.1,6,6.2,6.2,6.2,6.1,6.1,6.3,6.2,6.2,6.2],"paint":[22.9,22.4,22.6,22.4,22.2,22.5,22.5,22.4,22.4,22.4,22.8,22.5,22.5,22.8,22.6]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.4,17.6,18.1,18.2,18.5,18.4,18.7,18,20.4,18,17.5,17.4,20.1,21.2],"script":[5.6,6.2,5.9,5.9,6.3,6.7,5.6,6.3,5.8,6.1,6.2,6.5,5.3,7.3,7.3],"paint":[11.1,9.4,9.6,10.9,9.5,9.1,10.3,10.1,10.3,12.8,9.6,9.2,10.1,11.1,11.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.5,7,6.7,6.1,6.9,6.4,6.5,7,6.4,7.3,8.1,6.5,6.4,6.7,7.2,6.5,6.3,5.7,6.9,7.5,8.5,7.3,6.5,5.6],"script":[4.2,3.4,4.3,4.8,4.1,4.2,4.4,3.8,4.5,4.5,4.4,5.2,3.7,3.9,4.5,4.6,4.1,3.9,3.7,4.5,4.9,5.4,4.9,4.2,3.5],"paint":[1.5,2.1,2.5,1,1.2,2.5,1.2,2,1.3,1,2.8,2.4,2.7,1.6,1.1,2.5,2.2,1.4,1.1,1.3,2.2,2.3,1.6,1.3,2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,20.4,19.5,19.1,19.1,19.6,20.2,18.4,20.5,19.5,18.6,20.4,19.5,19.7,19.5],"script":[5.8,6.5,5.7,5.2,6,6.1,6.5,5.2,5.8,5.7,5.4,6.3,5.8,5.4,5.5],"paint":[13,11.7,12.6,11.9,11,11.8,12.1,11.4,12.8,11.6,12.5,12.9,11.3,12.6,12.4]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,13.4,12.8,13,13.1,13.3,12.8,13.9,12.9,13.1,13.4,13.3,13.1,13.4,13.1],"script":[2.8,2.9,2.5,2.6,2.6,2.8,2.5,3,2.8,2.9,2.8,2.6,2.7,2.7,2.7],"paint":[9.1,9.9,9.5,9.8,10.1,9.8,9.6,10.2,9.3,9.6,10,10.1,9.5,9.9,10]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"07_create10k","values":{"total":[271.4,270.4,271.4,273,272.2,270.3,274.3,270.1,274,271.2,273.7,273.7,271.2,273.8,271.5],"script":[41.4,41,41.2,41.6,42.1,40.9,41.4,42.1,42.1,41.4,41.8,41.7,41.4,41.1,41],"paint":[223,222.2,222.3,224.2,223.1,222.3,225.8,220.8,224.7,222.7,224.1,224.8,222.5,225.7,223.3]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,32.2,32.4,32.5,32.8,31.9,32.6,32.5,32,32.5,33.7,32.5,31.8,32.4,33.1],"script":[5.7,5.8,5.8,5.7,5.8,5.6,5.7,5.7,5.8,5.9,6.3,5.8,5.7,5.7,5.8],"paint":[25.7,25.5,25.6,25.8,25.9,25.4,26.1,25.8,25.3,25.7,26.4,25.8,25.1,25.8,26.4]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,10.8,9.5,9.5,9.6,10.2,9.8,9.5,10,10.1,9.3,9.6,9.8,10.5,10.5],"script":[8,8.9,8.1,7.9,7.7,8.5,8.3,7.3,7.9,8.5,7.7,7.8,7.7,8,8.2],"paint":[1.1,0.6,0.3,0.9,0.4,0.5,1.3,1.2,0.4,1.1,0.2,0.6,1.1,1.9,1.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5871400833129883]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6566686630249023]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.597414016723633]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7035703659057617]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.32912826538086]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"01_run1k","values":{"total":[27.5,27.2,26.7,26.7,27.9,27.7,27.2,27.5,26.9,27.3,26.6,27.6,27.6,27.6,27.1],"script":[4.7,4.6,4.2,4.2,4.9,4.8,4.7,4.8,4.8,4.7,4.2,4.8,4.8,4.7,4.7],"paint":[22.3,22.2,22.2,22.1,22.6,22.5,22.1,22.3,21.8,22.2,22.1,22.4,22.4,22.5,22]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.4,29.7,29.5,30.2,29.8,29.7,29.9,29.5,29.8,30.3,30.1,29.8,29.9,30],"script":[6,6.5,6.5,6.5,6.6,6.4,6.6,6.6,6.6,6.6,6.7,6.4,6.5,6.7,6.8],"paint":[22.8,22.4,22.7,22.5,23,22.9,22.5,22.7,22.4,22.7,23,23,22.8,22.6,22.7]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.9,10,10.4,10.2,10.2,10.8,11,11.1,9.9,11.5,10.9,10.5,10.6,10.4,11],"script":[0.1,0.1,0.6,0.8,0.1,0.1,1,0.8,0.1,1.1,0.9,0.5,0.2,1.1,0.8],"paint":[8.6,8.6,8.8,8.3,8.9,9.7,8.7,9,8.7,9.4,8,8.2,8.8,8.3,9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"04_select1k","values":{"total":[7.1,2.6,2.2,2.3,1.8,2.5,2.1,2.3,2.5,2.2,2.5,2,2.7,2.8,2.5,3.3,2.3,2.7,3.3,2.3,1.9,2,2,1.5,2.5],"script":[0,0,0,0.4,0,0.6,0,0.5,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0],"paint":[1.7,1.6,1.8,1.8,1.7,1.7,1.2,1.2,2.3,2,1.6,1.1,2.3,2.5,1.4,2.5,0.4,2.5,2.1,1.5,1,0.8,1.9,1.1,1.5]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"05_swap1k","values":{"total":[12.4,12.5,12.7,12.9,12.7,13.1,11.9,12.5,13,12.5,12.9,13.3,12.8,12.2,12],"script":[0.1,0.3,0.1,0.2,0.2,0.1,0.1,0.1,1,0.2,0.1,0.1,0.8,0.1,0.1],"paint":[11.1,11,11.4,11.1,11.5,12,11.1,10.7,11.7,11,11.2,12.1,11.3,11.3,10.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.1,10.3,10.2,10.2,10.3,10,10.3,9.9,10.1,10.7,10.3,10.4,10.1,10.9],"script":[0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.1],"paint":[9.9,9.5,9.6,9.8,9.5,9.8,9.3,9.8,9.2,9.1,9.6,9.6,9.7,9.6,10.1]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"07_create10k","values":{"total":[275,274.8,273.9,273.8,273.7,273.9,276.2,271.3,276,277.3,276.4,274.1,273.6,274.6,275.9],"script":[45,44.5,44.7,44.2,43.7,44.4,45,42.9,44.4,45,44.4,43.5,44,44.3,44.3],"paint":[222.7,223.1,222,222.3,222.6,222.2,223.7,221,224.2,224.9,224.7,223.4,222.1,222.9,224.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.8,31.8,31.7,32.3,32.1,32.5,32.4,31.9,32,31.9,31.6,31.8,31.3,32],"script":[4.7,4.5,4.7,4.1,4.8,4.7,5,4.4,4.5,4.6,4.7,4.5,4.4,4.3,4.6],"paint":[26.4,26.5,26.3,26.8,26.8,26.7,26.7,27.3,26.5,26.5,26.5,26.4,26.6,26.2,26.7]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.3,9.5,9,8.8,9.6,10,9.6,10.3,9.8,10,10.4,10,8.9,9],"script":[7.6,7.4,7.8,7.5,7,7.4,7.9,7.5,7.9,7.9,7.3,8.5,8.2,7.3,7.6],"paint":[1,1.6,0.3,0.6,0.9,1.3,1.9,1.3,2.3,1.1,1.6,1.7,0.7,0.4,0.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5490226745605469]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.37209415435791]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4526987075805664]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7490358352661133]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.340540885925293]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.2,23.1,22.8,23,23.3,22.9,22.9,23.2,23,23.2,23.1,23,23,22.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.4,21.2,21.3,21.6,21.2,21.3,21.5,21.3,21.6,21.4,21.3,21.4,21.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.3,25.6,26.2,25.6,25.8,25.5,25.8,25.5,26.9,25.7,25.9,26,25.8,25.9,26.2],"script":[3.3,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.7,3.2,3.2,3.4,3.3,3.1,3.4],"paint":[22.5,22,22.5,22,22.1,22,22.3,21.9,22.7,22.1,22.3,22.2,22.1,22.4,22.4]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11,10.9,12.5,10.5,10.3,10.8,10.3,10.1,10.1,10.4,9.9,10.2,10.9,10],"script":[1,0.8,0.8,0.8,0.6,0.8,0.9,0.1,0.5,0.5,0.5,0.1,0.1,0.6,0.5],"paint":[8.4,8.6,8.8,10.5,9,8.6,9,8.6,9.1,8.7,9.2,8.6,9.2,9.4,8.1]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.5,1.7,2.1,2.5,2.4,2.8,2,2.8,2,1.7,2.1,2.3,2.4,2.3,2.5,1.8,2.1,2.8,1.9,2.8,2.6,2.7,2.6,2.7,2.1],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.1,0.1,0.6,0.2,0.3,0.7,0.4,0.1,0.6,0.8,0.5,0.4,0.1],"paint":[1.9,0.7,1,2.3,2.2,1.6,1.1,1.7,1.8,0.9,1.2,1.4,1.4,1.5,1.8,1,1.7,1.9,1.4,1.9,1.6,1.8,1.4,2.2,1.7]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[13.7,13.5,14.4,14.2,13.9,13.7,13.2,15.1,13.9,14.6,13.3,14.4,12.5,13.8,13],"script":[0.9,0.6,1.5,0.6,1.1,0.9,0.6,0.2,0.6,1.3,0.2,0.6,0.5,0.6,0.8],"paint":[11.6,12.2,12,12.1,12,11.6,11.6,13.6,12.2,12,11.4,12.7,11.1,11.2,10.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10,10.1,10.3,10.2,9.9,10.2,10.1,10.1,10,10.2,10.4,10.1,10.9,10.5],"script":[0.3,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.2],"paint":[9.6,9.1,9.5,9.3,9.4,9.5,9.3,9.4,9.5,9.5,9.6,9.4,9.4,10,9.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[245.9,244.4,246.5,246.1,244.4,248.4,245.7,246.9,246.7,246.7,246.1,246.5,244.3,246.6,245.7],"script":[14.9,15.5,14.8,15.4,15.1,15.2,14.9,15.1,15.3,14.8,15.1,15.4,14.9,15.1,14.9],"paint":[223.8,221.8,224,223.5,222.3,225.8,223.7,224.8,224,224.8,224,223.8,222.3,224.1,223.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,27.1,26.8,27.1,26.9,27.2,27,26.8,27,26.8,27.1,26.7,26.8,27.9,27],"script":[1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4,1.5,1.4],"paint":[25,25,24.8,25.1,24.8,25.1,24.9,24.6,24.9,24.8,25,24.6,24.7,25.7,24.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.1,9.7,9.2,8.9,9.4,8.7,8.7,9.4,9.1,10.3,9.3,10.1,9.4,9.8],"script":[7.4,7.3,7.2,7.5,7.7,7.2,7.1,6.9,7.4,7.4,8.9,7.5,8,7.7,7.9],"paint":[0.6,0.3,1.2,1,0.2,1.9,0.2,1,1.8,1,1.1,0.5,1.3,0.6,1.8]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5894346237182617]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0219831466674805]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.018202781677246]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7805452346801758]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.162980079650879]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.4,23.7,23.6,23.5,25.7,23.6,23.7,23.9,23.4,23.9,23.6,23.7,23.8,23.7],"script":[2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.2,2.1,2.2,2.1,2.1,2.1,2.1],"paint":[20.8,20.9,21.2,21.2,21,23.1,21.1,21.2,21.4,20.9,21.4,21.1,21.2,21.3,21.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[27.3,26.8,26.8,26.7,27.3,27.5,27,26.9,27.2,27,26.9,26.9,26.9,27,26.9],"script":[4.5,4.4,4.1,4.1,4.4,4.5,4.5,4.1,4.5,4.2,4.1,4.1,4.1,4.2,4.1],"paint":[22.3,22,22.3,22.3,22.5,22.6,22.1,22.4,22.2,22.4,22.4,22.4,22.3,22.4,22.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.3,10.6,10.5,11.4,11.5,10.8,10.7,11.4,10,11.2,11.2,11.4,11.1,12.5],"script":[0.6,0.6,1.3,0.2,0.2,0.9,1.4,0.6,0.6,0.9,1.3,0.5,0.1,0.8,1.1],"paint":[8.5,9,7.3,8.5,10,9.8,8.4,8.8,9.7,7.9,9,9.7,10.2,9.5,9.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[8.3,2.5,2.1,2,2.8,2.9,1.8,2.2,2.7,2.1,2.6,2.1,1.9,2.1,2.7,2.8,3.4,1.9,2.4,2.4,1.9,2.6,3.7,2.3,2.4],"script":[0.1,0.1,0.4,0.2,0.1,0.9,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.9,0.9,0.8,0.1,0.5,0.1,0.1,0.1,0.9,0.2,0.1],"paint":[2.8,2.3,1.6,1.1,2.3,1.6,1,2,1.8,1.9,1.7,1.5,0.9,1.9,1.2,1.4,1.4,1.1,0.4,2.1,1.1,1.9,1.2,2,1.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[12.4,13.1,13,12.8,12.9,13.3,14.9,12.9,13,12.9,13.2,12.6,12.4,13.4,12.1],"script":[0.5,0.6,0.1,0.6,0.1,1,0.1,0.1,1,0.1,0.1,1,0.1,0.9,0.4],"paint":[10.7,11.1,12,11.6,11.8,11.7,14.2,12,10.6,11.9,11.9,10.2,9.8,11.3,10.3]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.4,10.1,10.3,10.2,10.5,10.1,10.2,10.1,10.2,10.2,10.3,10.3,9.8],"script":[0.3,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.4,0.1,0.1,0.1],"paint":[9.4,9.7,9.7,9.4,9.6,9.7,9.5,9.2,9.2,9.5,9.5,9.2,9.6,9.7,8.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[254.7,256.8,256.2,254.5,255.3,256.1,253.8,253.4,254.8,256.3,253.9,253.8,256.4,254.9,253.6],"script":[24.4,24.3,24.1,24.3,24.1,24.8,24.3,24.3,24.7,23.8,24.2,24.3,24.3,24.2,24.4],"paint":[223.1,225.2,224.8,223.1,223.9,224.1,221.9,222,222.8,225.1,222.4,222.2,224.5,223.6,222]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.8,27.5,28.3,27.7,27.5,28.4,26.5,27.9,27.5,27.6,29.7,28.2,28.4,27.8,28.1],"script":[2.2,2.1,2.2,2.1,2.1,2.4,2.1,2.1,2.2,2.2,2.4,2.4,2.5,2.1,2.4],"paint":[24.9,24.7,25.4,24.8,24.7,25.2,23.8,25,24.6,24.8,26.5,25.1,25.2,25,24.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.3,9.4,9.9,10.3,9.7,10,9,9.2,9.4,9.5,9.8,9.5,10,10.2],"script":[7.8,7.9,8,7.5,8.2,7.4,7.8,7.5,7.7,7.8,7.2,7.8,8.1,8.2,8.1],"paint":[0.9,0.3,0.6,2.1,0.7,2.1,1.9,0.7,0.6,0.2,2.2,1.2,0.6,0.3,1.3]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6015281677246094]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.345113754272461]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3708229064941406]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7348957061767578]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.137575149536133]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.9]}},{"framework":"miso-v1.4.0-keyed","benchmark":"01_run1k","values":{"total":[52.3,47.1,42.1,42.9,42.9,41.8,42.8,41.7,48.2,41.8,43.1,43.7,41.7,47.7,44.7],"script":[19.3,19.2,19.6,19.7,19.7,19.5,19.9,19.9,19.4,19.9,19.6,19.8,19.7,19,19.5],"paint":[20.9,21.3,21.3,21.3,21.7,21,21.3,21,21.4,20.9,21.6,21.3,21.1,21.3,21.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"02_replace1k","values":{"total":[68.1,62.2,56.6,58.2,59.3,58.9,63.2,62.8,58.3,58.1,58.5,56.8,59.2,56.9,57.5],"script":[32.5,33.8,31.2,33.1,33.6,32.7,32.1,33.3,32.9,32.4,34.2,32.6,32.6,33,32.9],"paint":[23.4,22.8,22.8,23.4,23.2,23.3,19.2,23.2,23.4,23.2,22.6,23.1,22.9,23,22.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[46.4,62.8,49.4,63.7,45.4,64.1,47.4,46.7,48.4,63.4,62.5,62.9,64.6,48.2,66.4],"script":[32.8,30.3,34.7,32.7,31.4,33.4,33.3,32.6,35,32.2,32.1,31.6,33.1,32.1,35.4],"paint":[13.2,12.5,12.3,12.9,11.7,13,12.3,12.9,13.2,11.9,13.1,14.3,12.8,14.7,13.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"04_select1k","values":{"total":[38.4,41.5,41.1,40.2,38.5,39.7,38.4,39.6,37.7,40.3,37.9,39.1,37.6,41.1,38.7,38.6,38.5,37.7,38.3,36.6,38.6,39.8,42,38,40.5],"script":[32.5,32.4,33.7,31.4,32.1,34.7,33,33.5,31.5,33.9,32.3,32.7,32.1,33.6,33,31.7,32.4,31.9,32.9,31.4,34.1,32.9,36.8,30.7,33.1],"paint":[3.4,3.1,4.2,4.4,4.6,3.7,4.8,3.4,4.3,4.5,2.6,4.2,3.4,4.3,4.7,3.3,3.9,3,4.5,3,3,3.6,3.5,3.3,3.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"05_swap1k","values":{"total":[45.9,48,65.8,64,51.1,65.7,61.7,63.5,65.8,64.5,47,64.6,64.9,62.4,63.6],"script":[27.9,29.7,30.3,29.3,30.2,29.2,26.5,29.2,30.4,29.2,29.5,31,30.2,27.9,29.6],"paint":[15.9,16.4,16,16,18.8,15.8,16.2,16.9,15.3,15.6,15.9,15.8,16.2,15.2,16.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[40.6,39,35.8,42.5,42.9,32.6,37.6,39.6,37.8,38.6,38,36.7,40.5,32.5,39.1],"script":[16.1,15.6,16.5,15.3,14.7,16.6,17.3,16.1,16.9,15.8,15.6,15.7,16.1,15.8,16.3],"paint":[13.2,12.9,12.7,12.4,12.7,13,13.1,13.3,13.4,13.1,13.7,13,13.5,13.6,13.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"07_create10k","values":{"total":[417.7,407.8,416.4,408.9,410.2,406.7,413.4,413.2,407.4,408.2,407.3,411.5,408.2,409.1,409.3],"script":[182.3,183.7,184.1,182,182.5,182.2,185.3,185.1,182,182.9,182.1,185.3,182.1,183.1,183.3],"paint":[220.7,219.8,219.6,220.8,221.8,220.5,222.7,220.6,220.5,220.2,220.2,219.9,221.4,221.2,220.9]}},{"framework":"miso-v1.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.2,61,64,61.5,61.7,61.6,61,61.9,61.5,61.4,61.6,61.3,61.6,57.2,61.9],"script":[25.4,25.1,26.5,25.3,25.5,25.3,25.1,25.5,25.3,25.2,25.1,25.2,24.9,24.9,25.6],"paint":[26.6,26.4,26.8,26.7,26.8,27,26.5,26.8,26.6,26.8,26.8,26.7,27.2,26.6,26.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.5,47.6,43.2,44.1,43.3,44.7,44.5,43.1,48.6,44.6,43.5,43.8,43.3,46.1,43.1],"script":[20.4,20.7,19.9,20.5,19.3,19.7,20.3,19.5,19.9,19.5,19.6,18.7,20,19.5,20.4],"paint":[2.8,1.3,2.6,2.8,3.5,2.5,3,3,3.4,2.3,3.3,3.7,2.2,2.6,2.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.585171699523926]}},{"framework":"miso-v1.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.074122428894043]}},{"framework":"miso-v1.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.846994400024414]}},{"framework":"miso-v1.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.1737699508667]}},{"framework":"miso-v1.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.7725191116333]}},{"framework":"miso-v1.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[490.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.7,28.8,28.3,29,28.8,28.6,29,28.1,28.5,28.3,28.7,28.4,28.2,28.8,28.6],"script":[5.9,6.1,6,6.2,6.1,6,6.1,5.7,5.8,5.8,5.8,5.9,6,6,6.1],"paint":[22.2,22.1,21.8,22.2,22.1,22.1,22.3,21.9,22.1,22,22.3,22,21.7,22.3,22]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33,33.3,32.8,32.6,32.6,32.6,32.9,32.5,32.4,32.5,32.6,32.6,33,32.7,33],"script":[10.5,10.4,10.2,10.2,10.1,10.2,10.5,10.3,10.2,10.2,10.4,10.2,10.5,10.3,10.6],"paint":[22,22.3,22,21.8,21.9,21.7,21.7,21.6,21.6,21.7,21.6,21.8,21.9,21.8,21.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.6,20.7,21.5,22.1,22.2,22.6,22.6,22.7,22.4,21.3,21.8,21,22,21.6,21.8],"script":[6.4,6.1,5.9,6.7,6.1,6.6,6.6,6.8,6.5,5.6,6.2,6.5,5.7,6.1,6.4],"paint":[12.6,12.5,13.5,13.3,14.5,14.3,14.3,13.3,14.4,14.5,12.7,12.9,14.9,14,13.2]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"04_select1k","values":{"total":[11.2,11.3,11.6,11.3,11.4,11.6,11.6,10.8,11.5,11.1,11.9,11.6,12,11.8,12.5,11.5,11.1,11.6,12.6,10.6,12,11.7,11.7,11.7,11.7],"script":[5.5,5.8,5.8,5.3,5.6,6.2,5.8,5.5,5.7,5.5,5.6,6.3,5.9,6.3,6.6,6.4,5.7,5.8,6.7,5.5,5.6,6.4,5.8,5.8,6.2],"paint":[4.2,3.5,4.5,4,4.2,3.6,4.7,3.9,4.5,3.7,4.7,3.7,5.2,4.8,4.1,4.5,3.6,4.5,5.2,3.6,4.9,3.9,4.8,5.6,3.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,21.1,21,20.4,20.3,20.7,19.9,20.3,20.5,19.7,20.4,20.9,20.2,22.3,22],"script":[5.5,5.7,5.8,5.3,5.2,5.2,5.6,5.7,5.5,4.9,5.3,6.1,5.3,5.5,6.4],"paint":[12.7,12.3,13.3,13.2,13.8,12.8,12.5,12.2,13.9,13.3,14,13.4,12.8,14.9,12.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,14,14.5,14.8,14.4,14.2,14.4,14.7,13.9,14.5,14.3,14,14.4,14.7,14.5],"script":[3,3,3.1,3.1,3.1,3.2,3.3,3.2,3,3.3,3.1,3,3,3.1,3.1],"paint":[10,10,10.8,10.9,10.6,10.2,10,10.4,10.3,10.2,10.7,10.1,10.7,11,10.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"07_create10k","values":{"total":[308,286.8,290.4,287.2,289.5,288.6,289.1,284.1,295.6,286.4,288.2,288.4,288.8,288.6,289],"script":[53.6,53.6,53.6,52.6,54,52.7,53.4,52.8,54.4,53.5,52.9,53.3,52.5,54.6,52.4],"paint":[246.5,225.4,229.1,226.8,227.7,228.2,227.5,223.5,232.4,224.8,227.5,227.3,228.4,225.9,228.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37,37.2,36.8,37,36.9,36.8,36.7,37.4,37.7,37.9,36.8,36.9,37.2,37,37.2],"script":[8.8,8.9,8.7,8.8,8.6,8.6,8.7,8.9,8.7,8.6,8.8,8.8,8.6,8.7,8.9],"paint":[27.1,27.4,27.2,27.2,27.3,27.2,27.1,27.5,27.8,28.2,27,27.1,27.5,27.3,27.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.5,15.4,17,15.2,15.6,15.7,16.8,15.5,15.1,15,15.2,15.4,15,16.1,15],"script":[13.6,13.9,15,12.8,13.8,14.2,14.9,13.8,13.5,12.7,12.8,13.5,12.9,13.4,12.3],"paint":[1,0.5,1.8,2.2,0.9,0.6,1,0.2,0.7,1.4,1.1,1,1,1.7,1.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5688838958740234]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3439197540283203]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3874692916870117]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7192602157592773]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.181997299194336]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"01_run1k","values":{"total":[35.1,33.4,35.7,32.3,35.3,33.7,34.6,33.3,29.1,35,34.1,35.4,34.3,34.1,35.1],"script":[5.7,6.2,6.2,6.6,6.4,6.3,6.3,6.2,6.4,6.5,6.4,6.2,6.5,6,6],"paint":[20.9,21.4,21.2,21.8,21.7,21.6,21.2,21.3,22.4,21.6,21.4,22.1,21.8,21.5,21.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"02_replace1k","values":{"total":[31.9,35.3,32.7,35.8,33,33.1,35.4,34.5,38.1,35,34.6,38.2,34.1,35.9,34.9],"script":[8.9,9,9.3,8.8,9.1,8.8,8.8,9.1,9.1,9.1,9.1,9.7,9.3,8.9,8.9],"paint":[22.6,23.1,22.8,22.9,22.4,23,23.3,22.9,23.3,22.9,22.7,22.7,23.3,22.6,22.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38,39.1,38.2,37.8,37.7,21.5,39.1,37.6,38.3,21.8,36.9,37.4,21.1,37.6,37.1],"script":[10.6,10.4,9.9,9.7,10.6,8.8,10.1,9.9,10.1,10,10.1,10.7,10.1,10.5,9.3],"paint":[11.2,11.1,10.5,12,10.3,11.1,12.2,10.3,11,10.7,11.4,11.1,8.9,10,10.5]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"04_select1k","values":{"total":[11.6,10.6,12.6,15.3,10.7,11.9,13.3,14,13.5,10.6,11.1,12.9,14,15,11.3,14.7,10.7,11.3,13.3,12.4,10.4,10.8,10.9,10.4,11],"script":[7.5,7.2,7.4,7.8,7.7,9.2,7.3,7,7.5,8.1,8.1,8.5,7.9,8.3,8.9,8.3,8.2,7.8,7.3,8,7.9,7.9,8.1,7.6,7.8],"paint":[2,2.4,1.6,2.8,1.4,1.8,2.7,2.4,1.5,1.1,2.7,2.4,2.2,2,1.4,2.3,2.2,1.7,2.1,1.5,1.7,2.3,1.8,1.5,1.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"05_swap1k","values":{"total":[37.8,22.8,22.1,39.2,38.7,21.2,38.4,37.9,38.9,38.3,38.3,22.1,37.7,38.3,38.6],"script":[7.6,8.2,8,8.9,7.8,7.5,7.9,8.6,8.1,7.1,8.2,7.6,7.1,7.8,8.2],"paint":[13.7,13.1,13.1,13.1,13.7,11.2,12.9,12.7,12.7,13.3,13.3,12.5,14.4,14.2,13.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,17.9,13.3,13.5,14.6,15.8,12.7,13.5,13,14,13.4,13.2,13.4,14.1,13.3],"script":[3.9,4,4.1,4.3,3.9,4,3.4,4,3.9,3.9,4.2,4.1,4,4,3.9],"paint":[8.8,9.1,8.5,9,8.7,9.4,8.8,9.1,9,9.1,9.1,9,9.1,8.8,9.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"07_create10k","values":{"total":[285.1,290.5,290.6,294.5,293.3,292.9,289.6,298.4,290,293,293.6,292.2,288.9,292.7,297.6],"script":[68.7,70.3,69.6,70.7,70.2,69.6,70.4,70.1,70.7,70,70.5,70.3,70.4,69.8,69.6],"paint":[213,214.1,213.3,216.6,215.9,215.6,215.5,217.6,215.6,215.3,215.5,213.6,215.2,214.1,219.1]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.5,39.9,39,40.1,38.9,39.1,34.5,34.1,39.7,34.3,39.3,41.7,41.8,34.9],"script":[8.5,8.5,8.6,8.1,8.6,8.3,8.4,8.5,8.4,8.5,8.4,8.8,8.1,8.6,8.8],"paint":[25.2,25.5,25.6,25.3,25.8,25.1,25.2,25.5,25.2,25.6,25.5,24.8,25.7,25.3,25.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,13.2,12,29.5,28.1,28.5,28.6,12,12.3,27.6,11.9,11.7,27,28.2,27.3],"script":[10.7,9.6,9.9,11.9,10.6,10.9,11.1,10.4,10.5,9.6,10.4,9.8,9.5,10.2,9],"paint":[0.6,2,1.6,1.5,1.1,1.5,1,0.3,1.1,1.9,0.3,0.9,0.3,1.2,1.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6371936798095703]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.976790428161621]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.401081085205078]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9134235382080078]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.14993095397949]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"01_run1k","values":{"total":[26.4,26.1,26.6,26.2,25.9,26.5,26.2,26.1,26.4,26.6,27.9,26.1,26.3,26.5,26.2],"script":[4.6,4.5,4.9,4.6,4.5,4.6,4.6,4.6,4.6,4.6,5.7,4.6,4.6,4.6,4.5],"paint":[21.4,21.2,21.3,21.3,21,21.5,21.3,21.2,21.5,21.6,21.6,21.1,21.4,21.5,21.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"02_replace1k","values":{"total":[31.6,31,30.5,30.4,29.9,30,31.8,30.4,31.3,30,31.1,30.6,29.9,29.8,31.3],"script":[7.8,7.7,7.5,7.4,7.1,7.1,7.8,7.2,7.8,6.9,7.7,7.6,7,7,7.8],"paint":[23.2,22.8,22.5,22.4,22.3,22.4,23.3,22.6,22.9,22.4,22.9,22.4,22.3,22.3,22.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.7,10.8,11,10.9,13,11.3,11.4,11.3,15.5,10.8,11.5,11.4,10.9,11.3],"script":[1.6,0.9,1.4,1.1,1.4,1.8,1.6,1.1,1.1,2,1.2,1.3,1.3,1.2,1],"paint":[7.6,8.8,8.6,8.8,8,9.7,8.6,9.1,9.3,12.1,8.3,9.4,8.1,8.6,9.1]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.8,3,2.4,3.1,2.2,2.7,2.7,2.7,2.3,2.4,2.1,2.7,2.6,2.6,2.4,2.7,2.5,2.7,2.8,2.6,2.4,3.6,2.9,2.5],"script":[1,0.1,0.8,0.4,1.2,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.9,0.6,0.5,0.9,0.1,0.3,0.6,0.1,0.1,0.1,0.6,0.8,0.1],"paint":[1.8,1.6,2.1,1.7,1.3,1.5,2.2,1.3,2.5,1.1,2.2,1.6,1.3,1.6,2,1.4,2,2,1.5,2.5,1.7,1.8,1.8,0.4,1.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,13.9,14,15,16.1,15.4,14.7,14.3,13.8,14.4,14.3,14.3,14.1,14.1,14.7],"script":[1.5,1.1,1.5,1.3,1.1,1,1,1.6,1.1,1.6,1.3,1.5,1.3,1.8,1.4],"paint":[11.4,11,11.4,12.6,13.5,12.9,12.7,11.4,11.9,11.8,11.5,11.1,11.2,11.4,12.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.7,10.4,10.8,10.7,10.4,10.8,10.7,10.4,10.5,10.4,10.8,10.3,10.4,10.6],"script":[0.4,0.5,0.4,0.6,0.4,0.5,0.6,0.5,0.5,0.6,0.6,0.5,0.4,0.5,0.6],"paint":[9.6,9.9,9.2,9.6,9.3,9.1,9.7,9.6,9.2,9.7,9.5,9.4,9.5,9.6,9.8]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"07_create10k","values":{"total":[274.8,274.9,276.4,275.6,276,281.1,276.1,277.8,275.7,277.5,276.7,276,276.6,275.4,279.9],"script":[54.4,54.9,54.2,54.7,54.6,54.5,54.4,57,55.1,54.8,54.2,54.1,54.4,54.5,54.2],"paint":[213.4,213.1,215.2,214,214.4,218.9,214.8,213.9,213.8,215.9,215.6,215.2,215.4,213.9,217.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.1,32.2,31.7,31.6,32.1,32,31.9,31.4,32,32.5,32,32,31.8,31.8,31.7],"script":[4.9,5.3,5.1,5.3,5.2,5.4,5.3,5.1,5.3,5.4,5.3,5.4,5.2,5.2,5.3],"paint":[25.5,26,25.7,25.4,25.9,25.7,25.7,25.4,25.8,26.2,25.7,25.7,25.7,25.6,25.5]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10.5,10.6,9.8,9.9,10.9,10.2,10.6,10.3,10.7,9.8,9.8,10.1,10.9,10.6],"script":[8.6,8.4,7.8,8,8.5,8.9,8.7,8.8,8.8,8.8,8.3,8.7,8.3,9,8.4],"paint":[0.9,0.5,2,0.7,0.3,0.5,0.3,0.8,0.7,0.6,0.7,0.9,0.9,0.9,1.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8121128082275391]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9510927200317383]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.976673126220703]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1915369033813477]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.80894660949707]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[73.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.3,27.9,28.4,28.7,28.7,28.4,28.4,28.4,28.5,28.4,28.6,28,28.3,28.1],"script":[5.9,5.9,5.9,5.9,6,5.9,6,5.9,6,5.9,5.9,6,5.9,5.9,5.9],"paint":[21.8,22,21.6,22,22.2,22.4,22,22,22,22.2,22.1,22.2,21.7,22,21.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"02_replace1k","values":{"total":[32.7,33,32.8,32.6,32.5,32.8,33,32.7,33.3,33.4,32.5,32.8,32.8,32.9,33.9],"script":[8.6,9,8.9,8.9,8.8,9,8.9,8.9,9.7,9.7,8.8,8.7,8.9,9.2,9.9],"paint":[23.6,23.5,23.4,23.3,23.2,23.4,23.6,23.3,23.2,23.3,23.2,23.6,23.4,23.2,23.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.7,13.5,14.1,16.2,14.3,13.9,14.3,14.5,13.5,14.4,14,13,14.8,14.3],"script":[2.9,3,3.1,3.1,3.7,3.8,3.6,2.8,3.6,2.2,2.6,4,3.1,3.1,3.7],"paint":[8.6,9.6,7.9,10,10.6,9.3,8.9,10.4,9.9,10.1,10.5,9,8.5,10.5,8.9]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"04_select1k","values":{"total":[6.5,7.3,7.1,6.5,6.9,6.2,7.8,6.8,7.5,6.7,6.8,7,6.5,6.9,7.1,6.4,6.6,7.2,6.3,6.6,6.7,6.4,6.7,6.8,6.3],"script":[4.4,5.2,4.8,4.3,4.3,4.6,5.3,4.3,5.2,4.1,4.5,4.8,4.5,4.5,4.7,4.4,3.6,4.6,4.2,4.4,4.4,4.2,4.6,4.5,4.1],"paint":[1.5,1.3,2.2,1.6,2.5,1,2.3,2,1.6,2.4,0.6,1.6,1.2,1.7,2.2,1.4,1.3,2.4,2,2,2.2,1.1,1.5,1.7,1.4]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"05_swap1k","values":{"total":[19.3,17.9,18.6,18.8,18.6,18.5,18.6,17.9,19.6,17.9,18.5,18.6,19.2,18.3,19.2],"script":[5.2,5.1,5.8,5,4.7,5.2,5.7,5,5.2,5.4,5.3,5.4,6,5.3,4.7],"paint":[12.4,11.6,11.2,12.7,12.3,11.5,10.6,11.1,13,10.8,12.4,11.6,11.8,12,13.5]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.9,12.8,12.7,12.4,12.8,12.9,12.9,12.8,13,12.9,13.2,13.2,12.8,13.1],"script":[2.5,2.4,2.5,2.4,2.5,2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.8],"paint":[9.7,9.6,9.6,9.6,9.7,9.8,9.8,9.9,9.6,9.8,10.1,10,9.9,9.8,9.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"07_create10k","values":{"total":[367.7,365.8,363.4,366.5,368.2,364.7,365.5,363.5,366.6,364.7,364.5,366.2,362.9,365.6,371.9],"script":[142,140.6,138.6,140.8,140.2,139.6,140.9,138.6,141.5,139.6,140.4,139.8,138.7,141.3,140.4],"paint":[217.5,217.4,216.5,218,220.2,217.5,216.8,217.3,217.4,217.4,216.4,218.7,216.2,216.6,222.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.3,48.5,49.1,48.4,48.2,47.9,49.1,48.2,47.9,49.1,48.3,48,48.9,47.6,47.8],"script":[19.5,19.4,19.7,19.2,19.1,19.3,19.2,19,19.2,19.8,19.2,18.7,19.4,19,19.2],"paint":[27.9,28.2,28.5,28.3,28.2,27.8,28.9,28.3,27.9,28.5,28.1,28.4,28.6,27.8,27.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[19,18.4,18.2,19,19.2,18.9,20.5,19.4,18.7,18.4,19,19,21.3,18.6,18.5],"script":[17.9,16.7,16.7,17.9,17.8,17.7,19.4,17.7,16.5,16.4,17.8,17.8,19.7,16.8,17.1],"paint":[1,1.6,1.4,1,0.8,1.2,1,1.7,2.1,1.9,1.1,1.1,0.7,1.5,1.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.840876579284668]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.77424430847168]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.80296516418457]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.299688339233398]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.50382804870605]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[232.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[66.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[291.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.9,28.9,29.1,28.1,29.1,29.1,29.3,28.8,28.7,29,29,29.3,28.6,29.2,28.9],"script":[6.7,6.8,6.9,6.8,7.1,7,7.1,6.7,6.7,6.7,6.8,7,6.7,6.9,7],"paint":[21.6,21.6,21.6,20.7,21.5,21.5,21.6,21.6,21.5,21.7,21.7,21.8,21.5,21.7,21.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[33,33.6,33.8,33.1,33.9,33.3,33.7,33.7,33.7,33.5,33.6,33.4,34,33.6,33.9],"script":[10.6,10.9,10.6,10.5,10.7,10.6,10.8,10.8,10.9,10.5,10.7,10.4,10.7,10.7,10.6],"paint":[21.8,22.1,22.6,22.1,22.6,22.1,22.3,22.4,22.2,22.5,22.2,22.4,22.7,22.3,22.8]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.1,13.3,13.9,15.4,13.8,13.7,13.6,14.2,14.9,13.3,13.6,13.6,16.6,14.2],"script":[2.7,3.1,3.1,2.6,3.8,3.1,3.3,3.1,3.1,3.3,3.3,3.1,2.8,3.4,3.5],"paint":[10.3,8.9,8.6,10.4,10.6,10.1,9.7,9.4,9.8,10.4,8.9,9.6,9.6,12.5,10]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[4.7,3.7,3.8,4,3.1,3.4,3.3,3.5,4.2,4,3.7,3.4,3.7,3.9,3.2,3.7,3.9,2.9,3.6,3.6,4.1,4.2,3.7,3.9,3.2],"script":[1.5,1.6,1.4,1.7,1.5,1.3,0.9,1.6,1.9,1.7,2.2,1.3,1.3,1.7,1.6,1.8,1.7,1,1.6,1.7,1.7,1.5,1.5,1.7,1.1],"paint":[1.3,1.3,2.3,2.2,1.1,2,2.3,1.8,2.1,1.5,1.4,1.2,1.6,1.5,1.5,1.3,2.1,1.1,1.8,1,2.3,2.5,0.8,1.4,2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[16.2,16.8,15,15.6,15.3,15.9,16,16.2,17.7,16.7,20.4,16,16,16.1,16.6],"script":[2.4,3.1,2.4,2.6,2.8,2.9,2.9,2.2,3.3,3.1,3.3,3,2.6,2.5,2.4],"paint":[13,12.4,11.3,11.9,11.3,12.1,12.2,12.8,12.9,12.6,15.3,11.7,11.8,12,12.5]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12,12.2,11.5,12,11.7,11.9,11.7,12.1,12.1,11.9,12.1,12,12.1,11.6],"script":[1.6,1.8,1.5,1.7,1.7,1.4,1.5,1.7,1.8,1.7,1.6,1.7,1.7,1.7,1.7],"paint":[9.9,9.7,9.8,9,9.5,9.6,9.7,9.2,9.7,9.4,9.7,9.7,9.8,9.5,9.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[288.8,288.3,286.7,285.3,290.5,288.2,288.9,285.8,286.2,286.2,291.4,291.6,285.1,288.3,287.6],"script":[65.9,64.3,64.2,62.3,66.5,63.8,65.6,64.6,63.6,65.5,69,66.6,63.5,65.2,64],"paint":[215.8,217,215,215.9,216.8,217,216.1,214.2,215.5,213.7,215.1,218,214.5,215.9,216.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35,34.9,35.3,34.6,35.6,35.2,34.8,35.2,34.8,35.2,34.8,34.5,34.7,34.8,34],"script":[8,8.1,8.2,7.9,8.1,8.3,8,8,8.3,8.1,8.3,7.8,8.3,8,8.2],"paint":[26,25.9,26.1,25.7,26.5,26,25.9,26.2,25.6,26.2,25.6,25.8,25.5,25.8,24.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,12.5,12.9,13.5,12.7,13,13.2,13.3,12.7,12.7,12.7,12.8,13.4,12.6,12],"script":[11.7,10.2,11,11.4,10.8,11.5,11,10.7,11.1,10.6,10.8,11.3,11,10.8,10.9],"paint":[1,2.1,0.3,1,1.7,0.2,0.7,1.5,0.2,1.3,1.7,0.3,1.4,1.1,0.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5533246994018555]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.983302116394043]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.0129194259643555]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7552499771118164]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.80017852783203]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"01_run1k","values":{"total":[37.5,33.5,37.1,36.1,35.4,36.9,37.2,37.1,37.2,33.9,33.8,37.8,35,38.4,35.4],"script":[5.5,5.6,5.9,6.1,6.1,6.2,6.1,6,6.1,6.1,6.1,5.9,5.8,5.7,6],"paint":[21.2,22.2,21.7,21.6,22.6,22.2,21.9,21.3,21.9,22.2,22.1,21.5,22.2,21.5,22.1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"02_replace1k","values":{"total":[31.2,31.9,33.6,34.5,34.2,33.4,33.6,32.7,33.7,32.6,33,31.9,31,33.3,32],"script":[8.1,7.8,8.3,8.4,8.7,8.3,8.7,8.6,8.2,8.1,8.5,8.6,8.3,8.7,8.7],"paint":[22.6,23,22.9,23.9,23.1,22.8,22.6,23.1,23,22.7,22.5,22.9,22.3,22.4,22.9]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.4,10.8,11,11.6,11.1,12.5,11.9,10.8,12.2,10.6,10.1,12.1,11,11.6],"script":[0.4,0.1,0.1,0.6,0.1,0.1,1.1,1.2,0.1,1,0.3,0.1,0.7,0.6,0.5],"paint":[10.3,10.3,9.6,9.1,10,9.8,8.9,10,9.7,9.6,8.7,9.3,10,9.1,10.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2,2.3,2.9,2.4,2.6,2.5,1.6,2.8,2.7,2.4,2.5,2.4,2,2.2,2.4,2.4,1.9,3.6,2.2,2.8,2.2,1.9,2],"script":[0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0],"paint":[1.7,2.3,1.8,2.1,1.3,2.2,1.8,2.1,0.9,2.6,2.5,2.2,1.5,1.6,1.1,2,1.5,1.4,1.1,2.1,2,2,1.1,1.2,1.8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"05_swap1k","values":{"total":[13.3,13,12.5,13.1,13,13.7,14,12.6,13.4,13.6,13.2,13.3,14.5,13,14.5],"script":[0.7,0.5,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.4,0.8,0.2,0.4],"paint":[11.6,11.6,11.4,11.6,11.1,12,12.5,11.6,11.8,12.3,11.6,11.3,12.3,11.8,13.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,10.3,10.6,9.9,10.7,10.3,10.2,10,10.3,10.2,10.2,9.8,9.8,10.2,10.4],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.4,0.1,0.2,0.1,0.1,0.3,0.3],"paint":[9.5,9.4,9.9,9.5,9.9,9.5,9.3,9.3,8.9,9,9.5,8.9,9.3,9.4,9.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"07_create10k","values":{"total":[289,290,289.2,285.7,285.6,290.9,702,286.6,288.5,292.8,710.9,717.5,285.5,292.6,710.8],"script":[59.2,60.3,61.3,65.1,64.9,61.9,62,65.1,65.5,62.9,63.1,61.6,63.7,62.5,62.5],"paint":[226.2,226,224.4,217.1,216.7,225.4,229.1,217.8,219,226.2,233.7,231.9,217.8,226.6,229.3]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.3,33.6,50.1,50.4,50.3,50.3,50.4,34.1,50.5,49.8,50.6,51.4,50.6,49.2,50.8],"script":[5.9,6.1,5.9,6.3,6.1,6.2,5.9,6.2,6,6.1,6.2,6.2,5.9,6.2,6.1],"paint":[25.9,26.8,25.4,25.2,25,25.2,25.2,27.3,25.5,25,25.6,26.3,25.8,24.7,25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.4,10.2,10.5,10.7,10.1,11,11,10.7,10.6,11,10.4,10,10,9.8],"script":[8.7,8.6,8.4,8.3,8.3,8.6,9,9,8.7,8.5,8.8,8.4,8.5,8.7,8.6],"paint":[0.2,0.3,0.9,0.9,2,0.7,1.1,1.7,0.7,0.9,1.3,1.3,0.6,0.3,0.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6935501098632812]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5599679946899414]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.539504051208496]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9478740692138672]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.703126907348633]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"01_run1k","values":{"total":[27.8,33.6,34.2,33.5,33.7,34.3,34,34.1,32.5,34.9,33.1,33.4,35.3,35.8,34],"script":[24.2,24.5,23.3,24.6,24.2,24,23.6,24.3,24.2,24,24.1,24.1,23.7,24.1,23.9],"paint":[21.2,21.3,20.2,21.4,21,20.8,20.4,21.3,21.1,20.9,21,21,20.6,20.9,20.8]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"02_replace1k","values":{"total":[40.9,33.1,33.9,35.4,34.4,36.3,33.1,33.9,32.6,32.4,35.8,35.7,33.9,34.9,35.2],"script":[28.8,29,29.1,29.2,28.8,29,28.7,28.6,28.7,28.6,29,29.1,29,28.7,29],"paint":[21.9,21.8,21.7,21.9,22,22.1,22.2,21.9,21.7,21.7,21.8,21.8,22.2,22,21.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[57.3,56,42.4,62.1,41.8,40.6,43.3,59,42.5,40,57,57.1,40.6,40,58],"script":[33.9,32.2,34.6,36.5,35.2,33,33,34.4,34.4,32.6,34.5,33.8,33.6,32.2,33.6],"paint":[15.3,12.8,14.6,13.5,12.5,11.1,14,13.4,14,12,13,13.5,12.1,10.8,13.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"04_select1k","values":{"total":[36.1,34.5,36.7,34.3,33.6,35.2,35.9,34.5,35.5,35,35.2,33.9,34.1,34,36.5,34.3,35.3,37.5,34.8,35,34.1,35.5,36.1,34.1,36.9],"script":[29.3,28.9,30.4,28.7,28.3,28.8,28.6,27.9,30.2,29.6,28.2,28.3,28.7,28.4,29.5,27.5,29.5,31.2,28.7,29.1,27.4,29.4,30.4,28.9,28.2],"paint":[3.7,3.2,3,2.6,2.8,2.2,5.2,3.5,3.7,3.3,4.4,2.5,3.5,3.8,3.3,3.8,3.3,4.1,3.4,3.7,1.9,4.2,3.1,2.6,3]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"05_swap1k","values":{"total":[133.2,130,146.7,148,145.3,132.6,149.1,131.3,149.2,131.9,149.6,147.7,145.5,149.8,130.2],"script":[114.7,113.3,113.3,114.4,111.9,115,116.4,111.9,115.7,114.5,115.6,115.2,113.3,117,112.6],"paint":[85.7,85.4,86.8,85.9,83.1,87,86.5,86.5,86.7,86.5,87.7,84.8,83.8,87.5,84.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[65.4,66.1,69.6,66.2,66.6,66.9,68.1,66.3,64.3,65.6,67.3,66.1,66.6,65.6,71.8],"script":[20.8,20.8,21.3,21,20.6,21.2,20.4,21.4,20,20.5,21.9,21.2,21,21.6,21.3],"paint":[43,43.5,42.7,43.7,44.1,43,42.5,41.8,42.3,43.4,43.9,43,43,42.2,44.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"07_create10k","values":{"total":[289.8,294.4,293.6,295,291.9,294.1,297.6,295.3,295.4,293.4,297.2,293.3,290.9,288.1,294.7],"script":[241.2,239.7,239.7,240.1,240.4,241.2,242.4,241.3,241.9,241.5,242.7,241.2,241.9,239.8,240.1],"paint":[225.9,224.3,225.3,225.5,225,225.2,227.6,225.2,226.3,224.7,229,226.5,225.3,224.4,223.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.2,43.5,43.4,42.8,43,43.6,42.9,43.3,42.6,45.7,43.8,45,42.2,43.4,43.6],"script":[32.6,32.5,32.4,32,32.5,32.7,32.3,32.6,32.2,32.3,32.4,32.3,31.8,32.9,32.5],"paint":[26.2,26.5,26.1,25.9,26,26.1,25.9,26.2,25.8,26.1,26,25.7,25.4,26.1,25.8]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.1,42.8,22.8,22.4,23.8,23.2,41.8,24,22.7,43.3,22.5,23.6,42.7,24.4,44.2],"script":[18.6,19.6,19,18.3,20.4,18.9,19.7,19.4,19.4,21.1,18.5,20.4,19.1,20.4,19.4],"paint":[1.6,1.7,2.4,3,3.5,2.9,2.9,3.5,1.8,1.9,2.5,3,2.1,2.7,2.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.316070556640625]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.850957870483398]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.89284610748291]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.579249382019043]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.24550437927246]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[113]}},{"framework":"owl-v2.5.1-keyed","benchmark":"01_run1k","values":{"total":[27.7,26.2,30.3,26.1,25.9,26.2,26.4,32.1,26.1,32.2,26.5,26.7,26.2,26.9,26.8],"script":[4.4,4.5,4.5,4.5,4.4,4.3,4.5,4.3,4.5,4.3,4.7,4.5,4.4,4.5,4.4],"paint":[21.5,21.5,21.5,21.5,21.4,21.6,21.6,21.4,21.5,20.9,21.6,21.8,21.4,22.2,21.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"02_replace1k","values":{"total":[35.8,30.4,31.8,33,30.3,34,30,31.9,30.4,34.1,33.5,34.3,34.2,32.4,32.7],"script":[7.5,7.4,7.3,7.4,7.5,7.5,7.6,7.4,7.4,7.5,7.4,7.8,7.6,7.5,7.5],"paint":[22.1,22.5,22.4,22.4,22.4,22.1,22,22,22.6,22.6,22.7,22.4,22.1,22,22.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,17.5,17.2,18,17.3,17.4,17.7,18.1,16.7,18.4,17.8,18,18.2,18,18],"script":[7.6,7.1,7.3,6.8,6.9,7.2,7,6.4,6,7.8,7.2,7.6,7.2,7.8,7.3],"paint":[11.1,10.2,9.3,9.9,9,10,9.4,9.9,9.8,9.1,9.3,9.1,9.5,9,9.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"04_select1k","values":{"total":[8,8,8.5,7.4,7.9,8.2,8.8,8.1,7.1,8.6,7.6,8.4,7.4,7.8,7.4,8.2,7.5,8.4,7.6,7.6,6.8,7.9,7.8,7.4,7.9],"script":[5.7,5.7,6.5,5.7,5.9,4.9,6.4,5.8,5.3,5.4,5.7,5.4,5.2,5.2,5.3,5.2,5,6.3,5.9,5.7,5.1,5.2,5,5.5,5.8],"paint":[1.5,2.1,1.8,1.6,1.9,1.4,1.7,2.1,1.3,2.2,1.2,1.9,1.5,1.7,1.9,2.5,2.3,1.3,1.1,1.8,1.6,1.7,1.9,1.8,2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"05_swap1k","values":{"total":[33.1,34.1,17.7,18.1,33.8,18.1,18.5,18.1,17.8,21.9,18,18.4,17.5,18.1,17.6],"script":[5,5.2,5.7,6,5.4,6,5.2,5.9,5.6,6.9,5.3,5.7,4.9,5.8,4.8],"paint":[12,13.4,11.5,12,11.3,11.2,12.4,10.7,11.7,14.7,11.9,12.5,11.9,11.5,11.2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,13.6,13.9,13.5,14.3,13.4,14,13.4,13.6,14,13.4,13.8,13.4,13.9,13.6],"script":[4.7,4.7,4.8,4.5,4.9,4.3,4.9,4.7,4.8,4.9,4.7,4.7,4.4,4.7,4.5],"paint":[9,8.8,9,8.8,9.2,8.7,8.8,8.6,8.6,8.9,8.3,8.7,8.8,8.7,9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"07_create10k","values":{"total":[275,276,277.8,275.2,276.9,274.2,275.6,274.4,275.8,275.4,274.8,275.8,275,273.3,272.7],"script":[46.4,47.1,46.3,46.6,47,46.7,46.3,46.9,46.3,46.8,46.3,46.9,47.3,47.2,46],"paint":[225.1,225.5,227.7,225.1,226.5,224.2,225.8,224.2,226.2,225.2,225.2,225.4,224.3,222.8,223.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,39.3,39.6,39.5,33.9,34.3,34,34.3,33.4,39.3,34.5,38.1,38.7,38.9,33.7],"script":[7.5,7.6,7.6,7.7,7.6,7.7,7.7,7.8,7.5,7.4,8,7.4,7.6,7.7,7.8],"paint":[24.7,25.4,25.6,25.3,25.5,26.2,25.9,26.1,25.5,26.1,26.2,25.3,25,25.4,25.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.2,11.1,10.7,11.6,10.8,12.2,11,10.7,10.9,12.3,11.9,11.3,11.2,11.5],"script":[8.9,9.4,8.5,8.4,9.5,8.2,9,8.9,8.9,9.3,10.1,9.1,9.1,9.4,9.7],"paint":[1.7,1.1,1.7,1.2,0.3,0.6,2,1.4,1,0.3,2,2.1,1.6,1.6,1.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.879669189453125]}},{"framework":"owl-v2.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.352874755859375]}},{"framework":"owl-v2.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3989343643188477]}},{"framework":"owl-v2.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3456077575683594]}},{"framework":"owl-v2.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.868826866149902]}},{"framework":"owl-v2.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[79.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.7]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"01_run1k","values":{"total":[27,27.2,26.9,27.3,28.1,27,26.8,26.9,27.2,27.6,26.8,27.2,26.9,27.1,27.2],"script":[4.8,5.1,5,5,5.1,5.1,4.7,5,5,5.1,4.7,5.1,4.7,4.8,5.1],"paint":[21.8,21.6,21.3,21.8,22.4,21.4,21.7,21.4,21.7,22,21.7,21.6,21.8,21.9,21.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"02_replace1k","values":{"total":[30.4,30.6,30.2,30.1,30.8,29.8,30.3,30.3,30.7,30.7,30.1,29.9,29.7,30.1,29.9],"script":[7.1,7.1,7.1,7.1,7.1,6.9,6.9,7,7.4,7,7.3,7.1,6.8,7,7],"paint":[22.7,22.9,22.6,22.5,23.1,22.3,22.8,22.7,22.7,23.1,22.2,22.4,22.3,22.6,22.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,12.6,12.3,12.4,11.7,12.4,12.3,13.7,12.6,11.6,12.3,11.7,14.5,11.6,11.9],"script":[1.2,1,1.5,0.5,0.8,0.9,0.8,1.1,0.5,1,0.8,0.2,1.1,0.5,1.4],"paint":[9.2,10.7,8.9,10.7,9.7,10.2,10.1,11.5,9.8,9.7,9.9,10.3,11.5,9.7,9.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"04_select1k","values":{"total":[3,2.6,2.9,2.7,2.1,2.5,2.2,2.4,3.2,2.6,2.7,2.5,2.9,2.1,3.3,3.3,2.3,2.7,2.6,2.4,2.7,2.5,3.1,2.6,2.3],"script":[0.7,0.1,0.8,0.1,0.6,0.5,0.6,0.6,0.8,0.1,0.9,0.6,0.1,0.2,1,0.9,0.1,0.3,0.1,0.5,0.7,0.1,0.6,0.3,0.5],"paint":[2.1,1.5,2,2.4,1,1.9,1.1,1.6,1.5,2.3,1.5,1.8,1.8,1.1,2.1,1.2,1.3,2.2,0.8,1.7,1.9,1.9,1.8,2.2,1.7]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.9,13.7,13.6,14.7,13.7,13.1,13.9,13.8,14.8,13.3,13.8,13.6,13.1,13.4],"script":[1.4,1.1,1.2,0.7,0.6,0.9,0.6,0.9,1.1,1.6,1,0.9,1,0.2,0.9],"paint":[11.6,11.2,11.4,12.3,12.5,11.8,11.4,12.1,11.6,12,11.3,11.8,12.1,11.2,11.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,10.5,10.3,9.9,10.4,10.3,9.9,10.4,10.2,10,10.6,10.4,10.3,10.2],"script":[0.4,0.4,0.1,0.1,0.1,0.4,0.1,0.1,0.2,0.1,0.1,0.3,0.3,0.4,0.1],"paint":[9.5,9,9.7,9.3,9.2,9,9.6,8.6,9.9,9.5,9.6,9.4,9.1,8.6,9.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"07_create10k","values":{"total":[281.9,281.3,281.3,279.3,280.1,283.1,282.2,279.1,280.8,278.3,280.1,282.4,281.3,281.7,281.2],"script":[46.9,47.1,49.1,47.3,47.6,47.4,47.7,47.2,47.5,47.9,48.1,47.4,48.6,47.4,47.7],"paint":[227.9,226.8,225.1,224.9,225.3,227.5,227.3,224.7,226.2,223.3,224.9,227.5,225.5,226.7,226.1]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.3,32.9,32.5,31.9,32.5,32.3,33.3,31.6,32.7,32.3,32.5,32.1,32.9,32,32.4],"script":[5.2,5,5.3,5.2,5.2,5.1,5.1,4.9,5.2,5.2,4.9,5,5.3,4.9,5.3],"paint":[26.2,27.1,26.3,25.8,26.3,26.2,27.3,25.9,26.6,26.1,26.8,26.4,26.6,26.4,26.2]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.3,11,10.5,10.1,10.8,10.7,10.7,11,11,12.2,10.8,9.8,10.7,10.4],"script":[8.8,8.2,9.2,9.1,8,8.8,8.7,9.2,9.1,9.1,10.1,9,8.4,9.1,9.1],"paint":[0.8,1.8,0.9,0.3,1.1,0.7,1,0.3,0.9,1.1,1.2,1.2,0.2,0.2,0.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6104583740234375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.101165771484375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1690216064453125]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8223886489868164]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.909683227539062]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.7]}},{"framework":"pota-v0.19.206-keyed","benchmark":"01_run1k","values":{"total":[25.2,25.1,25.4,26.1,24.9,26,25.3,25.8,25.7,25.3,25.4,25.6,25.2,25.1,25.3],"script":[3,2.8,3.1,3.1,2.8,2.7,2.8,3.1,3,3,2.8,3.1,2.8,2.9,3.1],"paint":[21.8,21.9,21.9,22.5,21.7,22.9,22.1,22.3,22.2,21.9,22.2,22.1,21.9,21.9,21.8]}},{"framework":"pota-v0.19.206-keyed","benchmark":"02_replace1k","values":{"total":[30.8,29.4,29,28.7,28.4,28.8,28.8,29,28.9,28.7,28.3,29.1,29,28.7,28.9],"script":[6.6,6,5.8,5.8,5.3,5.8,5.8,5.7,5.9,5.9,5.7,6.2,6,5.9,5.7],"paint":[23.7,22.8,22.6,22.3,22.5,22.5,22.4,22.7,22.5,22.2,22.1,22.3,22.4,22.3,22.5]}},{"framework":"pota-v0.19.206-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.8,12.5,12.1,11.9,12.4,10.8,12.1,12.3,11.8,11.6,12.3,12,10.8,12.4,12.4],"script":[1.2,1,0.8,1.4,1.5,0.2,0.6,1.2,1.1,0.6,1.2,1.5,0.2,0.9,0.7],"paint":[11.1,10.5,9.6,9.5,9.8,8.9,10.3,10.2,9.5,9.7,9.9,9.5,9.8,9.9,10.6]}},{"framework":"pota-v0.19.206-keyed","benchmark":"04_select1k","values":{"total":[4.8,3.2,2.8,2.2,2.1,2.6,2.7,2.1,2.1,2.2,2.6,2.3,2,2.5,2.6,2.6,2,2.3,2.2,2.6,2.2,2.4,2,2.2,2.2],"script":[0,0,0,0,0,0,0,0,0.5,0,0.4,0,0.1,0,0.6,0,0,0,0.1,0,0,0,0,0,0],"paint":[2.4,3,1.5,1.5,1.5,2.5,1.8,1.4,1.5,1.7,2,1.4,1.1,1.4,1.6,2.5,1.7,1.2,1.9,1,1.4,1.7,1.8,2,1.2]}},{"framework":"pota-v0.19.206-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.1,13.3,13.6,13.2,13.6,15,14.5,13.5,13.6,15.1,13.3,14,13.4,13.9],"script":[1,0.2,0.7,0.2,0.2,0.3,0.6,1.2,0.2,1.1,1,1.4,1,1,0.8],"paint":[11,11.7,11,12.2,12,12.7,13.5,12.2,12.4,11.7,13.1,10.3,11.2,11.4,11.5]}},{"framework":"pota-v0.19.206-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,11.2,10.7,10.9,10.9,10.8,11.5,10.7,10.8,10.9,10.8,10.9,10.4,10.6,10.6],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.5,0.6,0.6,0.5,0.6,0.3,0.6],"paint":[9.4,10.1,9.6,9.6,9.4,9.7,10.5,9.7,9.7,9.4,9.5,9.4,9.2,9.8,9.2]}},{"framework":"pota-v0.19.206-keyed","benchmark":"07_create10k","values":{"total":[270.1,265.6,266.1,266.3,266.3,267,266.1,265.8,266.6,265.5,265.8,264.5,265.5,267.8,265.8],"script":[34,33.6,33.5,34.4,33.7,35.5,33.7,33.9,34,34,33.9,33.1,33.8,34,34],"paint":[228.3,224.5,225.1,224.5,225.1,224.1,224.9,224.5,224.9,224.2,224.4,224.1,224.4,226.5,224.4]}},{"framework":"pota-v0.19.206-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.8,31.8,30.4,30.5,30.1,29.7,30.8,30.2,30.4,30,30.4,31.5,30.3,30.8,30.8],"script":[3.1,3.2,3.1,3.2,3.1,3.1,3.3,3.1,3.1,3.1,3.1,3.1,3.1,3.2,3.3],"paint":[26,27.8,26.5,26.5,26.3,25.9,26.7,26.3,26.5,26.1,26.4,27.6,26.5,26.8,26.8]}},{"framework":"pota-v0.19.206-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,10.3,9.7,10.1,12.3,9.9,10.4,10.7,9.8,10.1,10.6,9.7,11.3,10.6,12.6],"script":[8.1,8,7.7,7.7,9.4,7.7,8.1,8.8,7.8,8.2,8.6,7.9,9.1,8.6,10.2],"paint":[1.3,0.6,1,0.7,1.8,1.1,1.4,1,1.1,1,1.3,0.7,1,1.2,1.2]}},{"framework":"pota-v0.19.206-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6116056442260742]}},{"framework":"pota-v0.19.206-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6195240020751953]}},{"framework":"pota-v0.19.206-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.636446952819824]}},{"framework":"pota-v0.19.206-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8092126846313477]}},{"framework":"pota-v0.19.206-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.014822006225586]}},{"framework":"pota-v0.19.206-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"pota-v0.19.206-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"pota-v0.19.206-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.5,27.2,26.8,27.6,27.4,27.3,27.3,27.6,27.4,27.2,27.2,28.5,27.3,27.2],"script":[5.7,5.5,5.6,5.6,5.6,5.8,5.8,5.7,5.8,5.8,5.6,5.6,5.9,5.9,5.8],"paint":[21.8,21.4,21,20.7,21.4,21.1,21,21.1,21.3,21,21.1,21.1,22,20.9,20.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[32.3,32.4,32.9,33.7,32.7,33.2,33.1,33,33.8,32.7,32.4,32.9,33.3,33.1,32.8],"script":[9.8,9.8,10.1,10.5,10,10.2,10.3,10.1,10.5,10,10,10,10.1,10,10.1],"paint":[22,22,22.2,22.6,22.1,22.4,22.1,22.3,22.7,22.1,21.9,22.4,22.6,22.5,22.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12.1,12.3,12.6,11.8,12.4,14.2,13,13,13.6,12.9,12.8,12.6,13.4,12.4],"script":[1.9,2.4,2.3,2.4,1.8,2.5,3.2,2.4,3.2,2.6,2.3,2.6,2,2.6,2],"paint":[9.2,8.5,8.9,9.2,8.8,8,9.5,9.4,8.3,9.9,9.1,9.5,9.3,9.8,8.2]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[4.2,3.4,4.1,3.7,4.1,4,4,4,3.7,4.4,4.7,4,3.4,3.9,4.7,3.3,3.8,4,4.1,3.6,3.7,4.6,4.1,3.7,3.5],"script":[1.9,1.7,1.6,1.7,1.9,1.4,1.7,1.4,1.5,1.5,2.3,1.4,1,1.8,2.4,1.3,1.7,1.4,1.7,1.1,1.3,2.1,1.4,1.6,1.7],"paint":[2.2,1.6,1.6,1.2,1.6,1.8,1.6,2.4,1,2.8,1.8,1.6,1.3,1.5,1.5,1.5,2,1.8,1.9,1.4,2.3,1.6,2.5,1.3,1.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.8,15.8,14.5,14.4,15.2,15.5,14.1,14.7,15.5,15.2,14.7,15.5,13.7,14.5],"script":[1.2,1.5,2.1,1.6,1.6,2.2,2,1.7,1.6,1.8,1.7,1.6,2.2,1.5,1.8],"paint":[11.9,12.3,12.6,12.4,11.9,11.8,12.3,11.1,11.8,13.4,12.3,12.2,12.3,11,11.7]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11,11,11.4,11.2,10.8,10.9,11,10.9,11.3,11.2,11,11.1,11,11],"script":[0.7,1,0.7,0.8,0.9,0.7,0.7,0.7,1,0.9,0.8,0.8,0.7,0.9,0.8],"paint":[9.4,9.6,9.5,9.6,9.5,9.6,9.6,9.7,9.3,9.8,9.9,9.7,9.8,9.6,9.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[298.4,296.7,297.7,297,298.2,298.6,296.3,299.5,296.7,301.8,300.1,296.1,303,304.5,297],"script":[66.9,66.3,66,67.2,67.3,66.8,66.7,67.2,66.5,67.6,67.6,66.6,67.3,67.3,66.8],"paint":[224.2,222.8,224.2,222.4,223.5,224.3,222.3,224.9,222.9,226.4,225.2,222.3,228.4,228.4,222.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.9,33.4,34.3,33.9,34.1,34.2,33.9,34.2,34,33.9,33.8,33.8,33.8,34,34.1],"script":[6.9,6.7,6.9,7,7,6.9,7.3,7.3,7,7,7,6.9,6.8,6.9,6.8],"paint":[26.1,25.7,26.4,26,26.2,26.4,25.6,26,26.2,26,25.9,26,26,26.1,26.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,12.1,12.6,12.2,13.8,12.6,13.5,12.3,12.1,13,12.2,12,12.3,11.7,11.9],"script":[10.6,10,10.3,9.8,11.8,10.7,11.1,10.1,10.1,10.6,10.4,10,10.8,9.9,10.1],"paint":[0.9,1.8,1.2,1.4,1.8,1.7,1.8,1.6,0.9,1.5,0.9,0.3,0.6,0.3,0.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6097860336303711]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6132383346557617]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.661724090576172]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7480039596557617]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.265636444091797]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29.4,29.1,28.5,29.4,29.1,29.6,28.9,29,28.7,29.3,29.2,28.8,29.2,29,28.7],"script":[6.6,6.5,6.5,6.9,6.5,7,6.8,6.6,6.4,6.8,6.9,6.5,6.5,6.5,6.5],"paint":[22.3,22.1,21.4,22,22,22,21.6,21.8,21.8,21.9,21.7,21.7,22.1,22,21.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[33.1,34.7,33.4,33.6,33.3,33.1,33.4,32.8,33.8,33.4,33.3,33.6,33.4,33.2,33.6],"script":[10.1,10.8,10.2,10.3,10.3,10,10.4,10,10.5,10.1,10.3,10.5,10.2,10.2,10.5],"paint":[22.4,23.3,22.6,22.7,22.5,22.5,22.4,22.3,22.8,22.7,22.4,22.5,22.6,22.4,22.5]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.2,22.5,21.8,21.4,20.2,21.4,21,21.9,21.7,21.8,21.5,22,20.6,21.8,22],"script":[10.1,9.9,9.6,9.5,8.6,9.5,9.3,10.1,9.6,9.8,9.3,10.4,9,10,9.6],"paint":[9.6,9.8,9.5,10,8.7,9.8,8.9,10.1,10.6,9.2,9.9,9.4,9.3,9.9,10.9]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[14.7,14.9,14.4,15.3,13.4,14.5,14.7,14.7,12.2,13.7,14,14.1,14,15.2,13.9,14.6,14.4,13.9,13.8,13.9,14.2,13.9,13.3,14.5,14.8],"script":[11.2,11.3,11.2,12.1,10.7,11.1,11.9,11.1,9.6,11,11.2,10.9,10.5,11.9,10.4,11.4,10.8,10.7,10.6,10.8,10.8,11.1,10.7,11.1,11.4],"paint":[1.8,2.2,2.4,0.8,2.1,2,1.7,1.4,1.4,1.4,1.1,1.3,3.2,2.8,1.1,2.8,2.5,1.2,2.1,2.6,1.1,1.7,0.9,2.5,1.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[25.3,25.7,25.8,25.6,24.6,25,25.9,26.3,26.1,24.9,26.4,26.7,27.3,24.7,25.6],"script":[11.2,11.5,11.6,11.4,11.1,11.4,11.8,11.4,12.4,10.4,12,11.6,12.5,10.5,11.4],"paint":[12,12.5,11.9,12.3,11.1,12.5,11.1,12.8,12.6,12.5,12.3,12.8,12.9,12.4,11.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,16.9,16.8,16.4,16.9,16.8,16.7,17.2,16.6,16.7,17.3,17,16.7,19.1,16.9],"script":[6,5.8,5.9,5.4,6,5.6,5.8,6.2,5.5,6,6.1,6.1,5.8,6.7,5.8],"paint":[10,10.2,9.5,9.9,10.1,9.9,9.9,10.2,10.1,9.9,10.3,9.5,9.7,10.9,10]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[300.2,300.6,301.1,300.5,296.5,298.7,301.3,299.7,299.8,298.9,298.1,300.3,300.6,299.4,295.5],"script":[71.1,69.9,69.3,69.3,68.2,69.3,69.3,70.2,69.5,69,69.8,69.6,70.1,69.4,69.3],"paint":[221.7,223.4,224.4,223.9,221.2,222.2,224.7,222.2,222.8,222.8,221.1,223.2,223,222.5,219.1]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,36,36,36.7,35.4,35.7,35.3,35.9,35.7,35.5,35.7,35.9,36,35.7,35.7],"script":[8.9,8.9,8.9,9.2,8.9,8.8,8.8,9,8.8,8.9,9,9,9.1,8.9,9.1],"paint":[25.9,26.1,26.2,26.5,25.5,26,25.6,26,26,25.7,25.8,26,25.9,25.9,25.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,12.2,12.8,12.5,11.8,12.1,11.8,11.7,12.3,12.2,11.4,12.9,11.5,11.6,11.1],"script":[10.7,10,10.6,10.4,9.9,9.8,9.5,9.5,10.4,10.4,9.9,11,9.5,10.3,9.6],"paint":[1.5,2.1,2,0.3,0.6,0.8,0.7,0.9,0.3,1,0.3,1.2,0.6,0.3,0.3]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6020488739013672]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.354781150817871]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3935155868530273]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7652626037597656]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.10957431793213]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[35.7,35.7,34.4,35,34.5,34.4,34.1,36.5,34.5,34.8,34.5,34.3,34.4,34.4,35.6],"script":[13.7,13.7,12.1,12.8,12.5,12.4,12.2,12.8,13.1,12.4,12.2,12.6,13,12.3,13.2],"paint":[21.4,21.4,21.7,21.6,21.5,21.5,21.3,23,20.8,21.8,21.7,21.1,20.8,21.4,21.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.9,40.4,39.7,40.4,40.5,40.1,40.4,41.1,40.2,40.2,40.6,39.6,39.2,40.1],"script":[16.6,16.5,16.8,16.1,17.3,17.2,17.1,17.2,17.6,16.5,16.5,17.2,16.5,16.4,16.8],"paint":[22.7,22.7,23,23,22.4,22.7,22.4,22.6,22.9,23.2,23,22.8,22.5,22.3,22.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.4,14.5,15.7,14.9,15.2,15.2,14.8,16,14.8,15,16.5,14.4,14.8,16.9,15.7],"script":[5.2,4.4,4.4,4.5,4.5,4.5,4.1,4.8,4.9,4.6,5.3,4.2,4.5,6,4.4],"paint":[9.8,8.3,9.8,8.3,9.6,9.1,9.4,9.6,8.7,7.8,9.7,9.5,9.4,8.9,10]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.2,3.5,2.9,3,3.5,3,3,3.1,2.7,3,2.6,2.7,3.5,2.8,3.2,3.6,3.3,3.3,3.3,3.5,3.4,3.5,2.9,2.5],"script":[1.2,1,1,0.9,0.9,1,0.7,1,1,0.7,1,1,0.6,1.2,1,0.9,1.5,1,1.4,1.1,1.2,0.9,1.4,0.7,0.9],"paint":[2.3,1.4,2.4,1.9,1.2,2,2,1.9,0.8,1.4,1.4,1,1.1,2.2,1.6,1.7,1.6,2.2,1.8,1.5,2.1,1.6,1.3,1.3,1.1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.3,15,15.3,15.4,15.8,15.1,14.5,14.6,15.4,15.1,16,16.7,14.6,14.6,14.7],"script":[2.7,2.3,2.5,2.2,2.3,2.4,2.3,1.8,2.2,2.1,2.4,2.2,1.8,2.3,1.6],"paint":[12,11,11.8,11.7,12,11.5,10.7,11.7,12.1,11.9,12.3,13.3,11,11.7,12.3]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,11.4,11.5,11.5,11.6,11.5,11,11.7,11,11.4,11.5,11.4,12.2,11.5],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2],"paint":[10.1,9.4,9.7,9.7,9.6,9.7,9.5,9.2,9.9,9.1,9.7,9.5,9.8,10.3,9.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[338.5,340.2,339.4,341.2,339.2,338.9,336.8,338.2,341.3,342.5,339.9,339.7,343.2,340.2,338.4],"script":[114.3,114.1,111.7,114.3,112.7,110.1,109.8,111.6,112.6,114.4,112.1,112.8,115.4,111.6,112.4],"paint":[216.6,218.4,219.7,219.3,218.8,221.2,219.2,218.9,221,220,219.9,219.3,220,219.9,218.1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.6,41.1,41.7,41.1,40.8,41.2,41.3,42.5,41.6,41.9,41.4,41.5,41.6,41,41.6],"script":[14.2,13.9,14.3,14,13.8,14.2,14.1,14.1,13.8,14.1,13.8,14.1,14,14.1,14.3],"paint":[26.4,26.2,26.4,26.1,26.1,26,26.3,27.3,26.8,26.8,26.5,26.4,26.7,25.9,26.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[14,15.3,15,14.3,13.9,14.7,14.7,14.5,15.2,15.1,15.1,15.2,15.3,15.5,15.7],"script":[12.3,12.8,13.3,12.3,11.9,12.5,12.9,12.3,12.7,12.8,13,13,13.6,13.6,13.7],"paint":[0.3,2.2,0.6,0.8,1.7,1.5,1,1.1,1.4,0.7,0.3,1,1,1.7,1.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6635227203369141]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.739272117614746]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.819304466247559]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0426464080810547]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.14390182495117]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"01_run1k","values":{"total":[36.2,33.8,34.5,34.4,34.8,34.7,35.4,35.8,34.4,37.5,34.6,35.3,35.1,35.7,34.4],"script":[13.1,11,11.8,11.4,12.1,11.7,12.1,12.6,11.9,12.8,11.6,12.5,12.2,12.6,11.5],"paint":[22.5,22.2,22.2,22.4,22.2,22.4,22.7,22.6,21.9,24.2,22.5,22.2,22.3,22.6,22.3]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"02_replace1k","values":{"total":[36.3,36.8,37,36.2,36.2,36.7,36.7,37.3,36.9,37.5,36.9,36.1,36.3,37,37.1],"script":[13.3,13.5,13.8,13,13,13.3,13.4,13.8,13.4,13.8,13.8,13.2,13,13.5,13.6],"paint":[22.3,22.7,22.6,22.6,22.6,22.8,22.7,22.9,22.9,23.1,22.6,22.3,22.8,22.9,22.9]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.1,11.7,11.5,11.2,11.1,12.3,12.4,11.7,10.9,10.8,11.5,11.5,10.6,12.2],"script":[1.2,1,1.4,1.3,0.6,0.6,1.5,1,0.9,0.6,0.6,1,0.8,0.2,1],"paint":[9.1,9,8.9,9.2,9.5,9.2,10,10.8,9.2,9.2,9.6,9,9.5,9.1,10]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"04_select1k","values":{"total":[4.3,3.3,3.5,3.7,3.9,3.3,3.6,2.5,3.3,3,3.6,2.9,3,3.7,3.2,3.5,3.7,3.6,2.9,3.9,2.6,2.8,3.1,2.4,3.6],"script":[1.1,0.9,1.2,1.2,1.5,0.9,1.2,0.8,1.1,1,0.9,0.3,0.6,1.7,0.9,0.9,1.3,1.2,1.1,1.6,0.3,1.1,1.5,0.9,1.2],"paint":[1,1.8,2.1,1.6,2.3,1.8,0.4,1.2,1.4,1.2,2.5,2.4,1.8,1.8,1.4,1.8,2.3,1.4,1,2.2,2.3,1.6,1,1.4,1.5]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"05_swap1k","values":{"total":[16.2,15.7,15.4,15.5,16.1,16.6,15.7,19,16.7,16.8,16.7,16.1,16.7,16.1,16.7],"script":[3.4,3.1,3.2,3,3.2,3.3,3.6,3.8,3.5,3.4,3.3,3.4,2.8,3.4,3.4],"paint":[11.1,11.5,11.2,11.5,11.8,11.9,11,13.8,12,12.5,11.7,11.7,13.2,12,12.3]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.8,12.6,12.2,13.4,11.8,11.6,12.1,11.8,11.8,12,12.1,11.9,11.8,12.2],"script":[1.6,1.5,1.8,1.8,1.8,1.7,1.7,1.7,1.6,1.6,1.7,1.8,1.7,1.5,1.8],"paint":[9.5,9.5,10,9.8,11.1,9.5,9.6,9.9,9.4,9.5,9.7,9.4,9.6,9.7,9.5]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"07_create10k","values":{"total":[325.8,328,326.8,322.5,327.9,325.9,326.3,327.7,326.4,323.6,327.9,324.4,327.7,328.9,326.2],"script":[100.3,102.1,102.8,99.6,100.2,99.9,102.2,100.6,101,99.1,102.7,100.7,102.9,100.6,101.5],"paint":[218.4,218.6,217,215.8,220.6,218.9,217.2,219.9,218.3,217.5,218.3,216.6,217.7,221.1,217.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,38.8,38.4,39.5,39.2,39.2,38.9,38.4,38.6,39.1,38.7,38.5,39,40.7,39.1],"script":[10.9,10.7,10.7,11.1,11.2,11.1,11,10.6,10.6,11.2,10.6,10.9,11,10.8,11.1],"paint":[27,27.2,26.8,27.4,27,27.1,26.9,26.8,27.1,26.9,27.1,26.6,27,28.8,27]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.7,13.2,14.5,15,14.3,14.5,15.6,14.2,14.1,15.5,14.5,13.7,14.2,14.4,14.5],"script":[12.8,11.6,12.6,12.9,12.7,12.2,13.2,11.9,11.9,13,12.3,12.1,11.9,12,12.7],"paint":[1.1,0.3,0.5,0.3,0.3,1.3,1.1,0.7,1.5,0.8,0.3,1.1,1.3,1.4,0.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6455287933349609]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.1189727783203125]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.140664100646973]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9424858093261719]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.165324211120605]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52]}},{"framework":"quel-v0.23.1-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.4,29,28.1,27.7,28.2,28.5,29,27.6,29.2,28.2,27.8,28.1,27.1,27.9],"script":[5.7,5.7,5.8,5.5,5.5,5.5,5.7,6.1,5.4,6,5.4,5.6,5.5,5.5,5.5],"paint":[22.4,22.2,22.7,22,21.7,22.1,22.3,22.4,21.6,22.7,22.3,21.6,22,21.1,21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"02_replace1k","values":{"total":[33,33,32.8,32.4,33,32.9,32.8,33,32.9,32.7,33,33.2,34.7,33.1,32.2],"script":[9.3,9.5,9,8.8,9.4,9.1,9.2,9.4,9.1,9.2,9.4,9.2,9.6,9.3,9],"paint":[23,22.9,23.2,23.1,23.1,23.1,22.9,23,23.3,22.9,23.1,23.4,24.5,23.1,22.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.7,14,15.8,13.2,14.2,13.8,13.4,14.5,14.5,13.4,13.5,13.8,14.1,14.2,14.5],"script":[2.1,2.2,3.3,2.2,2.2,2.6,2.9,2.5,3.2,2.5,2.6,2.5,2.5,2.5,2.9],"paint":[8.9,10.6,11.8,9.9,10.8,10.1,9.5,11,10.2,9.5,9.1,10,9.7,9.5,10.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.4,3.1,3,3.1,3.3,2.9,2.8,3.1,2.7,3.5,2.8,3,2.7,2.6,2.9,3.4,3.5,3.3,3.3,3.1,3.5,3.1,2.5,3.3],"script":[0.2,0.2,0.9,0.6,0.6,0.8,0.2,0.7,0.6,0.5,1.1,0.7,0.3,0.8,0.2,0.3,1.1,1.3,0.9,0.8,0.6,1,1,0.6,0.9],"paint":[2.6,1.3,1.6,2.2,1.6,1.1,2.2,2,1.8,1.3,0.4,2,2.6,1.1,1.8,2.4,1.2,2.1,1.5,1.5,1.6,2.3,1.4,1.1,1.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"05_swap1k","values":{"total":[15,14.5,14.4,15.2,15.8,15.2,14.8,14,14.5,14.3,14.4,14.2,15.2,14.2,16.1],"script":[1.7,0.9,1.4,1,1,1,0.6,0.9,1.1,1.3,1.4,1.4,1.7,1.3,1.8],"paint":[11.8,12.4,11.7,13.2,13.3,12.9,12.7,11.9,11.9,11,12,11.9,12,11.3,13.1]}},{"framework":"quel-v0.23.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,13.3,13.7,13.1,13.3,13.2,13.4,13,12.9,13.4,13.5,13.3,13.2,13.4,13],"script":[2.5,2.7,3,2.6,2.5,2.5,2.5,2.6,2.5,2.9,2.8,2.8,2.7,2.7,2.5],"paint":[10.2,10,10.4,9.9,10.1,10.1,9.9,9.8,9.4,9.9,9.9,9.7,9.9,10,9.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"07_create10k","values":{"total":[343.6,344.4,341.7,347.9,342.3,343.6,344.2,340.4,341.1,341.3,341.5,343.9,341.8,347.6,345.8],"script":[108.9,110.3,107.6,108.9,108.7,108.4,109.8,107.4,107.3,108,107.9,109.2,108.2,110.1,110.3],"paint":[226.6,226,226.1,230.8,225.5,226.7,226.2,224.9,225.7,225.3,225.4,226.7,225.4,228.9,226.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.5,42.6,42.9,42.1,42.5,42.5,42.9,42.8,42.2,41.9,42.4,41.9,42.4,42.2,42],"script":[15,14.6,15.1,14.8,14.9,14.7,14.9,14.9,14.7,14.6,14.8,14.8,15.2,14.7,14.8],"paint":[26.4,27,26.8,26.2,26.6,26.7,27,26.9,26.4,26.3,26.6,26.1,26.1,26.4,26.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.9,17.7,15.6,16.2,15.7,15,16,15.6,18.3,16.2,16.1,16,15.9,16.3,16.4],"script":[13.5,15.6,13.8,14.1,13.4,13.3,13.9,13.5,16.8,14,13.8,14,13.4,14.1,14.2],"paint":[1.4,0.6,1,1.6,0.5,1,1.6,1.4,1.4,0.9,1.6,1.8,1.5,1.4,1.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0724897384643555]}},{"framework":"quel-v0.23.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.211780548095703]}},{"framework":"quel-v0.23.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.186689376831055]}},{"framework":"quel-v0.23.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.821178436279297]}},{"framework":"quel-v0.23.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.50977897644043]}},{"framework":"quel-v0.23.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"quel-v0.23.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[108.8]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"01_run1k","values":{"total":[89.2,87,84,85.4,87.9,85.5,84.1,87.5,87.2,90.5,85.6,87.4,90.1,86.7,90.8],"script":[60.9,61.2,61.6,61.1,61.4,60.3,61,61.9,61.4,61,61.6,61.5,60.8,61.1,60.6],"paint":[22.6,22.5,22.1,22,22.3,22.4,22.5,22.6,22.6,22.4,22.4,22.5,22.1,22.5,22.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"02_replace1k","values":{"total":[92.1,99,92.3,91.9,96.8,93.1,98.9,96.9,94.5,97.1,92.5,94.1,92.7,93.4,99],"script":[63.4,63.7,63.4,63,63.3,63.4,63.6,64.7,63.4,63.2,64,63.8,63.4,63,63.7],"paint":[23.3,23.5,23.6,22.9,23.2,23.4,23.7,23.6,23.3,23.1,22.9,23.5,23,22.8,23.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[57.5,56.9,56.6,57.5,56.4,59,57.7,57.3,59.4,59.1,57.5,57.5,59.3,59.3,56.5],"script":[3.8,3.3,2.7,3.9,4,3.2,3,3.6,3.6,2.9,3.9,4.7,3.6,3.2,3.3],"paint":[12.5,12.3,12.6,12,10.9,11.5,10.9,11.5,12.9,12.4,12.6,10.9,11.6,11.3,12.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"04_select1k","values":{"total":[14.1,9.3,10.7,8,13.8,10.7,6.4,9.4,7.1,5.8,10.1,9.4,11.6,13.3,8,8.3,8.1,8.1,8.4,13.7,11.8,5.7,10.5,13.1,5.4],"script":[1,2.1,2,2.1,1.6,1.4,1.2,1.4,1.6,1.5,2,2.2,1.9,1.2,1.4,0.9,2.1,1.9,2,1.2,1.8,2.2,1,1.4,0.3],"paint":[3.3,3.5,2.7,2.2,3.3,2.7,2.3,3.3,3.5,3.7,4.3,2.2,2.5,2.9,3.8,2.6,2.1,2.1,4,2,3.8,2.3,3.7,3.8,3.5]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"05_swap1k","values":{"total":[25.6,67.2,66.3,66.2,25.1,25.1,66.9,67.7,66.5,65.9,69.7,65.2,66.2,67.1,65],"script":[8.4,9,8.7,8.5,8.2,7.4,9.1,8.3,8,8.2,9,8.6,8.9,9,8.5],"paint":[15.4,15.1,13.7,14.9,15.9,14.7,14.5,13.7,16.2,15.2,15.5,14.7,15.3,14.8,14.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.5,17.5,19.4,16.5,17.5,17.1,17.1,17.4,16.8,16.9,17.4,16.9,17.1,16.8,17.2],"script":[5,4.8,4.7,4.8,5.2,4.7,4.8,4.8,4.8,5.2,5.2,4.9,5.1,4.7,5],"paint":[11.2,11.2,11,10.9,11.3,11.2,11,11.3,11.1,10.9,11.2,10.6,10.7,11.1,11.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"07_create10k","values":{"total":[833.3,828.1,822.4,839.1,830.2,831.9,839.7,836,832.4,830.4,828.3,838,835.8,840.2,833.8],"script":[591.6,592.7,590.8,598.8,593.9,595.2,595.3,594.6,594.1,592.9,593.9,595.2,596.1,600.8,591.2],"paint":[229,227.3,224.9,232.5,229.5,228.8,235.9,232.1,229.2,227.8,226.8,234.2,231.5,228,231.9]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.5,88.3,87.4,87.7,89,89,87.8,88.1,87.9,88,88.8,88,87.6,89.5,87.9],"script":[49.1,49.7,49.2,49.2,49.9,50.3,49.5,49.2,49.4,49.1,49.9,49.5,49.5,51.1,49.1],"paint":[27.3,27.1,27.1,27,28,27.2,27.4,27.4,27.5,27.8,27.7,27.4,26.9,27.1,27.4]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[64.9,22,23.2,22.8,23.5,22.5,64.9,22.2,23.8,22.8,63.7,22.3,21.1,22.2,23.1],"script":[19.4,18.8,19,18.5,20.1,19.4,18.9,18.2,19,19.2,18.2,18.9,17.6,18.6,19.4],"paint":[3.6,3.1,2.9,2.1,2.8,2.6,3.9,2.8,3.4,2.5,1.9,1.5,2.8,2,2.5]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4940757751464844]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.986279487609863]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.990345001220703]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.274320602416992]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[86.92636203765869]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.7]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"01_run1k","values":{"total":[41.3,40.8,42.6,42,41.8,42,39.8,42.1,41.3,42.1,41.9,41.8,42.4,39.6,42.3],"script":[18.9,18.7,19.8,19.9,19.7,19.7,18.2,19.6,19.5,20,19.8,19.4,19.9,18.2,19.8],"paint":[21.8,21.5,22.2,21.6,21.4,21.8,21.1,21.8,21.3,21.6,21.5,21.8,21.9,20.8,22]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"02_replace1k","values":{"total":[45.4,45.5,46.9,46.7,45.3,46.1,45.9,46.2,46.2,45.9,46.1,46,45.9,46.5,46.5],"script":[22,22.1,23.5,23.1,22.8,23,22.8,23.4,23.1,22.8,22.9,22.8,22.6,22.7,23.3],"paint":[22.8,22.8,22.8,23,22,22.6,22.6,22.3,22.6,22.6,22.6,22.6,22.6,23.2,22.7]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.2,12.7,12.6,12.6,12.3,12.6,13.5,13.4,13.4,12.5,12.7,13.3,12.3,13.2],"script":[1.9,2.5,2.4,1.9,2,2.1,2.2,1.9,2.2,2.2,2.3,1.7,2.1,1.7,3],"paint":[9.2,9.8,9.4,9.6,9.5,8.7,8.9,10.3,10.5,9.7,9.3,9.5,9.9,9.7,9.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.2,8.7,9.1,7,8,7.7,8.8,8.4,9,7.1,6.9,8.2,7.3,8.1,9.1,9.4,7.1,6.8,7.6,6.9,6.8,9,7.2,6.4,7.4],"script":[4.5,5.7,5.9,4.8,4.8,5,5.4,5.9,5.8,4.7,4.4,5.6,4.7,5,5.9,5.8,4.4,4,5,4.6,4.8,6.2,4.6,4.6,4.8],"paint":[2.4,2.3,1.7,1.4,2.4,2.5,1.8,2.4,2.9,1.3,1.9,1.2,2,2.1,1.5,2,1.7,1.8,1.1,1.9,1.1,1.8,1.8,1.3,1.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"05_swap1k","values":{"total":[107.6,103.3,104.7,108.2,106.7,105.1,108.4,107.3,110.1,110.2,106.3,107.1,106.4,108.4,105.5],"script":[20.1,18.7,20.2,19.9,18.7,19.6,20.1,21.2,19.6,22,19.4,21,19.8,19.8,18],"paint":[86.2,81.7,82.1,85.1,85.8,83.4,86.5,84.4,87.5,86.2,83.9,83.1,83.8,85.9,85.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[16,14.7,15.9,15.9,15.2,16.4,15.5,14.8,15.1,16.1,16,15.7,15.5,15,15.3],"script":[4.5,3.8,4.6,4.9,4,4.8,4.5,3.8,4.1,4.5,4.8,4.3,4.3,3.6,4.1],"paint":[10.8,10.1,10.5,10.3,10.5,10.6,10.7,10.2,10.3,10.9,10.6,10.6,10.6,10.7,10.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"07_create10k","values":{"total":[378.9,376.9,378.5,378.3,377.7,378.7,378.9,380.3,380,380.7,380.2,381.1,378.6,378.8,383],"script":[152.2,152.4,154,153.7,154,153.4,154.6,155.8,153.9,155.2,154.6,155.9,154.9,153.5,155.4],"paint":[218.6,217.3,217.4,217.6,216.4,218,217.2,217.4,219.1,218.2,218.4,218,216.6,218.1,220.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.5,45.1,45.6,45.7,45.5,45.6,45.4,45.4,45.6,45.9,45.5,45.7,45.6,48.1,45.5],"script":[17.2,17.6,17.9,18.1,18.2,17.8,18.1,18.1,17.6,17.8,18.2,18.1,18,18.4,18],"paint":[26.3,26.5,26.7,26.6,26.3,26.8,26.3,26.3,27,27.3,26.2,26.6,26.6,28.6,26.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,29.8,28.2,29,26.5,28.6,30.2,28.9,27.7,27.6,28.8,28.1,28.6,27,29],"script":[25.6,27.9,25.9,27.1,25,26.2,27.8,26.5,25.3,25.6,25.9,26.2,26,25.3,26.8],"paint":[1.1,1.1,0.3,0.3,0.7,1.2,1.2,1.3,2.1,0.4,2.1,0.5,1.6,1.6,0.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.20477294921875]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.750065803527832]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.762483596801758]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.151012420654297]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.14854145050049]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[232.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"01_run1k","values":{"total":[55.5,53.4,52.4,54.9,53.7,55.4,55.3,55.3,52.1,52,58.9,54.4,53.5,53.4,54],"script":[23.7,24,24.2,24.2,24.1,24.4,24.1,24.7,24,24.6,24.1,24,24,24.1,24.4],"paint":[21.2,21.6,21.2,21.7,21.4,21.5,21.7,21.8,22.1,21.2,21.4,21.1,21.2,21.6,21.9]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"02_replace1k","values":{"total":[65.6,58.5,71.1,64.4,57.3,65.1,63.2,64.3,70.7,62.6,58.3,59.5,62.7,64.4,60.7],"script":[29.2,29.2,29.1,28.8,28.6,28.9,28.9,28.9,29.3,28.8,28.2,28.6,28.9,29.3,29.1],"paint":[23.4,23,23.5,23.5,23.6,23.7,23.6,23.5,23.6,23.3,23.7,23.4,23.5,23.3,23.3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[45.7,45.7,44,45.7,45.4,45.4,45.3,29.5,44,45.9,29,27.7,43.8,47.4,44.9],"script":[15.3,15.6,14.5,15.5,15.4,15.7,15,15.2,15.9,14,13.8,13,14.8,15,15.7],"paint":[12.8,13.4,13.1,14.2,13.5,12.2,13.9,13.3,12,14.2,11.8,12.3,12.7,12.5,12.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"04_select1k","values":{"total":[16,17.6,22.6,16.1,22.2,20.8,14.2,23.5,14.3,14,15.5,18.5,10,17.9,21.6,16.9,15.1,19,19.9,22.1,16.6,22,19.3,17.4,20.7],"script":[6.1,5.5,6,6.1,5.6,5.4,5.2,7.2,4.4,6.6,7.1,5.2,5.6,5.5,7.5,7.1,6.2,4.9,6.6,4.5,5,6.3,6.1,5.3,4.9],"paint":[3.3,3.5,3.2,4.8,3,3.5,2.5,3.4,3.5,4.9,2.9,3.7,3.5,3.9,4.6,4,2.6,4.2,3.5,3.5,4.5,3.7,2.9,2.7,5.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"05_swap1k","values":{"total":[127.8,131.6,132,133.3,129.9,131.3,131.6,133.3,135.4,129.1,133.2,133.8,130.5,134.3,129.5],"script":[26.9,26.7,26.6,27.7,28.9,23.9,27.4,27.1,27.8,26,24.6,27.5,27.5,27.6,26.8],"paint":[83.3,85.5,84.3,87,82,84,83.9,83.2,82.7,84.9,84.9,85.2,85.3,86.2,84.3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.8,25.7,28.4,31.7,32,25.5,24.6,26.9,23.9,24.1,27.8,29.6,30.1,26.7,28.2],"script":[6.8,6.6,6.5,6.8,6.5,6.8,7.1,6.3,6.3,6.3,6.8,6.8,6.7,6.2,6.8],"paint":[11.6,10.8,12.1,11.8,12,11.6,11.7,11.4,12.1,11.8,11.5,11.8,11.1,11.5,11.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"07_create10k","values":{"total":[523.2,509.4,514.2,516.9,514.5,515.1,522.3,517.7,524.3,509.2,524,516.8,514.9,501.8,514.1],"script":[272.4,271.7,275.2,273.7,277,275.8,275.5,275.6,283.5,271.8,278.2,277.3,276.8,272.9,274.1],"paint":[235.3,233.1,232,231.6,233.5,232.8,235.6,235.2,230.2,230.8,239.3,233.1,231.7,223.2,233.2]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.4,60.3,55.2,60.3,62.4,62.4,61.9,61,61.4,67.9,63.2,58.1,61.8,58.3,55],"script":[23.5,23,23.4,23.3,23.8,23.3,23.5,23.4,23.5,23.1,23.9,23.8,23.1,23.5,23.5],"paint":[25.8,26,26.3,26.2,26.2,26.1,26.2,26,26.3,26.5,25.6,26.1,26.4,25.9,26]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[57.6,57,55.7,54.9,59,57.2,58.2,55.3,60.3,57,57.2,56.4,56.1,58,60.2],"script":[32.8,31.5,31.5,30.9,32.8,31.9,34.4,32.8,33.1,32.5,33.2,33.5,32.5,32,32],"paint":[3.1,3.1,1.4,2.1,3,2.5,3.4,2.1,1.7,2.3,3,2.8,2.6,2.6,2.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.84600830078125]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.644961357116699]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.359033584594727]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.274052619934082]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[53.14693546295166]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[351.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[376]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[29.6,27.3,29,27.6,27.9,27.3,27.5,27.7,27.7,27.6,27.2,27.2,29.6,27.4,27.3],"script":[7.5,6.8,7.3,7.1,7.1,6.8,7,7,7.1,6.7,6.8,6.7,7.3,6.9,6.7],"paint":[21.5,19.9,21.2,20,20.3,19.9,20,20.2,20.1,20.3,19.9,20,21.6,20,20.1]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[35,34.3,34.2,34.6,34.7,34.2,34.4,34.8,34.1,34.1,34.3,34,33.9,34.3,34.5],"script":[10.9,11,10.8,10.9,11,10.8,11,10.9,11,10.9,10.6,10.8,10.6,11,10.9],"paint":[23.5,22.8,22.8,23.1,23,22.9,22.9,23.3,22.5,22.5,23.1,22.7,22.7,22.8,23]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,15.6,14.1,14.2,14.9,14.8,14.3,14.4,15,14.5,13.6,14.2,14.4,14.1,14.3],"script":[3.5,4.7,3.9,3.7,4,3.1,4,3.9,3.9,3.3,3.8,3.4,4,3.3,3.1],"paint":[9.3,9.9,8.8,8.8,10,10,8.8,9,10,10.3,8.9,10.1,9,9.9,10]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.4,5.3,4.5,4.2,4.3,5.3,4.1,4.2,4.5,4.9,4.3,4.2,4.3,3.6,4.9,5.3,4.6,4.7,4.5,4.5,4.1,3.4,4.6,4.9,4.3],"script":[1.5,2.4,2.1,2.2,2.3,2.4,1.9,2.1,2.6,2.1,1.3,2.1,2.6,1.2,2.1,2.6,2.4,2.8,2.3,1.6,1.5,1.5,1.5,1.8,2.7],"paint":[2.8,2.7,2.3,1.2,1.8,2.7,2,2,1.8,2,2.8,1,0.7,2.2,1.9,1.8,1.2,1.8,2.1,2.5,1.4,1.1,2.2,1.1,1.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.3,105.9,110.5,104.9,104.6,107.6,107.4,106.1,105.7,103.4,107.9,104.4,105,106.2,106.7],"script":[17.7,18.1,20.6,17.4,18.1,19.4,19.8,17.3,18.2,17.8,17.4,17.8,18.8,19,18.4],"paint":[83.8,86.3,87.2,85.7,84.5,86.4,84.8,86.2,85.1,82.9,88.2,84.5,83.3,84.3,86.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.2,12.8,12.3,12.2,12.1,11.9,12,11.9,12.1,12.4,12.2,12,11.8,12.1],"script":[1.6,1.6,1.3,1.4,1.4,1.5,1.5,1.3,1.5,1.6,1.7,1.7,1.3,1.4,1.4],"paint":[10.3,10,10.7,10.2,9.8,9.8,10,10,9.7,10.1,10.3,9.8,9.7,9.9,9.9]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[398,395.6,394,393.7,395.6,394.4,396.2,398.2,395.2,393.6,394.6,397.3,397.3,398.1,395],"script":[169.9,169.8,170.2,169.1,169.8,168.4,170.4,171.5,171.1,168.8,168.5,172,170.2,171,168.8],"paint":[219.8,218.4,216.5,216.4,218,218.4,218.3,218.7,216.5,217.6,218.6,217.5,219.9,219.4,219]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,33.4,33.9,33.5,35.3,33.8,33.7,33.4,33.7,33.5,34.3,34.3,34,34,33.8],"script":[7.5,7.1,7.3,7.5,7.6,7.2,7.5,7.4,7.2,7.2,7.4,7.9,7.4,7.3,7.3],"paint":[26.8,25.4,25.7,25.1,26.8,25.7,25.2,25.1,25.6,25.5,25.9,25.6,25.7,25.8,25.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.8,18.1,18.1,17.6,19,17.5,16.8,18.4,18,18.9,17.9,17.6,17.9,18,17.6],"script":[15.6,16.4,15.8,15.8,16.8,15.2,15.2,16.3,15.7,16.8,15.9,15.7,15.7,16.1,15.6],"paint":[0.8,0.3,1.3,0.6,0.9,1.5,1.1,0.3,1.1,1.1,1.8,1,1.1,1.1,1.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1866731643676758]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.625495910644531]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.083898544311523]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.929896354675293]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.449259757995605]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[184.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.6]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.8,27.5,29,29.1,28.9,28.8,27,29.3,27.2,29.4,29.1,29.1,29.1,27.2,26.8],"script":[6.5,6.1,6.6,6.9,6.6,6.6,5.9,6.6,6.2,6.9,6.7,6.8,6.7,6.2,5.8],"paint":[21.7,20.8,21.8,21.7,21.7,21.7,20.5,22.1,20.4,21.9,21.9,21.7,21.8,20.5,20.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.2,33.9,33.4,33.3,33.5,33.5,33.4,33.9,33.9,33.4,33.4,34.1,34.1,34,33.8],"script":[10.4,10.8,10.8,10.3,10.5,10.6,10.5,10.6,10.9,10.6,10.9,10.9,10.9,10.8,10.8],"paint":[22.2,22.5,22,22.5,22.5,22.3,22.3,22.7,22.4,22.2,21.9,22.6,22.6,22.7,22.4]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,14.6,15.4,13.9,15.9,15.8,14.3,15.2,14.5,15.2,16.1,14.4,14.7,14.5,14.7],"script":[4.2,3.8,4.2,3.9,4.3,3.7,3.7,3.8,3.8,4.3,4,4,3.7,3.9,4.2],"paint":[8.6,9.7,9.9,8.8,10.6,10.9,9.5,10,9.6,9,9.9,9.4,9.5,7.9,9.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.1,4.9,4.6,4.3,4.9,4.8,4.5,4.1,5.1,4.8,4.4,4.2,4.2,4.6,4,4.6,4.3,4.5,4.9,4,4.5,4.1,4.6,5.5,3.6],"script":[2.2,2.1,2,1.6,2.1,2.4,2.2,1.9,2.3,2.1,1.9,1.4,1.5,2.4,1.9,2.1,1.4,2.3,2.2,1.3,1.9,1.5,2.1,2.5,2],"paint":[1.1,1.6,2.4,2.6,2.6,1.4,2.2,1.3,1.7,2.5,1.8,2.7,1.8,1.4,1.5,1.7,2.3,1.2,2.4,1.3,2.4,2.5,1.6,2.9,1.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.9,105.6,103.9,103.2,103.9,100.7,103.6,106,103.8,106.8,101.6,106.9,107.2,102.7,110],"script":[17.2,19.2,17.6,18,17.6,16.9,17.5,18.5,17.6,19.1,17.3,19.5,17.7,17.3,20.4],"paint":[83.6,83.7,84.1,83.2,84.8,81.7,83.8,85.8,83.3,85.5,81.9,85.5,86.7,83.7,88]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.6,12.2,12.7,12.2,12.1,11.6,12,12.1,11.9,12.8,12.1,11.6,12,12],"script":[1.5,1.3,1.6,1.4,1.4,1.9,1.3,1.6,1.7,1.3,1.5,1.3,1.4,1.5,1.6],"paint":[9.7,9.5,10.2,10.5,10.1,9.8,9.7,10,9.8,10,10.4,9.7,9.6,10,9.8]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[392.2,387.8,412,411.6,389.4,391.8,391.3,389.7,390.2,388.8,389.8,389.5,389.5,390,389.2],"script":[166.4,164.7,187.1,186.4,164,166.5,164.4,165.8,166.3,164.5,164.5,165,166.1,165.4,163.8],"paint":[218,215.7,217.4,218,218,217.7,219.1,216.7,216.6,216.8,217.7,217,216,217,218]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.9,33.9,33.9,35,34.6,34.3,34.2,34.6,34.4,34,34.2,34.8,34.3,34.5],"script":[7.1,7,7.3,7.4,7.5,7.3,7.5,7.2,7.3,7.2,7.4,7.4,7.6,7.2,7.6],"paint":[25.6,25.9,25.7,25.6,26.6,26.5,25.8,26,26.4,26.3,25.6,25.9,26.3,26.2,26.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,16.8,18.2,18.7,18.8,19,17.5,19.2,16.8,17.5,18.4,18.1,18,19.6,17.1],"script":[15.1,15.2,15.8,17,16.9,17.1,15.3,17,15.2,15.6,16.1,16.1,15.9,17.7,14.8],"paint":[2,0.8,2.1,0.7,1.3,0.9,0.9,1.3,0.3,0.4,1.7,1.8,1.1,1.2,0.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1615581512451172]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.661070823669434]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.061215400695801]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.937605857849121]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.34535026550293]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[183]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.9,26.8,29,29.1,26.7,28.9,29,27.3,26.8,27,26.9,29.2,26.9,28.8],"script":[6.5,6.8,5.9,6.5,6.9,5.8,6.6,6.7,6.2,6,5.8,6,6.7,6,6.6],"paint":[21.6,21.6,20.3,22,21.7,20.4,21.8,21.7,20.6,20.3,20.7,20.4,21.9,20.3,21.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[32.9,32.6,33.4,32.7,33.4,33.4,32.8,33.9,34.1,33.6,32.8,33.9,32.8,33.3,33],"script":[10.2,10.2,10.5,10.5,10.5,10.7,10.4,10.8,10.9,10.6,10.4,10.9,10.3,10.5,10.7],"paint":[22.1,21.8,22.3,21.6,22.4,22.1,21.9,22.5,22.7,22.4,21.9,22.4,21.9,22.3,21.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,15.3,15.2,14.6,14.7,14.4,14.9,15.2,14.9,15,17,15.3,15.1,15.1,15.3],"script":[4.2,4.6,4.6,4.4,3.8,4.5,3.8,4.4,4.6,3.5,4.8,4.1,4.5,4,5],"paint":[10.2,8.4,9.4,7.9,9.6,8.7,10.8,9.9,9.6,9.8,10.7,9.5,8.9,10,9.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.5,4.8,4.9,4.6,4.4,4,6,4.6,4.5,4.3,4.6,4.3,5.1,4.6,4.1,4.7,4.4,4.3,4,4.5,4.5,4.8,4.3,4.5],"script":[2.2,2.1,2.1,2,1.7,2.1,1.5,2.8,2.2,2.3,1.8,1.5,2,2.3,2.2,2,2.1,1.4,1.5,1.1,2.3,2.4,1.5,2.4,2],"paint":[2,1.2,1.9,2.3,1.6,1.1,1.5,2.3,2.3,2.2,1.9,1.8,2,2.6,2.2,1.4,2.3,2.9,2.7,2.9,1.7,1.3,1.3,1.1,2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[104.8,102.9,105.8,105.7,106.3,104.3,105.3,105.7,105.6,105.8,106.6,104.8,104.2,102.9,105.1],"script":[18.5,17.5,19.4,18.8,17.6,17.6,19.9,19.7,17.9,18.9,18,17.3,17.1,17.5,18.2],"paint":[84.7,83,85.1,83.9,85.8,84.1,82.7,83.3,85.3,84.3,84.8,86.1,85.7,82.9,85.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.9,12.8,11.6,12.1,11.9,12.1,12.8,11.7,12,11.7,11.6,12.2,11.9,12.1],"script":[1.2,1.3,1.5,1.3,1.3,1.5,1.5,1.5,1.3,1.3,1.3,1.2,1.4,1.5,1.7],"paint":[9.9,10.2,10.4,9.7,10.2,9.9,10.2,10.1,9.7,9.8,9.7,9.6,10,9.6,9.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[410.7,390.6,388.7,393,409.5,386.6,390.4,389.5,389.7,409.8,388.1,391.6,412.4,431.6,388.7],"script":[187.7,165.4,164.1,163.8,184.3,160.8,163.5,164.2,164,186.3,164,166,185,205.1,163.7],"paint":[215.8,217.5,217.5,221.7,218,217.9,219.2,218,218.2,216.4,216.7,218.3,219.8,218.8,217.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.7,34.4,34.1,34.2,34,33.6,34.1,33.8,33.6,33.7,33.7,33.7,33.7,34.1],"script":[7,6.9,7,7,7.3,7.1,6.9,7,6.9,6.7,6.7,6.9,7.1,7.1,7],"paint":[25.6,25.8,26.4,26.2,25.9,25.9,25.7,26.2,26,26,26.1,25.9,25.7,25.7,26.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,18.2,17.9,16.7,18,18.8,18,17.5,18.3,17.3,18.8,18,18.3,18,17.4],"script":[15.8,15.9,15.9,14.7,16.5,16.6,15.8,15.3,16.4,14.8,16.5,15.7,16.1,15.6,15.5],"paint":[0.9,1.9,1.5,0.4,0.9,1.3,0.3,0.8,0.5,1.5,1.4,2.1,0.3,1.4,1.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1562519073486328]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.455169677734375]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.906815528869629]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8477325439453125]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.578155517578125]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[199.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[31.9,37.5,32,41.2,38.6,33.1,36.6,34.4,31.6,40.8,35.5,36,37.9,34.9,37.4],"script":[7.8,7.6,7.7,7.6,7.5,7.6,7.8,7.5,7.3,7.4,7.7,7.5,7.5,7.3,7.8],"paint":[21.8,21.5,21.7,21.8,21.6,22.4,21.9,21.7,21.6,21.2,21.9,21.5,21.5,22.4,21.8]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[36.1,40.7,34.4,34.7,38,39.1,36.9,37.4,35.1,36.5,38.6,38.3,34.3,38.2,36.4],"script":[11.6,11.4,11.7,11.4,11.2,11,11.5,11.7,11.4,11.4,11.4,11.4,11.6,11.5,11.6],"paint":[22.4,22.6,22,22.7,22,22.8,22.4,22.7,23.1,22.5,22.1,22.4,22.2,23,22.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.4,33.5,34.3,34.8,18.7,34.7,34.8,19,34.9,33.3,35.5,34.1,34.2,33.4,33.9],"script":[6,5.2,6,5.2,5.9,5.8,6.3,5.9,6,5,5.8,6.3,5.4,5.5,5.4],"paint":[12.6,12.2,11.7,12.1,11.4,13.7,12.1,12.5,12.5,13,12.1,12.7,13.1,12.6,13.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[7.3,7.5,11.6,12.9,12.1,8.4,10,13.1,9.5,11.4,7.4,13.3,7.4,6.5,9.7,11,12.2,11.9,12.4,14.2,7.6,9.5,13.7,8.1,8],"script":[3.8,2.7,4.5,3.1,3.4,3.2,2.7,3.5,3.2,3.1,2.7,3.7,2.8,3.4,3.8,2.4,3.2,2.3,3.6,3.5,3,4,4.2,3.9,3.5],"paint":[2.5,1.8,2.8,3.5,3.9,2.5,2.7,2.5,2.1,3.6,2.4,4.2,3.6,1.9,2.2,3.1,3.3,4.6,3.9,3.6,3.7,3,3.2,2.6,3.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[124.3,122.4,106,121.4,121.7,126.7,110.5,105.6,123.4,110,106,108.6,122,109.6,104.9],"script":[18.8,19.6,18.8,19.1,18.7,21.1,21.2,20.4,19.1,19.7,19,19.5,19.8,19.2,19.1],"paint":[86.6,86.8,84.7,85.2,84.2,89,86.9,83.9,86.6,85.9,84.9,85.9,85,88.9,83.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,13.7,16.7,14.1,15.2,15.6,13.9,14.1,13.7,14,14.6,15.2,13.7,13.6,15.1],"script":[1.8,1.8,2.3,2,1.8,1.9,1.8,1.8,1.6,1.8,1.5,1.7,2,1.5,1.6],"paint":[10.7,10.6,10.8,11,11,10.7,10.8,11,10.9,10.7,10.5,11.5,10.9,10.8,11]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[393.9,392.6,390.1,393.3,391.4,393.3,392.7,393.5,392.7,385.3,389.4,390,394.5,387.4,393],"script":[170.5,166.6,165.3,168,164.9,167.5,165.2,166.2,165.4,162.5,166.5,162.1,168,165.3,167.6],"paint":[217.6,219.5,218.2,217.8,218.2,218.6,217.8,216.5,218.9,215.6,216.2,216.8,218,218.1,217]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.5,50.6,35.3,35.6,41.4,35.2,35.2,40.5,39.6,50.5,38.7,34.4,35,39.1,35.6],"script":[7.3,7.5,7.3,7.3,7.4,7.5,7,7.3,7.3,7.2,7.2,7.3,7.3,7.6,7.5],"paint":[27.2,26.3,27.4,27.8,27.1,27.3,27.7,26.9,26.3,26.4,27,26.6,27.3,26.5,27.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[34.2,16.4,18.2,16.6,17.1,18.6,18.5,35.7,34.6,36,17.3,16.1,16.5,17.1,16.9],"script":[12.4,12.3,14.4,12.5,12.5,13.9,13.4,14.2,12.1,13.9,14.2,12.4,12.2,13.2,13.2],"paint":[2.7,2.3,2.6,2.3,3.3,3.2,2.2,2.5,1.2,2.9,2.6,1.5,2.8,1.9,2.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1486320495605469]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.531782150268555]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.999907493591309]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9729299545288086]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.673840522766113]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[207.4]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[31.4,30.3,29.9,30,29.8,29.7,29.9,30.8,30.9,30.5,32.1,31.3,31.6,31.7,32.2],"script":[8.6,8.1,7.9,8.2,8,8,8.1,8.4,8.6,8.6,9,8.5,8.7,8.9,8.7],"paint":[22.3,21.7,21.4,21.2,21.2,21.1,21.2,21.8,21.7,21.4,22.5,22.2,22.3,22.3,22.8]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[34.3,35,35.4,34.2,34.4,34.8,35.1,34.9,35.1,34.7,34.7,33.9,34.9,34.8,34.9],"script":[11.7,12.2,12.1,11.8,11.6,12.1,12.1,11.8,12,12,12.3,11.7,11.8,12.2,11.8],"paint":[22,22.2,22.6,21.8,22.2,22.1,22.4,22.5,22.5,22.1,21.9,21.6,22.4,22.1,22.6]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.3,17.2,19.4,17.4,17,16.8,16,17.3,16.5,16.7,16.5,17.4,17.6,17.1,17.6],"script":[5.8,5.9,6.7,5.1,6,5.8,5.5,5.3,5.5,5.9,5.5,5.7,5.8,5.4,5.2],"paint":[9.8,8.7,10.5,10.8,8.8,9.5,8.9,9.7,9,8.7,9.1,9.3,9.5,9.3,11]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[5.1,4.4,4.8,4.5,4.3,4.7,4.2,4.3,4.6,4.1,3.7,4.4,4.5,4.2,4.5,5.4,4.3,4,4.2,4.5,5.8,5.7,4,5.8,4.7],"script":[2.2,1.8,2.4,1.9,2,2.5,1.8,2.4,2.1,1.9,1.5,1.6,2.2,2,1.8,2.3,2.1,2.4,2.5,1.9,1.5,2.9,1.6,2.8,2.1],"paint":[1.2,2.4,1.7,2.5,1.5,1.8,0.8,1.2,1.5,1.3,1.1,2.7,2.1,2.1,1.6,1.2,1.6,1.1,1.3,2.5,2.6,2,1.9,1.6,1.5]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[105.6,103.5,105.3,102.9,103.1,105,106.3,108.2,104.9,107.1,104.7,110.1,106.5,104.7,104.7],"script":[18.4,17.6,17.1,18.5,17.1,18.7,18.1,18.2,18.8,19.7,18.4,19,18.4,18.3,19],"paint":[85.1,84.2,84.8,82.5,82.9,83.6,85,88.1,82.7,84.8,83.8,88.6,85.6,82.8,82.8]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,12.5,12.2,12.3,12.2,12.2,12.1,12.4,12.3,12.1,12.1,11.7,12.1,12.5,11.9],"script":[1.6,1.7,1.5,1.3,1.7,1.4,1.8,1.8,1.6,1.6,1.5,1.6,1.6,1.7,1.7],"paint":[9.3,10.2,10.2,10,9.5,10.2,9.5,9.8,10.1,10,10.1,9.7,9.8,10.1,9.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[405,403.3,403.5,407.4,405.4,406.7,409.5,404.1,403.2,409.1,402.5,404.8,402.9,403,402.3],"script":[178.3,176.6,176.2,176.8,176.8,177.3,182,177.1,176.4,181.1,174.7,177.9,176.4,175.9,177.8],"paint":[218.8,218.6,219.6,222.7,220.3,221.4,219.6,218.8,219.1,219.6,220,218.9,218.9,219,216.5]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,37.1,36.5,38.1,36.5,36.8,37,37.2,37,37.3,37.5,37,36.8,37.6,36.9],"script":[9.3,9.1,9,9,9.1,9.1,9.3,9.1,9.2,9.2,9.2,9,9.1,9.6,9.2],"paint":[27.2,26.9,26.6,27.9,26.5,26.8,26.7,27.1,26.8,27.1,27.2,26.9,26.7,27,26.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,18.2,19.4,18.2,19.8,21.2,18,19.1,19,18.8,18.3,19.7,19,18.7,18.1],"script":[15.8,16.8,16.8,16.3,17.5,19.3,15.5,16.6,16.8,16.2,16.6,17.2,16.6,17.2,15.8],"paint":[0.5,0.3,2.3,1.2,1.5,0.3,1.4,1.4,1,1.5,0.5,0.9,2.1,0.7,1.1]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.176253318786621]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.790728569030762]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.185572624206543]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8829221725463867]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.4531364440918]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[188.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[51.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[209.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"01_run1k","values":{"total":[30.4,30.5,30.8,30.7,30.3,30.6,31.4,30.3,31.2,30.8,30.3,31.1,30,30.5,30.2],"script":[9.1,9,9.2,9.3,9.2,8.7,9.3,8.9,9.4,9.4,8.9,9.2,8.9,8.8,8.6],"paint":[20.9,21.1,21.2,21,20.7,21.4,21.8,21,21.4,21,21,21.5,20.8,21.3,21.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"02_replace1k","values":{"total":[35.9,35.8,36.2,36.9,35.6,36.1,35.8,35.7,35.9,35.9,35.3,36.3,36.1,35.6,35.4],"script":[13.3,13.3,12.9,13,13,13.2,12.6,12.4,13.2,12.9,12.6,12.6,12.7,13,12.7],"paint":[22.2,22.1,22.9,23.5,22.2,22.5,22.7,22.8,22.4,22.5,22.3,23.3,23,22.1,22.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.5,15,15,14.9,14.6,14.7,15.8,15.4,15.8,15.2,17.3,15.3,16.1,16.1,15.3],"script":[5.4,4.7,4.5,4.3,3.7,4.5,4.6,3.9,4.4,4.5,4.8,3.4,4,4.3,4.3],"paint":[10,8.5,9.5,9.5,9.1,8.7,9.9,10.2,9.7,8.8,11.6,10.2,11,11.1,9.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"04_select1k","values":{"total":[5.6,5.8,5.9,5.9,5.9,5.4,5.3,5.6,5.7,5,5.9,5.8,5,5.9,6,6.2,5.8,6.3,6.1,5.7,6.2,5.4,5.2,5.5,6.3],"script":[3.3,2.9,2.8,3.4,2.7,2.7,2.8,3.3,3.2,2.9,2.9,3.2,3.3,3,3,3.6,2.7,3.7,3.5,3.4,3.3,3,3,3.3,3.8],"paint":[1.6,2,2,1.6,1,1.7,1.7,1.2,2.1,1.5,2.8,2.4,1.6,2,1.8,1.8,2.9,2.5,1.6,1,2.2,1.6,1.6,1.3,1.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"05_swap1k","values":{"total":[104.2,105.7,103.4,102.9,110.9,104.3,106.4,104.7,104.4,104.6,103.2,104.7,105.8,104.7,105.7],"script":[17.4,20.4,20.2,17.9,18.9,18.6,19.7,18.3,18.2,19,17.9,20.8,18.7,19,18.3],"paint":[85,83.7,81.9,83.8,90.2,83.5,84.6,84.4,84.4,83.5,84.2,82.2,85.1,83.8,84.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.3,12.2,12.2,12.1,12.1,12.1,12.1,11.7,12.2,12.2,12.1,12.2,12.3,12.2],"script":[1.2,1.5,1.2,1.2,1.2,1.3,1.3,1.4,1.3,1.5,1.3,1.1,1.1,1.1,1.3],"paint":[10.4,10.1,10.1,10.3,9.9,9.8,10.2,10,10.1,10.3,9.9,10,10.3,10.6,10.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"07_create10k","values":{"total":[416.8,422.8,417,416.8,415.7,410.6,416.9,421.6,415.3,413.2,415.8,416.5,416,421.6,412.6],"script":[190.2,196.7,190.2,192.6,189.1,186,189.6,190.4,189.5,188.6,189.2,189.6,190.5,189.1,190.2],"paint":[219.3,218.8,219.5,217.2,219.2,217.3,219.8,223.6,218.8,217.2,219.4,219.8,218.3,225.4,215.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,35.8,36.3,35.5,35.9,36,36.5,36.2,36.5,37.6,36.5,36.1,36.5,36,36.3],"script":[10,9.9,10,10,9.9,9.7,10,10,10.3,10.3,9.8,10,10.1,9.9,10],"paint":[25.8,25,25.5,24.8,25.2,25.5,25.6,25.4,25.4,26.6,25.8,25.3,25.5,25.3,25.5]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,11.8,12.6,12.1,11.1,12.4,11.1,11.8,11.8,12,12,12,11.5,12,11.7],"script":[9.9,10.5,11.1,10.9,10.4,11.5,9.5,10.2,10.3,10.6,11,10.7,10.2,10.4,10.1],"paint":[1.2,1.2,1.3,0.3,0.6,0.3,1.5,0.9,1.1,1.3,0.9,0.6,1.1,1.4,1.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.385213851928711]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.1598663330078125]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.76962947845459]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7662296295166016]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[55.6622257232666]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[213.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[215.2]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"01_run1k","values":{"total":[30.9,29,29.2,29.8,29.4,29.5,29.4,29.8,29.8,28.9,29.2,31.2,29.7,29.4,29.3],"script":[9,7.9,8,8.1,8.1,8.1,8.3,8.4,8.3,8,7.9,8.7,8.4,8.3,8],"paint":[21.4,20.6,20.6,21.1,20.8,20.7,20.5,20.8,20.9,20.4,20.8,22,20.7,20.6,20.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"02_replace1k","values":{"total":[37,37.2,36.8,37.2,36.9,36.5,36.3,36.7,36.7,36.9,36.7,35.3,35.3,35.5,36.8],"script":[13,13.4,13.2,13,13.2,12.6,13,13,13.3,13.1,13.2,12.8,12.7,12.6,13],"paint":[23.5,23.2,23,23.6,23.1,23.4,22.7,23.1,22.9,23.2,23,22,22,22.4,23.2]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.7,16.7,16.6,17.2,17.2,16.7,16.5,18,17.3,17.2,16.7,17,16.3,16.7,18.3],"script":[5.5,5.2,5,5.5,5.5,5.2,5.2,6.6,5.7,5.7,5.4,5.3,5.3,5.4,5.9],"paint":[11.4,9.7,9.4,9.3,9.7,8.8,9.1,9.4,9.3,9.6,9.3,9.9,8.8,8.9,10.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"04_select1k","values":{"total":[4.9,5.9,4.6,4.6,4.9,4.9,5.6,5.4,5.3,5.4,4.8,5.2,5.6,5.7,5,4.8,4.8,5.2,5.8,5.7,5.9,5.1,5.1,5.7,4.6],"script":[2.1,3.3,2.7,2.5,2.5,2.6,3.2,3,2.6,2.9,2.1,2.9,3.2,3.2,2.6,2.8,2.4,2.9,3.4,3.1,2.2,2.5,3,2.8,2.7],"paint":[2.2,1.7,0.8,1.5,2.3,2.1,1.5,2.2,1.7,1.6,2.6,1.4,1.5,1.5,1.4,1.2,2.3,2.1,2.3,1.7,2.2,2,1.2,2.7,1.1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"05_swap1k","values":{"total":[105.8,106.3,108.2,105.4,106.4,109.1,109,110.4,104.3,109.5,106.3,110.2,109,111.9,106.4],"script":[20.8,21.9,23.2,20.7,21.6,22.8,22.9,24.1,22.2,22.4,22.9,24.2,23.6,23.8,21],"paint":[83.3,81.6,82.1,81.8,81.6,82.9,83.6,84,80.4,85.4,81.4,84.2,81.9,86.4,82.9]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.6,13.2,12.8,11.9,12.1,12.4,12.3,12.4,12.1,12.8,12.2,12.2,12.3,12.1],"script":[1.6,1.6,1.8,1.9,1.4,1.6,1.8,1.4,1.5,1.7,1.7,1.6,1.7,1.7,1.6],"paint":[9.9,10.2,10.7,10.2,9.8,9.8,9.8,10.2,10.4,9.8,10.5,9.8,10,9.8,10]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"07_create10k","values":{"total":[411.6,434.3,412.2,416.2,410.6,412.3,423.6,421.6,428.1,410.9,420,409.9,429.2,421.6,411.4],"script":[184.3,207.8,186.4,187.9,185.5,184.5,196.1,194.3,202.9,187.5,193.5,184.6,201.5,195.9,185.1],"paint":[219.6,218.7,218.2,221,217.8,219.8,220,219.8,217.6,215.7,218.8,217.7,220.2,218.6,219.1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,35.9,35.8,35.8,35.7,35.8,36.6,36.1,35.9,36.1,36.7,36.3,36.2,36.3,35.1],"script":[9.5,9.5,9.6,9.7,9.8,9.4,9.7,9.7,9.5,9.8,10,9.7,9.7,9.7,9.7],"paint":[25.4,25.5,25.3,25.2,25.1,25.4,25.9,25.4,25.4,25.4,25.7,25.7,25.6,25.6,24.5]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.9,17.9,18.6,18,18.5,19.7,17.1,18.1,17.7,18.3,17.5,18.9,19.6,18.3,17.6],"script":[15.8,15.6,16.6,16.4,16.5,17.4,15.3,15.9,15.2,16.1,15.1,16.6,17.3,16.4,15.7],"paint":[1.5,1.4,1,0.3,0.8,1,1.2,1.5,1.8,0.4,1.3,1.6,0.6,1.7,1.7]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5511512756347656]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.2431745529174805]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.723941802978516]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.329962730407715]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.60988235473633]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[242.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[266]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"01_run1k","values":{"total":[29.8,27.7,30,28.3,29.5,29.3,28.2,28,28.2,29.6,28.2,27.7,28.1,29.3,29.4],"script":[7.9,6.9,7.9,7.4,7.7,7.6,7.1,7.2,7.4,7.7,7.1,7,7.3,7.6,7.7],"paint":[21.4,20.3,21.6,20.4,21.3,21.2,20.5,20.2,20.3,21.5,20.6,20.2,20.2,21.2,21.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"02_replace1k","values":{"total":[224.1,231.7,225.4,224,213.7,230.3,224.7,213,224,226.4,227.3,215.5,229.1,214.4,227.5],"script":[204.5,212.1,204.2,204.4,192.7,210.5,204.7,193,204.3,206.4,207.2,194.8,209.3,194.1,206.2],"paint":[19.1,19.2,20.8,19.2,20.6,19.4,19.6,19.5,19.2,19.4,19.7,20.3,19.4,19.8,20.9]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32,31.5,32.7,31.9,31.7,31.8,32.6,31.5,33.4,32.8,32.6,32,33.1,32.2,31.9],"script":[20,19.1,20.4,20.3,19.4,19.6,20,19.5,21,20.1,20,20,20.5,20.2,19.3],"paint":[9.9,10.6,10.2,10.1,10.9,10.5,10.6,9.6,10,10.5,10.3,10.4,10.5,9.5,11.3]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"04_select1k","values":{"total":[20.3,21.4,21.4,20.5,21.1,21.4,19.1,20.8,21.8,20.7,20.9,21.4,19.5,21.2,22,19.7,21.2,18.9,20.3,20.9,21.3,20.7,21.1,20.8,21.2],"script":[17.1,18.3,17.9,17.9,17.6,18,16.7,18.1,18.3,17.7,17.5,18.2,16.8,17.9,17.7,16.8,17.9,16.7,17.2,18.2,18,17.2,18,17.9,17.2],"paint":[2.1,1.2,1.4,1.5,1.9,1.6,1.4,1.5,3,1.8,2.3,2.5,1.4,2.2,2.9,1.2,1.8,1,1.2,2.6,3,2,2,2.3,2.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"05_swap1k","values":{"total":[122,122.1,122.7,124.5,125.1,122.7,128.6,124,120.1,122.7,123.2,123.6,124,124.6,128],"script":[37.9,36.3,36.8,37.1,37.3,36.8,37.5,36.6,34.1,37.2,36.4,37.8,37.1,38.6,39.4],"paint":[81.7,83,83.8,84.6,85.4,83.9,88,84.4,83.2,83.1,84.4,83.8,84.7,83.3,86.5]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.8,19.7,19.2,19.3,18.9,18.8,18.8,18.9,18.8,18.7,19,18.7,18.8,19.2,18.8],"script":[7.9,7.9,8.1,7.8,8,7.9,7.6,7.9,7.6,7.6,8.2,7.9,7.8,7.9,7.8],"paint":[9.9,10.5,9.6,10.7,9.6,9.9,10.2,9.5,9.6,10.2,10,9.6,9.9,10.1,10]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"07_create10k","values":{"total":[414.9,401.6,399.8,400.1,413.9,405,411.1,403.9,410.7,399.8,403.5,416.3,407.7,415.7,404.2],"script":[190.9,174.8,176.4,177.6,190.1,179,185.4,179.4,184.3,176.6,178.8,188.9,181.2,190.3,179.4],"paint":[216.8,219.4,216.2,215.1,216.6,218.3,218,216.6,218.8,216.1,217.3,219.7,218.6,217.8,217.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.4,39.6,39.8,39.6,39.9,39.3,39.5,39.4,39,39.9,39.8,39.5,39.1,39.3,39.4],"script":[12.3,12.2,12.3,12.9,12.4,12.2,12.3,12.3,12,12.4,12.3,12.3,12.4,12.4,12.1],"paint":[26.2,26.5,26.6,25.8,26.5,26.1,26.3,26.1,26,26.6,26.6,26.3,25.8,26,26.3]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.6,20.4,23.1,19.6,20.2,21,19.7,19.6,23.2,20.1,20.5,20.1,18.9,20,20.5],"script":[17.3,18,20.4,17.2,18.1,18.4,17.8,17.2,20.8,18,18.1,17.5,17.5,17.7,18.4],"paint":[2.1,1.2,1,2.1,1.1,2.4,1.5,1.7,1.1,0.7,1.6,1.9,0.3,1.4,1.9]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7072792053222656]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.071669578552246]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.640799522399902]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.701038360595703]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.479002952575684]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[297.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[340.2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.7,31.9,31.8,32.2,32.1,33,32.4,32.7,32.5,32.7,32.7,32.1,31.8,32,32.3],"script":[10.7,10,10,10,10,11.1,10.7,10.8,10.2,11,10.9,10.1,9.9,10.3,10.7],"paint":[21.5,21.4,21.2,21.6,21.5,21.4,21.1,21.4,21.7,21.1,21.3,21.4,21.3,21.1,21.1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.5,39.8,39.1,39.5,39.7,39.6,39.4,40,39.8,39.4,39.8,39.5,39.7,39.3,38.5],"script":[15.7,15.6,15.8,15.7,15.8,16,15.8,16.3,15.9,15.7,15.9,15.7,16,15.8,15.3],"paint":[23.3,23.5,22.7,23.3,23.3,23,23,23.1,23.3,23.2,23.3,23.2,23.1,23,22.6]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.6,20,20.4,20.7,20.1,19.6,19.9,19.2,20.2,19.9,20.6,19,20.2,20.6,19.6],"script":[9,7.5,7.9,8.8,7.7,8.1,7.9,7.1,8.5,8.4,8.4,6.9,8.1,8.3,8],"paint":[9.2,10.4,10.3,10,10.7,9.3,10.7,10.6,9.4,8.9,10.5,9.1,9.7,9.5,10.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.3,6.3,5.8,6.5,6.1,5.9,6.1,7.1,6.6,5.8,6.4,5.7,5.9,6.1,6,5.7,5.6,5.7,5.6,5.7,6,6.1,6,5.5,5.5],"script":[3.1,3.8,3.6,3.9,3.3,3.2,3.4,4.4,3.7,3.6,3.4,3.7,3.2,4.1,3.7,3.6,3.4,3,3.5,3.1,3.6,3.9,4.1,2.9,3.1],"paint":[1,2.3,1.4,1.7,1.4,2.6,2.6,2.2,2.3,1.3,2.9,1.1,2.6,1.8,2.2,1.5,1.6,1.9,1.8,2.5,0.5,1.4,1.1,1.7,1.5]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[111.6,107.7,107.8,110.7,109.9,111,108.9,112.9,110.4,109.3,110,110.2,108.4,109.9,106],"script":[23.2,20.4,21.1,21.1,21.9,21,22.4,22.3,22.7,21.9,21.7,21.8,21,22.8,20.3],"paint":[85.5,84.9,84.1,86.2,85.6,86.8,84.5,88.2,85.2,85.2,85.8,86.2,85.9,84.4,83.7]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.4,24.3,25,24.5,24.9,24.8,24.2,23.9,24.1,24.7,24.4,25,23.9,24.5,24.2],"script":[12.6,12.2,13,12.3,12.8,12.3,12.2,11.8,12.1,12.7,12.6,12.8,12.5,12.4,12.2],"paint":[10.8,11,11.1,11.1,11,11.4,10.9,10.9,11.2,10.5,10.7,11,10.2,10.9,10.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[459.4,457,448.9,449.8,453,452.4,456.7,445.3,447.5,454.7,455.1,455.1,455.1,455.4,452.9],"script":[223.4,226.8,222.6,221.8,225.5,222.8,224.9,218.4,219.1,226.1,228.7,226.4,226.7,222.8,222.9],"paint":[227.9,222.5,219,220.3,220,222.2,224.1,219.5,221,221.3,219,221.4,220.9,224.3,222.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.8,38.6,39,38,37.9,38.1,39.6,37.8,38.4,38.2,37.6,37.5,37.8,38.6,38.2],"script":[11.2,10.9,11.9,11,11.2,10.8,11.7,10.9,11.2,11.6,11,11,10.9,11.8,11],"paint":[26.7,26.7,26.1,26.1,25.9,26.3,26.9,26,26.2,25.6,25.6,25.5,25.9,25.9,26.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.9,22.2,20.9,20.8,21.1,21.8,18.9,20.8,21.4,21.9,21.7,21.3,21,20.2,20],"script":[18.6,20.1,18.7,18.5,19.2,19.7,16.7,18.4,19.2,19.8,19.3,18.6,18.3,18.4,18.1],"paint":[1.1,1,1.9,1.7,1,0.4,1.9,0.3,0.8,1,1.4,2.4,1.8,0.6,0.6]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3014955520629883]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.64023494720459]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.327454566955566]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1526832580566406]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.58246803283691]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[193.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[52.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[212.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[31.4,29.9,29.2,28.7,28.9,28.5,28.5,29.5,29.2,28.6,28.8,28.5,28.9,28.6,29.6],"script":[8.5,8.1,8,7.6,7.8,7.4,7.6,7.9,8,7.5,7.6,7.6,7.7,7.6,7.7],"paint":[22.3,21.3,20.7,20.6,20.5,20.6,20.4,21.1,20.6,20.5,20.7,20.4,20.7,20.4,21.3]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[36.4,35.9,35.9,35.8,35.8,36,35.9,36.1,36,36.5,36,36,36.1,34.9,35.4],"script":[13.1,13.2,13.3,13,12.9,13.1,13,12.8,13.1,13.1,12.9,12.9,13,12.4,12.9],"paint":[22.7,22,22,22.3,22.3,22.2,22.3,22.8,22.3,22.8,22.5,22.5,22.6,21.9,21.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,18.5,18.6,20.2,19.2,19.4,18,19.6,18.6,19,20,19.4,19.1,19.4,18.6],"script":[7.5,7.3,7.2,7.9,7.1,7.5,6.4,7.7,7,7.7,7.8,7.5,7.6,7.6,7],"paint":[10.9,9.4,9.3,11.6,10.6,9.5,9,9.5,9.7,9.5,10.6,9.6,9.2,9.9,9.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.5,6.3,5.2,5.3,5.1,6.3,5.2,4.6,5.5,5,5.8,5,4.6,5.3,5.2,5,5.1,4.6,5,5.8,5.6,5.9,5.2,5.3,6],"script":[3.1,3.6,2.7,3.2,3,3.8,2.6,2.7,3.1,3.1,3.3,2.7,2.6,2.9,2.6,2.7,2.8,2.5,2.2,3.3,3.2,3.2,2.3,3,2.9],"paint":[2.2,1.8,1.6,0.4,2,1.5,0.6,1.2,2.2,1.2,1.7,1.4,1,1.7,2.3,0.9,1.8,1.1,2.2,1.7,1.6,1.9,2.3,1.3,2.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106.2,106.4,107.4,110.7,106.4,104,111.5,106.6,104.3,108.6,105,106.4,108.4,106,106.8],"script":[21.2,21.5,20.9,21.9,21.6,20.1,19.8,20.5,19.8,21.1,18.4,21,21.1,21,21.4],"paint":[83.4,82.2,85,86.4,81.8,81.7,89.2,83.7,81.8,84.5,83.6,83,85.3,82.9,82.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.7,13.4,12.7,12.8,12.3,12.8,12.6,13.5,13.3,12.8,13.1,13.5,12.9,13.1],"script":[2.1,2.1,2.3,2,2.3,1.9,1.9,2.2,2,2.3,2.1,2.5,2.2,1.9,2],"paint":[10.2,10.1,10.2,9.9,9.9,9.8,10.1,10,10.8,10.4,10,9.9,10.6,10.1,10.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[404.2,403.2,406,402,401.1,405.1,404,404.6,407.2,406.7,402.6,403.5,404.4,402.8,402.9],"script":[177.2,179.9,179.4,179.5,176.9,180.2,180.1,181.5,181.4,180.3,178.1,180.4,178.4,178.9,176.8],"paint":[219.7,215.9,219,215.4,216.6,217.6,216.5,215.8,218.3,219,216.9,215.7,218.9,216.6,218.8]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,35.3,34.4,35.1,34.6,34.5,35.3,35.3,36.9,35.4,35.5,34.9,35.3,34.3,35.5],"script":[8.8,8.9,8.9,8.7,8.8,8.9,8.8,8.8,9.3,9,8.8,8.9,8.8,8.4,8.9],"paint":[26.1,25.5,24.5,25.4,24.9,24.7,25.5,25.5,26.6,25.5,25.8,25.1,25.6,25,25.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.6,17.8,17.7,18.5,19.2,18.7,19.5,18.5,18.6,18.1,18.5,18.2,18.4,18.6,18.2],"script":[16.7,15.7,16.2,16.6,16.8,16.7,17.5,16,16.5,16.6,16.6,16.1,16.2,16.5,15.9],"paint":[0.3,0.7,1.2,0.3,1,1.2,1.2,0.9,1.8,0.3,0.3,0.3,1.1,1.9,1.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.221175193786621]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.987057685852051]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.436522483825684]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9729070663452148]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[45.40648651123047]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.6,31.9,32.4,31.2,31.2,31,30.4,31.1,30.3,30.6,30.1,30.6,30.9,31,30.9],"script":[10.2,9.7,10,9.7,9.6,9.3,9.3,9.4,8.9,9.2,8.9,9,9.4,9.6,9.3],"paint":[21.8,21.6,21.8,21,21,21.2,20.5,21.1,20.8,20.9,20.7,21.1,20.9,20.9,21]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35.5,36.2,36.2,36,36,36.4,36.2,36.5,36,36.1,36.2,36.2,36.1,36,36.2],"script":[12.8,13.2,13.3,13.1,13.3,13.5,13.6,13.6,13.2,13.2,13.4,13.3,13.3,13.3,13.2],"paint":[22.1,22.4,22.4,22.4,22.1,22.3,22.1,22.3,22.2,22.3,22.2,22.2,22.2,22.2,22.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.7,25.2,25.2,25.7,25.5,27,25.9,24.3,27,25.1,25.4,26.9,25.3,24.1,23.9],"script":[12.9,13.6,13.2,14,13.4,15.2,13.4,12.7,14.3,12.4,13.1,13.7,13.1,11.9,11.9],"paint":[10.7,10.2,10.7,9,10,9.1,10.7,9.3,10.4,10.6,11.2,10.9,9.6,9.9,8.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.1,6,5.4,6.2,6.6,5.3,5.5,5.9,5.7,6.2,5.4,5.4,5.7,5.6,6.3,5.5,4.8,5.3,5.3,5.4,5.6,6.4,6.1,6.9,6.4],"script":[4,3.7,2.7,3.6,3.9,3.1,3,3.9,3,3.8,3,2.6,3.4,3.1,4.2,3.4,3.1,3.6,3.2,3.4,2.9,3.3,3.7,3.4,3.6],"paint":[1.5,1.7,2.5,0.8,2.5,1.1,1.4,1.1,1.7,2.3,0.5,2.2,2.2,2.3,1.9,1.9,0.8,0.8,1.6,1.1,2.4,2.1,1.8,2.9,1.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[110,111.3,111.4,108.1,107.7,109.8,110.3,108.4,110,112.1,110.3,111.9,113.1,111.8,108.7],"script":[22.7,23,23.3,23.3,22.1,23.5,23.6,23,24.1,23.4,25.5,24.3,24,22.9,22.8],"paint":[83.9,85.7,85.1,82.7,82.8,83.4,84.3,82.9,84.2,87.4,83,85.9,87,85.7,83.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,15.6,14.7,14.8,15.3,14.7,15.7,15.6,14.9,14.6,14.3,14.6,15.8,14,14.7],"script":[3.8,4.4,3.8,3.9,4,3.8,4,4.2,3.7,3.9,3.5,4,3.7,3.6,3.7],"paint":[10.1,9.9,10.4,9.9,10.7,10.3,11,10.7,10.4,9.7,10.1,10.3,11.6,9.8,10.6]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[410,410.1,415.4,411.9,410.5,415.3,412.6,412.3,414.8,417.1,418.1,411.3,409.8,415.5,411.9],"script":[186.3,186,189.5,187.7,187.8,187.3,187.5,188.8,190.7,192.3,188,186,185.8,189,187.7],"paint":[216.1,216.7,218.3,217.1,215.3,220.6,217.8,216.2,216.6,217.6,222.6,218.1,216.6,219.3,216.9]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,36.4,36.4,38.3,37.9,37.8,37.7,38.1,37.8,37.9,36.4,36.6,38,39,37.6],"script":[10.9,10.2,10.3,10.9,10.9,10.6,10.8,10.8,10.7,10.8,10.3,10.4,10.8,10.8,10.7],"paint":[26.2,25.3,25.1,26.4,26,26.2,26,26.4,26.1,26.2,25.2,25.3,26.3,27.1,25.9]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,19.5,20.5,20.9,21.6,21,20.2,20.1,20,20.6,22.5,20.8,19.5,20.5,21.2],"script":[15.8,17.4,18.2,19,19.4,19,17.9,17.8,18,19.2,20.1,18.5,17.5,18.3,18.9],"paint":[2,0.8,1.4,0.4,1,1.1,1.6,1.3,1.5,0.3,1.2,1.7,0.3,1.5,1.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3983383178710938]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.435094833374023]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.927040100097656]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4592742919921875]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.43937873840332]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[246.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[276.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"01_run1k","values":{"total":[33.5,32.6,32.6,33.4,33.2,32.5,33.1,32.4,32.7,32.3,31.9,32.6,32.9,33,32.8],"script":[11.6,10.9,10.8,11.2,10.8,10.3,11.2,10.9,11.2,10.2,10,10.4,11.1,11,10.9],"paint":[21.3,21.1,21.2,21.6,21.9,21.6,21.4,21.1,21,21.4,21.4,21.7,21.2,21.5,21.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.3,38.9,39.3,41.8,39.3,39.7,39.6,39.5,39.4,38.6,39.6,40,39.2,39.5,39.4],"script":[15.6,15.6,15.7,15.9,15.7,15.9,15.9,15.7,15.5,15.1,15.9,16,15.7,15.7,15.8],"paint":[23.2,22.6,23,25.4,23.1,23.2,23.1,23.2,23.3,23,23.1,23.4,23,23.2,23]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.2,19.6,19.5,20,19,18.6,20.9,19.8,19.6,19.1,20.6,18.9,18.6,19.9,20.7],"script":[8.3,7.8,7.8,8.2,7.2,7.3,8.5,7.9,7.5,8,8.2,7.4,7.3,7.7,7.6],"paint":[9.6,9.6,10,8.5,10,9.5,10.4,9.4,9.9,9.2,10,9.1,9.7,10.3,10.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.8,6.8,6.5,5.5,6.2,5.9,6.1,6.3,5.5,5.8,5.7,5.6,5.8,6.1,6.6,6.3,6.6,6.9,6,6,5.6,5.2,6.1,5.8,5.8],"script":[3.5,4.2,4,3.7,3.9,3.5,3.2,3.5,3.6,3.6,3,2.6,3.4,3.6,4,3.1,4.1,3.7,3.5,3.5,3.1,3.1,3.6,3.3,3.4],"paint":[1.3,1.8,2.3,1.3,1.2,1.4,2.7,2.2,1.1,1.3,2.2,2.8,2.3,1.6,2.1,3,0.5,2.7,1.5,1.5,2.4,1.3,1.1,1.8,1.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106.5,110.1,108.4,110,115.8,106.8,111.7,112.4,108.8,108.2,107.5,110,104.5,110.1,107.1],"script":[20,21.4,21.8,21.8,20.8,21.3,22.3,21,21.5,21,20.3,20.7,20.1,21.8,21.1],"paint":[84,86.4,84.4,86.9,92.6,84.2,87.3,89.8,85.3,84.5,83.9,86.1,82.3,86.6,83.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.4,24.5,24.6,25.9,24.4,24.2,24.9,24.5,24.2,24.4,24.8,24.4,24.4,23.9,24.5],"script":[12.6,12.4,12.5,13.1,12.3,12.2,12.8,12.3,12.3,12.5,12.8,13,12.3,11.8,12.7],"paint":[10.6,10.9,11.2,11.5,11,11.2,11.2,10.9,10.8,10.9,10.9,10.2,11,10.9,10.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"07_create10k","values":{"total":[453.9,452.4,457.3,458.3,454.6,455.3,449.8,459.7,454.2,451.7,452.5,451.5,456.2,454,451.6],"script":[225.3,221.3,224.5,227.6,225.6,228.9,222.2,231.3,225.6,224.8,224.5,223.9,227.4,221.8,222.6],"paint":[220.8,223.9,225.3,223.1,221.8,219.1,220.1,221.3,220.9,219.5,220.8,220.5,221.6,224.9,221.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.6,38.8,39.1,37.7,39.1,37.7,37.8,38.2,38.5,37.4,38.3,38.6,38.1,38.9,37.8],"script":[12.1,11.7,12,11.2,12,11,11.1,11.4,12,11,11.2,11.9,11.2,11.9,10.9],"paint":[25.6,26.1,26.1,25.5,26.1,25.8,25.7,25.9,25.6,25.5,26.1,25.7,26.1,26,26]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.4,20.3,22.9,20.7,22.4,20.9,21.3,20.2,21.3,20.9,21.1,20.1,20.5,20.1,20.3],"script":[18,17.9,20.3,18.6,20,18.6,18.5,18.3,19.3,19.5,19.2,17.7,18.9,18.5,18.4],"paint":[1.1,1.2,1.5,1.2,1.4,1.2,1.9,0.3,0.6,0.3,0.3,1.2,0.3,0.6,0.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3310251235961914]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.615174293518066]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.305543899536133]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1841821670532227]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.20617008209229]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[200.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[54.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[224.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"01_run1k","values":{"total":[29.1,28.4,27.5,27.3,29.8,27,27.3,27.4,27.2,27.1,29.3,27.3,27.1,28.8,27],"script":[7.1,6.8,6.6,6.6,7.3,6.7,6.3,6.5,6.4,6.7,7.3,6.7,6.4,6.8,6.3],"paint":[21.5,21,20.4,20.1,22,19.8,20.4,20.3,20.2,19.9,21.4,20.1,20.1,21.4,20.2]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.9,33.3,33.4,33.9,33.9,33.2,34.2,33.4,33.3,33.4,33.6,33.4,33.5,33.4],"script":[10.5,10.9,10.4,10.4,10.7,10.8,10.4,11.1,10.6,10.4,10.7,10.8,10.3,10.3,10.5],"paint":[22.4,22.5,22.3,22.4,22.5,22.5,22.2,22.6,22.2,22.3,22.2,22.3,22.6,22.5,22.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.8,17.6,15,15.9,15.7,16.4,16.9,17.2,15.6,16.1,17.4,16.8,16.8,16.2],"script":[5.4,5.8,5.2,4.5,5.1,4.7,5.5,5,5.7,4.9,5.2,5.5,5.3,5.4,4.9],"paint":[10,10.3,11,9.6,9.3,8.9,8.8,9.8,9.5,8.3,9,10.1,9.8,9.1,10.6]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"04_select1k","values":{"total":[5,4.8,4.7,4.1,4.7,4.5,4.6,4.5,4.5,4.8,4.5,5,4.4,5.1,5,4.5,4.9,5.2,4.6,5.8,4.5,4.8,4.5,4.9,4.2],"script":[2.5,2.3,2.3,2,2,2,2.4,2.4,1.9,2.3,1.6,2.4,1.8,2.7,2.4,2.2,2.6,2.4,2.7,2.5,2.1,2.7,2.6,2.3,2.2],"paint":[2.3,1.7,1.6,1.6,2.5,2.2,1.5,1.4,1.6,1.6,1.8,1.3,1.7,1.7,1.7,2.1,2.1,1.9,1.3,1.8,1.5,1.1,1.1,2.5,1.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"05_swap1k","values":{"total":[104.8,101.5,106.2,104.9,105,107.5,104.1,103.6,107.2,104.9,108.9,107.3,104.1,105.3,106.4],"script":[17.7,17.4,20.2,17.1,18.2,18.8,17.2,18.2,18.4,18.4,18,20,17.9,18.4,17.2],"paint":[85,81.7,84.6,85.5,83.9,85.7,84.5,82,86.5,83.9,88.6,85,84.1,85.7,85.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.9,11.8,11.6,11.8,11.6,11.7,11.6,12.2,11.6,11.6,11.8,11.8,11.6,11.8],"script":[1.4,1.3,1.3,1.4,1.3,1.6,1.3,1.3,1.5,1.5,1.3,1.4,1.4,1.3,1.5],"paint":[9.8,9.8,9.8,9.7,9.7,9.6,9.4,9.6,10.2,9.7,9.4,9.7,9.6,9.7,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"07_create10k","values":{"total":[393.4,390.3,392.3,394.1,434.5,432.4,388.3,396.5,395.2,394.7,411.7,413.5,392.7,467.2,390.3],"script":[166.6,163.7,164.9,167.8,205.7,205.8,164.9,170.3,168.7,167.6,186,187.5,166.3,238.3,164.3],"paint":[219.2,219.1,219.9,218.5,220.5,219.1,216.3,218.8,219.1,219.8,218.3,218.4,218.9,221.3,218.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.2,33.3,33.6,33.7,34,33.2,33.8,32.7,33.3,33.5,33.3,33.1,33.6,33.3],"script":[7.4,7.4,7.2,7.4,7.4,7.5,7.4,7.2,7.1,7.4,7.4,7.3,7.2,7.3,7.3],"paint":[25.3,24.9,25.1,25.3,25.3,25.6,24.9,25.6,24.6,25,25.2,25.1,24.9,25.3,25.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17.1,17.7,17.8,17,17.4,17.7,17.7,17.4,17.2,16.4,16.7,16.8,16.1,17.7],"script":[14.7,14.5,15.6,15.6,14.7,15.6,15.5,15.4,15.4,15,14.9,14.8,14.5,14.7,15.6],"paint":[1,1.6,1,1.3,1.3,0.3,1.2,1,1.8,0.3,0.3,1.1,1.4,1.2,0.9]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2446269989013672]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.428855895996094]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.83131217956543]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9516420364379883]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.3991117477417]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[196.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[53.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"01_run1k","values":{"total":[29.3,27.9,27.4,29.7,27.6,29.7,27,27.4,27.6,29.5,27.4,29.1,27.4,29.5,29.1],"script":[7,6.5,6.3,7.2,6.5,7.1,6.2,6.2,6.6,7.2,6.2,6.8,6.2,6.8,6.9],"paint":[21.7,20.9,20.5,22,20.6,22.1,20.3,20.7,20.4,21.8,20.7,21.7,20.7,22.1,21.7]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"02_replace1k","values":{"total":[33.5,34.3,34.2,33.9,33.3,33.5,34.2,34,33.6,34.9,34.5,33.6,33.4,33.5,34.9],"script":[11.1,11.3,11.4,11.4,11,10.9,11.1,11.1,10.9,11.6,11.6,10.9,11,10.9,11.5],"paint":[21.9,22.3,22.2,22,21.7,22,22.5,22.2,22.1,22.7,22.3,22.1,21.7,22,22.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.4,15.8,15.4,16.3,16,15.2,15.4,17.1,16,17.3,15.6,15.1,14.9,14.7,16.4],"script":[4,4.6,4.5,5.1,4.9,4.6,4.7,5.5,4.8,5.3,5.3,4.6,4.5,4.6,5.4],"paint":[9.4,9.3,10,10,10,9.3,9.5,9,10.5,9.7,9.3,9.2,9.4,8.7,9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"04_select1k","values":{"total":[5.6,4.1,3.7,5,4.3,4.3,3.7,4.3,4,4.3,5.6,5,4.7,4.6,3.5,4.8,4.3,3.9,4.9,4.1,4.4,3.5,4.9,4,3.6],"script":[2.4,2.2,2.2,1.8,1.9,1.9,1.3,2.3,1.3,1.9,2.9,2.2,2,1.9,1.4,1.8,2.2,2.1,2.4,1.5,1.8,2,2.3,1.9,1.2],"paint":[3,1.4,1.3,3,1.5,1.6,2.3,1,2.5,1.6,1.8,1.1,1.7,1.8,1,2,1.5,1.5,1.7,1.5,2.1,1.3,1.5,1,2.2]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"05_swap1k","values":{"total":[100.6,101.5,104.9,101.3,101.8,103.2,103.5,105.2,103.1,104.6,103.1,103.5,105.2,106.7,105.7],"script":[16.4,15.7,17.6,16.8,16.5,15.6,16.3,17.9,17.4,18.6,16.3,16,18,17.3,18.8],"paint":[80.9,83.1,84.4,81.8,82.4,85.7,84.7,85.2,83.4,84,84.5,84.2,84,86.7,85.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,11.6,11.9,11.6,12.4,11.8,11.8,11.9,12.4,11.1,11.6,12,12,12.6,11.9],"script":[1.2,1.3,1.4,1.2,1.6,1.4,1.5,1.2,1.6,0.9,1.6,1.3,1.3,1.5,1.6],"paint":[10.3,9.9,9.8,9.6,10.4,10.1,9.7,9.8,9.8,9.6,9.7,10.1,9.9,10.4,9.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"07_create10k","values":{"total":[393.7,394.4,395,389,393.3,395.7,390.8,393.7,398.4,389.2,393.7,393.6,394,392.7,396.6],"script":[169.7,169.4,168.8,166.1,167.6,169.8,165.7,169,169.2,165.2,167.5,169,169.5,166.5,169.2],"paint":[216.7,217.9,219.1,215.6,218.3,218.2,217.9,217.4,222,216.7,218.9,217.3,217.2,218.3,219.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.2,35.5,35.7,35.5,35.4,36.4,36,35.8,35.5,34.8,35.9,35.8,35.9,35.6,36],"script":[7.6,7.7,8.1,8.2,8.2,8.3,8.2,8.3,8.1,7.8,8.2,8,8.2,8.2,8.2],"paint":[26.6,26.9,26.7,26.3,26.3,27.3,26.9,26.5,26.4,26,26.7,26.9,26.7,26.5,26.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.2,18.1,18.2,17.4,17.9,17.3,17.8,18.4,17.1,19.2,18,17.9,19.5,17.2,19.9],"script":[15.1,15.9,16.6,15.3,15.8,15.4,15.9,16.1,15.2,17.1,15.7,15.9,17.1,14.8,18.2],"paint":[1.3,1.8,0.6,0.9,1.5,1,0.3,1.7,1.1,0.7,1.4,0.7,0.9,1.1,0.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.156524658203125]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.06430721282959]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.515730857849121]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8764820098876953]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.077948570251465]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[181.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203.1]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.6,29.6,30.2,31.7,30,33.2,29.8,30.1,29.8,31.8,31.4,30.3,30.7,30,29.9],"script":[9.2,8.5,8.6,9.2,8.4,8.9,8.5,8.6,8.3,9.1,9.1,8.7,8.7,8.7,8.5],"paint":[21.8,20.6,21.1,22,21,23.8,20.8,20.9,21,22.1,21.7,21.1,21.3,20.8,20.9]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"02_replace1k","values":{"total":[35.9,36,36.6,35.2,36.1,36.1,35.8,36.3,36.1,36.8,35.9,36.6,36.1,35.7,35.5],"script":[12.5,12.5,12.4,11.9,12.3,12.6,12.3,12.6,12.5,12.8,12.3,12.8,12.6,12.5,12.2],"paint":[22.8,22.9,23.5,22.7,23.1,22.9,23,23,23,23.4,23,23.2,22.9,22.6,22.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.4,21.9,21.2,20.7,21,21,21.5,20.5,23.4,21,21.8,20.5,21.5,21.1,20.6],"script":[10.1,9.6,9.4,9.1,9.4,9,10,8.7,9.5,9.5,10.2,9.2,9.8,9,8.9],"paint":[8.2,10.3,10.2,10,9.9,10.1,9.8,10.4,12.6,9.2,10.1,9.2,10.8,10,9.5]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"04_select1k","values":{"total":[7.6,8.8,7.5,8.2,8.1,7.3,8.4,8.7,7.4,8.5,8.6,7.1,8,6.9,7.5,7.3,7.4,7.4,7.5,8.6,7.3,7,7.2,7.5,7.6],"script":[4.8,5.3,4.6,5.7,5.3,4.5,5.2,5.5,4.8,5.2,5.5,4.8,5.4,4.7,4.8,4.9,4.9,4.8,4.9,5.1,4.6,4.8,4.5,4.5,4.9],"paint":[1.7,1.6,2.4,0.8,1.1,1.6,1.8,2.1,1.6,1.7,2.2,1.2,0.8,2,1.5,0.8,1.3,1.7,1.7,1.4,1.6,1.1,1.6,2.6,1.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"05_swap1k","values":{"total":[107.8,107.9,107.7,108,105.7,110.3,105.9,109,106.7,107.9,108,108,110.2,107.9,109.2],"script":[20.9,21.6,22.2,22.3,20.8,21.5,21.7,23.7,20.8,22.3,22.4,21.3,20.7,21.3,21],"paint":[84.5,82.4,83.6,82.9,83.4,85.9,82.2,82.6,84.2,82.9,84.4,83.6,87.1,83.9,85.5]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.7,13.3,13.4,13.8,13.1,13.4,13.4,13.8,15.2,13.4,13.6,13.4,13.2,13.3],"script":[2.9,3,2.9,3,3.2,2.8,2.9,2.8,3.1,3.9,2.7,3,3,2.7,3],"paint":[9.5,10.1,9.4,9.7,9.9,9.4,10,9.8,10.2,10.6,9.9,10.1,9.7,9.9,9.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"07_create10k","values":{"total":[406.2,427.9,401.7,403,403.2,423.4,403.7,411.1,401.3,404.2,403.9,400.5,400.2,404.5,426],"script":[180.3,201.2,174.8,176.4,176.1,196.6,174.6,184.6,175.9,177.4,178.9,176.3,176.6,178.4,199.8],"paint":[218.7,219.2,219.7,219,219.7,219.6,221.7,219.3,218,219.7,217.7,217,216.2,218.7,218.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,37.7,37.3,37,37.9,37.2,37,37.3,37.3,37.7,37.2,37.7,37.8,37.6,37.4],"script":[9.8,10.2,10.1,9.9,10.1,9.7,10,10,9.9,9.8,9.8,10,9.7,10.1,9.8],"paint":[26,26.5,26.2,26.2,26.8,26.5,26.1,26.4,26.5,27,26.5,26.7,27.1,26.5,26.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.7,17.9,19,17.1,18.2,18.3,18.4,17.8,17.1,17.4,18,18.3,18.4,16.3,18.5],"script":[16.4,15.6,16.6,15.9,16,16.1,16,16,15.5,15.7,16.3,15.8,16.7,14.9,16.8],"paint":[0.7,2.1,2.1,1,1.7,0.9,1.2,1.2,1.1,0.5,0.6,2.1,0.7,1.2,0.3]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2796640396118164]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.949119567871094]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.470735549926758]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4825477600097656]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.3575496673584]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[207.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"01_run1k","values":{"total":[30.8,28.8,28.8,29.1,30.7,30.6,30.6,28.6,29.6,29,31.3,29.9,29.2,28.9,30.6],"script":[7.8,7.4,7.4,7.1,7.7,7.8,8,7.3,7.6,7.1,8.2,7.6,7.2,7.1,8],"paint":[22.5,20.9,20.9,21.4,22.5,22.3,22,20.7,21.4,21.5,22.6,21.7,21.4,21.3,22]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"02_replace1k","values":{"total":[33.7,34.7,34.9,34.2,33.7,34.2,34,34.3,34.2,33.6,34.1,33.9,34.6,34,34.2],"script":[11.2,11.2,11.8,11.2,11.2,11.3,11.5,11.4,11.5,11,11.4,11.4,11.7,11.5,11.4],"paint":[22,22.9,22.5,22.3,21.9,22.3,22,22.2,22.1,22,22.1,21.9,22.3,22,22.1]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.6,17.3,16.2,17,17.8,17.1,17.4,17.6,17.6,17.3,16.6,16.7,18.8,17.5,16.2],"script":[5.3,5.6,5.4,5.8,5.8,5.9,5.7,5.6,5.5,5.5,5.8,5.8,5.3,6.2,5.2],"paint":[11.5,9.6,9.5,9.7,9.7,9.1,9.5,10.8,10.4,10.9,7.8,9.5,12.4,9.7,9.5]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"04_select1k","values":{"total":[4.9,5.3,5.1,5.7,5.4,4.8,5,5.2,4.9,6.1,5.1,5.2,4.9,5.5,4.7,4.4,5.3,4.5,5,5.6,5.4,5.1,5.4,5.2,6.1],"script":[2.7,3.2,2.6,2.8,3.2,2.4,2.4,2.5,3,3.5,3,2.8,2.7,3.1,2.2,2.7,2.9,2.6,2.3,3,3.3,2.4,3.3,3.1,3],"paint":[1.6,1.9,2.3,2.8,1.2,1.6,2.4,1.1,1.1,2.4,1.1,1.9,1.1,1.8,1.7,1.1,1.6,1.1,1.5,1.9,1.4,2,1.5,1.9,2.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"05_swap1k","values":{"total":[105.7,104.5,106.6,106.5,109.8,105,105.8,104.8,108.2,105.4,104.4,106.1,104.5,106.3,106.6],"script":[18.6,18.3,17.8,18.9,21,19.6,17.8,18.3,19.8,18.9,18.1,17.5,18.6,18.5,18.3],"paint":[84.2,84.1,86.5,84.3,86.3,82.8,85.9,84,85,85.3,83.8,84.9,83.6,85.6,85.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.2,12.3,13.4,13.1,12.9,12.2,12.3,13,12.9,12.5,12.7,12.4,12.4,12.5],"script":[2,1.8,1.8,2,1.8,1.8,1.8,1.5,1.6,1.8,1.7,2,1.9,1.8,1.9],"paint":[10.2,9.5,9.5,10.5,10.5,10,10.1,10.2,10.9,10.5,10.3,10,9.8,9.7,10]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"07_create10k","values":{"total":[407.8,408.8,408.9,402.1,412,404.5,402.1,403.9,407.1,404.4,404.5,405.1,403.9,406.1,405.2],"script":[182.5,178.1,178.8,177.3,181.9,179,178.7,177.9,180.3,180.2,178,180.9,179.6,178.7,181.1],"paint":[218.1,223,222.5,216.6,222.3,217.8,216.1,218.3,219.2,216.7,218.5,216.8,217.1,220,216.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,36.5,35.9,36.2,36,35.7,36.3,38.2,36.3,36,36.3,36.3,36,36.1,36.2],"script":[8.6,8.6,8.5,8.4,8.4,8.4,8.5,8.5,8.4,8.4,8.4,8.4,8.4,8.5,8.5],"paint":[26.8,26.9,26.5,26.8,26.6,26.4,26.8,28.8,26.8,26.7,26.9,26.9,26.7,26.7,26.7]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.1,18.2,20.1,18.3,20,19.2,19.5,19.8,19.5,19.8,19.8,19.8,19.8,18.8,19.7],"script":[17.9,16.5,17.9,16.7,17.6,17.2,17.6,17.9,17.5,17.4,17.7,17.9,17.8,16.8,17],"paint":[1.1,0.3,1.2,0.3,1.4,0.5,0.3,0.3,0.3,2,1.9,0.7,1.3,1.8,1.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1753854751586914]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.159784317016602]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.764469146728516]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9744691848754883]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.97618007659912]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[204.3]}},{"framework":"reagent-v0.10-keyed","benchmark":"01_run1k","values":{"total":[48,40.4,44.5,41.1,38.7,40.7,45.1,40.4,43.9,39.4,39.5,39.7,39.6,39.7,42.1],"script":[17.6,19.5,18.4,17.9,18.2,18.5,18.2,18.7,17.5,18.1,18.3,18.6,18.1,18.2,18],"paint":[20,20.6,20.9,20.9,20.4,20.7,20.6,20.6,20.5,21.1,21,20.8,21.3,20.6,21.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"02_replace1k","values":{"total":[50,49.6,43.6,45.3,50.9,44.5,45.4,51.7,44.1,44.7,44.5,47.4,44.2,46,44.7],"script":[22.5,22.1,21.8,22.5,22.2,21.9,22.3,22,21.8,21.8,21.9,22.3,21.8,21.9,22.2],"paint":[22.3,22.8,21.6,22.3,22.1,22.4,22.7,22.6,22.1,22.7,22.4,22.4,22.2,22.4,22.3]}},{"framework":"reagent-v0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.5,39.2,38.1,40.7,23.4,40.6,39.3,38.4,38.5,38.4,23.7,38.4,39.6,37.5,39.2],"script":[12.3,13,13,12.8,12.4,13.7,12.6,12.6,11.4,12.2,11.3,11.6,12.3,12.2,12.3],"paint":[11.1,11.3,10.2,11.9,10.2,11.3,9.7,10.2,11,10.9,10.8,11.9,10.9,11.1,10.5]}},{"framework":"reagent-v0.10-keyed","benchmark":"04_select1k","values":{"total":[7.1,8.8,10.4,7.2,9.3,7.6,11.1,10.5,8.8,7.7,12.9,12.9,6.2,12.8,12.9,6.8,12.2,6,6.2,11,9.5,12.3,6.4,8.9,13.2],"script":[2.9,3.2,2.2,3.4,2.2,3.6,2.3,2.6,4.2,3.4,1.9,2.1,3.3,2,2.9,3,2.7,2.7,3.3,3.3,2.2,2,3.3,3.1,2.7],"paint":[1.8,2.7,1.6,1.4,1.1,1.8,2.4,0.6,1.8,1.9,2.6,2.2,1.1,1.8,1.6,2.2,1.4,1.9,1.3,2.1,1.4,2.2,2.2,1.8,1.9]}},{"framework":"reagent-v0.10-keyed","benchmark":"05_swap1k","values":{"total":[125.1,123.2,111.8,108.5,109.1,109.2,114.1,120.5,122.6,107,104.1,122.3,126.6,120,126.4],"script":[25.2,25.2,23.7,24.4,25.7,22.5,23.9,24.4,24.1,23.4,24.1,24.2,25.2,23.4,24.8],"paint":[84,82.5,86.2,82,82.2,84.7,88.4,80.1,81.3,82.6,78.9,81.5,84.9,80.5,84.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[25,24.7,19.1,19.8,20.6,19.4,23.9,19.7,21.7,23.7,20.4,21.1,22.2,22,21.6],"script":[4.8,5.5,4.9,5.6,5.2,4.6,5.4,5.4,5.4,5.3,5.2,4.9,5,5,5.4],"paint":[11.3,11.1,11.2,11.2,10.9,11.3,11,11.1,11.5,11.1,10.7,10.9,10.7,11.5,11.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"07_create10k","values":{"total":[469.5,466.2,470.8,463.7,464.4,467.6,465.1,464,468,466.1,467.9,462.1,469.1,463.8,462.6],"script":[242.6,241.1,244.9,241.5,243.7,244.9,241.9,240.8,245.3,242.9,244.1,241.3,245.3,241.6,240.7],"paint":[221.3,221.7,222.6,219.1,217.4,219.4,219.9,220,219.3,219.9,220.3,217.6,220.5,219,218.7]}},{"framework":"reagent-v0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.5,43.8,45.2,48.8,44.6,48.7,49.6,49.1,44,49.3,51.7,44.7,48.3,44.6,49.4],"script":[19,18.2,19.4,18.4,18.9,18.6,19.2,18.5,18.8,18.6,19,18.9,18.6,18.8,18.8],"paint":[25.4,25.2,25.1,24.9,25.4,25.4,25.7,25.6,24.9,25.5,25.6,25.5,25.1,25.5,25.5]}},{"framework":"reagent-v0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[37.7,37.3,21.1,38.9,22.3,39.7,22.9,21.3,36.9,23.8,37.9,21.1,22.7,22.9,38.6],"script":[20.7,20.4,19.8,21.8,20.9,22.5,21.4,19.6,19.8,22.1,20.9,19.1,20.6,20.6,21.3],"paint":[1,0.9,1.2,1.1,1.2,1.2,0.6,1.3,1,1.6,1,1.8,1.2,1.6,1.2]}},{"framework":"reagent-v0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4527053833007812]}},{"framework":"reagent-v0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.31330680847168]}},{"framework":"reagent-v0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.039090156555176]}},{"framework":"reagent-v0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.954824447631836]}},{"framework":"reagent-v0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.01274394989014]}},{"framework":"reagent-v0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[274.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.4]}},{"framework":"reagent-v0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[291.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"01_run1k","values":{"total":[29.5,29.3,29.4,29.5,29.9,29.4,29.8,29.2,29.9,29.1,29.9,29.5,29.4,29.5,30],"script":[7.1,7.1,7.1,7.1,7.3,7.2,7.3,7.1,7.2,7,7.1,7.2,7.2,7.1,7.1],"paint":[21.8,21.7,21.8,21.9,22,21.6,21.9,21.6,22.1,21.6,22.2,21.7,21.7,21.9,22.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"02_replace1k","values":{"total":[32.1,31.8,32.7,32.3,33.2,32.6,32,32,32.1,32.5,32,32.4,32.3,32.4,32.8],"script":[9.2,9.1,9.6,9.6,9.6,9.8,9.3,9.9,10,9.5,9.2,9.6,9.3,9.5,9.5],"paint":[22.4,22.2,22.6,22.1,23,22.1,22.1,21.5,21.5,22.5,22.2,22.3,22.4,22.3,22.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,12.1,11.8,12.7,12,11.3,12.2,12.1,12.1,11.9,11.8,13.1,12.8,12.3,12.3],"script":[1.7,1.2,0.9,2.1,1.3,1.7,2.1,1.6,0.9,1.2,1.6,2,1.3,1.7,1.3],"paint":[9.9,9.9,10,10,9.7,8.3,8.6,9.3,9.4,9,8.9,9.8,10.3,9.1,10]}},{"framework":"redom-v4.1.5-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.1,2.9,2.8,3.6,3.2,3.4,3.4,3,3.4,2.7,2.9,2.8,3.4,3.3,3,2.8,3.1,3.4,3.2,3.4,3,3.3,2.7,3.3],"script":[1,1.1,0.6,1.3,1.4,0.9,1.2,1,0.6,1,0.9,1,0.6,0.9,0.9,1.1,0.7,0.6,1.3,1.2,1,1.1,0.8,0.9,1.4],"paint":[2,1.1,0.8,1.4,1.2,1.2,1.5,1.6,1.3,2.1,1.7,1.8,1.3,1.6,0.5,1.8,1.6,1.6,1.9,1.9,2.3,1,2.3,1.7,1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"05_swap1k","values":{"total":[13.6,14.3,13.8,15,13.6,14.5,13.4,13.8,14.2,14.6,14,14.6,14.9,13.8,15.2],"script":[0.6,0.9,1.6,1.8,1,0.9,0.6,1.3,1.7,1.8,1.2,1.1,1.5,0.7,1.4],"paint":[10.9,12.7,11.2,11.4,11.7,12,11.8,10.4,10.8,11.2,11.3,12.3,12.1,11.9,11.9]}},{"framework":"redom-v4.1.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.6,11.4,10.6,11.3,10.8,10.4,11.2,11.2,10.9,10.4,11.6,10.9,11.3,10.6],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.7,0.6,0.6],"paint":[9.7,9.7,10.3,9.4,10,9.3,8.7,10,9.8,9.7,9.2,10.4,9.7,9.9,9.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"07_create10k","values":{"total":[296.9,296.9,295.3,300.5,296.6,295.9,297.9,298.1,296.6,297,298,301.7,295.3,295.7,296.8],"script":[70.2,69.4,69.4,68.8,68.9,69.2,69.8,70.1,70,69.8,69.3,71.7,70,69.9,69.6],"paint":[219.3,220.2,218.6,224.3,220.5,219.3,220.6,220.6,219.3,220,221.5,222.4,218.1,218.6,219.9]}},{"framework":"redom-v4.1.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,35.2,35.1,35.9,35.1,35.4,35.2,35.2,35.2,35.6,34.4,35.2,35.1,35.2,35.1],"script":[7.6,7.3,8,8,7.8,8,8,7.8,7.7,8.1,7.5,7.8,7.9,7.7,7.7],"paint":[25.9,27,26.2,26.9,26.4,26.5,26.2,26.5,26.6,26.6,26,26.4,26.3,26.6,26.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,12.1,12.4,12.1,12.7,12.2,12.9,12.2,12.5,12.9,13.1,12,12.7,12.4,12.1],"script":[11.5,9.9,10.4,9.8,10.9,10.4,11.4,10.5,10.5,11,11,9.9,10.3,10.4,10.2],"paint":[0.8,1.5,1.8,1.5,0.5,1.2,1,1.1,1.7,1.1,0.8,1,0.8,1,0.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.587489128112793]}},{"framework":"redom-v4.1.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5082263946533203]}},{"framework":"redom-v4.1.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5552072525024414]}},{"framework":"redom-v4.1.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4570398330688477]}},{"framework":"redom-v4.1.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.147988319396973]}},{"framework":"redom-v4.1.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"01_run1k","values":{"total":[28.3,28.3,28.5,28.1,29,28,29,29,28.2,28.2,29.4,28.9,28.9,28.8,28.8],"script":[5.9,6.2,6.3,5.9,6.5,5.9,6.4,6.4,6,5.9,6.5,6.6,6.4,6.3,6],"paint":[21.8,21.6,21.7,21.7,21.9,21.6,22,22,21.6,21.7,22.3,21.8,21.9,21.9,22.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"02_replace1k","values":{"total":[40,39.3,39.4,39.6,39.5,39.2,40.5,39.7,39.5,39.3,39.1,40.5,39.6,39.5,39.8],"script":[17.4,16.9,17.3,17.1,16.9,16.8,17.7,17,17.2,16.9,17,17.7,17,16.8,17.1],"paint":[22,21.8,21.6,22,22,21.8,22.2,22.1,21.6,21.8,21.5,22.2,22,22.1,22.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,13.9,13.4,13.1,13.5,14.4,15.3,14.4,13.4,13.6,15.7,13.5,14.3,14.4,13.5],"script":[3.3,3.3,2.6,2.9,3.4,3.5,3.5,3.7,3.7,2.9,3.3,2.6,3.7,3.1,3],"paint":[10.9,9.3,8.6,8.4,8.7,8.7,9.9,9.1,8.1,9.7,10.9,9.8,7.5,9.8,9.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"04_select1k","values":{"total":[4.7,4.8,4,4.4,4.2,4.2,3.9,3.9,4.2,4,4.8,4.9,4.1,4.1,4.4,4.7,4,4.2,4,4.8,4.2,4.2,4.1,4.6,3.8],"script":[2.2,2.1,1.5,2.3,2,2.1,2,1.6,1.7,1.7,2.4,2.5,1.6,1.2,2.1,2.3,2.1,2.3,2.5,2.1,2,2,2,2.2,1.8],"paint":[2.4,1.5,2.4,1.6,1.3,2.1,1.1,1.1,1.7,1.4,1.5,1.5,1.5,2.6,2.1,2.3,1.8,1,0.9,2.5,0.6,1.8,0.5,1.5,1.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.4,16.3,16.4,15.9,16.9,17.6,16.5,15.6,16.5,15.9,17.1,16.2,16.1,16.1],"script":[3.6,2.2,3.2,3.8,2.7,3.6,3.2,3.2,2.6,3.1,2.7,3.4,2.6,3.6,2.7],"paint":[12.6,13.4,12.1,12,12.4,12.2,13.5,12,12.1,12.3,12.5,12.5,12.3,11.6,12.5]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.3,11.4,11.5,11.6,11.7,11.7,11.6,11.5,11.1,11.5,11.5,11.5,11.9,11.2],"script":[1.2,1.1,1.1,1.2,1.2,0.9,1.2,1.2,1.2,0.8,1.2,1.2,1.2,1.2,1],"paint":[9.6,9.5,9.6,9.5,9.4,9.7,9.8,9.4,9.7,9.7,9.7,9.7,9.5,9.9,9.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"07_create10k","values":{"total":[289.5,289.9,291.1,289.3,289,288.8,291.1,289,289.5,290.8,288.9,289.1,287.1,289.2,288.4],"script":[60.4,58.5,63.2,58.9,58.9,62.5,62.2,59.6,58,63.9,59.1,62.6,62.3,58.5,58.2],"paint":[221.8,224.1,220.7,223.2,222.6,219.1,220.5,222.2,224.4,219.8,222.6,219.4,217.6,223.6,223.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.6,45,45.6,45.2,44.7,45.3,44.9,45,45.2,45.1,45.9,45.5,44.7,44.7,45.3],"script":[19.6,18.9,19.2,18.6,18.3,19.3,18.8,18.8,18.8,19.3,19.2,19.2,18.5,18.8,18.5],"paint":[25.1,25.2,25.5,25.7,25.5,25.1,25.2,25.3,25.4,25,25.7,25.4,25.3,24.9,25.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,10.2,11,10.7,11.8,11.2,10.7,11.4,10.8,11.5,11.4,10.8,10.8,11.8,11.1],"script":[10.8,7.5,8.6,8.8,9.8,8.9,8.6,9.4,8.7,9.2,9.2,8.9,9.3,9.4,8.8],"paint":[1.1,1.7,1.2,1,0.7,0.3,1.2,1.4,0.8,0.7,2,0.3,0.6,1.4,1.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5310258865356445]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5260305404663086]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6222524642944336]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6946115493774414]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.022663116455078]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.2]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"01_run1k","values":{"total":[26.6,26.3,26.1,26,26.1,26.6,26.4,26.2,25.8,26,26.4,26.3,26.6,26.6,26.6],"script":[6,5.5,5.6,5.6,5.5,5.5,5.7,5.6,5.5,5.5,5.7,5.6,5.6,5.5,5.5],"paint":[20,20.2,20,19.9,20.1,20.6,20.2,20.1,19.8,20.1,20.2,20.1,20.5,20.6,20.5]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"02_replace1k","values":{"total":[31,31.4,31.3,31.3,31,31.1,30.4,30.9,31.5,31.3,31.4,31,31.4,30.8,31],"script":[7.7,8.2,8.2,8,8.2,8.1,7.5,8.1,8.2,8,8.1,8.2,8.2,8.2,8.1],"paint":[22.9,22.6,22.5,22.8,22.4,22.6,22.4,22.3,22.8,22.9,22.7,22.4,22.8,22.1,22.5]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.8,11.7,12.9,11.7,11.3,11.6,11.9,10.8,11.2,11.9,13.5,11.4,11.3,11],"script":[2,1.8,1,1.9,0.9,1.4,0.9,1.6,1.3,1.2,0.9,2,1.4,1.4,1],"paint":[9.2,10.3,9.8,9.5,9.5,8.6,8.6,9.2,8.3,9,9.4,10.7,8.7,8.5,9.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.6,3.3,3.3,3.1,3,3.3,3.1,2.8,3.3,2.4,2.5,3,2.9,2.8,3.1,3.4,3.1,2.8,3.6,2.6,3.4,3.2,2.6,2.6],"script":[1.2,1.1,1,1.2,1.2,1,0.9,0.9,0.7,1.3,0.6,0.6,0.7,1,1.2,0.9,1.2,0.8,0.6,1.2,0.9,0.9,1.2,0.6,1.1],"paint":[1.3,1.2,2.2,1.2,1.3,1.5,2.3,2,1.8,1.5,1,1.1,2.2,1.6,1,1.3,2,1.2,1.3,1.5,1.2,1.8,1.7,1.7,1.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"05_swap1k","values":{"total":[16.8,16.4,16.8,16.4,15.5,16.3,16.6,16.1,16.3,18.1,16.7,17,17,16.3,16.3],"script":[3.7,3.1,4,2.9,3.2,3.2,3.4,2.9,3,3.9,3,3.1,3.8,2.8,3.2],"paint":[11.5,12.3,11.5,12.2,11.3,11.7,11.9,12.2,12.2,13.6,12.6,12.4,10.8,12.6,12]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12,12,12,12,11.9,12,11.9,11.9,12.1,12.2,11.9,12,11.9,12],"script":[1.8,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.5,1.3,1.5,1.3,1.2,1.2,1.2],"paint":[9.3,10.4,10.1,9.9,10.1,10.1,10.2,10.4,9.7,10.3,10.2,10.2,10,9.9,10.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"07_create10k","values":{"total":[294.6,302.7,293.1,293.9,303.3,291.8,293.6,303.6,306,303.1,308.6,303.2,301.6,303.2,305.3],"script":[67.8,67.1,67.2,67.9,67.7,67.3,65.9,68,68.2,66.1,68.6,67.9,67.2,68.2,67.6],"paint":[219.3,227.6,218.5,218.7,228.4,217.3,220.4,228.3,230.4,229.7,232.1,228.1,227.3,227.9,230]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,32.1,32.7,30.4,31.8,31,32.5,31.4,32.1,32.3,32.5,31.4,33.4,32.8,31.1],"script":[6.3,6.5,6.8,5.8,6.1,6.1,6.7,6,6,6.5,7.1,6.1,6.9,6.8,5.9],"paint":[24.3,24.7,25,23.7,24.7,23.9,24.9,24.5,25.1,24.9,24.5,24.4,25.5,25,24.3]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,12.1,10,10.5,10.2,10.4,9.8,9.8,10.9,9.7,10.7,9.8,10.3,9.2,9.2],"script":[7.6,9.6,8.1,8.6,8.2,8.4,7.8,8.5,8.8,7.6,8.7,7.8,8.5,7.1,8.2],"paint":[1.3,1.6,1,1,0.5,1.7,1.3,0.2,0.4,0.4,1.7,1,1.6,1.5,0.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5773401260375977]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.828812599182129]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.789670944213867]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8640279769897461]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.86213970184326]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.3]}},{"framework":"riot-v9.4.4-keyed","benchmark":"01_run1k","values":{"total":[30.5,30,30.4,31.5,30,30.4,30.3,30.5,30.9,30.2,30.3,30,30.4,30.2,30.6],"script":[8.1,8,8.3,8.6,8,8.2,8,8.3,8.5,8.1,8.3,8.4,8.4,8.2,8.2],"paint":[21.9,21.4,21.5,22.3,21.5,21.6,21.7,21.7,21.9,21.6,21.5,21.1,21.4,21.5,21.9]}},{"framework":"riot-v9.4.4-keyed","benchmark":"02_replace1k","values":{"total":[35.9,35.5,35.9,34.8,35.2,35.7,35.2,35.6,35.3,35.4,35.6,35.6,36,35.2,35.1],"script":[12.8,12.2,12.5,12.2,12.3,12.8,12,12.6,12.4,12.2,12.3,12.6,12.2,12.2,12.2],"paint":[22.5,22.7,22.8,22.1,22.3,22.4,22.6,22.5,22.4,22.7,22.7,22.4,23.2,22.4,22.3]}},{"framework":"riot-v9.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.4,16.5,16.5,16.8,17.6,17.3,16.8,16.1,19.7,16.9,17.7,16.4,16.5,17.4],"script":[5.5,5.7,5.3,4.6,5.2,5.7,5.5,5.5,4.9,6.7,5,6.1,5.5,5.4,6],"paint":[9.5,9.3,9.7,10,10.6,10.3,9.9,9.6,9.1,10.2,8.9,10.6,8.8,9.5,9.7]}},{"framework":"riot-v9.4.4-keyed","benchmark":"04_select1k","values":{"total":[6.8,6.7,7.1,7.3,7.2,6.8,6.8,7.5,7,7.4,8.8,6.7,7.4,7.6,7.4,6.9,7.5,7.2,7.2,7.1,7.8,7.3,6.9,8.5,6.2],"script":[4.6,4.5,4.7,4.5,4.8,4.7,4.6,4.7,4.6,5,5.4,4.6,5.1,4.9,4.9,4.5,4.8,4.7,4.9,4.2,5.1,4.9,4.4,5.5,4],"paint":[1.8,1.4,2.1,1.7,1.5,1.1,1.4,1.7,1.6,2.3,2.1,1.4,1.6,2.1,2.3,2.2,1.8,2.4,1.8,1.9,1.8,1.6,1.6,1.5,1.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"05_swap1k","values":{"total":[18.8,19.5,18.8,20.1,18.6,18.1,18.5,17.3,18,20.4,19.2,20,18,17.7,19.1],"script":[5,5.4,4.5,5.4,4.3,4.6,4.9,4.8,4.6,5.1,5.2,5.4,4.4,5,5.3],"paint":[12.2,12.7,13.1,11.8,12.7,12.8,12.1,11.3,12.7,12.9,12.1,12,12.5,12.1,12.6]}},{"framework":"riot-v9.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,12.8,13.7,13.5,13.7,12.6,13.4,13.1,13.5,13.3,13.5,13.3,12.8,12.8,13.3],"script":[2.9,2.4,2.9,2.6,2.8,2.4,2.5,2.4,2.8,2.4,2.5,2.4,2.6,2.4,2.8],"paint":[9.5,9.2,10.5,10.2,10.5,9.6,10.2,10.1,10.3,10.6,10.4,10,9.6,9.4,9.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"07_create10k","values":{"total":[316.2,315.9,317.4,319,317.9,317.4,316.2,317.7,317.6,318.2,317.4,316.8,317.6,316.8,317.3],"script":[85.3,87.3,87.1,86.3,86.2,85.7,85.6,85.9,86.5,86.3,85.5,86.2,86.1,86,86.2],"paint":[222.9,220.5,222.2,224.2,223.4,223.8,222.8,223.5,222.9,223.8,223.7,222.7,223.6,222.9,223.2]}},{"framework":"riot-v9.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,37.1,36.8,35.7,36.1,37,36.4,36.7,37.4,36.1,36.7,36.9,36.1,37.6,36.8],"script":[9.9,10,9.7,9.6,9.5,9.7,10,9.9,9.8,9.8,9.9,10,9.6,9.9,9.9],"paint":[25.8,26.1,26.1,25.1,25.6,26.3,25.4,25.9,26.6,25.3,25.8,25.8,25.6,26.6,25.9]}},{"framework":"riot-v9.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,16.5,18.4,16.9,18.2,16,15.9,16.9,16.5,16.8,17.1,20.1,18.1,17.7,16.7],"script":[15.2,14.7,16.5,15.1,16.2,14,14.3,14.9,13.8,15,15.2,17.9,15.3,16.1,14.9],"paint":[0.9,1.2,1,1.4,1.5,1.3,0.7,0.9,2.2,1.1,1,0.9,1,0.6,1.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6207828521728516]}},{"framework":"riot-v9.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7415332794189453]}},{"framework":"riot-v9.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.771918296813965]}},{"framework":"riot-v9.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9189233779907227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.806177139282227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.8]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"01_run1k","values":{"total":[24.2,24.2,24.2,24.4,24.3,24.3,24,24,24.2,24.2,23.8,24.2,24.2,24.1,24.6],"script":[2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4],"paint":[21.4,21.4,21.5,21.7,21.6,21.6,21.3,21.3,21.4,21.5,21.1,21.4,21.5,21.3,21.8]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"02_replace1k","values":{"total":[26.9,27,26.5,27.2,26.9,27.5,26.6,26.9,26.8,27.1,27,27.2,27.3,26.8,26.8],"script":[4.5,4.3,4.3,4.3,4.4,4.4,4.4,4.4,4.4,4.3,4.3,4.6,4.4,4.3,4.4],"paint":[22,22.3,21.8,22.5,22.1,22.6,21.9,22.1,21.9,22.3,22.2,22.2,22.5,22,22]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,9.9,10.7,10.5,10.7,10.4,11.4,11.3,10.7,10.7,10.7,10.7,11,10.5,9.9],"script":[0.1,0.1,0.7,1.1,0.4,0.8,1.1,0.2,0.7,0.5,0.5,0.1,0.9,0.2,0.1],"paint":[9.1,8.9,7.8,8.3,9.2,8.7,9.2,10.1,9.1,8.8,9,9.5,9.2,9.2,8.9]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"04_select1k","values":{"total":[3.5,2.8,3.3,3.6,3.5,2.9,3.7,3.1,3.1,2.8,3,2.9,3.5,3.1,3.8,3.7,3.7,3,3,2.8,3.6,2.2,2.7,3,2.4],"script":[1,0.2,1.5,1.7,0.9,0.2,1,0.6,0.9,0.6,0.2,0.2,1.6,1,1.4,1,1,0.9,1.1,1.1,1.2,0.2,0.3,0.3,0.3],"paint":[1.7,1.7,1.2,1.7,1.8,2.4,2.4,1.8,1.3,1.4,1.5,2.6,1.7,1.9,1.3,2.5,2.6,1.1,1.1,1.5,2.3,1.9,2.1,2.4,2]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"05_swap1k","values":{"total":[14,13.4,13.1,13.4,13.8,13.1,13.6,14.1,14.3,16.1,15.7,14.6,13.4,13.9,13.8],"script":[1,0.9,0.2,0.9,0.9,0.8,0.6,0.6,1,1.1,0.6,0.9,0.9,1.2,0.9],"paint":[11.8,11.6,12,12.2,11,11.2,11.8,12.3,11.7,13.7,13.4,12.6,10.3,11.6,11.8]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.8,11,10.2,10.4,10.8,10.8,10.4,10.4,10.5,10.8,10.3,10.4,10.4,10.5],"script":[0.5,0.5,0.5,0.1,0.5,0.5,0.5,0.3,0.5,0.3,0.3,0.2,0.2,0.2,0.3],"paint":[9.6,9.8,9.8,9.5,9,9.5,9.7,9.1,9.6,9.5,9.3,9.5,9.6,9.3,9.7]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"07_create10k","values":{"total":[256.1,259.7,259.2,261.6,258.8,257.9,258.7,260,264.2,256.2,257.6,257.8,264.5,256.4,257.3],"script":[24.5,25.1,25.4,25.6,24.8,25.2,25.6,25.7,25.9,25,25.1,25.7,25.3,24.6,25.1],"paint":[224.3,226.7,225.5,228.3,226.4,224.8,225.6,227,230.2,224,225,224.3,230.8,224.1,224.5]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.4,27.7,29,28.3,28.4,28.9,28.9,28.5,27.6,27.9,28.4,28.7,28.6,28.8,28.9],"script":[2.4,2.5,2.5,2.5,2.5,2.4,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.5],"paint":[24.2,24.5,25.7,25,25.1,25.7,25.6,25.3,24.4,24.8,25.1,25.4,25.3,25.6,25.6]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.3,10,10.2,9.5,9.9,12,9.7,10.3,10.1,9.4,9.7,9.7,10.9,9.1,10],"script":[7.8,7.7,8,7.8,7.7,10.2,8.1,8.4,7.9,7.4,7.1,8,8.8,7.7,7.4],"paint":[0.5,2,1.3,0.3,1.4,1.1,0.4,1.5,1.4,0.9,2.3,0.7,1,0.3,2.1]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6048908233642578]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4003725051879883]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4941368103027344]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7644691467285156]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.955724716186523]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"01_run1k","values":{"total":[27,27.5,27.2,27.4,27.6,27.2,27.4,27.3,27.2,27.7,26.9,27.4,27.5,27.8,27.5],"script":[5.3,5.2,5.2,5.3,5.5,5.4,5.3,5.4,5.5,5.7,5.3,5.3,5.5,5.4,5.4],"paint":[21.2,21.7,21.5,21.6,21.5,21.3,21.5,21.4,21.2,21.5,21.1,21.5,21.4,21.8,21.5]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"02_replace1k","values":{"total":[32.1,32.4,32.3,32.5,32.1,32.2,31.8,32.7,30.8,32,32.5,31,31.3,32.1,32.2],"script":[8.4,9.4,9,9,8.4,9,8.8,9.3,8.2,9.1,9.4,8.7,8.7,9,8.6],"paint":[23.2,22.4,22.8,22.9,23.1,22.6,22.4,22.9,22.1,22.4,22.6,21.7,22,22.5,22.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,12,11.9,11.5,11.8,11.9,11.8,12.8,11.2,11.3,11.9,11.9,11.4,11.4,13],"script":[1.5,1.9,2,1.8,1.4,1.5,1.3,2,1.8,1.6,2.2,2.2,1.6,1.5,2.7],"paint":[8.5,9.2,8.3,7.9,9.3,9.1,9.5,9.8,8.5,8.4,8.1,8.1,8.8,9,8.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"04_select1k","values":{"total":[3.1,2.6,2.8,3.4,3.1,2.8,2.6,3.6,3,4.1,2.4,3.2,2,3.6,2.7,2.5,3,3,2.8,2.3,3.1,2.9,2.4,3.1,3],"script":[1.1,0.1,0.6,0.8,1.2,0.1,0.1,1.4,0.6,1.4,0.1,0.9,0.1,0.9,0.1,0.1,0.6,0.5,0.8,0.1,1.2,0.1,0.8,1.2,0.6],"paint":[1.3,2.4,1.3,1.6,1.6,2.5,1.6,1.3,2,1.8,2.2,2.2,1.1,2.6,1.3,1.8,1,1.4,1,2,1.1,1.4,1.1,1.2,2]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"05_swap1k","values":{"total":[14.7,15.1,14.5,14.9,14.5,15,14.8,15.2,14.1,15.1,13.7,14,15.3,14.1,15.2],"script":[1.6,1.5,1.2,1.4,1.4,1.1,1.1,2,0.9,1.1,1,1,1.5,1.5,1.8],"paint":[11.9,12,12.5,12.2,12.1,13.1,12.8,12.3,13,13.1,12.1,11.9,12.7,10.8,12.4]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.9,11.2,11,11,11,11.1,11,10.5,11,11.3,10.9,11.2,11.1,11],"script":[0.6,1,0.8,0.9,0.7,0.7,0.9,0.8,0.7,0.7,0.9,0.9,0.8,0.7,0.7],"paint":[9.1,9,9.8,9.4,9.7,9.5,9.7,9.7,9.2,9.4,9.8,9.4,9.7,9.4,9.7]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"07_create10k","values":{"total":[386.1,385.8,387.5,389.2,386,384.6,380.5,390.1,394.4,391,388.2,387.1,390.6,389.5,386.6],"script":[159.7,155.8,160.3,162.6,159.4,159.8,156.7,165.1,167,166.5,161.1,161.7,164.8,162.9,161.6],"paint":[219.1,222.6,220,219.1,219.2,217.5,216.5,218,220.1,217.1,219.8,218,218.5,219.4,217.5]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.3,33,32.2,31.9,32.1,32.6,32.7,32,32.8,32.3,33.7,32,32.5,31.9,32.4],"script":[6.1,6.3,6,6.1,6.1,6.2,6.3,6,6.2,6.3,6.5,6,6.2,5.9,6.1],"paint":[25.3,25.8,25.3,24.9,25.1,25.5,25.5,25.1,25.7,25.2,26.2,25.1,25.3,25.1,25.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.5,11.4,11.7,11.8,11.5,11.8,11.6,11.5,11.6,11.7,11.6,11.7,11.5,11.5],"script":[9.7,9.1,9.7,9.5,9.8,9.4,9.3,9.3,9.5,9.2,10.3,9.4,9.8,9.7,9.4],"paint":[0.3,1,0.3,0.5,1.2,0.3,1.4,1.2,1,1.6,0.3,1.4,0.3,1,1.2]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5910587310791016]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.774592399597168]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8070411682128906]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7926521301269531]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.37877082824707]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"01_run1k","values":{"total":[29.4,27.9,26.6,27,27.5,27.5,27.3,26.5,27.1,27.5,29.4,29.3,27.1,27,27],"script":[6.5,6,6.1,6.1,6.1,6.2,6.1,5.7,6.1,6.4,6.4,6.6,6.2,6.2,6.1],"paint":[22.3,21.3,20,20.4,20.9,20.9,20.4,20.3,20.5,20.6,22.4,22.1,20.3,20.2,20.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.9,34.9,34.1,34.4,34.2,35,34,34.8,34.9,34.3,34.3,35.1,34.7,34.1],"script":[10.1,10.4,10.4,10.2,10.4,10.2,10.4,10.2,10.4,10.4,10.2,10.1,10.5,10.3,9.9],"paint":[23.5,23.9,23.9,23.2,23.5,23.4,24,23.2,23.9,23.9,23.5,23.6,23.9,23.8,23.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.9,12.3,12.2,11.7,11.4,12,11.7,11.5,11.7,12.7,12.1,11.5,12.2,11.8],"script":[1.1,1.1,0.9,0.6,0.3,1.1,1.5,1,1.3,1.2,1.1,1,0.6,1.4,1.7],"paint":[9.2,9.5,10.4,10.5,10.7,9.3,9.2,9.3,8.8,9.2,10.8,10.5,9.9,9.9,8.9]}},{"framework":"s2-v1.0.17-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.1,2.2,2.3,2.2,2.5,2.7,2.2,2.4,2.6,2.2,2.2,1.9,3.3,2.2,2.5,2.8,1.8,2.6,2.2,2,2.5,2,2.4,2.5],"script":[0,0,0,0,0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.1,0,0],"paint":[1.3,1.6,1.8,1.1,1.3,1.5,1.9,1.3,2.2,1.5,1.7,1.9,1.1,2.2,2,2.3,1.7,1.1,1.5,2,1.2,2.1,1.8,1.9,1.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"05_swap1k","values":{"total":[13,13.9,13.1,13.5,13.5,13.9,13,12.8,13.4,14.9,13.1,13,13.6,13.6,13.6],"script":[0.3,0.6,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.3,0.1,0.1,0.1],"paint":[11.1,11.8,11.3,11.8,11.9,11.6,12,10.8,11.7,12.9,11.7,11.3,12.2,11.3,12.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.5,10.7,10.4,10.3,10.3,10.8,10.8,10.2,10.8,10.4,10.5,10.7,10.6,10.2],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.1,0.1,0.1,0.1,0.2,0.3],"paint":[9.6,9.9,10,9.4,9.4,9,10,9.7,8.7,10.1,9.3,9.6,10.2,9.6,9.1]}},{"framework":"s2-v1.0.17-keyed","benchmark":"07_create10k","values":{"total":[308.4,307.6,308.1,308.4,308.9,310.4,308.3,309.2,308.2,307.5,312.1,307.2,309.2,311.3,307.6],"script":[78.6,77.7,77.5,77.1,77.9,77.8,77.4,76.9,76.6,77,76.9,77.6,77.8,78.5,76.9],"paint":[222.3,222.3,222.6,223.3,223.4,224.6,223.4,224.6,223.9,222.8,225.9,221.8,223.7,225.1,223]}},{"framework":"s2-v1.0.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,34.1,33.8,34.6,34.8,35.2,34.1,34.1,35.3,34.2,34.3,34.9,33.7,34.7,34],"script":[8.2,7.5,7.5,7.5,7.9,8,7.6,7.9,7.9,7.6,7.7,8,7.5,7.6,7.4],"paint":[26.6,25.8,25.4,26.1,26,26.1,25.5,25.3,26.4,25.6,25.6,25.9,25.3,26.1,25.7]}},{"framework":"s2-v1.0.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.3,13.2,14.5,14.7,14.7,13.9,14.3,16.2,13.9,14,14,13.9,13.7,14,15],"script":[12.5,11.8,12.3,12.7,12.3,11.5,12.2,14.2,12.3,12.5,12.6,12.3,11.6,12.3,12.8],"paint":[1.5,1.2,1.9,0.3,1.1,1,1.2,0.9,0.8,0.6,0.3,0.6,0.9,1.1,1]}},{"framework":"s2-v1.0.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6574440002441406]}},{"framework":"s2-v1.0.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.385408401489258]}},{"framework":"s2-v1.0.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.455307960510254]}},{"framework":"s2-v1.0.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.129979133605957]}},{"framework":"s2-v1.0.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.829203605651855]}},{"framework":"s2-v1.0.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[73.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,28.8,28.4,28.1,28.2,28.6,28.3,28.5,27.9,28.5,28.6,28.8,29,28.5,28.5],"script":[7.5,7,7.3,7.1,7.1,7.1,7.2,7.2,7.1,7.2,7.1,7.2,7.3,7,7.3],"paint":[21.9,21.2,20.6,20.4,20.6,20.9,20.6,20.7,20.3,20.7,20.9,21.1,21.1,20.9,20.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[34.9,34.6,34.2,34.6,35.4,34.8,34.6,34.6,34.3,34.8,35.7,35,34.7,34.8,35.5],"script":[11.2,11.2,11,11.1,11.5,11.3,11.2,11,10.9,11.2,11.7,11.3,11,11.1,11.4],"paint":[23.1,22.8,22.6,22.9,23.3,22.9,22.8,23,22.8,22.9,23.4,23.1,23.1,23.1,23.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,12.6,12.8,13.5,13.3,13.5,13.6,13.9,13.2,13,12.7,14.4,13.3,14.8,13.3],"script":[2.9,2.4,2.5,1.8,2.3,2.4,2.5,2.4,2.5,2,1.7,2.9,2.5,2.6,2.3],"paint":[10,8.9,9.5,9.5,9.3,9.9,9.9,9.3,9.3,9.2,9.4,10.3,9.4,10.7,9.9]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.9,2.8,2.9,2.9,3.1,2.7,3.6,3.7,3.8,3.3,3.4,3.4,3.8,3.3,2.8,3.4,3.7,3.7,3.3,3.8,3.7,3.7,3.5,3.6],"script":[1.2,1.2,0.6,1.1,1,1.3,0.9,1.3,1.3,1.9,0.7,1.4,0.8,1.4,0.6,0.7,1.7,1.3,1.2,1.1,1.4,1.1,1.3,1.1,1.2],"paint":[1.6,1.8,1.9,1.2,1.1,1.7,1,2.1,2.1,1,2.5,1.9,1.2,2.3,2,1.9,1.6,2.3,1.6,1.7,1.6,2.4,1.7,2.3,1.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15,14.8,15,14.5,16.9,14.7,15.4,14.4,15.4,16,15.2,15.3,14.7,14.3,15.5],"script":[2.1,1.4,1.2,1.1,1.7,1.8,2.1,1,2,1.9,1.7,1,1.2,1,1.4],"paint":[11.9,12.2,12.6,12.6,12.4,11.7,12.2,12.4,12.1,12.8,12.1,12.6,12.3,11.8,13]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.3,10.6,10.9,10.9,10.8,11.6,10.9,10.6,11,11.9,10.8,10.9,10.7],"script":[0.3,0.5,0.3,0.3,0.5,0.5,0.5,0.3,0.2,0.2,0.4,0.5,0.4,0.5,0.3],"paint":[9.8,9.5,10.5,10,9.8,9.8,9.6,10.1,10.4,9.4,9.8,10.6,9.9,9.7,9.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"07_create10k","values":{"total":[307.3,304.8,306.2,304.7,305.1,306.3,305.7,306.9,306.3,307.4,305.4,307,306.8,305.2,306.5],"script":[76.8,75.2,76.1,76.5,76.2,75.6,76.3,75.5,75.6,76.1,75.6,76.1,76.6,75.7,75.5],"paint":[222.5,222.1,222.7,220.9,221.7,223.5,222.1,224.1,223.3,223.9,222.4,223.6,222.8,222.2,223.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,34.4,35.6,33.8,34.4,35,34.4,34.1,34.8,34.9,34.2,34.3,34.6,34.6,34.7],"script":[7.8,7.8,7.8,7.8,7.8,8.2,7.9,7.7,7.9,8.1,7.8,7.8,7.8,7.8,8.1],"paint":[25.5,25.5,26.7,25.1,25.5,25.8,25.6,25.4,25.8,25.7,25.4,25.6,25.8,25.8,25.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.8,15.4,14.6,14.6,15.9,15.5,15,14.7,16.1,15.6,14.9,15.3,15.5,15.6,14.6],"script":[12.9,13,12.6,12.9,13.4,13.3,13,12.9,14.1,13.4,13,13.1,13.4,13.7,12.5],"paint":[1,0.9,1.8,1.1,2.3,0.7,0.6,1.2,1.8,0.7,1.1,1.2,1.1,0.2,1.1]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9395198822021484]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.9357757568359375]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.038897514343262]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1217546463012695]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.63993453979492]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[81.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"01_run1k","values":{"total":[32.3,29.6,37.4,31.7,31.9,32.2,31.5,34.7,33.3,38.7,31.4,30.9,30.9,32.6,35.2],"script":[5,5.5,4.9,5.4,5.5,5.6,5.3,5.5,5.3,5.2,5.4,5.4,5.2,5.5,5.3],"paint":[21.3,21.9,20.7,22,21.4,21.8,21.6,21.7,21.4,21.1,21.6,21.7,21.5,21.8,21.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33,32.6,32.2,31.5,34.7,38.9,32,32.2,32.1,32.7,37,36.5,31.1,33.1],"script":[8.3,8.3,8.2,8.5,8.3,8.3,8.3,8.2,8.5,8.2,8.4,8.4,8.3,8,8.2],"paint":[22.7,21.8,22.2,22.7,22.2,22,21.8,22.6,22.4,22.4,22.3,22,22.5,22.6,22.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.8,31.3,31.6,16.2,31.5,33.7,31.7,34,32.5,30.3,31,30.8,31.9,32.9,31.4],"script":[2.9,2.6,3.1,2.5,3.8,2.8,2.8,3,3.3,2.6,3.3,2.9,2.8,3.8,2.7],"paint":[11.1,12.6,13,13.1,12.4,13,11.8,11.7,14,12.8,12.5,12.2,11.6,12.6,13.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"04_select1k","values":{"total":[5.8,14.5,13.2,9.4,10.8,13.2,15.8,7.3,13.8,8.3,7.7,8.9,8.4,11.4,16,12.1,11.1,6.5,15.3,7.6,13.6,9.6,14.3,11.7,12.5],"script":[1.6,2.3,2.6,2,2.5,2.5,1.8,2.9,1.6,0.9,2.7,2.9,2.4,2.3,2.3,1.8,2.6,1,1.1,1.6,2.1,2.7,2.4,1.9,1.8],"paint":[1.3,2.5,3.6,4.3,2.7,3.7,3.2,3.2,2.4,2.5,2.6,3,3.3,3.2,3,3,2.8,1.9,3.3,1.7,3.6,3.6,2.3,2.9,2.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"05_swap1k","values":{"total":[35.5,33.9,32.1,15.6,32.5,33.7,34.8,32.7,36.4,32.4,32.1,33.7,35.9,33.7,33.6],"script":[0.9,0.8,1.3,1.8,1.9,1.1,1.6,2.1,1.6,1.4,1.1,1.1,2.3,1.1,2.3],"paint":[16,14.5,14.9,12.9,13.7,16.5,14.5,14.1,15.3,15.5,14.8,13.6,15.1,16.5,15]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,15.8,12.6,12.8,17,12.8,13.9,13.3,15.7,15.2,17.7,12.8,12.9,12.9,17],"script":[0.7,0.8,0.9,1.1,1.1,1,1.1,0.9,1,1,1,0.9,0.9,1.1,1.1],"paint":[10.7,11.5,10.4,10.6,11.3,10.3,10.6,11.6,10.6,11.4,11,10.9,10.7,10.8,11.6]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"07_create10k","values":{"total":[272.5,275,272.3,277.6,270.8,271.6,273.1,272.5,275,273.1,271.1,271.5,282.1,270.8,272.2],"script":[49.4,50.5,50.5,49.7,49.8,49.9,50.6,49.8,51.2,49.7,49.6,49.3,50,49.6,50.1],"paint":[219,220.7,218,220.4,217.2,217.9,218.6,218.9,220,219.6,217.9,218.4,221.9,217.2,217.2]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.9,40.7,37,37.7,38.3,36.9,38.8,37.1,39.1,37.9,38.4,37.4,41.4,36.4,37.2],"script":[5.2,5.2,5.2,5.3,5.4,5.2,5.2,5.3,5.1,5.2,5.3,5.3,5.2,5.2,5.2],"paint":[25.4,25.2,25.6,25.8,25.6,26.1,25.6,25.9,25.3,25.5,25.7,25.5,25.4,25.5,25.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[38.3,13.7,17.4,39.3,37.6,38.6,15.4,15.3,37.7,38.5,14.1,36.6,36.6,35.1,14.9],"script":[13.4,9.8,13.7,13.7,11.9,13.1,12,12.4,11.3,13.8,10.9,11.1,11,10.8,11.6],"paint":[2.2,2.3,2.5,1.6,2.9,1.9,2.1,1.4,1.4,2,2.4,3.1,3.3,2.5,1.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9853076934814453]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6016159057617188]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7511987686157227]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1792144775390625]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.860132217407227]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[92.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[23]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[103.3]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"01_run1k","values":{"total":[54.4,54.2,54.8,54,54.2,55,54.4,55.1,54.5,54.2,54.9,54.4,54.9,55.1,54.8],"script":[30.1,29.7,30,29.4,30,30.2,29.9,30.6,30.1,30.1,30.5,29.9,30.3,30.3,30.3],"paint":[23.8,24,24.3,24.2,23.7,24.3,24,24.1,23.9,23.6,24,24,24.1,24.3,24.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"02_replace1k","values":{"total":[68.6,68.2,68.4,68.4,68.1,68.3,68.7,69.2,68.5,68.2,68.6,67.9,67.9,67.6,67.8],"script":[44.9,44.7,44.9,44.7,44.4,44.6,45,45.5,45,44.6,44.9,44.7,44.5,44.3,44.3],"paint":[23.2,23,23,23.2,23.2,23.1,23.2,23.3,23,23,23.2,22.7,23,22.8,23.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[41.3,40.2,40.7,41.2,41.4,41.2,40.4,41.8,42.3,42.2,41.4,39.7,40.5,41.2,42.3],"script":[27.6,27.4,27.7,28.1,28.3,27.9,27.3,28.7,29.5,29.4,28.9,27.7,27.4,27.8,29.1],"paint":[11.7,11.8,11.7,11.1,11.7,11.4,12.2,11.8,11.8,11.3,11.2,11,11.6,12.7,12]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"04_select1k","values":{"total":[28.8,28.7,28.5,28.5,29.4,28.6,29,28.7,29.2,29.7,28.7,28.3,28.2,28.9,29.1,29.9,28.6,28.3,30,30.3,28.8,29.6,29.2,30.8,28.4],"script":[26.4,26.3,25,25.2,26.3,25.8,26.2,26.3,25.6,27.1,26.2,26,26,26.3,26.6,26.7,26.1,26.1,27.2,26.8,25.9,27,27.2,27.5,25.9],"paint":[1.5,2,2.6,3.1,2.1,1.9,2,1.4,3.1,1.5,1.4,1.8,1.2,2.5,1.4,1.3,1.7,1.3,2,2.6,1.6,1.6,0.8,1.7,1.7]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"05_swap1k","values":{"total":[66.1,68.6,66.2,68.3,68.1,71.3,68,68.6,67.8,69,67.4,68.5,67.7,70.7,68.6],"script":[49.8,52.7,51.3,52.6,52.8,53.4,51.6,51.9,51.5,53.1,51.4,51.4,51.7,53.8,52.5],"paint":[15,14.7,13.1,14.6,13.4,16.6,15.5,16.1,14.6,14.8,14.9,15.6,14.2,15.3,14.9]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.7,23.8,23.1,23.4,22.8,23.2,23.7,23.9,23.3,23.7,24.5,23.8,23.6,23.9,24],"script":[12.5,12.5,12.2,12.5,12.2,12.4,12.5,12.6,11.9,12.8,12.9,12.5,12.7,12.7,12.5],"paint":[10.6,10.8,10,10.3,10.2,10.2,10.3,10.6,10.8,10,10.8,10.7,10.1,10.3,10.8]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"07_create10k","values":{"total":[1113.2,1213.1,1210.3,893.2,1479.9,1118,1015.1,911,1001.4,930.6,1157.4,870.9,1030.1,862.7,1194.5],"script":[857.3,954,954.4,636.4,1224,860.6,756.2,652.8,741.2,673.3,899.2,609.8,770.2,606,933],"paint":[247.7,250.5,247.7,248.8,247.9,249.1,250.4,250,251.7,249.2,249.7,252.2,251.6,248.6,252.5]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.8,69,69.2,69.4,68.6,69.5,69.9,69.9,68.6,68.4,69.6,69.3,68.6,68.9,69],"script":[38.3,38.2,38.3,38.8,38.3,38.7,39,38.9,38.1,37.9,38.9,38.4,38.1,38.5,38.5],"paint":[29.5,29.8,29.8,29.6,29.3,29.8,29.9,29.9,29.6,29.5,29.7,29.9,29.5,29.4,29.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.7,25,26.4,24.9,25,25.4,25.2,26.6,24.8,25.2,25.3,24.7,25.5,25,25],"script":[24.3,23.5,24.9,23.8,23.5,24.5,23.9,24.7,23.3,23.5,24,23.8,24.2,24,24],"paint":[1.4,1.4,1.4,1,0.6,0.4,0.6,1.8,1.3,1.6,0.3,0.3,1,0.9,0.3]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7814769744873047]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.416145324707031]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.174476623535156]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[23.362300872802734]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.52154159545898]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[277.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[81]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[387.8]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.6,27.5,26.8,26.7,26.8,26.7,27.4,26.5,26.6,27.2,27.4,26.9,26.7,27.7],"script":[4.7,4.6,5.3,4.6,4.6,4.7,4.6,4.9,4.6,4.6,4.7,4.6,4.7,4.6,4.8],"paint":[21.7,21.6,21.6,21.9,21.8,21.8,21.7,22.2,21.5,21.6,22.1,22.4,21.8,21.7,22.5]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"02_replace1k","values":{"total":[30.3,31.2,30.3,30.7,30.3,30.6,30.3,30.8,30.8,30.7,30.7,31.4,30.3,30.2,30.7],"script":[7.2,7.1,7.2,7,7.1,7.4,7.1,7.1,7.2,7,7.2,7.9,7.1,7.1,7.2],"paint":[22.5,23.6,22.6,23.1,22.6,22.6,22.6,23.1,23.1,23.1,22.9,22.9,22.7,22.5,22.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,12.6,12.2,12.1,11.9,13,11.8,12.1,12.1,12.6,12.5,11.7,12.5,12.4,12.1],"script":[2,2.3,1.9,1.8,1.5,2.4,1.8,2.2,1.4,1.9,1.8,1.6,2.1,2,1.8],"paint":[8.6,9.4,9.3,9.4,9.4,9.4,8.9,8.4,9.3,8.2,9.4,9.2,9.2,9.1,8.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.2,3.4,4,4.7,4,3.6,3.8,3.3,3.6,3.3,3.6,4.1,4,4.1,3.7,3.2,4.7,3.6,4.2,3.8,4,3.4,3.7,3.6],"script":[1.5,2.3,1.5,1.3,2.2,2,2.1,1.3,1.2,1.6,0.9,1.8,1.8,2.1,1.7,1.5,1.6,2.2,1.1,2,1.4,2.1,1.2,1.4,1.7],"paint":[1.5,1.8,1,2.5,1.5,1.8,1,2.3,1.2,1.9,1.2,1.7,2.2,1.3,2.3,1.3,1.5,2.4,1.7,2.1,2.2,1.5,1.3,2,1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,13.9,14.2,14,14,15.9,14.3,14.1,14.9,14.8,13.6,14.7,14.7,15.2,14.2],"script":[2,1.5,1.4,1.5,1.9,1.8,1.9,2.2,2.2,2.2,1.3,2.1,1.4,1.5,1.7],"paint":[12.2,11.3,11.6,11.5,10,12.9,11.2,10.9,11.7,11.6,10.8,12,12.4,12.1,10.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11.3,11.1,11.4,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.5,11.3,11.1,11],"script":[1.2,1.2,1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1],"paint":[9.6,9.8,9.6,9.4,9.4,9.6,9.6,9.8,9.3,9.6,9.7,9.8,9.5,9.4,9.6]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"07_create10k","values":{"total":[279.1,281.2,280.8,281.5,279.6,279,281.8,281.6,279.4,280.7,281.3,279.8,278.9,278.3,278.8],"script":[45.5,44.8,45.4,44.7,44.7,44.7,45.1,45,45.2,45.3,45.3,44.2,44.2,44.9,45],"paint":[226.2,228.8,228,229,227.7,227,229.5,229.3,227,228.1,228.7,228.4,227.5,226.2,226.7]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,31.6,31.9,31.9,31.8,32.3,31.7,32.3,33.2,31.9,31.8,32.1,31.6,31.7,32.9],"script":[5,4.6,4.9,4.8,4.7,5,4.6,5.1,4.7,5,4.9,5.1,4.7,5.1,5],"paint":[26.4,26.2,26.2,26.3,26.4,26.6,26.3,26.3,27.7,26.1,26.1,26.1,26.1,25.7,27]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,11.5,11.6,12.2,11.6,12.4,12.5,11.8,12,11.5,15.7,12.1,11.7,11.7,11.2],"script":[9.8,9.2,9.5,9.6,10,10.1,9.8,9.7,9.8,10,13.6,10.3,10.1,9.9,9.9],"paint":[1.8,1.1,1,1.9,0.2,1.4,1.4,0.8,1.1,0.9,1.5,0.6,1,1.1,0.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7412614822387695]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7790632247924805]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.760500907897949]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5021257400512695]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.268141746520996]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[173.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[208.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"01_run1k","values":{"total":[27,26.6,26.7,26.3,26,26.2,26.3,26.8,27.1,26.8,26.2,26.6,26.8,26.8,26.5],"script":[4.5,4.3,4.4,4,4,4,4,4.3,4.5,4.5,4.3,4.1,4.4,4.5,4.1],"paint":[22.2,21.8,21.9,21.9,21.6,21.8,21.9,22.1,22.3,21.9,21.5,22.1,22,21.9,21.9]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.8,29.6,29.8,29.9,29.8,29.5,29.8,29.4,29.7,29.7,30,29.5,29.4,30],"script":[6,6.2,6.3,6.6,6.2,6.2,6.2,6.2,6.1,6.3,6.2,6.3,6.1,5.9,6.3],"paint":[22.7,23,22.8,22.6,23.2,22.9,22.8,22.9,22.7,22.8,22.9,23.2,22.8,22.9,23.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,10.8,10.7,10.5,11.5,10.9,10.9,11.5,10.7,11.1,11.2,10.7,10.2,11,10.9],"script":[1.3,0.2,0.9,0.8,1.2,0.9,0.8,0.9,1.2,0.9,1.2,0.5,0.2,0.7,0.8],"paint":[9.3,9.5,8.6,8.1,8.9,9,8.9,9.4,7.8,9,8.9,9,8.6,9,9.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"04_select1k","values":{"total":[4.8,1.9,2.5,2.2,2.1,2.4,2.4,1.9,2.7,2.3,1.7,2.2,2.3,2.4,2.1,2.1,2.1,2.4,2.4,1.9,2.1,2.1,2.2,2.3,2.6],"script":[0,0,0,0,0.4,0.9,0.1,0,0,0.4,0,0,0.4,0,0.5,0,0,0.7,0.4,0,0,0,0,0,0],"paint":[2,1.1,2.3,1.7,1.6,1.4,1.6,1.8,2.1,1.1,1.3,2,1.7,1.7,1.5,1.6,1,1.5,1.9,1.3,2,1.5,0.9,1.5,2.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"05_swap1k","values":{"total":[14.9,15.3,14.9,15.5,15.9,14.6,15.9,13.9,14.5,16.8,14.8,15,16,13.8,14.1],"script":[1.9,2.7,1.9,2.4,2,1.5,2.2,0.9,1.7,2.7,1.5,1.6,1.5,1.7,1.4],"paint":[11.2,11.3,11.6,11.9,13,11.6,12.3,11.4,11.2,12.6,11.8,12.1,13.2,10.6,11.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.3,10.4,10.8,11.5,10.4,10.5,10.4,10.4,10.5,10.4,10.9,10.2,10.4],"script":[0.3,0.3,0.4,0.1,0.5,0.1,0.3,0.3,0.3,0.2,0.3,0.5,0.5,0.3,0.1],"paint":[9.8,9.6,9.3,9.3,9.7,10.6,9.6,9.7,9.6,9.5,9.4,9.6,9.2,8.7,9.3]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"07_create10k","values":{"total":[281.1,281.6,283.7,281.4,282.7,283.4,284.1,283.6,283.6,280.5,283.7,280.3,282.2,283.2,284],"script":[48.9,49.3,49.3,48.6,49.3,49.6,49.7,49,49.2,48.8,49.9,48.6,49.3,50,49.6],"paint":[224.2,224.6,226.6,224.8,225.8,226.2,226.7,226.3,226.7,224.1,226.1,224.1,225.2,225.6,226.6]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,31,31.6,31.3,31.8,32,31.3,31.8,31.4,31.7,32.3,31.8,31.6,31.5,31.1],"script":[4.4,4.3,4.5,4.4,4.4,4.4,4.4,4.3,4.3,4.2,4.5,4.4,4.5,4.5,4.4],"paint":[26.2,25.9,26.3,26.1,26.6,26.7,26.1,26.6,26.3,26.6,27,26.6,26.3,26.2,25.9]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.8,10.5,9.8,10.3,10,10.9,9.3,9.5,10.1,10.4,9.7,9.5,9.7,9.9],"script":[7.9,7.6,8.2,8.4,8.1,8.1,8.2,7.5,8.1,7.9,8.1,7.6,7.3,7.7,7.9],"paint":[0.8,0.5,0.9,0.3,0.7,0.9,1.5,1.6,1.2,1.4,0.6,1.3,1.9,0.6,1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5612955093383789]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.735288619995117]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.747185707092285]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7335424423217773]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.432353019714355]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[38.1,37.9,38.8,38.6,37.7,37.9,37.5,38.2,38.1,37.8,37.9,37.9,38.4,37.6,38.5],"script":[14.8,15,15.6,14.8,14.4,14.6,14.6,14.8,14.7,14.7,14.5,15,15.1,14.6,15.4],"paint":[22.7,22.3,22.6,23.2,22.7,22.7,22.3,22.8,22.9,22.5,22.8,22.4,22.8,22.5,22.5]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[41.8,41.9,41.5,41.3,41.9,41.3,41,41.9,42.1,41.3,41.2,42.5,42.1,42,42],"script":[18.6,19.2,18.6,18.4,18.7,18.6,18.1,18.8,18.7,18.2,18.5,18.9,18.9,18.7,18.8],"paint":[22.7,22.2,22.4,22.3,22.6,22.2,22.4,22.5,22.8,22.5,22.1,23.1,22.6,22.6,22.6]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.3,19.8,18.6,20,19.8,18.3,19.2,19.2,18.7,18.3,19.8,19.4,19,19.5,22.1],"script":[7.5,6.9,7.3,7.9,7.6,6.7,7.4,6.5,7.1,6.2,8.2,7.2,6.5,7.1,7.6],"paint":[11,10.8,9.3,10.3,10.9,9.1,9,10.9,9.5,9.9,9.1,10.1,10,10.3,11.9]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[4.4,5.3,4.5,4.9,4.8,4.8,5.7,5.3,4.5,4.3,5.2,5.2,4.5,5.2,5.5,4.7,5,5.4,4.4,4.6,5.1,4.6,5.6,4.6,4.6],"script":[2.1,2.5,2.5,2.7,2.1,2.1,2.2,2.5,2.3,2.1,2.9,2.6,2.4,2.4,2.7,2.2,2.7,3,1.8,2.2,2.3,1.7,2.9,2.3,2.4],"paint":[1.4,1.6,1.1,1.5,2,1.8,2.5,1.9,1.3,1.1,1.6,1.7,1.6,1.8,1.8,1.7,1.2,2.1,1.3,1.5,1.8,1.1,1.7,1.3,1.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.5,16.2,15.6,15.5,16.6,16.5,16.3,15.3,16.8,16.4,15.9,16.7,16.4,15.8],"script":[1.9,2.2,2.5,2,2.1,3.1,1.9,2.7,1.9,2.3,2.5,1.9,3.1,2.7,1.6],"paint":[12.3,12.7,12.7,12,11.1,11.9,13.6,12.2,12,12.4,12.8,12.5,11.9,11.8,12.4]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12,11.5,12.2,12.6,11.6,12.2,12.4,12,12,12.1,11.6,12,12.1,12.3],"script":[1.2,1.2,1.1,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1,1.1,1.2,1.2,1.2],"paint":[10,10.2,9.8,10.2,10.7,9.9,10.4,10.7,10.4,9.7,10.6,10,10.3,10.3,10]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[382,379,385,380.5,380.9,377.9,379.6,382.1,384.2,381.6,383.9,383.7,380.7,381.8,381.8],"script":[144.3,141.9,146,141.4,141.7,140.8,142.7,143.1,142.6,139.9,144.6,142,142.7,142.8,144.3],"paint":[229.6,229,230.9,231.1,230.6,228.9,228.9,230.8,233.2,233.6,231.3,233.4,229.9,230.9,229.4]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.6,44,42.3,43.1,43.1,42.7,43,43.3,43,43.1,42.6,42.3,42.9,42.6,42.8],"script":[14.6,14.9,15,15.1,15.3,14.4,14.8,14.8,14.7,15.2,14.9,14.5,14.9,14.7,14.9],"paint":[26.9,28,26.3,27,26.7,27.2,27.2,27.4,27.2,26.8,26.7,26.8,27,26.9,27]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,9.9,10.4,11.2,10.7,10.8,9.7,10.1,10.1,10.4,9.8,10.6,10.4,9.9,10],"script":[8.6,7.8,8,8.8,8.7,8.4,8.4,8.4,8.3,8.5,8.4,8.5,8.6,7.9,8],"paint":[0.7,1,2.1,1.3,0.8,1,0.2,1.1,1.1,1,0.4,1,0.3,0.8,1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5302305221557617]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.499418258666992]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5315399169921875]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3600616455078125]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.992497444152832]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41]}},{"framework":"solid-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[24,24,24.1,23.8,23.9,24.1,24.1,24.2,23.9,24,24.1,24.3,23.8,24.1,24],"script":[2.5,2.5,2.5,2.4,2.4,2.5,2.6,2.5,2.5,2.4,2.5,2.6,2.5,2.5,2.4],"paint":[21.1,21.2,21.2,21,21.1,21.3,21.2,21.3,21.1,21.2,21.2,21.3,21,21.2,21.2]}},{"framework":"solid-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[27.4,27.8,27.6,27.9,28.1,28.1,28.5,27.8,27.5,27.9,28,28.1,27.5,27.8,27.4],"script":[5,5.1,5.1,5.2,5.1,5.3,5.1,5.3,5,5,5.1,5.1,5,5,5],"paint":[22,22.2,21.9,22.2,22.5,22.3,22.9,21.9,21.9,22.3,22.3,22.4,21.9,22.2,22]}},{"framework":"solid-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.7,11.3,10.8,10.9,11.4,11.1,11.5,10.9,11,10.8,10.3,11.1,10.5,9.8],"script":[1.2,1,0.9,0.9,0.7,0.9,1.2,1.4,1.2,1.4,1.1,0.2,0.9,0.2,0.8],"paint":[8.3,8.2,9,8.8,8.9,9.7,9.1,9,8.5,8.4,8.8,8.4,9.4,9.1,8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.1,2.7,2.5,2,2.7,2.4,2.2,2.3,3.2,3,2.7,3,2.4,2.6,2.5,2.5,2.5,2,3.6,2.8,3.1,2.6,2.6,2.5],"script":[0.1,0.1,0.1,0.1,0.1,0.8,0.3,0.1,0.1,0.7,0.6,0.5,1,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,1,0.1,0.6,0.1],"paint":[2.3,1,2.5,0.8,1.1,1.1,1.6,1.5,1.3,2.3,2,0.6,1.8,1.3,1.5,1.5,1,1.5,1.1,2.1,2.6,1.4,1.8,1.5,1.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.9,13.6,13.7,13.8,13.9,13.6,14.4,14.6,14.2,14.2,14,14.1,14.6,13.6],"script":[1.3,1.4,0.9,1.2,0.6,0.7,0.7,2,1,1,1.3,1.6,1.1,1.5,1],"paint":[12,10.8,12,10.6,12.3,12.1,11.9,11,12.6,11.9,11.9,11.1,12,11.9,12.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.6,10.8,10.2,10.9,10.6,11.2,11,11.3,10.4,10.8,10.5,10.7,10.5,10.7],"script":[0.6,0.5,0.6,0.3,0.6,0.3,0.6,0.6,0.6,0.2,0.6,0.6,0.5,0.4,0.6],"paint":[9.8,9.6,9.8,9,9.7,9.6,10.3,9.9,10,9.4,9.4,9.3,9.6,9.2,9.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[256.7,259.5,259.5,258.2,257.8,258.5,260,257.8,257.8,258.8,257.9,257.5,259.7,259.1,258.8],"script":[28.6,29,29,28.8,28,28.5,28.8,28.5,29.7,28.6,28.4,28.3,28.9,28.5,28.8],"paint":[221,223.2,223.4,222.4,222.6,222.7,224,222.3,221.1,223,222.2,221.9,222.8,223.5,222.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,29.6,28.9,28.8,29.1,29.5,29.1,29.9,28.7,29,29.9,29.2,30.5,28.9,29.6],"script":[3.2,2.9,2.9,3,3,3,3,3.1,3,2.9,3.1,3,3,3,3.1],"paint":[25.1,25.9,25.2,25,25.3,25.6,25.4,26.1,24.9,25.3,26,25.5,26.7,25.3,25.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,10.2,11.7,11.9,11.5,10.5,11.8,11,12.6,12.6,11.3,12.7,12.7,12.5,12.7],"script":[10.7,8.2,9.9,10.6,9.3,8.5,10,9.2,10.8,9.9,9.4,10.8,10.5,10.6,11.2],"paint":[0.9,1.5,0.9,0.2,0.7,1,1,0.9,0.9,2.1,1.7,0.8,1.3,0.6,0.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49466705322265625]}},{"framework":"solid-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.737293243408203]}},{"framework":"solid-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.773000717163086]}},{"framework":"solid-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7350578308105469]}},{"framework":"solid-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.0738468170166]}},{"framework":"solid-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[26.6,25.8,26.2,27.1,25.7,26.3,25.7,25.4,26.4,25.4,26.2,25.4,26.4,25.4,25.4],"script":[4.4,4.1,4.3,4.5,3.9,4.3,3.6,3.6,4.3,3.5,4.2,3.5,4.3,3.6,3.5],"paint":[21.8,21.3,21.6,22.3,21.3,21.6,21.7,21.5,21.7,21.5,21.6,21.5,21.7,21.5,21.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[30.1,29.3,29.3,29.4,29.5,29.6,30,29.4,30.6,29.2,30,29.1,29.9,29.4,29.8],"script":[6.8,6.5,6.7,6.8,6.6,6.5,6.8,6.7,6.8,6.5,6.6,6.6,6.9,6.5,6.5],"paint":[22.7,22.2,22,22.1,22.3,22.6,22.7,22.1,23.2,22.2,22.8,22,22.5,22.3,22.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,10.5,11.2,11.7,10.6,11.4,10.7,11.7,11.1,12.4,10.4,11.3,11.5,10.7,10.9],"script":[1.1,0.9,1,1.5,1.2,1.1,1.4,1.2,1.1,1.6,0.7,1.3,1.6,1.1,1.2],"paint":[8.2,8.2,9.3,9.3,8.4,7.9,8.1,9.4,8.5,9.8,8.8,8.9,9,8.9,8.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.4,1.9,2.9,2.2,2.2,2.5,2.8,3.1,2.6,2.7,2.6,2.4,2.5,2.4,2.9,3.1,2.7,3.1,2.7,2.8,2.2,2.7,1.9,2.6],"script":[0.1,0.5,0.1,0.9,0.5,0.5,0.1,0.4,0.8,0.6,0.5,0.5,0.6,0.1,0.6,0.9,0.8,0.5,0.8,0.5,0.8,0.1,0.7,0.1,0.2],"paint":[2.6,1.8,1,0.8,1.6,1.6,1.5,2.3,0.7,1.4,1.4,1.4,1.3,2,1.2,1.4,1.5,2.1,2.2,2.1,1.2,1.1,1.8,1.7,1.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[16,15,15.1,16.5,15.3,18.1,14.9,16,15,16.5,15.2,15,16.1,14.3,14.5],"script":[2.2,2.3,2.1,2.2,2.1,2.3,2,2.8,1.9,2.4,2.4,2.5,2.5,1.5,2.1],"paint":[12.5,11.8,11.9,13.4,12.5,14.6,10.8,12.5,11.9,13,11.6,11.1,12.6,11.7,11.2]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.8,11.9,11.6,11.9,11.6,11.5,11.8,11.5,12.7,12.7,12,11.5,11.6,11.6],"script":[1.6,1.6,1.6,1.6,1.7,1.7,1.4,1.7,1.4,1.5,1.6,1.7,1.6,1.7,1.5],"paint":[9.6,9.5,9.7,9.4,9.6,8.9,9.5,9.9,9.5,10.6,10.6,9.6,9.3,8.9,9.6]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[272.6,271.7,273.1,273.1,273.3,271.8,271.8,271.5,273.8,272.5,271.6,271.7,270.4,272.7,271.7],"script":[42.3,43,42.7,43.2,42,43.2,42.4,42.8,42.5,42.9,42.7,41.8,43.2,42.8,42.1],"paint":[223.1,221.4,223.1,222.8,223.7,221.4,222.3,221.6,223.5,222.4,221.7,222.7,220.1,222.8,222.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,31.5,30.9,30.9,31.1,32,30.8,31.6,33.7,31.6,31.8,31.5,31.9,31.1],"script":[4.9,4.9,5,4.7,4.8,4.7,4.8,4.7,4.9,4.8,5,5,4.9,4.9,4.9],"paint":[25.9,26.1,25.8,25.4,25.4,25.6,26.4,25.3,25.9,28.1,25.9,26,25.8,26.2,25.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,10.5,11.2,11.4,12.3,12.4,13.1,10.1,11.9,13.2,11.7,12.4,12.2,11.3,11],"script":[9.1,8.6,9.1,9.4,10.6,10.5,11.3,8.6,9.8,11.8,9.4,10.5,10.9,9.1,8.9],"paint":[1.7,1.7,1.1,0.8,0.3,0.9,0.2,0.9,1,0.2,1.4,0.3,1.1,1.1,1.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5108680725097656]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.971752166748047]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0069570541381836]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8275489807128906]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.643555641174316]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.2]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.3,23,22.9,23,23.3,23.2,23.2,23,23.1,23.4,23.1,23.4,23.2,23.3],"script":[1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.4,1.4],"paint":[21.6,21.6,21.3,21.2,21.3,21.6,21.5,21.5,21.3,21.4,21.7,21.4,21.7,21.5,21.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"02_replace1k","values":{"total":[25.9,26.1,25.7,25.7,26.1,25.9,26,26,25.5,25.9,25.8,25.9,26.2,26,26.6],"script":[3.2,3.2,3.2,3.2,3.3,3.3,3.2,3.3,3.2,3.3,3.2,3.3,3.4,3.3,3.3],"paint":[22.3,22.4,22.1,22,22.4,22.3,22.4,22.3,22,22.2,22.2,22.3,22.4,22.3,22.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.2,10.6,9.5,9.7,9.9,9.5,9.8,10.6,11.1,10.1,10.3,9.4,9.5,9.7,10],"script":[0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.1,0.1,0.1,0.3,0.1],"paint":[8.9,8.3,8.1,8.2,9.2,8.4,9.4,9.9,10,8.4,9.3,8.3,8.9,7.8,8.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.5,2.2,1.8,1.9,3.5,3.1,2.6,1.9,2.2,2.3,2.4,2.1,2.1,2.3,2.3,2.6,2.5,2.2,2,1.9,2.6,2.6,1.7],"script":[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],"paint":[2,1.6,1.7,1.5,1.7,1.1,1.5,2,1.7,1.1,1.8,2.2,2.2,1.5,1.9,1.8,1.7,2.4,1.7,2.1,1.5,0.7,2.5,2.5,1.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"05_swap1k","values":{"total":[12.2,13,12.5,13.3,12.7,12.8,11.9,13.3,12.3,12.2,12.7,12.7,13.3,14.1,12.2],"script":[0.6,0.8,0.1,0.7,0.1,0.1,0.1,1,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[10.3,11.9,11.2,11.7,11.5,10.4,10.9,10.7,11.3,10.6,11.4,11.4,11,12.8,10.9]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.3,10.2,10.2,10.2,9.8,9.8,10.1,10.3,10,10.6,10.2,10.3,10.1,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1,0.2,0.4],"paint":[9.5,9.5,9.6,9.4,9.5,9.1,9.2,9.2,9.6,9.1,9.6,9.9,9.6,9.3,9.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"07_create10k","values":{"total":[247.3,244.8,242.6,244.6,244.4,246.1,245.2,243.9,244.9,244,245.2,244.9,242.1,246.3,244.6],"script":[13.4,13.7,13.7,13.7,14,13.9,13.7,13.8,13.8,13.8,13.9,13.7,13.9,13.6,13.9],"paint":[226.1,224,221.6,223.9,223.4,225.1,224.5,222.9,224,223.1,223.7,224,221.1,225.4,223.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.7,26.7,26.8,26.8,26.7,26.9,26.9,26.7,27,26.6,26.9,27.2,27.1,26.8,26.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.7,24.6,24.7,24.8,24.7,24.9,24.9,24.7,25,24.7,24.9,25.2,25,24.8,24.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.7,9.4,9.1,10.4,8.7,9.7,9.2,9.1,9.2,9.9,9.4,9.3,9.1,9.2],"script":[7.1,8,7.5,7,7.8,6.8,7.6,6.7,6.8,7.2,7.6,7,7.6,7.3,7.4],"paint":[0.8,0.4,1.6,1.8,1.6,0.9,0.6,2.2,0.6,1.3,0.8,1.3,1.4,0.2,0.5]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5597515106201172]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.815241813659668]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.827528953552246]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6350183486938477]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.614481925964355]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.8,28.4,28.5,29,28.8,28.2,28.2,28.6,28,28.7,28,28.2,28.1,28.4],"script":[6.2,6.3,6.2,5.9,6.4,6.1,6.1,6,6.1,5.9,6.4,6,6.2,5.9,6.2],"paint":[21.7,21.9,21.6,22,22,22.1,21.5,21.6,21.9,21.6,21.7,21.5,21.5,21.6,21.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[31.7,32,31.5,32.1,31.6,31.4,31.8,31.6,31.8,31.6,31.7,32.1,31.5,31.3,31.2],"script":[8.7,8.7,8.5,8.8,8.6,8.6,8.7,8.7,8.6,8.6,8.5,8.5,8.4,8.6,8.5],"paint":[22.5,22.8,22.4,22.8,22.5,22.2,22.5,22.3,22.6,22.4,22.6,23.1,22.4,22.1,22.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,13.7,13.1,13.6,13.9,13.2,13.9,13.4,13.7,13.4,14.1,13.8,12.9,12.9,12.7],"script":[3.3,3.6,3.1,3.3,2.8,3.2,2.9,3,2.9,2.6,3.1,3.1,3.4,3,2.7],"paint":[9.2,8.4,9.1,9.3,9.5,8.8,9.6,9.5,9.4,9.6,9.5,10.1,8,8.5,8.6]}},{"framework":"spair-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.2,4.4,5,3.5,3.7,3.7,4.1,4.2,4,4.5,3.8,3.8,4.3,3.7,4,4,4.2,4.5,4.6,3.6,4.1,4,4.2,4.1,4],"script":[2.1,2.2,2.7,1.5,1.7,1.9,2.1,2.1,2,2.4,1.4,1.7,2.4,2,1.8,2,2.1,1.9,2.3,1.6,1.7,1.5,1.4,2,1.6],"paint":[1.7,1.6,2.1,1.1,1.6,1,1.9,1.6,1.2,2,2,2,1.2,1.6,1.3,1.2,1.2,2.5,2.2,1.1,1.4,2.4,2.4,1.8,1.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.1,13.4,13.8,13.7,14.4,14.4,15.9,14.3,14.2,14.3,14.5,14.1,14.1,16,13.7],"script":[2.2,2,1.8,2,1.4,1.8,2.2,2.1,1.3,1.8,1.5,1.4,1.4,1.8,1.9],"paint":[11.4,10.2,10.7,10.8,12.1,10.9,13,11.1,12,11.5,12,11.7,11,13,10.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11,11.5,10.9,11,11,11.3,10.9,11,10.9,11.3,12.1,11.4,11.3,11.2],"script":[1.1,1,1.1,1.1,0.9,1.1,1.1,1.1,1.1,0.8,1,1.1,1.1,1.1,1.1],"paint":[9.5,9.5,9.6,9.2,9.5,9,9.4,9.3,9.3,9.5,9.7,10.2,9.9,9.6,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.3,289.3,291.7,288,286.4,288.9,289.4,287.8,290.1,288.2,288.7,288.4,287.5,288.9,287.5],"script":[53.2,53.3,53,53.9,52.9,53.7,53.1,53.2,54,53.2,53.3,52.7,53.6,53,53.1],"paint":[227.9,228.7,231.2,227.1,225.9,228.1,229.2,227.6,228.9,227.8,228.3,228.6,226.9,228.7,227.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.6,34.3,34.2,34.7,34.3,33.8,34.1,34.5,34.6,34.4,34.5,34.1,34.7,34,34.2],"script":[7.1,6.9,6.9,6.9,7,6.9,6.8,6.9,6.9,7,6.8,6.8,6.8,6.8,6.8],"paint":[26.6,26.5,26.3,26.8,26.3,26,26.4,26.7,26.7,26.5,26.7,26.3,26.9,26.2,26.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.8,12.8,12.8,13.1,12.8,13.3,12.3,13.1,12.8,12.8,14.5,12,12.4,13.2,13.4],"script":[10.3,10.1,10.8,11.2,10.5,10.8,10.5,10.5,10.7,10.8,11.2,10.5,10.6,10.8,11],"paint":[2.2,0.6,1.6,1.2,1.3,1.5,0.9,0.9,1.9,0.9,2.4,0.2,1.2,2.1,2.1]}},{"framework":"spair-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7544307708740234]}},{"framework":"spair-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.079885482788086]}},{"framework":"spair-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.129037857055664]}},{"framework":"spair-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5828495025634766]}},{"framework":"spair-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.97164726257324]}},{"framework":"spair-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[31.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[130]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[27.9,28.1,28,28.1,28.2,27.9,28.1,27.8,27.9,28.6,27.8,28.2,27.8,28.2,28.8],"script":[5.5,6,5.7,5.7,5.8,5.6,5.8,5.7,5.7,5.8,5.6,5.7,5.7,5.7,6.5],"paint":[21.9,21.5,21.8,21.8,21.9,21.7,21.7,21.6,21.7,22.2,21.7,21.9,21.6,21.9,21.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[32.7,32.4,30.4,32.1,31.9,31,32.4,32.3,30.5,31.9,30.6,32.3,30.8,30.7,31.8],"script":[8.6,8.4,7.6,8.3,8.2,8.2,8.5,8.5,7.8,8.4,7.8,8.7,8.1,7.9,8.3],"paint":[23.5,23.4,22.2,23.2,23.2,22.2,23.3,23.3,22.1,23,22.2,23,22.2,22.2,23]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.1,13.1,13.5,12.8,12.4,14.5,13.4,13,13.5,13.3,14.8,12.9,13.6,13.4],"script":[2.8,2.5,3.4,3.3,2.9,2.4,3.1,3.5,2.9,2.9,2.7,3.5,2.3,2.6,2.5],"paint":[8.8,9.6,8.7,8.4,8.4,9.1,10.1,8.7,9,9.1,9.4,10.3,10.1,10.1,9.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[5,5,4.6,4.5,4.4,4.2,4.1,4.9,4,4.3,4.7,5,4.3,5.4,4.8,4.6,4.4,4.3,4.6,5,4.5,4.4,4.2,4.8,4],"script":[3,2.7,2.6,2.1,2,2.4,1.7,2.8,1.9,2.3,2,2.4,2.7,3,2.4,1.8,2.3,2.6,2.5,2.9,2.4,2.4,1.9,2.4,2.1],"paint":[1.6,1.4,1.9,1.3,2.3,1.6,1.8,1.5,1.1,1,1.8,1.7,1,1.3,2.2,1.7,1.6,1.5,2,1.1,2,1.9,1.8,2.1,1.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.3,13.6,13.7,13.5,14.1,14,14.5,14.4,14.2,13.7,15,14.4,14.4,14.3],"script":[2,1.1,1.2,1.5,1.6,1,1.8,1.9,1.2,1.8,1.4,1.5,1,2.2,1.8],"paint":[11.4,11.6,11.2,10.9,10.3,12.1,11.3,11.7,11.5,11.4,11.3,12.4,11.1,10.9,11.2]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.7,11.2,10.9,10.9,11.4,11,10.9,10.8,10.9,11,11.3,11.1,11.1,10.7],"script":[1,0.9,0.9,1,1.1,1.1,0.9,1.1,0.9,1.1,0.8,1.1,1,1.1,1],"paint":[9.6,9.9,9.5,8.8,9.2,9.8,9.7,9,9.3,9.1,9.4,9.4,9.3,9.2,9.3]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.7,287.6,290.9,288,287.4,289.4,288.5,288.3,287.9,289.9,291,298.4,289.5,288.7,289.1],"script":[50.7,51.5,51.9,51.6,52.6,51.8,52.2,51.7,51.2,52.6,52.4,52.6,52.2,51.8,51.6],"paint":[230.7,228.9,231.7,229.3,227.7,230.5,229,229.3,229.2,230.2,230.8,238.5,230,229.8,229.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.8,33.2,33.2,33.3,32.7,33.5,33.1,33,32.7,33.4,33.4,33.2,33,33.8],"script":[6.3,6.2,6,6.1,6.1,6.1,6.2,6.1,6.1,6,6.1,6.2,6.2,6.1,6.4],"paint":[26.5,25.7,26.3,26.2,26.3,25.6,26.4,26,25.9,25.8,26.3,26.3,26.1,26,26.4]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.6,11.6,11.3,11.6,11.5,11.9,12.2,11.6,11.8,11.7,11,12.1,11.2,11.6],"script":[9.3,9.5,10.1,9.4,10,9.7,9.8,9.7,9.4,9.8,10,9.6,10.2,9.5,9.2],"paint":[1.4,1.2,0.6,0.2,0.6,0.2,1,0.5,2,0.7,0.9,0.3,1.7,1,1.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7385540008544922]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.517728805541992]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.579442977905273]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.090669631958008]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.50272560119629]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[27.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[109.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"01_run1k","values":{"total":[25.4,24.7,25.2,25.3,25.3,25.2,25.3,24.9,24.8,25.2,25.6,25.4,25.7,25.2,25.4],"script":[4,3.6,3.8,3.9,3.8,3.8,3.7,3.7,3.6,3.8,3.9,3.7,3.8,3.6,3.7],"paint":[21.1,20.8,21.1,21,21.1,21,21.2,20.8,20.8,21,21.3,21.3,21.5,21.2,21.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"02_replace1k","values":{"total":[29.3,29.6,29.1,28.9,29.1,29.2,28.9,30.1,29.5,29.8,29.3,29.7,29.3,28.9,29.8],"script":[7,7.1,6.9,6.8,7.1,6.9,6.7,7.4,7.2,7.1,7,7,7.1,6.8,7],"paint":[21.7,21.9,21.6,21.5,21.5,21.7,21.6,22.1,21.7,22.1,21.8,22.1,21.6,21.6,22.2]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.9,11,11.3,11.7,10.9,11.6,11.9,10.8,11.5,11,10.7,12,10.7,10.7,10.9],"script":[0.2,0.9,1.6,1.1,1,1.5,0.6,0.2,1,1.3,1.4,1.1,0.5,0.2,1],"paint":[9.5,8.5,8.7,8.8,8.4,8.4,9.8,8.9,8.3,8.7,8.2,9.8,8.6,9.3,8.5]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.1,1.8,2.8,2.3,2.4,2,2.7,1.9,2.3,2.2,2.2,2.5,1.7,2.1,2.8,2.8,2.5,2.5,1.7,1.8,3,2.4,2,2.4],"script":[0.1,0.5,0.5,0.5,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.6,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.8,0.1,0.1,0.1],"paint":[1.9,1.1,0.7,1.4,2.2,1.8,1,1.7,1.3,2,2,1.3,1.8,0.7,0.7,1.6,2.4,1.6,1.9,1.5,1.1,1.6,2.1,1.4,1.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"05_swap1k","values":{"total":[13.5,12.3,12.8,12.7,13.2,12.9,13.6,13.6,12.4,13.1,12.8,13.2,14.2,13.4,13.1],"script":[0.5,0.1,0.1,0.1,1.1,0.9,0.1,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.8],"paint":[11.1,10.5,11.7,11.2,10.6,10.7,11.2,12.6,11.4,11.9,11.6,11.3,12.3,11.9,11.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.4,10.5,10.5,11.1,10.8,10.6,11,10.4,10.7,10.7,10.8,10.3,10.7,10.6],"script":[0.5,0.3,0.2,0.4,0.5,0.5,0.2,0.3,0.3,0.3,0.5,0.5,0.2,0.5,0.3],"paint":[8.9,9.5,9.6,9.6,9.9,9.2,9.8,10,9.5,9.9,9.7,10,9.5,9.5,9.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"07_create10k","values":{"total":[265.6,266.3,265,264.7,264.2,265.2,265.5,265.4,267.8,264.9,265,268.7,265.8,265.4,266.5],"script":[34.4,34.8,34,34.3,34.7,34.4,34.4,34.2,34.6,34.4,34.7,35.1,34.3,34.7,34.6],"paint":[224.1,224.4,223.9,223.1,222.4,223.6,223.7,224,226.2,223,223.1,225.9,224.4,223.5,224.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.5,29,28.9,29.3,29.3,30.6,29.1,29.8,29.7,30.7,29.4,29.9,30,29.6,29.9],"script":[4.2,3.9,3.9,4.2,3.9,4.1,4.1,4.1,4.2,4.2,3.9,4.1,4.4,4.1,4.3],"paint":[24.5,24.4,24.3,24.4,24.7,25.7,24.2,25,24.8,25.7,24.7,25,24.9,24.8,24.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.7,9.9,9,9.9,9.4,9.3,8.8,9.1,10.1,10.2,9.7,9.2,9.2,9.4],"script":[8.2,7.4,7.6,6.8,7.9,7.6,7.4,7.5,7.4,7.9,8,7.9,7.7,7.6,7.6],"paint":[0.3,2.1,0.9,1.2,1.3,0.6,1.6,0.2,0.9,2,1.6,1,0.7,0.2,1.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6956787109375]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5865631103515625]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6388072967529297]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0456886291503906]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.745062828063965]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"01_run1k","values":{"total":[31,30.3,31.1,30.7,31.2,31.1,31.1,30.7,30.6,31.1,31,30.5,30.5,31.1,31],"script":[8.4,8.4,8.6,8.4,8.8,8.6,8.6,8.6,8.5,8.9,8.6,8.4,8.4,8.9,8.5],"paint":[22.1,21.4,21.9,21.8,21.9,21.9,22,21.5,21.6,21.7,21.9,21.5,21.5,21.7,22]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.4,33.4,33.4,33.5,33.4,33.5,34.3,33,33.8,34,33.6,34.2,33.5,33.3],"script":[10.9,11.1,11,11.2,11.3,11.1,11.4,11.6,10.9,11.3,11.6,11.1,11.4,11.2,11.2],"paint":[21.6,21.7,21.9,21.6,21.6,21.7,21.6,22,21.6,22,21.8,21.9,22.2,21.7,21.5]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12.9,12.2,12.8,12.3,12.2,12.4,12.3,12.6,13,12.8,12.6,12.6,13.2,13.6],"script":[2.1,1.9,1.5,2.3,1.9,2.1,2.1,2.3,1.5,2.4,2.1,1.9,2.5,2.3,1.7],"paint":[9.4,10.4,9.3,8.3,8.8,8.8,9.7,8.9,10.2,9.5,9.4,9.3,9.5,8.8,10.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.2,4.6,3.7,4.1,4.1,4,4.2,4.5,3.7,4.6,4.3,4.7,4.1,3.9,3.7,3.9,3.7,3.7,3.5,4.8,5,3.8,4.5,3.7],"script":[2.6,1.8,2.4,2.2,1.7,1.7,1.8,2.1,2.6,2.1,2.3,2.6,2.3,2.1,2.4,1.8,2,1.9,1.3,1.8,2.5,2.3,2,2,1.3],"paint":[1.3,1.3,1.3,1.4,0.8,2.1,1.6,1.3,1,1.5,1.6,1.6,1.4,1.1,1,1.1,1.1,1.7,2.2,1.6,2.1,1.6,1.7,0.5,2.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"05_swap1k","values":{"total":[14.1,14.5,14.5,14.1,14.7,14.3,13.8,14.3,14.2,14.1,14,14.6,14.2,13.7,14.5],"script":[1,1.9,1.5,1.9,1.3,1.3,1.5,1.8,1.5,1.5,1.2,1.6,1.5,1.6,2],"paint":[12.1,10.7,12,11.3,12.5,12,11.3,11.5,11.6,12.3,11.4,11.6,10.7,10.9,11.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.3,11,11.6,11,10.9,11,11,11.3,11,11.2,11.3,11.4,11.5,11],"script":[1.2,1,1.1,1,1.2,1.1,1.2,1.2,1.2,1.2,1,1.2,1.2,1.2,1.2],"paint":[9.2,9.5,9.2,9.8,8.8,9.5,9.5,9.3,9.6,9.2,9.1,9.7,9.6,9.4,9.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"07_create10k","values":{"total":[294.2,293.2,295.3,294.6,292.6,294.4,295.8,294,293.7,295.9,292.8,296,294,293.5,294.1],"script":[57,57.7,57.4,58.1,57.3,57.5,58,58.5,58.2,58.5,58.1,58.5,57.8,57.2,57],"paint":[229.9,228.3,230.6,229.2,228.1,229.7,230.4,228.2,228.3,230.1,227.4,230,228.6,229.2,229.9]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.3,33.3,33.4,32.8,33.2,33.7,33,33.2,33.4,33,33.3,33.5,32.6,33.3,33.2],"script":[6.1,5.9,6,5.9,6,5.8,5.9,5.9,6,6,6,6,5.8,5.8,6.1],"paint":[26.3,26.4,26.5,26,26.3,26.9,26.2,26.3,26.5,26.1,26.3,26.5,25.9,26.5,26.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,12.7,13.3,13.8,13.5,13.2,13.4,12.3,13.3,13.4,13.2,13.5,13.4,12.4,13.3],"script":[11.1,11.1,10.9,11.7,11.4,11,11.5,10,11.3,11.5,11,11.4,11.1,10.4,11.6],"paint":[1,0.2,0.9,1.5,1.4,0.8,1.1,1.2,1.1,0.9,0.7,0.6,0.6,1.1,0.7]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.74127197265625]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.293750762939453]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.294261932373047]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3248233795166016]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.459091186523438]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[130.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[34.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"01_run1k","values":{"total":[31.3,30.9,30.6,30.7,30.9,31.3,31.1,31.3,31.1,31.1,30.5,31.1,30.8,30.9,30.7],"script":[8.2,8.2,8.2,8.2,8.1,8.1,8.4,8.3,8.4,8.2,7.9,8.4,8,8,8],"paint":[22.6,22.1,21.9,22,22.3,22.6,22.1,22.4,22.2,22.3,22,22.2,22.3,22.4,22.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"02_replace1k","values":{"total":[38.7,38.3,38.3,38.3,38,37.6,37.8,39.1,38.3,37.8,38.3,37.6,38.6,38.3,38],"script":[14.8,14.8,14.7,15,14.8,14.6,14.5,15.3,14.6,14.7,15,14.4,15.1,14.8,14.5],"paint":[23.3,22.9,23,22.8,22.6,22.4,22.7,23.2,23,22.5,22.7,22.7,22.9,22.9,22.9]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.8,26.1,26.5,26.4,26.9,24.7,26.2,28.6,28,23.6,25.8,26.1,26.4,25,25.9],"script":[14.4,13.8,13.5,14.5,15,12.8,13.6,15.2,14.6,11.2,13.4,14.2,14.1,12,13.4],"paint":[10.6,10.8,11.2,9.1,9.4,9.6,10.6,11.2,11.7,10.3,9.6,10,10.6,10.9,10.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"04_select1k","values":{"total":[15.5,14.4,14.6,14.7,15.1,14.9,14.9,13.9,14.4,16.2,15.7,14.3,13.8,14,17.1,16.4,15.6,15.9,14.2,15.1,13.5,14.7,14.9,15.5,15.9],"script":[11.6,11.3,11.3,11.6,12,11.4,11.2,10.2,11.1,12.5,12.5,11,11,10.6,13.1,13,11.7,12.4,10.6,11.8,10.2,11.3,12.1,12.6,12.2],"paint":[2.9,1.4,2,2.3,1.2,2.3,2.9,2.5,1.6,2.8,1.9,2,1.2,1.7,2,2.5,2.3,1.2,1.1,1.3,1.9,1.8,1.3,0.8,2.5]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"05_swap1k","values":{"total":[25.3,28.9,26.7,26.4,26.6,26.2,25.7,26,25.5,27.3,25,27.1,26.4,26.1,24.5],"script":[10.7,11.5,12,11.4,11.1,10.8,11.4,11,11.4,12.4,10.8,11.9,11.3,10.5,10.7],"paint":[13.1,15.3,12.8,13.1,13.2,13.2,12.9,12.8,12.4,12.6,12.7,14,12.8,14.4,11.5]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.4,17.6,17.3,17.4,17.4,17,17.5,17.4,17.1,17.6,18,17,17.4,17,17],"script":[5.9,6.6,5.8,6.2,6.2,6.1,5.9,6.2,6.1,6.4,6.1,5.8,6.1,5.9,5.8],"paint":[10.3,9.9,10.4,10.2,9.8,9.9,10.4,10.4,9.9,10.3,10.9,10.1,10.2,10.6,9.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"07_create10k","values":{"total":[322.5,325.6,323.4,324.2,322.9,323.3,320.8,325.3,328,327.8,322.6,323.9,322.7,322.6,323.2],"script":[91.2,92.5,91.1,91.6,91.4,91,91.1,91.8,92.9,92.3,91.3,91,90.8,91.5,91.8],"paint":[223.1,225.2,224.4,224.3,223.8,224.5,221.8,225.7,227,227.6,223.6,225.2,224,223.4,223.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.8,38.3,38.7,38.6,38.8,38.4,38,38.6,38.9,38.1,38.6,38.3,38.8,40,39.2],"script":[11.3,11.2,11.1,11.2,11.1,11.1,11.1,11,10.9,10.9,11,11.2,11.4,11.3,11.2],"paint":[26.5,26.1,26.6,26.3,26.6,26.3,25.8,26.6,27.1,26.3,26.5,26.1,26.3,27.6,27]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,12.7,11.9,11.8,12.1,11.9,12.3,11.4,12.5,13,12.2,12,11.7,11.3,12.1],"script":[9.7,10.2,9.7,9.6,9.7,10,10.4,9,9.9,10.6,9.6,9.2,9.6,8.8,10],"paint":[2,1.8,1.9,0.8,1,0.8,1,1.8,1,1.4,1.8,1.9,1.1,2,0.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6626462936401367]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5802507400512695]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.646542549133301]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8472805023193359]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.51368999481201]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.2,24.3,24.1,24.3,24.3,24,24.1,24.2,23.9,24.1,24.2,24.2,24.3,24.3,24.1],"script":[2.5,2.6,2.6,2.6,2.5,2.5,2.5,2.5,2.6,2.5,2.6,2.5,2.5,2.5,2.5],"paint":[21.2,21.4,21.2,21.4,21.3,21.2,21.2,21.3,21,21.3,21.2,21.3,21.4,21.4,21.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28,28.6,27.8,28.2,28.1,28.6,28.7,28.4,28.2,28.3,28.1,28.3,28.5,28.4],"script":[5.6,5.5,5.8,5.5,5.7,5.4,5.9,5.6,5.6,5.5,5.7,5.5,5.6,5.8,5.6],"paint":[22.2,22,22.2,21.8,22,22.2,22.1,22.6,22.3,22.2,22.1,22,22.1,22.1,22.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,11.4,10.8,10.7,11.5,10.9,10.8,10.7,11,11.3,11,11.1,11.3,10.3,11.1],"script":[1.1,0.9,0.9,0.5,0.6,0.9,0.2,0.6,0.8,1.1,0.2,0.9,1.2,0.6,1.4],"paint":[8.3,9.4,8.4,9.1,9.9,8.4,9.6,9,8.8,9.3,9.8,9.3,9,9.1,8.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.2,3.4,3.3,3.8,3.8,3,2.9,2.9,3.3,3.3,3.3,3.6,3.5,3.4,3.3,3.7,3.8,3.1,3.1,2.9,2.7,2.8,3.1,2.8],"script":[0.9,0.9,0.6,1.2,1.3,1.3,0.2,1,1.2,1.2,1.4,0.8,1.2,0.8,1,1.4,1.3,1.2,0.6,0.9,0.2,0.6,0.8,1.2,1],"paint":[2,1.4,1.8,0.8,2.4,2.1,2.7,1.1,1.6,1.5,1.4,1.5,2.3,1.6,2.1,1.8,1.7,1.6,2.4,1.3,2.1,1.2,0.9,1.1,1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[13.4,14.2,14.5,14.1,13.8,14.4,13.1,13.5,13.7,14,13.4,13.1,13.6,14.5,13.4],"script":[0.7,1.2,1.4,1.3,1.5,1.3,0.9,1,1.2,1.3,1,1.1,1.1,1.1,1.1],"paint":[11.1,12.1,12.1,11,11.3,12,11.1,11.6,11.3,11.7,11.3,10.6,11.8,12.8,10.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.3,10.7,10.5,10.7,10.5,10.7,10.6,10.6,10.6,10.7,10.3,10.5,10.6,10.4],"script":[0.5,0.5,0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.4,0.4,0.3,0.5,0.5,0.2],"paint":[9.1,9.1,9.7,9.7,9.7,9.6,9.6,9.5,9.1,9.6,9.6,9.5,9.3,9.5,9.6]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[257,257.1,256.3,256.6,255.9,257.3,257.5,256.6,257.6,257,256.4,256.6,260.8,257.4,257.6],"script":[27.6,28.1,27.7,28,28.1,28.8,27.7,28,27.9,28,28.1,28.1,28.3,28.4,28.2],"paint":[222.1,221.7,221.3,221.3,220.8,221.2,222.4,221.3,222.4,221.4,221,221.4,225,221.6,222]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.8,27.7,28.3,28.5,28.1,28.9,27.5,27.6,29.1,28.2,28.8,28.1,28,28.1,29],"script":[2.7,2.5,2.7,2.7,2.6,2.7,2.6,2.6,2.8,2.7,2.7,2.6,2.6,2.6,2.6],"paint":[25.3,24.4,24.8,25,24.7,25.4,24.2,24.3,25.6,24.7,25.3,24.7,24.6,24.8,25.6]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,11,9.8,10.3,10.3,10.5,10.6,10.1,9.9,11,10.3,10.3,10.3,10,10.2],"script":[7.8,9,7.8,8.3,8.2,8.7,8.6,8.5,8,8.7,8.6,8.1,8.2,7.5,8.3],"paint":[1.1,1.8,1.2,0.4,0.7,0.9,1,1,0.3,2,0.7,1.6,0.8,1.4,1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5991659164428711]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.780032157897949]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7977161407470703]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8762216567993164]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.332514762878418]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.5]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.7,25,24.7,24.9,24.9,24.8,25.1,24.7,24.8,24.8,25.2,24.9,24.9,24.7,24.9],"script":[3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.2,3.3,3.2,3.2,3.3,3.3,3.2,3.3],"paint":[21.1,21.3,21.1,21.3,21.5,21.2,21.5,21.2,21.2,21.2,21.6,21.2,21.2,21.2,21.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[29.2,29,29.1,29.1,29,29.3,29.4,29.1,29.2,29.1,28.8,28.9,28.9,28.9,29.1],"script":[6.4,6.6,6.6,6.2,6.5,6.6,6.5,6.6,6.6,6.2,6.3,6.4,6.3,6.2,6.6],"paint":[22.2,21.8,21.9,22.3,22,22.1,22.3,22,22.1,22.2,22,22,22.1,22.1,22]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.5,11.4,12.1,11.7,11.6,13.9,12.5,12.2,11.3,11.6,11.7,12.3,11.4,13.5],"script":[1.5,2.4,1.3,2.3,1.6,2.1,1.8,1.8,1.8,1.5,2.2,1.6,1.9,1.1,2.4],"paint":[10.4,9.5,8.6,8.9,9.4,8.5,10.5,9.5,9.2,8.5,8.7,9.4,9,8.6,9.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.1,3.2,3.9,3.5,2.6,3.1,3.4,3.1,3.4,3,3.5,3,2.7,3,3.3,3.7,3.2,3.3,3.4,2.9,3.5,3.4,3.2,3.7],"script":[1.2,1.1,1,2,1,0.2,0.9,0.7,0.8,1,0.5,1.5,0.5,1.1,0.9,0.9,1.3,0.6,0.9,1.3,0.2,1.2,1,0.6,1.3],"paint":[1.4,1.1,1.3,1.8,1.7,2.2,2,2.6,1.2,2.3,1.5,0.4,1.4,0.7,2,1.9,2.3,2.5,2.2,1.8,2.5,1.2,1.6,2.4,1.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,14.9,14.4,14.9,15.7,14.9,14.9,14.9,15,14.7,14.4,15,14.9,15,14.6],"script":[2.2,1.5,1.4,2.6,1.5,1.2,1.3,1.6,2.2,2.3,1.3,2.2,1.8,1.7,2.2],"paint":[11.2,12.4,11.5,11.6,13.1,12.5,12.1,12,12.1,11.5,12.1,12,11.8,12.3,10.4]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.4,11,10.9,11.2,11.3,11,10.9,11.1,11.4,11.5,11.2,11.5,11,10.9],"script":[0.7,1.1,0.7,0.7,1,0.9,1.2,0.7,0.9,1.2,1.1,0.9,1.2,0.7,0.7],"paint":[9.5,9.6,9.6,9.7,9.6,9.5,9.3,9.6,9,9.6,9.7,9.4,9.8,9.6,9.6]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[268.2,269.4,267.2,269,267.5,266.4,269.8,269.4,268.1,267.9,269.2,270.2,269.9,267.3,269.7],"script":[37.6,37.4,37,37.5,37.1,36.9,37.5,37.6,37.6,37.5,38,37.5,37.1,37.5,37.5],"paint":[223.5,224.9,223.1,223.9,223.2,222.3,224.7,224.3,223.3,223,224.1,225.5,225.6,222.6,225.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.6,30.2,29.3,29.5,29.4,29.5,29.1,30.3,29.5,29.6,29.9,29.6,29.8,29.5,29.1],"script":[3.8,4.1,3.8,3.8,3.8,3.9,3.9,4.1,3.8,3.9,3.8,3.9,4,3.9,3.8],"paint":[25,25.4,24.8,24.9,24.8,24.9,24.5,25.4,24.9,25,25.4,24.9,25,24.9,24.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.1,10.2,9.7,10.3,11.5,10.3,10.1,10.9,10,10.7,10.6,9.5,10.2,10.4],"script":[8,8.6,7.8,8.1,8.3,9.7,7.6,7.9,8.7,8.2,8.1,8,7.4,8.1,8.3],"paint":[2.1,0.5,1.8,0.6,0.8,0.6,1.8,1.3,1.8,1,2.4,2.3,1.2,1.3,0.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6184406280517578]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9235544204711914]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.964777946472168]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4381637573242188]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.580604553222656]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"01_run1k","values":{"total":[29.3,29.3,28.8,28.6,28.7,28.7,29,28.9,28.8,29,28.2,28.8,28.7,29.1,28.8],"script":[6.5,6.2,6.3,6.5,6.3,6.2,6.3,6.2,6.2,6.2,6.1,6.2,6.3,6.3,6.4],"paint":[22.2,22.5,21.9,21.5,21.9,22,22.2,22.2,22.1,22.3,21.5,22.1,21.8,22.2,21.8]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34,33.6,34,34,33.8,34.6,33.8,33.6,33.5,33.2,33.9,34,33.8,33.8],"script":[11,11.1,10.7,10.7,11,10.7,11,10.8,10.6,10.7,10.6,10.7,10.7,10.8,10.8],"paint":[22.3,22.3,22.4,22.8,22.5,22.5,23,22.4,22.4,22.2,22,22.6,22.7,22.4,22.4]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.1,14.5,14.5,14.6,14.2,16,14.4,14,14,14.8,14.3,15,15.9,15.7,13.8],"script":[4.2,3.8,4,3.9,3.8,4,3.6,4,3.3,3.3,3.4,3.7,4.5,4.4,3.2],"paint":[10.4,9.6,9.6,9.1,9.3,10.5,9.5,9.1,9.6,9.9,9.3,10.2,10.3,10.2,8.9]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"04_select1k","values":{"total":[5.6,6.3,5.6,6,6.5,6,5.9,5.8,6.2,5.5,5.3,6,6.4,5.1,6.1,6.1,5.5,5.8,6.1,6.5,5.9,6,6,5.4,6.3],"script":[3.5,4.1,3.5,3.9,3.7,3.5,3.6,3,3.7,3.6,3.4,4.1,4,3.4,3.4,3.6,3,3.3,3.2,3.6,3.9,3.4,3.9,3.5,4.2],"paint":[2,2.1,1.2,1.4,2.6,1.5,2.1,2.4,1.6,1.7,1.1,1.7,1.8,0.7,1.6,2.3,1.2,2.3,2.4,2.7,1.8,2.2,1.9,1.8,1.6]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.9,15.9,16.2,16.1,15.3,15.6,15.8,15.9,15.8,14.8,16.9,15.5,18.7,18],"script":[2.4,2.4,2.8,3,3.1,2.3,2.4,2.8,3,2.7,2.5,2.7,2.9,4.4,3.1],"paint":[11.8,12.6,12.1,12.1,12,12.1,11.7,11.8,12.2,12.1,10.7,12.7,12.1,13.1,13.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.8,11.8,12.1,11.6,12,12,11.7,11.9,12,11.7,11.9,12.8,12.3,11.6],"script":[1.8,1.7,1.6,1.7,1.7,1.6,1.6,1.6,1.8,1.7,1.6,1.6,2.4,1.4,1.7],"paint":[9.5,9.4,9.3,10,8.9,9.8,9.7,9.4,9.5,9.6,9.3,9.9,9.8,9.8,9.3]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"07_create10k","values":{"total":[295.2,291.3,292.4,294.1,293.7,294.5,292,293.2,292.2,294.2,293.8,293.2,295.8,293.4,294.6],"script":[59.9,60.2,60.3,61,60.7,60.9,60.5,59.2,60.2,60.1,60.2,59.8,61.2,60.7,60.7],"paint":[227.9,224,224.9,226,225.8,226.5,224.5,226.6,224.8,227,226,226.3,227.4,225.6,226.7]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,34.6,34.1,34.2,34.6,34.5,34.8,34.7,35,34.5,34.6,35.1,35.1,34,35.1],"script":[7.1,7.3,7,7,7.1,7,7.1,7.3,7.2,7,7.3,7.4,7.4,6.9,7.1],"paint":[26.4,26.4,26.2,26.2,26.6,26.6,26.8,26.6,26.9,26.6,26.4,26.8,26.8,26.1,27.1]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,13.7,13.2,13.3,14.1,13.6,14.1,14.8,14,14.8,13.9,13.2,12.5,13.7,13.7],"script":[11.6,11.6,11.5,11.3,12.2,11.5,12.1,12.6,12.3,11.8,12,11.3,10.6,11.7,12.3],"paint":[1,1.2,1,0.8,0.8,1.5,0.4,1.3,1.1,1.7,1.7,0.9,1.7,1.2,0.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7508716583251953]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.803526878356934]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.851883888244629]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5171022415161133]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.595845222473145]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[47.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[208.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"01_run1k","values":{"total":[24,23.8,24.2,24.3,24.4,23.8,24.1,24.4,24.1,23.8,23.9,24.4,24.7,23.9,24.3],"script":[2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.4,2.5,2.6],"paint":[21.1,20.9,21.3,21.4,21.4,21,21.1,21.7,21.1,20.9,21,21.5,21.9,21.1,21.3]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"02_replace1k","values":{"total":[27.9,27.2,26.5,27,27.2,27,27.1,26.9,26.9,27.3,27,27.3,27.1,27.6,27],"script":[4.5,4.5,4.4,4.4,4.5,4.3,4.5,4.6,4.5,4.6,4.4,4.6,4.4,4.4,4.6],"paint":[23,22.3,21.7,22.1,22.3,22.2,22.2,21.9,22,22.2,22.2,22.2,22.2,22.8,22]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,12.7,12.4,12.1,12.7,12,11.8,12.1,12.3,11.4,11.4,12.5,11.8,11.1,12.4],"script":[1.2,2.2,1.3,1.2,1.6,0.7,0.9,1.8,1.1,0.9,1.3,1.2,1.6,0.9,1.3],"paint":[8.8,9.4,9.3,8.8,10.3,10,10,9.6,10.3,9.2,9.5,10.4,8.7,9.2,9.9]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.8,3.3,2.9,3.3,3.4,3.7,4.3,7.2,4.8,3.7,3.7,6.2,4.8,6.1,3.1,4.4,5.6,3.1,4.5,5.2,4.4,4.7,5.8,3.2],"script":[1.3,1.2,0.6,1.1,0.9,1.2,1.5,0.9,0.2,1.3,1.4,1.2,1.5,0.5,1.1,1.1,1.6,1,0.9,1.3,1.2,0.6,1,1.1,0.6],"paint":[0.8,1.7,1.8,1.6,1.6,2.1,1.7,1.9,2.7,1.8,1.6,1.1,1.7,1.3,1.9,1.9,2.1,2.5,1.3,1.7,2,1.9,1.6,1.7,1.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.3,14.1,14,14.2,14.2,14.9,14.7,14.8,14.9,15.3,14.7,14.5,14.8,13.7],"script":[1.3,1.3,1.7,1.6,1.4,1.1,2.2,1.9,1.4,1.2,2.2,1.7,1.1,2.1,1.8],"paint":[12,11.7,10.9,11.4,9.9,12.4,11,11.7,12.2,12.4,12.2,12.1,10.2,11.2,11.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,10.5,10.9,10.9,11.2,10.9,10.9,10.8,10.8,11,11.1,10.8,10.7,11,10.7],"script":[0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.4],"paint":[9.9,9.5,9.5,9.7,10,10,9.7,9.9,8.8,9.9,9.5,9.6,9.5,9.7,9.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"07_create10k","values":{"total":[259.7,261,258.6,262.2,259.7,259.9,260.9,263.4,260.3,259.5,260.5,260.1,259.4,259.4,259.2],"script":[25.9,26.2,25.6,26,26.3,25.6,26.5,27.8,25.5,26.5,26,26.1,25.8,26,26.1],"paint":[226.3,227.4,225.7,228.4,225.9,226.8,226.9,228,227.3,225.5,227,226.4,225.7,225.7,225.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,29.5,28.6,28.7,28.9,28.6,28.3,28.3,28.3,29,28.3,29.4,28.7,28.8,29.4],"script":[2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.6],"paint":[25.3,26.2,25.3,25.4,25.6,25.3,25,25,25,25.4,24.9,26,25.4,25.5,26]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,10.5,10.1,10,10.4,10.7,11.1,10.6,9.9,10.7,11,10.3,11.5,10.4,10],"script":[9,8.8,8.6,8.5,8.4,8.7,9.2,8.4,8.6,8.9,8.6,9.1,8.6,9,7.9],"paint":[2.3,0.5,0.3,0.6,1,1.2,1,1,0.2,0.9,1.4,0.5,2.2,0.2,1.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3402538299560547]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1064014434814453]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.214679718017578]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.791879653930664]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.534530639648438]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[191.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.4]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[181.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.8,23.6,23.7,23.8,23.6,23.7,23.6,23.8,23.6,24.1,23.9,23.8,23.8,23.9],"script":[2,2,1.9,1.9,1.9,1.9,2,2,2,2,2,2,2,2,2],"paint":[21.4,21.4,21.3,21.4,21.5,21.3,21.3,21.2,21.4,21.3,21.7,21.6,21.4,21.4,21.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"02_replace1k","values":{"total":[26.5,26.8,26.8,27,26.7,26.8,27,26.8,26.5,26.8,26.8,27,27.3,27.3,27.1],"script":[4,3.9,4,4,4,4.1,4,4.1,4,4,4,4.1,4,4.1,4.1],"paint":[22.1,22.4,22.4,22.5,22.4,22.3,22.6,22.3,22.1,22.4,22.3,22.4,22.8,22.8,22.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.9,10.1,10.3,10,10.5,9.7,10.1,11.2,10.3,10.5,11.3,11,11.5,11,10.6],"script":[0.8,0.1,0.8,0.1,1.1,0.5,0.1,0.6,0.1,0.5,0.8,0.7,0.3,0.8,0.5],"paint":[9.4,8.8,8.6,8.8,8.3,8.5,9,9.5,9.2,9.4,9.3,8.8,10.2,8.6,8.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"04_select1k","values":{"total":[3.8,2.6,2,2.5,2.4,2.8,2.2,2.5,2.6,2.1,2.8,2.8,3,2.5,2.8,2.4,2.3,2.2,2.6,3.2,2.7,2.6,2.3,2.7,2.2],"script":[0.8,0.1,0.1,0.1,0.8,0.5,0.1,0.3,0.1,0.5,0.8,0.9,0.1,0.1,0.1,0.1,0.5,0.1,1,1.1,1,0.1,0.3,0.4,0.1],"paint":[1.6,2.4,1.2,2.3,1.6,1.6,1.9,1.8,1.5,1.6,1.1,1.3,2.4,1.3,2.5,1.4,1.7,2,1.6,2,1.6,1.5,1.9,1.9,1.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.4,14,13.9,14.3,13.5,13.9,13.4,14.1,13.8,13.7,14.4,15.1,14,13.1],"script":[1,1.2,0.9,1,1,0.9,0.9,0.9,0.6,1,0.6,1.2,1,0.8,1.2],"paint":[12.2,10.8,11.8,11.9,12.1,11.5,12.1,11,11.9,11.7,11.5,12,12.4,12.3,10.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,10.1,10.4,10.5,10.5,10.5,10.5,10.7,10.4,10.4,10.4,10.5,10.2,10.6],"script":[0.3,0.4,0.4,0.3,0.5,0.3,0.4,0.3,0.3,0.5,0.3,0.5,0.4,0.4,0.3],"paint":[9.4,9.3,9.1,9.6,9.3,9.6,9.5,9.4,9.9,9.2,9.3,9.3,9.6,9.1,9.1]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"07_create10k","values":{"total":[257.2,256.9,257.5,256.6,257,257.5,256.9,255.9,257,258.1,258.7,256.5,256.6,256.6,256],"script":[26.4,26,26.3,26.8,26.3,26.4,26.1,26.3,26.3,27,27,26.4,26.6,26.1,26.3],"paint":[223.6,223.5,224,222.4,223.4,224,223.5,222.2,223.4,223.7,224.5,223,222.6,223.3,222.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28,27.9,28.1,27.9,27.9,28.9,27.8,27.7,28,27.9,27.9,27.8,28.5,27.5],"script":[2,2,2,2,2,2,2,2,2,2.1,2,2,2,2,2],"paint":[25.2,25.3,25.2,25.4,25.1,25.2,26.2,25,25,25.2,25.2,25.1,25,25.6,24.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,10.2,9.7,9.7,10,9.3,9.5,9.7,9.5,10.4,10.5,11.1,9.7,9.7,9.3],"script":[7.3,8.2,7.8,7.8,7.9,7,7.6,7.3,7.7,8.7,7.1,9.2,8.2,8.1,7.4],"paint":[1.6,1.1,1.1,0.3,1.9,1.6,0.3,1.4,0.9,1.2,3.1,0.6,0.7,1,1]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5495309829711914]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.168757438659668]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1770105361938477]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6462335586547852]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.86556339263916]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.3]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[27.9,27.7,27.5,27.6,27.5,27.6,27.3,27.4,27.4,27.3,27.7,27.5,27.3,27.7,27.8],"script":[5.8,5.5,5.8,5.9,5.5,5.6,5.6,5.6,5.7,5.6,5.6,5.9,5.5,5.8,5.5],"paint":[21.6,21.6,21.1,21.2,21.4,21.4,21.1,21.2,21.2,21.1,21.5,21.1,21.3,21.3,21.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32,32.8,32.6,32.6,32.8,32.9,32.1,32.9,32.5,32.7,32.2,32.5,32.2,32.8],"script":[8.5,8.6,9.1,9,9.1,9.1,9.1,8.8,9.2,9,9,9,8.9,8.8,9],"paint":[22.8,22.8,23.1,23,22.9,23.2,23.1,22.7,23.1,23,23.1,22.6,23,22.7,23.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.7,11.5,10.7,10.9,10.4,10.7,10.5,11.5,10.9,11,10.7,10.9,11.2,10.8],"script":[0.9,0.7,0.8,0.6,0.5,0.2,0.8,0.2,0.9,0.6,0.2,0.9,0.9,1.2,0.2],"paint":[9.6,8.9,9.4,7.7,9.3,9.3,7.8,9.1,9.3,7.8,9.6,8.4,9,8.8,9.5]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.4,2,2.6,2.5,2.1,1.8,2.8,2.2,2.3,2.4,2.5,2,1.9,1.8,1.5,2.2,1.6,2.5,2.1,2.5,2.3,2,2.4,2.4],"script":[0.6,0,0,0,0,0.3,0,0,0,0.2,0,0,0.2,0.2,0.3,0.2,0,0,0,0,0,0,0,0.8,0.8],"paint":[1.7,2.2,1.2,0.8,1.3,1.4,1.2,2.6,2.1,1.5,2.2,2.3,1.3,1.2,1.2,1.2,1.2,1,2.4,1.4,1.5,2.1,1.1,1.1,1.1]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[22.5,21,20.9,21.1,20.2,21.3,20.7,20.7,22,21.1,22.6,21,21.9,20.8,21.8],"script":[8.1,7.2,6.7,6.6,6.5,6.9,6.1,6.5,7.9,7.4,7.8,6.9,7.2,7.4,7.7],"paint":[12.5,11.5,13.5,11.8,10.9,13.1,11.7,12.2,12.2,11.7,12.9,12,12.1,10.5,12.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,14.9,14.6,14.7,15.1,14.9,15.2,14.6,14.6,14.7,15.2,14.7,14.5,14.9,16],"script":[4.3,4.2,4.2,4.3,4.2,4.3,4.3,4.3,3.8,4.3,4.3,4.3,4.1,4.2,4.2],"paint":[10.2,10.1,9.8,9.8,9.7,9.8,10.2,9.1,10.1,9.9,9.7,10,9.5,10.2,10.8]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[287.1,289.6,289.4,287.7,286.7,289.6,287.7,289.1,289,290.1,288.6,287.9,287.9,288.5,285.8],"script":[56.6,57.1,56.6,56.6,55.9,57.6,55.9,61.2,56.9,56.4,57.1,56.3,57.1,57,55.7],"paint":[222.8,224.5,224.7,223.2,223,224.3,223.9,219.7,224.2,225.8,223.6,224.1,223.3,223.8,222.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.2,35.2,36,35.3,34.9,34.5,35.1,34.8,35.5,34.7,35.5,35.2,34.8,35.3,35.3],"script":[8,7.7,7.9,7.8,7.9,7.8,7.9,7.9,7.9,8,8,7.9,8,7.9,8],"paint":[26.3,26.4,27.1,26.5,25.9,25.7,26.2,25.9,26.5,25.7,26.5,26.3,25.9,26.4,26.3]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,9.9,10.5,10.8,10.1,10.3,9.8,10.2,10.5,10.3,10.3,10,10.7,10.8,10.9],"script":[8.3,8,8.2,8.8,7.9,8,7.9,8.2,8.8,8.2,8.4,8.1,8.3,8.8,8.7],"paint":[0.6,0.6,1.7,0.9,0.7,1.3,1,1.8,0.8,1.5,0.7,0.6,1.9,0.9,1.6]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6065082550048828]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7757692337036133]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8027944564819336]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7470893859863281]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.592768669128418]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[28.8,29.1,29.1,29,29.4,29.3,29.7,29.4,28.9,29.5,29.7,29.5,29.2,29.2,29.7],"script":[6.6,6.4,6.5,6.4,6.7,6.5,6.8,6.3,6.4,6.8,6.6,6.7,6.7,6.7,6.7],"paint":[21.6,22.2,22,22,22.1,22.3,22.3,22.6,21.9,22.2,22.6,22.2,22,21.9,22.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[33.3,33.4,33.3,33.6,33.5,33,33.6,33,32.5,33.6,32.7,32.9,33,32.4,33],"script":[9.1,9.4,9.5,9.3,9.2,9.3,9.3,9.3,9.3,9.2,9.3,9.2,9.3,9.2,9.2],"paint":[23.6,23.4,23.3,23.7,23.7,23.2,23.7,23.2,22.6,23.8,22.8,23.1,23.1,22.7,23.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.5,12.8,11,10.7,10.5,10.8,11.4,10.6,11.7,11.4,11.1,10.4,10.9,10.7],"script":[0.2,0.6,0.6,1.3,0.8,0.2,0.6,0.9,0.2,0.9,0.7,0.7,0.7,0.5,0.9],"paint":[8.7,10.2,11.3,8.2,8.8,8.7,8.9,9.3,8.8,9.7,9.7,8.4,8.5,9.4,8.3]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.2,2.7,2.4,3.2,2.7,1.8,2.6,2.3,2.1,2.5,2.3,1.8,2.3,2.3,2.3,1.6,2.4,2.3,2.5,2.3,2.1,2.1,2.3,2.4],"script":[0,0,0.5,0.5,0.9,0,0.2,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.4,0,0,0,0],"paint":[1.5,1.1,1.6,0.4,1.6,2.5,1,0.6,1.6,1.9,1.9,1.8,1.2,2.1,1.4,1.9,0.9,1.6,1.5,1.5,1.8,1.4,1.3,1.3,1.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[22.6,23.4,23.3,23.7,24.3,23.5,23.1,23.8,22.9,23.7,23.1,23.6,24.5,22.3,22.6],"script":[7.9,9,8.8,9.4,9.7,9.1,8.7,8.8,9,9.1,9.2,9.6,8.9,8.8,8.7],"paint":[12.4,13.1,12.9,13,12.4,11.1,12.2,13.6,11.5,12.3,11.7,11.8,13,11.8,11.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.9,15.9,16.2,15.3,15.6,16.2,16.5,16.2,16.3,17.1,17,15.2,15.6,16.1,16.1],"script":[4.9,5.2,5.1,4.8,4.8,5.2,5.2,5.3,5.3,5.4,5.4,4.8,4.9,5.2,5.2],"paint":[10,9.5,9.9,9.8,10.2,10.5,10.3,9.5,10.2,10.3,10.8,9.3,9.7,9.9,10]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[293.6,292.3,293.3,292,293.3,290.6,290.1,294.6,291.9,293.4,289.8,289.8,289.7,289.9,290.6],"script":[60.8,60.3,60.2,60.7,61.1,66.3,65.2,60.8,66.7,60.2,65.6,64.5,65.1,64.8,66.1],"paint":[225.1,224.5,225.4,223.8,224.6,216.6,217.2,226.1,217.6,225.5,216.5,217.4,216.9,217.5,216.7]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.8,36.7,37,36.3,36.9,36.6,36.6,37.3,38,36.8,36.9,36.7,37.1,37.6,36.7],"script":[8.8,8.8,8.8,8.9,9,8.7,8.7,8.8,9,9,9,8.8,9.1,8.8,8.9],"paint":[27,26.9,27.1,26.4,26.9,26.9,26.9,27.5,28,26.9,27,26.9,27,27.8,26.9]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.2,10.4,11,10.9,11,10.6,10.8,10.5,10.4,11.3,12,10.6,10.4,10.3,10.3],"script":[8.6,8.4,8.6,8.7,8.9,8.9,8.7,8.7,8.1,9,9.6,9,8.7,7.9,8.1],"paint":[0.8,1.2,0.4,0.3,0.6,0.3,0.9,0.7,1.1,1.1,1.2,1.1,1.1,1.4,1.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6718521118164062]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.846820831298828]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8653697967529297]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8487014770507812]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.640870094299316]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.6,28.1,28.3,28.6,28.1,28.5,28.2,27.9,28.2,29.7,28.3,28.5,28.7,28.2],"script":[5.5,5.8,5.5,5.5,5.8,5.4,5.8,5.5,5.8,5.8,5.7,5.7,5.4,5.8,5.5],"paint":[22.2,22.3,22,22.2,22.3,22.2,22.2,22.1,21.6,21.9,23.4,22,22.6,22.3,22.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.7,32.9,33.4,32,32.5,32.2,32.4,32.7,32.8,32.7,32.1,32.7,31.7,33.1],"script":[8.4,8.4,8.6,8.5,8,8.4,8.5,8.3,8.4,8.5,8.3,8.2,8.4,8.5,8.4],"paint":[23.6,23.7,23.8,24.4,23.4,23.5,23.1,23.5,23.8,23.7,23.8,23.2,23.7,22.7,24]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,13.6,13.2,13.8,14.6,12.5,14.1,14.1,12.1,14.6,14.1,12.2,13.3,13.8,13],"script":[1.5,1.8,1.5,1.8,1.6,1.3,1.6,1.8,1.1,1.5,2,1.5,2,1.7,1.5],"paint":[10.3,10.1,10.3,10.3,11.4,9.7,11.5,11.3,10,11.8,10.7,9.1,9.8,10.3,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.6,2.4,2.1,2.8,2.4,1.9,2.3,2.7,1.8,2.5,2.4,1.8,2.4,1.9,2.7,2.5,2.4,1.9,2.3,1.7,2.3,2.3,2.9,1.9],"script":[0,0,0,0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0],"paint":[1,1.3,1.5,1,1.6,2.3,1.1,1.4,1.2,1.1,1.5,2.1,1,2.2,1.7,2,2.3,1.4,1.7,2,1.6,1.1,2.1,2.7,1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"05_swap1k","values":{"total":[14,14.3,14.9,13.9,15.2,14.5,14.8,14.8,14,15.5,15.6,15,16.9,14.3,13.9],"script":[0.6,1.1,0.9,0.2,1.2,0.2,0.6,0.9,0.6,1.1,0.8,1,1.4,0.2,0.9],"paint":[12.2,11.9,12.7,12.6,12.6,12.6,13,12.3,12.2,13.2,13.4,12.8,14.2,12.8,12]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.3,10.6,10.4,11,10.6,10.4,10.7,10.8,10.9,10.4,11,10.5,11,10.3],"script":[0.3,0.1,0.2,0.1,0.1,0.1,0.1,0,0.1,0.2,0,0.1,0.1,0.1,0.1],"paint":[9.8,9.7,9.7,9.8,10.3,9.8,9.5,9.8,10.1,10.1,9.6,10.5,9.8,10,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"07_create10k","values":{"total":[293.4,292.8,293.6,293.9,292.5,292.2,293.7,296.8,294.5,291.8,295.1,293.2,293,292.1,293],"script":[62.1,58.9,62,60.5,58.4,60,61,62.7,60.8,57.1,60.9,59.1,60.6,58.1,61],"paint":[223,225.7,223.4,224.9,226,224,224.6,225.5,225.4,226.4,226.1,225.8,223.7,225.1,223.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33,33.1,33.8,33.3,34.4,32.8,34.2,33.9,33.6,33.4,33.7,33.3,34.1,33.1],"script":[6.4,6,6,6,6,6.4,5.8,6.2,6.3,6.1,6.1,6,6,6.4,6.1],"paint":[26.6,26,26.1,26.8,26.3,27,26,27,26.6,26.5,26.3,26.7,26.4,26.7,26.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.3,11.5,11.1,12.4,11.1,10.8,11.3,10.9,11.3,11.2,11.1,12.4,11.8,10.7,10.9],"script":[8.7,9.4,9.2,10.7,9.5,8.4,9.2,9.1,9.4,8.5,9,10.2,9.4,9.1,9.2],"paint":[1.3,1.4,0.8,0.2,0.6,1.3,1.4,0.9,1.7,1.8,0.9,1.1,0.7,1.1,0.2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6601476669311523]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.756502151489258]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7263011932373047]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8666229248046875]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.165102005004883]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"01_run1k","values":{"total":[27.5,32.4,33.2,33.4,32.5,33.9,27.2,34.4,33.3,28,34.1,32.6,32.7,27.9,34.7],"script":[4.9,5.1,5,4.8,4.7,4.8,4.8,5,5,4.9,5,4.9,4.9,4.8,5.1],"paint":[21.6,22,22.1,21.6,22.2,22.1,22.1,22,21.9,22.4,21.7,22,22,22.3,22.3]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"02_replace1k","values":{"total":[36.7,30.1,28.7,32.3,33.4,37.1,32.7,32,33.1,30.5,32.6,35.2,31.9,33.9,32],"script":[7.2,7,6.9,7,6.8,6.8,6.7,6.8,7,7.1,6.9,7.1,6.8,6.9,6.8],"paint":[23.4,21.9,21.5,21.5,21.8,21.5,21.5,21.7,21.6,21.5,21.6,21.8,21.7,21.6,21.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,12.4,30.1,12.8,11.7,12.7,28.7,12.3,12.9,12.1,13.7,11.9,30,12.6,12.2],"script":[3.5,2.7,3.4,2.6,2.2,2.7,2.3,2.4,2.2,2.4,2.6,2.3,2.7,2.2,2.3],"paint":[8,9.2,9.9,9.1,9.4,9.9,10.4,9.8,9.8,9.5,9.7,9.4,9.9,9.7,8.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,5,4.6,4.4,4.5,4.4,5.2,4.9,5.3,4.6,4.9,4.8,4.4,4.3,4.8,4.9,4.7,4.3,5.3,5.1,4.7,4.8,4.5,4.9,4.8],"script":[1.9,2.3,1.7,2.6,2.5,2.2,2.4,1.8,2.7,2.2,1.4,1.8,1.3,1.5,2.4,2.1,1.8,1.9,2.6,1.9,1.9,2.4,1.8,2.1,2.4],"paint":[1.9,2.5,2.2,1.6,1.2,1.9,2,2.9,2,1.6,2.6,1.8,2.3,2.4,2.3,2.4,2.8,2.3,1.8,2.2,2.7,2.2,2,2.7,1.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"05_swap1k","values":{"total":[16.5,32.7,31.5,32.7,32.4,30.6,32.4,31.9,33.3,15.1,31,32.7,30.9,31.3,32.2],"script":[2.5,2,1.1,2,2.1,1.7,1.9,1.7,3.2,1.7,2.3,1.9,2.6,1.4,2.4],"paint":[13.1,15.1,14.3,14.8,14.3,12.8,14.4,13.6,12.7,13.3,11.9,14.7,11.6,13.4,13.8]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,12.9,11.5,12.2,10.8,11.3,10.7,12.9,11.3,10.8,10.9,15.5,10.8,10.7,12],"script":[1.3,1.2,1.3,1.5,1.2,1.1,1.3,1,1.5,1.4,1.3,1.3,1.3,1.3,1.2],"paint":[8.9,9.2,8.9,8.9,9.4,9,9.1,9.5,9.6,9.2,9.5,9.2,9.5,9.1,9.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"07_create10k","values":{"total":[275.9,281.6,282,281.8,282.4,278,282.4,275.7,282,277.7,282.7,282.7,280.6,282.5,281.4],"script":[46.2,46,46.3,46.5,46.4,47,47.2,46.4,46,46.6,46.7,47.1,46.1,46.3,45.8],"paint":[225.8,226.4,225.2,226.3,224.6,227.1,225.9,225.3,226,227,225.6,224.5,225.7,225.8,227]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,41.3,39.5,41.4,39.9,40.4,38.9,40,42,41.1,40,39.4,41.5,41.2,41.6],"script":[4.9,4.9,4.6,5,4.8,4.9,4.7,4.7,4.8,4.9,4.8,4.5,5,4.9,4.9],"paint":[24.4,25.7,24.9,25.4,25.1,25,24.2,24.7,25.7,25.4,25.2,24.7,25.4,25.7,25.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[28,11.6,11.2,13.7,28.4,11.9,12,11.6,11.6,27,11.5,27,27.9,27.6,11.3],"script":[9.7,9.8,9,10.1,10.1,9.4,9.5,9.7,9.7,8.9,9.4,9.2,10,9.7,9.7],"paint":[1.7,1.6,1.7,1.3,2.1,2.3,1.7,1.7,1.4,1.6,0.3,1,1,1.2,1.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9010229110717773]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.196115493774414]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2064075469970703]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1509170532226562]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.751911163330078]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"01_run1k","values":{"total":[32.5,32,32.3,32.6,32.7,32.3,34.1,33.6,32.7,33.2,32.8,32.6,33.3,32.4,32.5],"script":[11.4,10.7,11.4,11.5,11.5,11.6,12.3,12.5,11.6,11.6,11.6,11.7,12.2,11.6,11.7],"paint":[20.5,20.7,20.4,20.5,20.6,20.1,21.3,20.6,20.6,21,20.6,20.3,20.5,20.3,20.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"02_replace1k","values":{"total":[35.5,36.2,36.6,36.3,36.8,36.6,36.4,38.2,36.8,36.2,37,36.8,37.2,36.8,37.2],"script":[14,14.4,15,14.9,14.9,14.9,14.8,15.1,15,14.9,15,15,15.1,15,15.1],"paint":[20.9,21.2,21,20.9,21.3,21.2,21,22.5,21.3,20.7,21.4,21.3,21.6,21.2,21.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.4,25.7,24.9,25.3,24.5,25,24.9,25.1,24.8,25.3,25.2,26.2,26.3,24.4,25.6],"script":[12.8,13.1,13.1,12.8,12.4,12.2,13.3,12.5,12.9,13.1,12.8,13.4,14.5,12.9,13.4],"paint":[10.1,9.7,9.6,10.1,10.6,11,10.1,11.3,10.5,10.6,10.6,10.4,10.6,9.1,10.1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"04_select1k","values":{"total":[7.1,7,6.6,6.8,7.6,7.4,7.3,8.5,7,7.2,7.4,7.4,7.9,7.2,8.1,7.2,7.9,7.9,7.4,7.5,7.3,7.4,7.4,7.8,7.4],"script":[4.7,4.8,4.2,4.2,4.7,4.6,4.9,5.9,4.4,4.7,5.4,4.6,5.2,4.2,5.1,4.5,5.2,5.1,5.4,4.4,5.1,5.4,5.2,5.5,4.9],"paint":[1.7,2.1,1.9,2.5,2.8,2.3,1.8,1.9,2.5,1.4,1.2,2.7,1.9,2.9,2.3,2,1,2.1,1.9,2.9,2.1,1.9,2.1,2.2,1.4]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"05_swap1k","values":{"total":[109.5,108.5,111.8,110,108.2,109.1,107.9,107.4,108.1,110.8,109.5,108.8,110.3,107.5,109],"script":[23.5,23.3,24.3,24.3,22,23.2,22.3,22.5,23.2,25.7,22.9,22.9,23.8,22.7,22.9],"paint":[84.1,83.4,85.1,83.7,83.7,84.3,83.6,83,81.2,81.5,84,84,83.9,83.6,83.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.7,17.4,17,16.7,17.1,16.8,17.4,16.4,16.9,16.6,17.3,17.2,17.3,16.9,16.6],"script":[5.8,6.2,6,5.7,6.1,5.7,6.1,5.7,5.8,5.6,5.7,5.7,6,5.6,5.8],"paint":[9.9,10.1,10.1,10.1,10,10.1,10.5,9.6,9.9,9.6,10.2,10.6,10.5,10.6,9.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"07_create10k","values":{"total":[433.6,439.4,436.3,434.6,438.7,436.1,433.1,437.8,442.1,440.3,439.7,442.8,434.5,445.7,438.7],"script":[201.5,210.7,207.6,205.4,205.5,207.4,203.2,202.9,204.9,210.2,209.6,210.3,205.5,212.1,207.4],"paint":[224.7,221.2,221.4,221.9,225.8,221,222.5,227.8,229.6,222.9,222.9,224.5,221.7,225.9,223.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.7,40.1,41,41.2,41.2,40.9,41.1,40.8,41.2,41.8,40.8,40.9,40.7,40.7,40.7],"script":[13.8,13.8,14.8,14.8,14.9,14.7,14.7,14.5,14.7,14.7,14.8,14.8,14.7,14.8,14.7],"paint":[25,25.3,25.3,25.5,25.4,25.3,25.5,25.3,25.6,26.2,25.1,25.2,25.2,25,25.1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.2,14.5,14.9,13.3,15.6,14.3,14.9,14.5,14.4,14.4,15.8,14.9,13.8,14.2,14.1],"script":[13.5,12.5,13.1,11.4,13.5,12.7,13.2,12.8,11.9,12.2,13.3,13,11.7,12.2,12],"paint":[0.3,0.9,1.1,1,1.1,1,1.1,0.3,1.2,1.1,1.1,1.1,1.2,0.5,0.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1480741500854492]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.062597274780273]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.648952484130859]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.860006332397461]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.791500091552734]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[145.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[159.1]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[23.1,23.6,23.4,23.9,23.6,23.6,23.7,23.5,23.4,23.2,23.6,23.8,23.7,23.4,23.7],"script":[1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.5,1.4,1.5],"paint":[21.3,21.8,21.6,22.1,21.8,21.8,21.8,21.6,21.6,21.4,21.7,22,21.9,21.5,21.9]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[25.8,26.1,26.2,26,26.1,26.3,28.9,26.2,27,26.3,29.1,26.8,26.4,26.2,27.2],"script":[3.3,3.6,3.3,3.3,3.4,3.4,3.5,3.5,3.6,3.3,3.6,3.8,3.5,3.5,3.6],"paint":[22.1,22.2,22.4,22.3,22.4,22.5,24.9,22.3,23,22.5,24.8,22.6,22.5,22.3,23.2]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,10.4,11.8,11.1,11.1,10.7,10.2,10.2,10.5,9.8,11.4,9.8,10.8,10.8,10.5],"script":[0.5,0.8,0.6,0.1,0.1,0.3,0.1,0.4,0.1,0.7,0.1,0.1,0.5,0.9,0.1],"paint":[9.6,8.6,9.9,10.8,9.8,9.3,8.6,8.6,9.3,7.8,10.3,8.6,9.2,8.8,8.9]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[2.9,1.7,3,2.4,2.2,2.3,2.1,2.1,2.7,2.7,2.1,1.9,2.5,2.4,2.4,2.6,3.3,2.5,2.9,3.6,2,2.9,3.1,2.8,2.8],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.1,0.6,0.1,0.3,0.1,0.5,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[2.3,1.5,2.8,1.5,1.3,1.8,1.6,1.3,2.5,1.4,1.1,1.1,1.7,2.2,1.2,2.2,2.1,2.3,2,2.3,1,2.4,2.9,1,2.1]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[13.4,12.6,12.3,12.9,13.1,13.2,12.6,12.3,13.2,13.1,12.7,13.2,14,12.5,13.1],"script":[0.1,0.1,0.1,0,0.1,0.6,0.1,0.4,0.9,0,0,0.2,0.1,0.1,0.1],"paint":[12.4,11.5,11.3,11.3,11.6,11.6,10.2,10.7,11.2,11.8,12,12,12.7,11.5,12.1]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.3,10.3,10.4,10.4,10.4,10.4,10.3,10.4,10.2,10.3,10.2,10.3,10.6,11.2],"script":[0.5,0.4,0.2,0.3,0.5,0.3,0.3,0.4,0.4,0.1,0.3,0.4,0.3,0.3,0.2],"paint":[9.7,9,9.5,9.6,8.7,9.4,9.4,8.9,9.4,9.5,9,9,9.6,9.4,10]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[243.9,244.7,239.9,241.8,241.7,248.1,244.2,239.4,242.4,244.7,241.2,242.5,239.9,240.4,246.2],"script":[15.3,15.5,15.3,15.3,15.4,15.2,15.1,15.2,15.5,15.2,15.3,15.3,15.2,15.4,15.2],"paint":[221.1,221.7,217.1,219.2,218.7,225.6,221.7,216.6,219.4,222.1,218.6,219.7,217.3,217.6,223.1]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.5,27,27.8,27.1,27.1,27.1,27,27.8,26.9,27.3,26.8,27,27.5,27,26.8],"script":[1.3,1.3,1.4,1.3,1.4,1.4,1.3,1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.4],"paint":[24.4,24.9,25.7,25,25,25,24.9,25.7,24.8,25.1,24.6,24.9,25.4,24.9,24.7]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,8.9,9.4,9.2,9,9.7,9.5,8.7,8.4,9.3,9.8,9.5,10.3,8.8,9],"script":[7.3,7,7.5,7.4,7.5,7.9,7.5,6.6,7.1,6.8,7.7,7.3,7.9,7.3,7],"paint":[0.5,1.6,1,1,0.2,1.5,0.7,1.6,0.3,1.6,1.2,2,1.4,0.7,1.6]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5553064346313477]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9264802932739258]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9393119812011719]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6158943176269531]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.013230323791504]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.2]}},{"framework":"vanillajs-3-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.5,23,23.3,23.1,23,23.1,23.1,23.1,23.2,23.1,23.3,22.9,22.7,23.5],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.2,1.3],"paint":[21.5,21.9,21.4,21.7,21.5,21.4,21.5,21.4,21.5,21.6,21.5,21.7,21.3,21.1,21.9]}},{"framework":"vanillajs-3-keyed","benchmark":"02_replace1k","values":{"total":[26,25.9,25.7,25.6,25.5,25.8,25.9,25.6,25.8,25.8,25.8,25.9,25.7,25.7,25.8],"script":[3.2,3.3,3.1,3.1,3.2,3.1,3.2,3.1,3.2,3.1,3.3,3.3,3.1,3.1,3.1],"paint":[22.4,22.2,22.2,22,21.9,22.3,22.3,22.1,22.3,22.4,22.2,22.2,22.2,22.2,22.3]}},{"framework":"vanillajs-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.1,9.1,10,9.4,9.5,10.9,10.2,9.4,10.2,10.2,9.6,9.9,9.7,10],"script":[0.1,0.1,0.1,0.1,0.3,0.1,1,0.4,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.1,8.3,8,8.6,7.9,8.8,9,8.7,8.2,8.9,8.5,8.5,8.8,7.8,8.7]}},{"framework":"vanillajs-3-keyed","benchmark":"04_select1k","values":{"total":[3,2.4,2.5,1.6,2.1,2.1,2.2,2.9,2.1,1.8,2.1,1.9,1.9,1.9,1.7,2,1.9,2.2,2.1,2.4,2.6,2.4,2.2,2.4,2.9],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0],"paint":[1.9,1.4,1.7,1.4,1.9,1.1,2,1.7,0.5,1,1.2,1.1,1.1,1.7,1.5,1.2,1.1,2,1.4,1,1.3,1.9,2,0.4,1.8]}},{"framework":"vanillajs-3-keyed","benchmark":"05_swap1k","values":{"total":[12.9,11.8,12.9,12.5,12.2,12.4,12.5,12.9,12.9,13.5,12.6,12.3,12.3,12.6,12.7],"script":[0,0,0,0,0,0,0,0,0.1,0.8,0,0.1,0,0.1,0.1],"paint":[10.6,11,12.3,11,11,10.8,11.3,11.4,11.9,11.2,11.3,10.6,11.2,11,10.8]}},{"framework":"vanillajs-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.3,10.2,10,10.2,10.1,11.1,10.1,10.3,10.1,10.1,10.3,10.1,11.3,10.1],"script":[0.1,0.3,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2],"paint":[9.5,8.9,9.6,8.8,9.6,9.1,10.3,9.4,9.6,9.4,9.5,9.6,9.2,10.3,9.3]}},{"framework":"vanillajs-3-keyed","benchmark":"07_create10k","values":{"total":[244.1,244,243.2,243.5,243.8,243.3,244,244.7,243.8,242.2,242.8,243.5,242.8,242.4,243.4],"script":[13.4,13.4,13.4,13,13.3,13.4,13.3,13.4,13.2,13.5,13.4,13.5,13.3,13.1,13],"paint":[223.4,223.6,222.6,223.4,223.5,222.8,223.5,224.1,223.5,221.6,222.4,223,222.3,222.2,223.3]}},{"framework":"vanillajs-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27,27,27,27.3,26.9,26.9,26.8,27.5,27,27.1,26.9,26.9,26.8,27.3],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[25.2,25,25,25,25.3,24.9,24.9,24.8,25.5,25,25.1,24.9,24.8,24.8,25.3]}},{"framework":"vanillajs-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,9,9.6,9.9,9.7,9.8,9.2,9.5,9.4,8.5,9.4,8.8,8.6,9.1,9.4],"script":[7.2,7,7.2,7.8,7.9,7.8,7.3,7.7,7.4,7.1,7.6,7,7.3,7,7],"paint":[1.1,0.3,1.3,1,1.5,1.1,1,1.5,0.8,0.7,0.5,0.2,0.2,1.2,2.2]}},{"framework":"vanillajs-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.45289039611816406]}},{"framework":"vanillajs-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.785104751586914]}},{"framework":"vanillajs-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.802682876586914]}},{"framework":"vanillajs-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5789070129394531]}},{"framework":"vanillajs-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.472906112670898]}},{"framework":"vanillajs-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.3]}},{"framework":"vanillajs-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"01_run1k","values":{"total":[23.2,22.8,23.1,23.2,23.2,23.8,23.5,23.9,23.3,23.1,23.2,22.9,23,23.2,23],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5],"paint":[21.3,20.9,21.3,21.4,21.3,21.9,21.7,22,21.4,21.3,21.3,21.1,21.2,21.3,21.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.2,25.4,26,25.9,26.3,25.9,26,25.8,26,26.3,26,26,25.9,25.7,25.9],"script":[3.6,3.3,3.6,3.6,3.7,3.4,3.6,3.5,3.5,3.6,3.4,3.5,3.4,3.4,3.5],"paint":[22.2,21.7,22,21.9,22.2,22.1,22,22,22.1,22.3,22.2,22.1,22.2,21.9,22]}},{"framework":"vanillajs-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.8,10.4,10.1,10,9.3,10.9,10.2,10.6,9.8,10.6,9.9,10,10.3,9.9,9.8],"script":[0.1,0.1,0.9,0.7,0.6,0.5,0.9,0.1,0.1,0.9,0.1,0.4,0.9,0.1,0.1],"paint":[9.1,9.2,8.3,8,7.4,9.6,8.3,9.6,8.9,7.9,8.9,8.7,8.8,8.7,8.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"04_select1k","values":{"total":[2,1.9,2.1,2,2,2.4,2.5,2.3,2.1,2.6,1.6,2.3,2.4,1.2,1.7,2.3,1.8,2.3,2.7,2.5,2,2.6,1.7,2,2.1],"script":[0,0,0,0,0,0,0.7,0,0.5,0.5,0,0,0,0,0,0,0,0.7,0.9,0.7,0,0,0.1,0.2,0],"paint":[1.2,1,2,1.1,1.9,1.7,1.7,2.2,1.1,1.6,0.7,1.6,0.8,1.1,0.8,1.8,0.6,1.5,1.3,1.6,1.8,2.5,1.5,1.2,1.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"05_swap1k","values":{"total":[13,12.7,13.2,12.6,12.2,12.5,12.2,13.5,13.5,12.9,12.2,12.5,13.6,13.3,12.4],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0.1,0.3,0.1,0.9,1,0.5],"paint":[11.9,11.3,11.8,11.3,10.8,11.5,10.9,11.8,11.4,11.6,10.2,11.3,12,11.1,11]}},{"framework":"vanillajs-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,9.9,9.8,10.2,10.1,10,9.8,10.1,10.2,10.4,10.1,10.1,9.8,10.4,10],"script":[0.2,0,0,0.2,0,0,0,0,0,0,0,0.3,0,0.1,0.2],"paint":[9.4,9.1,9.3,9.3,9.5,9.5,9.3,9.7,9.6,9.7,9.5,9,9.1,9.9,9.3]}},{"framework":"vanillajs-lite-keyed","benchmark":"07_create10k","values":{"total":[238,238.4,238,237,238,239.2,239,237.3,237.9,237.8,237.3,237.4,237.2,238.2,238.7],"script":[14.1,14.4,14.3,14.2,13.8,14.6,14.2,14.3,14.1,14.2,14.2,14.3,14.3,14.3,14.2],"paint":[216.5,216.7,216.3,215.4,217,217.4,217.6,215.5,216.6,216.3,215.4,215.8,215.6,216.5,217.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,27.2,27,27,27.2,27,27.3,27.3,26.9,27.1,26.9,26.9,27.3,27.2,27.1],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.5,1.4],"paint":[24.6,25,24.8,24.8,25,24.8,25.1,25.1,24.6,24.9,24.7,24.8,25.1,25,24.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,8.9,8.8,8.3,9,8.4,9.1,9.3,8.9,9,9.7,9.6,9,8.8,9.4],"script":[7.5,7.5,6.3,7.2,7.6,7,6.9,7,7.2,7,7.7,7.6,6.7,7.7,7.3],"paint":[2,0.4,1.6,0.9,0.2,0.7,0.7,1.3,0.7,1.1,0.7,1,0.8,0.2,1.1]}},{"framework":"vanillajs-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5253086090087891]}},{"framework":"vanillajs-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7548255920410156]}},{"framework":"vanillajs-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.747751235961914]}},{"framework":"vanillajs-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6203269958496094]}},{"framework":"vanillajs-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.094637870788574]}},{"framework":"vanillajs-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.5]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"01_run1k","values":{"total":[25.7,26.1,26.4,26.3,26.3,25.8,26.1,26,26.3,26.7,25.8,25.9,26.3,26.3,25.9],"script":[4,4,4.2,4.1,4.1,4,4,4.1,4.1,4.2,4,4,4,4.1,4],"paint":[21.3,21.8,21.7,21.8,21.8,21.4,21.7,21.5,21.8,22.1,21.4,21.4,22,21.8,21.5]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"02_replace1k","values":{"total":[29.1,29.8,29.6,29.2,29.4,30.1,28.8,29.2,29.6,29.1,29.6,29.3,29.2,29.7,29.2],"script":[6.4,6.7,6.5,6.6,6.7,6.7,6.4,6.5,6.5,6.7,6.6,6.5,6.5,6.6,6.2],"paint":[22.1,22.6,22.5,22,22.1,22.8,21.8,22.1,22.4,21.8,22.4,22.3,22.1,22.5,22.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.6,11.2,11,10.7,11.1,10.9,11.7,10.6,12,11.7,11.6,11.3,10.6,10.7],"script":[1,1.4,1.1,0.9,1,1.4,0.8,0.6,0.6,1.9,0.9,0.9,1.4,0.6,0.7],"paint":[8.3,9.2,9.3,8.9,8.8,8.7,8.8,9.4,9.1,9,9.3,9.7,8.6,9.3,8.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"04_select1k","values":{"total":[5.1,2.6,2.5,2.6,2.4,2.5,2.7,2.3,3,2.9,1.7,2.8,1.9,1.9,1.7,2.2,2.1,2.5,2.4,2.7,2.6,2.6,4.1,1.7,2.4],"script":[0.1,0.5,0.1,0.3,0.1,0.1,1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.8,0.8,0.6,0.1,0.6,0.1,0.1],"paint":[1.5,1.5,1.3,2.2,2.2,1.9,1.6,1.3,1.6,2.7,0.7,1.5,1.7,1.7,0.7,2,1.1,1.5,1,0.5,1.5,1.7,2.1,0.7,2.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.6,12.1,13.6,12.8,12.7,13.3,13.5,13,13.2,12.9,12.2,12.9,12.3,12.5],"script":[0.1,0.9,0.3,0.1,0.1,1,0.1,0,0.1,0.8,0.1,0.1,0.1,0.1,0.2],"paint":[12.1,11.5,10.6,12.8,11.1,9.5,11.3,11.9,12.3,10.9,11.7,11.3,11.6,10.8,10.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.2,10.5,10.2,11.5,10.1,10.6,10.1,10.2,10.2,10.2,10.4,10.2,11.1,10.1],"script":[0.3,0.1,0.2,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.3,0.3,0.1,0.1,0.1],"paint":[9.2,9.8,9.8,9.5,10.7,9,9.6,9.5,9.5,9.5,9,9.5,9.2,10,9.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"07_create10k","values":{"total":[259.2,258.5,262.1,258.9,258.6,260.5,258.2,259.3,257.4,262.1,259.3,258.3,258.6,258.9,257.5],"script":[42.2,41.5,45.3,42.1,41.6,43.3,41.7,41.8,41.4,41.6,41.8,41,41.2,41.9,41.7],"paint":[209.8,209.8,209.7,209.7,209.8,210,209.3,210.3,208.8,212.8,210.1,210.2,210.1,210,208.7]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,29.6,30.2,29.9,30.6,30,30,30,30.1,30.1,30.2,30.4,29.7,30.2,30.1],"script":[3.6,3.7,3.7,3.5,3.8,3.6,3.8,3.7,3.8,3.7,3.6,3.6,3.4,3.7,3.5],"paint":[25.7,25.2,25.7,25.6,26,25.7,25.5,25.6,25.5,25.5,25.8,26,25.5,25.8,25.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.1,9.8,9.7,9.4,10.6,9.4,10.1,9.3,9.2,10,9.5,9,9.3,10.5],"script":[7.9,7.4,8.1,7.9,6.9,8.7,7,7.6,7.9,7.6,7.6,7.5,7.6,7.7,7.9],"paint":[1,1,0.3,0.7,1.4,1.7,1,1.3,0.2,0.2,1.3,1.1,0.6,1,1.7]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5794839859008789]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8852968215942383]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8938894271850586]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[15.96817398071289]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.37497615814209]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"01_run1k","values":{"total":[24.6,25.2,24.9,25,24.9,25.1,24.5,24.9,24.3,24.8,24.9,25.1,25.1,24.6,24.9],"script":[2.7,2.7,2.7,2.7,2.7,2.8,2.7,2.7,2.6,2.7,2.7,2.8,2.8,2.7,2.7],"paint":[21.6,22.1,21.8,21.9,21.8,21.9,21.5,21.8,21.3,21.7,21.8,21.9,21.9,21.5,21.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28,27.9,27.9,28,28.1,27.8,27.7,27.8,27.9,27.8,28.5,28.3,28.3,27.9],"script":[4.6,4.6,4.8,4.6,4.6,4.7,4.5,4.6,4.6,4.5,4.6,4.7,4.8,4.6,4.9],"paint":[23.4,23.1,22.7,22.9,22.9,22.9,22.8,22.6,22.7,23,22.8,23.3,23,23.3,22.7]}},{"framework":"vanillajs-wc-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,10.7,10.5,11.1,10.9,10.3,11.7,11.7,11.2,10.6,11,11.1,10.7,10.3,10.4],"script":[0.5,0.1,0.1,0.9,0.9,0.5,0.7,0.8,0.7,0.5,0.8,1,0.6,0.5,0.1],"paint":[10.1,9.5,9,8.8,8.2,8.9,9.4,9.6,9.3,9.1,9.1,8.7,9.1,8.8,8.7]}},{"framework":"vanillajs-wc-keyed","benchmark":"04_select1k","values":{"total":[3.7,2.4,2,2.3,2.2,2.8,2,2.6,2.1,1.9,2.4,2.4,1.9,2.7,2.9,2.3,2.6,3.1,2.6,2.5,2.7,2.5,1.7,2.7,2],"script":[0,0,0,0,0,0,0.2,0,0,0,0,0,0,0.6,0,0,0.7,0.9,0,0,0.7,0,0,0,0],"paint":[1.4,2.2,1.1,2,1.7,2.6,1.3,1.4,1.2,1.8,1.3,1.8,1.7,1.6,2.7,1.4,1.8,2.1,2.2,2,1.9,2.2,1.5,0.9,0.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.9,11.8,12.7,12.3,13.4,12.3,12.5,12.9,14,13,12.3,13.8,13.6,12.8],"script":[0.1,0.1,0,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.7,0.1],"paint":[11.2,11.9,10.8,11.1,11,12.1,11.1,11.4,11.5,13,10.9,10.8,12.2,11.7,12.1]}},{"framework":"vanillajs-wc-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.2,10.3,11,10.4,10.3,9.9,10.1,10.3,10.3,10.4,10.2,10.3,10.9,11],"script":[0.2,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.3],"paint":[9.6,9.6,9.6,9.8,9.2,9.5,9.2,9.4,9.5,9.4,9.8,9.2,9.9,10.2,9.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"07_create10k","values":{"total":[269,269.9,273.6,271.1,271.5,270.6,270.4,271.1,271.4,270.7,270.2,269.5,272.2,268.9,269.2],"script":[33.1,33.9,33.8,34.5,33.6,33.8,33.2,33.2,33.5,34.1,33.9,33.2,33.9,33.6,33.4],"paint":[228,228.4,231.8,229,230.3,229.3,229.6,230.5,230.4,229,228.8,228.8,230.9,227.6,228.2]}},{"framework":"vanillajs-wc-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.9,28.7,28.4,28.7,28.7,28.5,28.1,29,28.5,28.8,28.9,28.5,28.6,29,28.6],"script":[2.6,2.6,2.6,2.6,2.6,2.7,2.5,2.6,2.7,2.6,2.6,2.6,2.7,2.6,2.6],"paint":[25.5,25.4,25,25.3,25.4,25,24.9,25.6,25,25.4,25.5,25.2,25.2,25.7,25.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.4,9.5,10.4,8.5,9.1,8.9,9.6,9.4,9.4,9.7,9.5,9.5,9.7,8.7,9.1],"script":[7.2,7.1,8,7.2,7.1,7.2,7.5,7.8,7.6,8.3,7.5,7.6,7.6,7.2,7.3],"paint":[0.4,1.2,1.1,0.3,0.7,0.3,0.9,0.8,1,0.2,1.1,1.1,1,0.6,0.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5628242492675781]}},{"framework":"vanillajs-wc-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.051118850708008]}},{"framework":"vanillajs-wc-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9887714385986328]}},{"framework":"vanillajs-wc-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6641139984130859]}},{"framework":"vanillajs-wc-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.017549514770508]}},{"framework":"vanillajs-wc-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[31.6,31.2,31.3,31.3,31.9,30.7,31.3,31.4,31.8,31.5,30.6,31,31.3,30.7,30.6],"script":[8.1,8,7.9,7.9,8.2,7.6,8,7.9,7.9,8,7.6,7.8,8,7.7,7.8],"paint":[23,22.7,22.8,22.8,23.2,22.6,22.7,23,23.3,23,22.5,22.7,22.7,22.4,22.3]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[33.7,33.6,34.6,34.2,34,34.1,34.4,34.3,34.7,33.2,33.7,33.6,33.4,34,34.1],"script":[10.5,10,10.7,10.5,10.4,10.6,10.7,10.5,10.9,10.1,10.1,10.3,10.5,10.5,10.5],"paint":[22.6,23,23.3,23.1,23,22.9,23.2,23.2,23.2,22.4,23,22.8,22.4,22.9,23.1]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.7,30.3,31.6,30.6,30.5,32.4,30.8,30.4,14.6,29.9,31.5,30.9,29.8,30.6,30.6],"script":[1.6,0.9,1.3,1.8,0.6,1.5,1.2,1.4,1.5,0.8,1.2,0.3,1.3,2.5,1.1],"paint":[13.5,13,11.1,13.1,13,13.6,13.3,12.8,11,13.1,13.8,13.5,12.6,12.6,12.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[11.1,7.9,6.9,8,8.3,10.3,4.3,8.7,12.8,8.5,7,9.1,8.7,4.1,7.6,7.2,8.5,10.2,9.6,6,7.6,7.1,12.1,6.5,8.7],"script":[0.1,0.1,0.6,0.1,1,0.5,0.1,1.7,0.1,1,0.1,0.5,0.8,0.6,0.1,0.6,0.1,0.8,1.1,1.7,0.8,0.9,0.6,0.9,0.8],"paint":[2.3,3.2,2.8,3.2,2.8,2.4,1.7,3.3,2.5,4.1,2.5,1.8,3,2.2,2.8,2.2,2.8,2.1,2.2,4,3.2,2.7,2.5,3.4,2.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[13.5,12.7,12.6,12.9,12.8,12.8,14.4,12.8,13.9,14.4,13.2,13.5,13.6,13.2,12.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.7,0.1,0.1,0.1,0.1],"paint":[11.7,11.4,11,11.7,11.8,11.1,13.3,10.7,12.1,13.2,11.4,11.8,12.3,12,11.3]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.7,14.2,15.6,12.5,12.3,15.2,14.2,15.2,14,15.6,13.3,13.3,12.5,16.4,14.3],"script":[0.4,0.1,0.1,0.2,0.1,0.1,0.4,0.4,0.2,0.1,0.1,0.1,0.1,0.2,0.1],"paint":[11.2,11,10.7,11.2,11.3,11.2,11.5,11.3,10.9,11.2,11,11.5,11.5,11.1,11.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[308.4,305.6,305.7,307.4,308.7,309.6,308.8,307.5,306.5,307.3,309.4,308.6,308.3,310.6,308.1],"script":[82.1,82.6,82.7,82.5,83.2,84,83.5,82.7,82.6,82.3,83.3,83.5,82.2,82.5,82.2],"paint":[218.5,215.5,215.7,217.4,218,218.2,217.3,217.4,216.4,217.3,218.1,217.7,218.6,220.6,218.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,35.3,35.6,35.2,34.7,35.1,36.3,35.6,35.6,36.2,34.5,36.5,36.2,35.5,36.1],"script":[8.2,8.2,8.2,8,7.8,8.3,8.1,8.2,8.2,8.3,7.4,8.3,8.3,8.1,8.3],"paint":[26.3,26.2,26.5,26.4,26,25.9,27.3,26.4,26.5,26.8,26.1,27.2,27,26.4,26.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.1,10,9.9,10.4,10.6,10.5,10.1,10.1,10.3,10.7,10.5,9.7,9.3,9.9],"script":[8.5,8.3,7.9,7.7,8.6,8.5,8.6,8.2,8.3,7.9,8.7,8.1,7.7,7.4,8.1],"paint":[1.1,1,1.8,1.1,0.9,0.3,0.6,0.3,0.7,1.8,1.1,1.6,1.7,0.2,0.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5455751419067383]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3677263259887695]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4113292694091797]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6566858291625977]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.451854705810547]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.7]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.2,28.6,28.4,27.9,28,28.5,28.1,28.3,28.2,28.7,28.1,28.9,29.3,28.7],"script":[6.2,6.4,6.4,6.3,6.2,6,6.5,6.1,6.2,6.4,6.5,6.1,6.8,6.8,6.4],"paint":[21.4,21.3,21.6,21.6,21.2,21.4,21.6,21.5,21.6,21.2,21.7,21.4,21.6,22,21.8]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.1,35.2,35,35.3,35.1,35.2,35,35.3,34.9,35,35.3,36,35.2,35.4],"script":[12,11.6,12.1,11.7,12,11.9,11.9,12.1,12,11.6,11.7,12.1,12.1,11.8,11.9],"paint":[22.9,23,22.5,22.7,22.7,22.6,22.8,22.3,22.8,22.6,22.7,22.6,23.3,22.9,23]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.1,14,14.3,15.3,13.6,14.7,14.7,13.7,14.6,13.6,13.2,13.9,13.7,13.7],"script":[2.8,2.7,3,2.2,2.7,2.8,3.2,3.2,2.5,3.3,2.4,2.5,3.1,2.5,3.3],"paint":[10.1,9.4,9.6,11.2,11.1,8.9,10.8,10.3,10,9.9,10.2,9.8,9.4,10.2,8.5]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,2.9,3.4,3.5,5,6.8,3.4,3.3,2.9,3.2,3.1,2.5,2.8,6.8,3,3,3.3,3.3,2.5,3.9,3.5,3.7,4,2.8],"script":[1.1,0.9,0.9,0.9,1.6,1.2,1.1,1.4,1.2,1,1.1,1,0.6,0.7,0.9,1.4,1.2,1,1.4,0.6,1,1.5,0.9,1.8,0.9],"paint":[1.6,1.9,1.8,1.5,1.5,1.6,1.6,1.1,1.6,1.1,1.9,1.5,1.1,1.6,1.9,1.5,1.2,2.1,1.8,1.1,2.7,1.9,2.6,2,1.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.1,14.5,14.5,13.7,15.3,14.2,14.1,14.4,15,14.7,14.8,14.8,14.3,14.4],"script":[1.7,1.8,1.5,1.3,1.5,1.8,1.7,1.7,1.9,2.2,1.7,2.1,1.4,1.3,1.6],"paint":[12.4,11.4,12,12.3,11.2,12.3,11.5,11,10.7,11.4,11.7,11.4,12.1,12.3,11.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.3,10.9,11.2,11,10.9,11.4,11,10.9,11,11.1,11.5,11.1,11.3],"script":[1.1,0.9,0.9,0.9,0.7,0.9,0.7,0.7,0.7,0.9,1.1,0.8,1,0.9,0.9],"paint":[9.4,9.7,10,9.4,9.8,9.6,9.6,10.3,9.5,9.5,9.4,9.7,9.5,9.5,9.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[290.8,293,294.2,294.8,294.2,293.7,296.7,294.5,293.5,292.6,295,295.9,294.3,292.3,293.7],"script":[68.6,71.4,71.7,71.9,72.7,72,72.9,70.1,72.1,69.6,71.2,71.2,72.9,70.5,72.1],"paint":[215,214.5,215,215.7,214.3,214.6,216.3,217.1,214.1,215.7,216.3,217.2,214.3,214.5,214.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.2,33.5,34.4,33.3,33.6,34.8,34.4,34.6,33.3,34.5,33.7,34.9,34.7,34.7,34.9],"script":[7.5,7.6,7.7,7.6,7.6,8.3,8,8.1,7.6,7.7,7.6,8.2,7.8,8.1,8.1],"paint":[24.8,25,25.7,24.8,25.1,25.7,25.5,25.6,24.8,25.8,25.2,25.8,25.9,25.7,25.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10,9.9,10.2,9.9,10.6,11.1,9.8,10.4,10,10.6,9.9,10.4,9.6,10.1],"script":[7.8,8.1,8.1,8.5,7.9,8.8,8.5,7.5,8,8.1,8.3,7.8,8.4,8.1,8.3],"paint":[0.6,1.6,1,1,1.1,1,1.6,2.1,1.8,1.2,0.9,1.8,0.9,0.6,1.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6544361114501953]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.32164192199707]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.416909217834473]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9748268127441406]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.38222885131836]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[39.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.3,28,27.9,27.9,28,27.6,27.6,28.1,27.4,28.4,27.8,27.5,28,27.3,27.3],"script":[5.9,6.3,6.2,6,6.2,6.2,6.2,6.5,5.9,6.3,5.9,6.1,6.3,5.9,5.9],"paint":[20.9,21.1,21.2,21.4,21.2,20.8,20.9,21.1,20.9,21.6,21.3,20.9,21.2,20.9,20.9]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[31.1,30.4,30.9,30.4,31.3,31.3,31.1,31.1,31.7,31.4,31.5,31.2,30.5,30.8,30.4],"script":[8.1,7.9,8,7.9,8.2,8.1,8,7.9,8.2,8.2,8.2,8,8.1,7.7,7.8],"paint":[22.4,21.9,22.4,22,22.5,22.6,22.5,22.6,22.9,22.7,22.7,22.6,21.8,22.5,22]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,13.3,12.7,13.3,13.7,12.6,13.4,14,13.6,12.9,12.5,12.3,13.3,13.2,12.5],"script":[2.9,2.2,1.8,2.6,2.7,2.1,2.5,2.4,2.9,2.1,1.8,2.2,2.3,2.2,2.1],"paint":[9.2,9.9,9.6,8.8,10.2,9.3,9.1,10.6,10,9.8,9.9,8.8,10.1,10,9.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.2,3.3,2.8,3,3.2,3.7,3.3,3.6,3.7,4,2.9,3.6,3.2,3.4,3.3,3.7,3.1,3.1,2.8,3.7,3.7,2.9,3.2,3.4,3.8],"script":[1,0.2,1,0.8,1,0.9,0.6,1.2,1.2,1.6,0.9,0.9,0.9,1.2,1.1,1.7,0.7,0.9,0.7,1.9,1.2,1.1,0.8,1.2,1.2],"paint":[1.3,2.9,1.2,1.3,1.3,0.6,1.7,1.5,1.4,2.2,1.1,1,1.4,2.1,2.1,1.8,1.1,0.9,2,1.7,1.6,1.2,1.3,1.1,1.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[17.1,14.7,14.7,13.8,14.3,14.9,15.4,14.4,14.6,15,15.1,14.6,14.8,14.6,13.8],"script":[1.8,1,1.7,1.2,1.6,1.5,1.6,0.7,1.5,1.9,1.7,1.6,1.6,1.5,1.2],"paint":[14.4,12.5,12,11.5,11.8,11.3,12.8,10.9,11.9,11.9,12,12.3,12.2,11.7,11.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.7,13.3,12.8,13.1,12.6,12.3,12.8,12.7,12.7,13,12.8,12.9,13,12.7],"script":[2.4,2.3,2.3,2.4,2.4,2.4,2,2.4,2.3,2.4,2.4,2.4,2.2,2.4,2.4],"paint":[8.9,9.4,10.1,9.7,10.2,9.6,9.7,9.5,9.6,9.7,10,9.7,9.9,9.6,9.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[287.2,287.5,287.2,287,286.9,287.1,287.9,290.3,286.9,287.4,289.1,289.5,291.6,287.7,288.2],"script":[60.9,61.3,62.7,61.4,61.8,61,61.9,62.5,61.4,60.6,63.1,62.4,62.1,61.3,62.3],"paint":[219.1,218.7,217.2,217.8,217.5,218.9,218.6,220.5,218.1,219.7,218.8,219.8,222,218.9,218.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.2,32.7,32,31.7,32.4,32.1,32.3,32.9,32.3,32.4,33.1,32.4,32.2,31.9,31.7],"script":[6.1,5.9,5.9,6.1,6,6.2,6,6.2,6.1,6.1,6.1,6,6.2,5.9,5.9],"paint":[25.1,25.8,25.2,24.7,25.5,25,25.4,25.8,25.3,25.4,26,25.5,25.1,25.1,24.9]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,12.1,12.6,11.5,12.3,12.1,12.1,11.9,12.7,14.3,13.4,11.6,12.4,11.6,12.6],"script":[9.8,9.6,10,10,10.2,10.1,10.1,9.8,10.8,11.8,10.1,9.4,10.2,9.4,9.9],"paint":[1.4,1.5,1.6,0.7,1.4,0.6,1.8,0.9,1,1.1,2.1,0.6,2,0.5,1.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.862767219543457]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8244333267211914]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.879359245300293]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.175455093383789]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.670458793640137]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[82.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[29.8,28.8,28.8,29.6,28.6,29.4,28.8,28.6,28.8,28.7,28.7,29.2,28.7,29.8,29],"script":[6.4,6.4,6.3,6.7,6.4,6.5,6.5,6.2,6.4,6.3,6.4,6.7,6.5,6.5,6.5],"paint":[22.8,21.9,21.9,22.3,21.7,22.3,21.8,21.9,21.9,21.9,21.8,22,21.7,22.7,21.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32,32.3,32,32.4,32.6,31.7,32.3,33.3,32.1,31.5,32.8,33.1,32,32.3],"script":[9,9.2,9.4,9.1,9.3,9.6,9.1,9.3,9.6,9.3,9,10,9.6,9.1,9.3],"paint":[22.3,22.2,22.4,22.3,22.5,22.5,22.1,22.4,23.1,22.2,22,22.3,23,22.3,22.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.5,20.4,21.2,21.2,19.8,21.2,19.8,19.2,21.3,19.6,21.4,20,19.5,20.7,19.8],"script":[8.3,8.8,8.6,8.9,8.3,9.9,8,7.7,8.7,8,8.9,8.9,8,8.6,8.4],"paint":[9.7,10.2,10.8,9.9,9.4,9.4,10,9.9,10.2,10,10.8,9.7,10.1,10.1,8.7]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[12.2,12.2,12.5,11.9,11.4,12.4,12.9,12.4,12.2,11.7,11.9,11.6,12.4,11.7,11.6,12.2,11.7,12.4,12,12.2,12.1,12.6,11.5,12.4,12.7],"script":[7.8,8.9,9.3,8.4,8.4,9.1,9.6,9.4,8.7,8.3,8.9,8.9,9.4,8.6,8.2,8.5,8.8,8.8,8.6,9.4,8.9,9.4,8.6,8.8,9.6],"paint":[2.6,1.9,2.1,1.5,1.3,2.2,1.5,1.2,1.3,2.2,1.2,1.3,1.2,2.3,1.4,2.9,1.3,2.7,2.4,1.2,1.5,2.2,1.5,2,1.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[24.1,23,24,23.7,22.5,23.9,22.1,25.1,24.2,24.5,22.5,22.8,23.9,22.7,22.2],"script":[9.2,8.4,9,9.2,8.7,9.4,7.4,9.1,8.7,8.3,8.1,8.2,8.6,7.9,7.7],"paint":[12.8,12.8,13.6,12,11.8,12,11.8,13.2,13.7,14,12.5,12.9,13.9,13.5,13.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.5,15.7,15.7,15.6,15.9,15.4,15,16.3,15.5,16.1,15.6,15.8,15.2,15.6,16.2],"script":[4.5,4.9,4.9,4.8,4.9,4.8,4.5,5.1,4.8,5.2,4.8,4.9,4.7,4.9,5.2],"paint":[9.7,10.3,10,10.1,10.4,9.5,9.6,10.1,10.2,9.9,10.2,10.2,9.8,9.9,9.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[292,291.3,291.7,289.7,291,289.3,289.3,290.1,291.3,293,291.2,290.3,290.8,292.9,291],"script":[67.4,67.1,66.3,67,67.8,66.7,66.7,66.9,66.5,66.9,68.5,67,67,68.4,65.9],"paint":[217.3,217.1,218.2,215.5,216.2,215.5,215.4,216,217.6,218.4,215.3,216.2,216.7,217.2,217.7]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,36.1,37,37.6,36.2,36.4,36.5,36.5,36.1,37.6,37.3,36.6,36.5,36.7,37.2],"script":[9.4,9.1,9.3,9.5,9.1,9.1,9.3,9.3,9.1,9.5,9.6,9.2,9.1,9.1,9.1],"paint":[26.2,26,26.7,27.1,26.2,26.4,26.2,26.2,26.1,27.1,26.7,26.5,26.5,26.6,27.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.3,13.5,13.7,14.1,14.1,13.9,13.6,14.6,14,14.4,13.4,13.8,13,14.4,13.1],"script":[12.7,11.2,11.7,12.1,12.2,11.4,11.3,12.1,12.2,12.8,11.6,12,10.8,12.4,11],"paint":[2.1,1.3,0.6,0.9,0.8,1.5,2,0.9,1.2,0.5,0.5,0.3,1.2,1,1.2]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8601751327514648]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.239572525024414]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.276878356933594]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2240142822265625]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.451170921325684]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[62.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[81.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.7,24.5,24.4,24.6,24.7,24.5,24.3,24.7,24.7,24.4,24.6,24.6,24.6,24.2],"script":[3,2.9,3.1,3,3,3,3,3,2.9,3.1,3,3,3,3,2.9],"paint":[20.9,21.4,21.1,21.1,21.3,21.3,21.1,20.9,21.4,21.3,21.1,21.2,21.2,21.2,20.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[28.6,28.1,27.6,27.9,28,28.4,28.6,28.1,27.9,27.9,27.8,27.7,27.8,27.9,28.2],"script":[5.3,5.4,5.3,5.2,5.2,5.3,5.3,5.3,5.3,5.1,5.3,5.4,5.1,5.2,5.3],"paint":[22.8,22.2,21.8,22.2,22.2,22.6,22.8,22.2,22.1,22.2,21.9,21.8,22.1,22.2,22.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,10.9,10.9,11.6,13.4,11.3,10.9,11.5,11.3,11.7,11.3,11.3,10.8,11.5,11.3],"script":[1.5,0.9,1,1.1,0.9,1.2,0.9,1,1,1,1.2,1.1,1.1,1.2,1.2],"paint":[8.8,8.5,8.8,9.8,10.6,8.8,8.7,9.7,9.4,8.5,9.2,7.9,8.8,8.4,8.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,2,2.1,2.4,1.5,2.5,2.5,2.8,2.2,2.5,1.7,2.3,2.4,2.8,2.5,2.7,2,2.6,2.3,2.2,2.6,2.6,2.5,2.4],"script":[0.1,0.8,0.1,0.2,0.1,0.1,0.1,0.5,0.8,0.1,0.4,0.1,0.1,0.1,0.8,0.7,0.8,0.3,0.5,0.1,0.1,0.5,0.1,0.6,0.1],"paint":[1.8,1.8,1.1,1.1,1.4,1.3,1.6,1.5,1.9,1.3,2,0.7,1.1,2.2,1.9,1.6,1.8,1.6,1.4,1.4,1.4,1.5,2,1.7,1.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14,12.9,13.8,13,13.4,13.4,12.6,13.4,14.2,14,14.1,13.5,13.7,13.3,13.5],"script":[1.2,0.7,1.1,0.2,0.7,1.3,0.2,0.9,1.5,0.7,1.3,0.5,0.7,0.2,1.1],"paint":[11.9,11.2,11.9,11.9,11.5,11,10.4,11.7,11.4,12.6,11.8,11.7,11.3,11.9,10.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.3,10.4,10.6,10.9,10.3,10.4,10.6,10.6,10.5,10.4,10.5,10.3,10.7,10.3],"script":[0.5,0.5,0.5,0.4,0.5,0.5,0.5,0.5,0.3,0.4,0.5,0.3,0.4,0.5,0.2],"paint":[9.7,9.2,8.9,9.5,9.7,9.5,9.2,9.3,9.7,9.7,9,9.2,8.7,9.5,9.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[263.7,263,263.4,262.9,263.9,263.3,263.6,263.6,264.4,264.5,263.5,263.1,263.2,262.9,262.6],"script":[35,34.7,34.4,34.2,34.8,34.3,35,34.8,34.5,34.3,33.9,34.6,34.3,34,33.9],"paint":[221.6,221,222,221.5,221.7,221.8,221.5,221.5,222.7,222.8,222.4,221.1,221.9,221.8,221.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,29.4,29.9,29.2,29.2,30.3,28.9,29.4,28.3,29,29.1,29.7,30,29.6,29.1],"script":[3,3.4,3.2,3.4,3.1,3.7,3.4,3.4,3,3.1,3.4,3.4,3.7,3.3,3.5],"paint":[24.2,25.3,26,25.1,25.3,25.8,24.8,25.1,24.6,25.1,24.9,25.6,25.6,25.5,24.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.7,10.1,9.6,9.8,9.7,9.7,9.4,9.2,9.8,11.3,10,9.4,9,9.3],"script":[8,7.4,8.3,7.7,7.8,8,7.6,7.8,7.6,7.8,8.5,8.2,7.3,6.9,7.5],"paint":[1.5,1.3,0.8,0.2,0.7,0.5,1.3,1,0.2,1.1,2.2,0.6,1.2,1.2,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6988735198974609]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1055517196655273]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1210813522338867]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0043659210205078]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.25316619873047]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.8]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.3,29.1,29,28.7,30.2,29.2,29,29.1,28.7,29.3,28.9,29,29.3,28.9,28.3],"script":[7.2,7.2,6.8,6.8,7.2,6.8,7,7.3,6.9,7,6.9,6.8,7.1,7.2,6.8],"paint":[21.5,21.4,21.7,21.3,22.5,21.8,21.5,21.2,21.3,21.7,21.5,21.7,21.6,21.2,21]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,31.8,31.9,31.9,31.2,31.7,31.9,32.1,31.9,31.9,31.7,31.9,31.4,31.7,32.3],"script":[9.3,9,9,9.1,9,8.9,9.3,9.1,8.9,9.2,8.7,9.1,8.8,9.2,9.2],"paint":[22.7,22.2,22.3,22.2,21.6,22.2,22.1,22.4,22.4,22.1,22.4,22.2,22,21.9,22.5]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,15.4,15.5,17.9,15.1,15.8,15.6,15.1,15,15.3,15.1,15.8,15.4,14.6,15.6],"script":[4.4,4.8,5,5.7,4.5,4.8,4.5,4.6,4.5,4.6,4.5,4.6,4.4,4.2,4.6],"paint":[9.6,9.5,9.2,10.1,9.7,8.6,9.7,9.5,9.3,9.3,9.2,9.6,9.2,9.2,9.7]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"04_select1k","values":{"total":[4.6,4.2,4.7,4.7,6.2,6.9,4.8,4.9,5.2,4.5,4.8,4.5,4.5,5.8,4.2,4.4,4.6,4.6,4.3,4.3,4.7,4.5,4.5,4.8,4.2],"script":[2.1,2.1,2.2,2.2,1.9,2.2,2,2.5,2.4,2.3,1.9,1.9,2.7,3,2.3,2.2,2.7,2.7,2.1,1.6,2.4,2.1,2,2.4,1.8],"paint":[1.7,1.1,2.1,2.4,1.6,1.1,1.8,1.8,1.9,2.1,2.7,2.1,1.6,1.7,1.8,1.4,1.1,1.3,1,1.5,1.5,1.8,2.2,2.1,1.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.1,16.5,15.6,15.8,15.6,16.1,15.8,16.3,17.1,15.9,15.6,16.2,16.1,15.3],"script":[2.7,2.5,2.8,2.7,3,2.5,2.7,2.8,3,2.9,3,2.7,3.2,2.8,2.2],"paint":[11.8,12.6,12.5,11,11.7,11.9,12.5,12.4,12.1,13.1,11.3,11.7,11.6,11.2,11.5]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15,14.7,14.7,15,14.5,14.1,14.5,14.3,14.8,14.6,15.3,14.6,14.6,14.3,14.6],"script":[4.1,4.3,4.2,4.3,3.8,3.8,4.3,4.2,4.3,4,4.4,4.2,4.2,3.8,4],"paint":[10.5,9.9,9.8,10.3,10.1,9.7,9.3,9.5,9.7,9.7,10.1,9.8,9.4,10,10]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"07_create10k","values":{"total":[292.2,293.6,292,294,296.4,292.1,292.2,291.5,291.6,291.6,292.8,292.5,292.5,297.2,294.6],"script":[67.7,68.2,67,68.7,68.5,68.3,68.1,67.7,68.3,68.3,68.3,67.6,67.1,67.4,68.1],"paint":[217.3,218.2,217.5,218.1,220.5,216.7,216.9,216.6,216.1,216.1,217.2,217.6,218.1,220.9,219.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.6,34.3,34.1,34.2,33.9,34.1,35.4,34.5,33.3,34.4,34.2,34.5,34,34.6],"script":[7.6,7.6,7.5,7.5,7.9,7.7,7.8,7.7,7.9,7.6,7.7,7.6,7.7,7.9,7.8],"paint":[25.3,25,25.8,25.7,25.4,25.3,25.4,26.7,25.6,24.7,25.7,25.7,25.9,25.2,25.9]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,12.5,13,12.9,14.3,12.6,13.4,13.4,12.7,14.4,13.5,12.3,13.3,13.6,12.6],"script":[10.9,10.9,11.3,10.6,12.1,11.5,10.4,12,10.9,12,11.2,10.8,11.2,12,11],"paint":[1.4,1,1.1,0.9,2,0.9,1.8,1.2,1,0.5,1.2,0.7,1.8,0.7,1.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8878059387207031]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.21751594543457]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.300172805786133]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3841524124145508]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.644983291625977]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.5,24.5,24.4,24.4,24.4,24.1,24.3,24.2,24.4,24.4,24.3,24.7,24.8,24.4],"script":[3,2.9,2.9,2.9,2.9,3,3,3,3,3,3,3,2.9,2.9,3],"paint":[21.1,21.2,21.1,21.2,21.1,21,20.8,20.9,20.8,21,21.1,20.9,21.4,21.5,21.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.4,28,27.2,27.8,29.3,28.9,28.3,28.3,28,28.6,27.8,28.3,27.5,28.8],"script":[5.1,5,5.4,5.1,5.1,5.4,5.3,5.2,5.5,5.5,5.5,5.5,5.6,5.2,5.3],"paint":[22.1,21.7,22.1,21.6,22,23.4,23,22.5,22.2,21.9,22.6,21.7,22.1,21.7,22.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.7,11.5,10.8,11.1,11.5,10.5,11.5,11.3,11,11.6,11,11.4,11.5,11],"script":[1.2,1.5,1.2,0.9,1.4,0.9,1.1,1.7,1.1,0.9,1.2,1,1.1,1.4,1.4],"paint":[9.1,7.3,8.4,8.8,8.4,9.3,8.3,8.6,8.5,8.7,9.2,9,9,9.1,8.5]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.6,2.4,2.8,2.8,2.8,2.2,2.6,2.3,2.5,2.5,2.3,2.3,2.4,2.4,2.6,2.4,2.5,2.5,2.7,2.3,2.9,2.8,2.6,2.4],"script":[1,0.1,0.7,0.8,0.1,0.6,0.4,0.7,0.1,0.1,0.6,0.1,0.1,0.5,0.7,0.1,0.1,0.9,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.1,2.4,1.5,1.3,2.6,2,1.6,1.4,1.6,0.8,0.6,2.1,1.2,1.2,1.6,2.4,1.4,1.1,1.8,1.8,1.1,2.3,2,2.3,1.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.7,13.3,13.4,13.2,13.4,15.8,13.1,13.2,14.3,12.9,12.8,13.6,13.7,13.5],"script":[0.2,1,0.8,0.8,1,0.6,1.2,1.1,0.6,0.8,0.6,0.7,0.9,0.7,0.9],"paint":[11.6,11.3,11.3,11.6,11.1,11.1,13.2,10.8,11.3,12.2,11.1,11.1,11.8,12,11.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.4,10.8,10.3,10.4,11,10.9,10.4,10.3,10.5,10.7,10.6,10.7,10.6,10.9],"script":[0.5,0.5,0.5,0.4,0.5,0.6,0.6,0.4,0.5,0.3,0.5,0.5,0.5,0.5,0.5],"paint":[9.8,9.3,9.7,9.5,9.5,9.4,9.7,9.6,9.5,9.1,9.4,9.5,9.7,9.6,9.8]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[262,261.6,260.1,262,259.5,261.6,263.2,262.4,260.8,262.1,261.5,260.3,262,264.2,260.4],"script":[34,33.9,33.5,33.6,33.4,34.3,33.7,34,34.1,33.4,33.7,33.9,34.1,34.1,34],"paint":[220.9,220.6,219.4,221.3,218.8,219.9,221.7,221.2,219.5,221.2,220.6,219.4,220.7,223,219.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.7,28.3,28.8,29.1,30.8,29,28.3,28.6,28.8,29.1,28.7,29.5,28.4,28,29],"script":[3.2,3,3.2,3.1,3.3,3.1,3,3,3.1,3.3,2.9,3.1,3,3,3.1],"paint":[24.7,24.6,24.8,25.2,26.7,25,24.6,24.8,24.9,25,25,25.6,24.6,24.2,25.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.9,8.9,9.1,8.6,9.2,10,8.9,8.7,9.2,9.7,9.5,9.4,10,8.6],"script":[7.4,7.8,6.8,7.3,6.9,7.7,7.7,7.3,6.9,7.9,7.6,7.9,6.7,8.4,7.5],"paint":[0.6,0.3,1.2,1,1,0.6,2.2,1.1,0.3,0.2,0.4,0.7,1.5,0.2,0.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7066545486450195]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0321483612060547]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0575733184814453]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0008859634399414]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.595953941345215]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"01_run1k","values":{"total":[25,25.6,25.1,24.9,24.8,25.2,25.1,24.6,26,25,25.2,24.9,25.2,25.1,24.8],"script":[3.2,3.9,3.6,3.6,3.5,3.7,3.6,3.1,3.7,3.6,3.6,3.5,3.6,3.6,3.2],"paint":[21.3,21.3,21.1,21,20.9,21.2,21.1,21.2,21.9,21,21.2,20.9,21.2,21.1,21.3]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"02_replace1k","values":{"total":[28.7,28.8,28.8,29.9,29.4,29.1,29.4,29.1,28.7,29.1,28.8,28.8,29.1,28.7,29.2],"script":[6.2,6.2,6,6.3,6.3,6.2,6.5,6.3,6.3,6.2,6.4,6.3,6.4,6.2,6.5],"paint":[22,22,22.3,23.1,22.5,22.3,22.3,22.2,21.8,22.3,21.9,21.9,22.1,22,22.2]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,14.4,11.2,11.3,11.8,11.8,11.5,12.2,11.3,11.5,11,12.3,14,11.7,11.6],"script":[1.4,1.8,1.1,1.4,2,1.8,1,1.3,1.6,1.4,1.1,1.5,1.8,1.1,1.4],"paint":[9,11.1,8.8,9.1,8.9,8.8,8.3,9.3,8.5,8.6,8.7,9.5,10.6,9.5,9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"04_select1k","values":{"total":[2.6,3.2,2.1,2.4,3.1,2.7,2.6,2.7,2.8,2.9,2.2,2.4,2.4,2.7,2.4,2.5,2.6,2.3,2.1,2.2,2.1,2.9,2.2,2.9,2.5],"script":[0.4,1,0.2,0.1,1,0.5,0.1,0.1,0.1,0.9,0.1,0.5,0.9,1.1,0.4,0.9,0.5,0.4,0.4,0.4,0.6,0.1,0.1,0.8,0.1],"paint":[2.1,2.1,1.1,1.3,2,0.7,1.6,1.8,2.6,1.8,2,1.8,1,0.9,1.2,1.2,0.8,1.8,1.6,1.6,1,2.7,1.3,1.6,1.7]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.6,16.1,16.7,17.2,15.7,17.4,16.2,16.5,16.4,17,16.1,16.4,15.9,16.2],"script":[3,2.7,3.3,3.3,3.1,2.7,3,2.9,3.3,2.6,3.6,3.3,3,3.1,3.3],"paint":[11.5,11.7,11.9,12.1,12.8,12.1,13.2,12.1,12.3,12.9,12.5,12,12,11.5,11.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.1,11.6,11.5,11.5,11.7,11.6,12,11.4,11.9,11.5,11.5,11.5,11.4,11.6],"script":[1.3,1.3,1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.4],"paint":[9.5,8.9,9.5,9.6,9.7,9.7,9.6,9.7,9.5,10,9.8,9.4,9.6,9.7,9.7]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"07_create10k","values":{"total":[261.7,263.3,261.9,263.3,264.3,263,265.1,260.9,262.4,262.2,262.7,262.9,263,262.4,263.5],"script":[34.6,34.5,35,35.9,34.6,34.5,34.5,34.7,34.5,35.2,34.8,34.3,35.8,34,34.8],"paint":[220,221.2,219.9,220.2,222.5,221.4,222.9,219.1,220.7,219.9,220.5,221,220.1,221.3,221.6]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.3,30.5,30.5,30.9,31.2,29.5,30.2,30.5,30.3,30.6,30.1,29.5,30.3,29.6,29.3],"script":[4.4,4.4,4.6,4.5,4.5,4.3,4.5,4.5,4.4,4.5,4.4,4.3,4.5,4.2,4.2],"paint":[25.1,25.3,25.1,25.6,25.9,24.4,24.9,25.3,25.1,25.3,24.9,24.4,25.1,24.6,24.3]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.3,10.6,10,10.6,9.8,12.1,10.2,10.1,11,10.7,10.3,10.2,10.8,10],"script":[8.5,8.3,8.2,8.5,8.3,8.4,9.9,8.1,8.7,8.8,8.8,8.4,7.9,9,8.4],"paint":[1.1,0.7,1.8,0.3,1.9,0.3,1.1,1.1,0.7,1.1,1.6,0.6,0.9,0.9,1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5961074829101562]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.084320068359375]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.142228126525879]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9840278625488281]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.31601333618164]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[21.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"01_run1k","values":{"total":[25.4,25.8,26.1,25.2,25.5,25.6,25.2,25.7,25.5,25.6,25.1,25,25.2,25.3,25.5],"script":[2.9,3,3.3,2.9,3.1,2.9,3,3.2,2.9,3.1,2.8,2.9,2.9,3,3],"paint":[22.1,22.5,22.5,21.9,22,22.4,21.8,22.1,22.2,22.1,21.9,21.8,21.9,21.9,22.1]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"02_replace1k","values":{"total":[28.4,27.7,29.7,27.6,28,27.9,28.3,28.1,28.1,27.9,27.7,27.5,27.9,27.8,27.8],"script":[4.9,4.8,4.8,4.8,4.9,4.9,5.2,4.9,4.9,4.9,4.8,4.8,4.9,4.9,4.9],"paint":[23,22.5,24.4,22.4,22.7,22.6,22.5,22.7,22.9,22.7,22.4,22.4,22.6,22.5,22.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,11.8,12.4,12.3,12.3,11.4,12.7,11.7,11.9,12.2,12.4,11.7,12.5,13.2,12.4],"script":[2.3,1.3,2.1,2.1,1.9,1,1.6,1,2.1,2.3,1.8,2,1.9,2.3,2.5],"paint":[8.1,9.3,9.7,9.3,8,9.4,10.1,9.2,8.8,8.1,10.4,8.8,9,10,8.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.8,3,2.9,3,3.2,2.9,3.4,3.7,3.3,3.1,3.1,2.9,4,3.3,3.4,3,2.7,3.3,3.9,3.3,3.2,3.3,3,3.3],"script":[0.9,1,1.3,0.9,0.8,0.6,0.6,0.9,0.9,1.1,1.3,1.7,1,1.2,1.3,0.9,0.9,1,1.2,1.2,1.1,0.7,0.9,0.3,1.4],"paint":[1.6,1.7,1.5,1.3,1.2,2,0.8,2,1.7,1.1,1.1,1.3,1.3,1.6,1.6,1.5,2,1.5,1.1,2.6,1.4,2.4,1.4,2.4,1.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.9,12.8,13.8,13.5,13.7,13.6,13.2,13.4,13.2,13.1,13.4,13.9,13.6,13.5],"script":[0.6,1.6,0.7,0.6,1,1,1.4,0.6,0.3,1,0.9,1.2,0.8,0.7,0.3],"paint":[11.5,10.5,11,12.1,11.4,12,11,11.1,12.2,11.3,10.6,10.8,12.1,12.3,11.9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.7,10.7,10.7,10.9,10.7,10.9,10.7,10.6,11.3,10.7,10.8,10.8,11,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.6,9.4,9.6,9.7,9.5,9.7,9.4,9.3,10.1,9.3,9.2,9.8,9.9,9.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"07_create10k","values":{"total":[259.2,257.7,260.6,261.9,258.8,257.8,256.7,257.2,258.9,259.9,260.6,259.7,259.9,263.4,260],"script":[27.5,27.1,27.2,27.4,26.5,26.5,26.8,26.7,27.4,26.8,27.7,27,27.2,27.3,26.9],"paint":[224.5,223.6,225.8,227.4,224.4,224.2,223.1,223.5,224.4,226,225.8,225.6,225.6,228.5,225.9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.1,29.9,30.2,30,30.6,29.6,30.1,30,30.3,29.9,30,31.3,30.1,30.3,30.1],"script":[3,3,3,3,3.1,3,3,3,3,3,3.1,3.2,3.1,3,3],"paint":[26.3,26.1,26.4,26.2,26.6,25.8,26.3,26.2,26.5,26.2,26.2,27.3,26.2,26.5,26.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,10.4,11.6,9.8,10.7,9,10.6,9.5,9.9,11.1,10.5,10.1,9.9,11,10.1],"script":[9.2,8.4,9.5,8.3,8.3,6.8,8.4,7.7,8.5,9,8.5,8.7,8,9,8.4],"paint":[1.2,1,0.7,0.2,1.7,1,2,0.7,1.2,1.9,0.6,0.3,1,1.1,0.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7240571975708008]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9544591903686523]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9677133560180664]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.825901985168457]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.923840522766113]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.8,36.9,36.6,36.9,37.1,36.8,36.9,36.8,37,36.9,37,37.4,36.7,36.9,36.9],"script":[14.5,14.2,14.5,14.6,14.6,14.4,14.5,14.4,14.6,14.6,14.4,14.8,14.4,14.5,14.3],"paint":[21.7,22.1,21.6,21.7,21.9,21.8,21.8,21.9,21.8,21.7,22,22,21.8,21.8,21.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.9,41.4,41,41.7,41.6,42.2,41.9,41.3,41.3,41.7,41.7,41.3,41.9,41.6,42.2],"script":[19.7,19.3,19.1,19.3,19.3,19.8,19.9,19.6,19.5,19.8,19.9,19.6,19.5,19.7,19.7],"paint":[21.5,21.5,21.3,21.8,21.7,21.8,21.4,21.2,21.2,21.3,21.2,21.2,21.7,21.4,21.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.2,20.2,18.7,19.7,21,19,19.3,19.1,18.8,18.4,18.7,18.9,19.6,19.4,19.9],"script":[7.7,8.3,7.5,7.8,8.4,7.3,8.1,7.8,8,8.1,7.7,7.9,8.6,7.9,7.3],"paint":[9.8,9.3,9.4,10.6,11.5,10.6,9.6,9.7,8.7,9,9.9,9.7,8.9,10.2,10.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[8.9,8.6,8.8,9.2,8.3,8.2,8.6,8.5,7.8,8.8,9.3,9.8,7.8,8.6,8.5,7.9,8,8,9.9,7.6,8.7,9.2,7.6,8.7,8.5],"script":[6.1,5.6,5.8,5.8,5.7,5.6,6,5.8,6.1,6,5.7,6.5,5.7,5.6,5.9,5.6,5.7,5.9,6.4,5.8,6.1,6.2,5.9,5.1,5.8],"paint":[1.9,0.9,1.6,2.6,0.8,0.8,1.4,1.6,1.6,0.9,2.1,1.5,1.5,2,1.4,1.8,1.5,1.8,3.2,1.2,2.1,1.5,1.6,2.6,1.2]}},{"framework":"yew-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[20.7,20,19.5,19.6,19.3,20.6,19.6,19.2,19.8,19.8,20,21.2,21,20,19.8],"script":[5.2,5.6,5.6,5.4,4.8,5.9,5.1,5.6,6,5.8,5.3,5.8,5.8,5.9,5.8],"paint":[14.4,13.6,12,12.2,13,12.5,13,12.6,11.6,12.5,12.7,13.9,13.3,12.9,13]}},{"framework":"yew-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.4,14.3,13.3,13.9,13.3,13.1,13.3,13.1,13.4,13.2,13.4,13.3,13.3,14.1],"script":[3,3,3.7,3,3,3,3,3,2.8,3,3,3,3,3,3],"paint":[9.6,9.6,10,9.8,10.1,9.7,9.8,9.4,9.2,9.8,9.6,9.5,9.4,9.5,10.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[443,444.5,437.7,442.4,436.8,445.2,450.6,454.5,440.1,446,438.1,445.6,442.8,437.4,439.9],"script":[192.3,193.5,187.4,194.2,188.7,194.8,200.9,202,192,196.5,187,196.6,189.3,189.6,190.4],"paint":[242.9,243,242.6,240.2,240.2,242,241.9,244.5,240.5,241.4,243.2,241.1,245.7,240.1,241.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.2,42.5,42.3,42.3,42.6,42.7,42.3,42.2,42.3,43,42,42.8,42.1,41.8,42.2],"script":[14.5,14.9,14.6,15,14.6,14.9,14.6,14.8,14.7,15,14.4,14.8,14.7,14.7,14.8],"paint":[26.7,26.7,26.6,26.4,27,27,26.9,26.5,26.6,27,26.7,27,26.7,26.4,26.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,21.4,21,21.5,19.9,21,23.2,20,20.4,20.7,20.4,20.1,20.6,21.1,20.3],"script":[18.8,19.1,18.6,19.3,18.3,19.6,21.4,18.4,18.5,19.2,18.4,18.5,19.1,20,18.3],"paint":[1.1,1,1.6,0.8,0.8,0.3,1,0.3,1.7,0.7,1.2,1.6,1.4,0.3,0.7]}},{"framework":"yew-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.795924186706543]}},{"framework":"yew-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.433897972106934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.587218284606934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.9457502365112305]}},{"framework":"yew-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.09118938446045]}},{"framework":"yew-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[207.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[255.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.9,36.4,36.7,36.9,36.9,36.6,37,37,37.2,37.2,36.9,36.9,36.6,36.5,36.7],"script":[14.4,14.2,14.4,14.3,14.5,14.2,14.6,14.7,14.6,14.8,14.3,14.6,14.4,14.3,14.6],"paint":[21.9,21.8,21.9,22,21.8,21.9,21.9,21.7,22.1,21.8,22,21.8,21.6,21.8,21.6]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.7,41.9,41.7,42.7,41.4,41.8,42,42.1,41.5,41.6,41.3,41.8,41.3,42.1,41.9],"script":[19.8,19.9,19.4,19.9,19.6,19.7,19.8,19.6,19.5,19.7,19.7,19.7,19.3,19.8,19.7],"paint":[21.3,21.4,21.7,22,21.3,21.5,21.7,21.9,21.4,21.5,21,21.6,21.5,21.7,21.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.6,23.5,24,23.9,24.4,22.5,23.3,26.8,22.5,25.7,22.8,22.4,23.6,23,23.5],"script":[12.3,12.5,11.6,11.6,12.1,11.6,12,12.7,11.9,11.9,11.9,11.4,11.7,11.8,12.2],"paint":[9.3,8.9,9.8,10.2,10.8,9.7,9.7,11.9,9,12.3,9.5,9.6,10.2,10.8,9.8]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[14.6,15.2,14.1,13.3,13.7,14,13.6,14.7,14.5,13.4,14.1,12.9,14.5,14.7,14.1,13.9,13.4,14.3,14.4,14,13.8,14.2,13.7,15.6,13.7],"script":[11.1,12.1,11,11.1,11.1,11.8,10.9,11.2,11.5,11.1,11.3,11,11.3,11.5,11.2,11.2,10.9,11.2,12,11.2,11.6,11.8,10.7,13,11.5],"paint":[2,1.5,0.8,1.3,1.6,1.4,2.5,1.9,2.4,1.3,2.4,1.7,2.9,1.7,1.3,1.8,1.6,2,1.4,0.6,1.1,2.2,2.3,1.6,1.4]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[26.4,26.9,27,25.7,26.2,26.8,26,26.3,26.1,25.6,27,26.4,27.1,25.4,26],"script":[11.5,11.8,12.1,11.9,11.8,11,11.4,11.3,11.8,11.4,11.5,11.2,11.8,11.1,10.7],"paint":[12.8,13.4,12.9,12.4,12.4,14.7,12,13.8,13.7,12.3,13.5,12.5,14.3,13.7,13.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.5,16.3,16.3,17.1,16.7,16.4,16.6,16,16,16.5,16.5,17,16.5,16.2,16.5],"script":[5.9,5.6,5.9,6,5.7,6,5.8,5.6,5.6,5.7,6,5.8,6,5.8,5.8],"paint":[9.4,9.9,9,10.4,9.9,9.3,9.9,9.7,9.6,9.7,9.4,10,9.6,9.8,9.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[439.7,444.7,441.3,442.8,449.1,437.8,445.9,445.6,444.8,443.6,448.1,445.6,443.6,453.1,442.2],"script":[190.5,194.8,190.8,192.9,197,187.9,195.8,193.8,193.7,194.2,198.2,196.3,191.7,198,192.4],"paint":[241.3,242.2,242.7,242.1,244.3,241.9,242.3,243.5,243.3,241.3,242.3,241.5,244.2,246.4,242]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.8,44.4,43.6,44.3,44.1,43.5,44.2,44.1,44.4,44.2,43.7,43.5,45,43.4,43.8],"script":[16.3,16.4,16.3,16.4,16.2,16.1,16.5,16.2,16.6,16.1,16.3,16,16.2,16,16.2],"paint":[26.5,27,26.4,27,26.9,26.6,26.9,26.9,26.8,27.2,26.5,26.6,27.8,26.4,26.8]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.2,21.5,23.6,21.3,20.3,20.2,20.2,21.4,21.5,21.6,21,20.7,21.6,21.1,22],"script":[19.3,19.6,21.5,18.8,19,18.8,18.8,19.7,19.7,19,19.9,19.3,19.5,19.4,20.4],"paint":[1.1,0.3,1.1,0.3,0.3,0.3,0.3,0.4,0.3,1.6,1,1.3,0.7,1.6,1.1]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7964754104614258]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.563647270202637]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.826767921447754]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.130795478820801]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.328675270080566]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[211.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[262.2]}},{"framework":"zess-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[26.2,26.3,26.2,25.7,26,26.1,26.3,26.5,26.2,26.8,26.2,26.5,26.5,26.1,25.9],"script":[4,3.9,4,3.9,3.9,3.9,3.9,4.1,4,4.3,3.8,3.9,3.9,3.9,3.9],"paint":[21.8,22,21.9,21.4,21.7,21.7,22,22,21.8,22.2,22,22.2,22.2,21.8,21.6]}},{"framework":"zess-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[30.3,30.2,30.4,29.7,29.9,30.2,30.8,30.5,31,30.1,29.8,30,29.6,30.3,30.2],"script":[6.5,6.5,6.7,6.4,6.5,6.6,7,6.6,6.9,6.6,6.5,6.6,6.4,6.4,6.6],"paint":[23.2,23.2,23.1,22.8,22.9,23,23.2,23.3,23.4,22.9,22.7,22.8,22.6,23.3,23]}},{"framework":"zess-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,13.3,11.8,12.4,12.4,12.4,14.2,12.9,12.4,12.5,13.8,12.7,13.4,16,12.8],"script":[1.1,1,0.6,0.9,1.3,1.2,1.3,0.7,1.7,1.4,1.3,1,0.9,1,1.3],"paint":[10.5,11.1,10.2,9.8,10.1,9.9,10.5,11.1,9.9,10.1,11,10.7,11.2,13.6,10.1]}},{"framework":"zess-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.5,2.7,2.1,2.6,2.4,2.5,2.3,2.2,3.3,2.1,2.4,2.1,2.1,3.1,2.4,2.2,2.4,2.5,2.7,1.9,2.5,2.8,2.7,2.2],"script":[0.8,0.4,0.1,0.1,0.1,0.5,0.5,0.1,0.7,0.6,0.1,0.9,0.1,0.3,1,0.9,0.6,0.9,0.9,0.8,0.1,0.6,0.1,0.1,0.1],"paint":[1.1,2,1.7,1.9,1.7,1.1,1.9,1.7,1.4,1.2,1.9,1,1.9,1.5,1.7,1,1.1,1.1,1.4,1.8,1.1,1.8,2.6,2.2,1.2]}},{"framework":"zess-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.4,14.1,14,14.9,15.9,14.5,14.6,15.2,15.9,16.4,16.6,15.9,15.1,14,14.8],"script":[0.9,1.3,1,0.7,1,1.5,1,1.7,1,1.2,1.4,1.4,1.4,1.1,1.3],"paint":[13.5,11.5,11.4,13.1,13,12.3,12.1,12.5,13.5,13.9,14.4,12.9,12.3,12,11.3]}},{"framework":"zess-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.4,12,11.5,11.4,11.5,11.3,12,11.4,11.2,11.3,11.5,11.1,11.2],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.4],"paint":[10.1,10.1,10.1,11,9.9,10.4,10.2,9.7,10.3,10.3,10.2,10.4,10.4,9.7,9.7]}},{"framework":"zess-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[281.2,283.5,282.1,283.1,281.4,281.2,278.7,281.2,278.6,281.4,279.5,281.6,280.9,281.2,282],"script":[48.5,49,48.9,49.5,48.6,48.2,48.9,47.8,48.5,48.8,48.8,48.4,48.6,47.9,48.1],"paint":[225,227.1,225.2,225.9,225.1,225,222.7,225.5,222.6,225.1,223.2,225.6,224.3,225.2,226.2]}},{"framework":"zess-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.7,31.7,32.2,30,29.9,31.6,30.9,31.7,31.9,30.6,30.6,31.1,30.9,32.2,31],"script":[4.4,4.2,4.2,4.1,3.8,4.1,4,4.3,4.2,4.3,4,4,4.4,4.3,4.2],"paint":[26.4,26.7,27.2,25.2,25.4,26.6,26.2,26.6,26.9,25.6,25.8,26.3,25.8,27.1,26]}},{"framework":"zess-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,12.1,12.7,12.6,13.1,11.7,12.2,13.2,11.9,12,13.2,13.1,14.2,12.3,11.3],"script":[9.9,9.2,10.3,10.4,11,9.8,10.1,11.6,10.1,9.8,11.2,11.2,11.9,10.5,9.7],"paint":[0.5,1.2,1.4,1.3,0.8,1.6,0.5,0.3,0.7,2,1.8,1.3,1.4,1.2,1.1]}},{"framework":"zess-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5937604904174805]}},{"framework":"zess-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0592880249023438]}},{"framework":"zess-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0763320922851562]}},{"framework":"zess-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7325544357299805]}},{"framework":"zess-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[24.096689224243164]}},{"framework":"zess-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.1]}},{"framework":"zess-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"zess-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.1]}},{"framework":"zune-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[30.9,30.5,31.4,30.7,31,30.6,30.7,31,30.4,30.4,30.6,30.8,30.6,30.4,30.8],"script":[6.9,6.9,7.1,6.9,7,6.9,7,6.9,6.8,6.8,6.9,6.9,6.9,6.9,7],"paint":[23.4,23.2,23.7,23.2,23.4,23.2,23.2,23.5,23,23.1,23,23.3,23.2,22.9,23.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[33.8,33.9,34,33.5,33.8,33.9,33.9,33.5,35,34.1,33.6,33.9,34.1,34.1,33.8],"script":[9.2,9.4,9.1,9.2,9.4,9.1,9.4,9.2,9.5,9.3,9.3,9.2,9.3,9.4,9.3],"paint":[24.1,23.9,24.3,23.7,23.9,24.2,23.9,23.7,24.9,24.2,23.7,24.1,24.2,24.1,23.9]}},{"framework":"zune-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.5,25.3,25.6,25.5,25.6,26.3,26.1,28,25.5,26.4,25.5,26.1,25.7,24.7,26],"script":[14.2,13.9,14.2,14.3,13.3,14.1,14.2,14.2,14,14.7,14,14,13.8,13.8,13.6],"paint":[9.4,10,9.3,9.2,10.8,9.6,10,12,9.4,9,9.2,10.3,10.2,9.8,11]}},{"framework":"zune-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.6,3.8,4.2,4,4.2,4.2,4,4.3,3.9,4,3.6,4.3,4.3,4,4.1,4.1,3.7,3.6,3.5,3.4,3.6,4.3,3.3,4.2,4.5],"script":[2.5,1.7,2.4,1.7,1.8,2.3,1.8,2,1.8,1.8,1.7,2,2.1,1.9,1.8,2.1,1.4,1.5,2,1.3,1.5,1.7,1.6,1.9,1.8],"paint":[1.7,2,1.8,1.7,2.3,1.1,1.5,1.6,1.5,2,1.3,1.6,2.1,1.9,2.2,1.9,1.4,1.3,1,2,1.1,1.7,1.5,2.2,1.7]}},{"framework":"zune-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.7,14.7,14.6,14.1,15.8,15.3,14.8,15,15,14.8,14.5,14.9,15.7,15.7,14.7],"script":[1.4,1.1,2,1.8,1.8,2,1.7,2,1.9,1.6,1.3,2.4,2,1.7,1.9],"paint":[13,12.9,11.1,11.2,12,12.4,12.2,11.8,11.9,11.8,12.2,11.3,12.6,12.6,11.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,14.1,14.1,15.2,13.8,14.1,15.3,14.6,14.1,13.7,14,13.8,14,13.7,13.9],"script":[3.5,3.2,3.3,3.4,3.2,3.5,3.6,3.6,3.4,3.3,3.5,3.4,3.3,3.4,3.1],"paint":[10.3,10,10.2,10.8,10.3,9.6,11,10,10.1,9.8,9.4,9.8,10.2,9.8,10.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[316.3,314,312.7,314.9,314,311.9,313.6,315.2,315,311.9,311.8,314.2,349.4,312.1,317.7],"script":[73.8,74,72.7,74.2,73.6,72.5,73.9,74.2,73.6,72.9,72.9,73.5,79.1,72.8,73.9],"paint":[234.4,232.4,232.3,232.4,232.6,231.8,232.2,232.9,233.6,231.3,231.3,233.1,260.5,231.6,236.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,36,36.2,36.5,36,36.1,35.8,35.9,36.4,35.9,36.5,36.2,35.8,36,36.2],"script":[7.4,7.6,7.5,7.8,7.5,7.6,7.5,7.5,7.8,7.5,7.7,7.6,7.4,7.6,7.5],"paint":[27.3,27.4,27.7,27.6,27.5,27.5,27.4,27.4,27.6,27.3,27.8,27.6,27.4,27.4,27.7]}},{"framework":"zune-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,12.2,12.3,11.2,11.9,11.8,11.3,11.6,11.9,12.3,12.5,11.5,11.9,11.4,11.8],"script":[9.7,9.8,10.3,9,9.8,9.9,9.2,10,9.9,9.5,10.9,9.6,10,9.8,9.7],"paint":[0.5,1.7,1.8,2,0.6,1.7,1.2,0.3,1.8,1.7,0.3,1.2,1.7,0.8,1.9]}},{"framework":"zune-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6521015167236328]}},{"framework":"zune-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6158266067504883]}},{"framework":"zune-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.65389347076416]}},{"framework":"zune-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9499826431274414]}},{"framework":"zune-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.28773593902588]}},{"framework":"zune-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"zune-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"zune-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.8]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[44.7,45.7,45.1,45.4,45.1,46,44.8,44.5,45.3,45.1,44.5,45.6,45,45,45.2],"script":[20.5,21.1,20.6,20.9,21,21.6,20.6,20.2,20.9,20.9,20.5,21.1,20.8,21,21.1],"paint":[23.6,24.1,24,24,23.7,23.9,23.7,23.8,23.9,23.7,23.5,24,23.7,23.6,23.6]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[17.7,20.2,18.1,17.1,17.4,17.8,17.8,17.5,17.8,18.4,20.1,18.3,18.1,18.2,17.6],"script":[6.2,6.5,6,5.9,5.8,5.9,5.9,5.9,6,6.2,6.8,6.1,6.1,6.2,5.9],"paint":[11,12.9,11.3,10.7,11.1,11.4,11.3,11.1,11.3,11.6,12.6,11.5,11.4,11.4,11.1]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,16.5,15.7,15.2,16.4,15.9,16,15.8,16.3,15.1,16.2,15.4,16.5,16.3,15.7],"script":[1.6,2.4,2.6,2.1,1.9,1.8,1.8,1.8,2.2,1.8,2.1,1.5,1.7,1.8,2.1],"paint":[11,12.1,12,12.3,13.1,12.4,13.1,12,11.8,12,12.6,11.4,13,12.7,12.5]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[9.7,9.7,9.4,9,10.2,9.7,10.8,9.8,11.1,9.2,9.5,10.5,10.6,9.7,10,9.5,9.9,12.3,10.3,9.3,9.8,10.1,9.2,10,9.6],"script":[6,6.7,6.8,6.4,7,5.9,7.7,6.4,8,6.1,7,7.3,7.6,6.8,6.7,6.9,6.7,8.2,7,6.1,6.9,7,5.9,6.9,6.4],"paint":[1.1,2.5,1.6,1.7,2.2,1.9,2.1,2.2,1.8,1.9,1.5,2.2,2.3,2.3,2.3,1,2.6,2.7,2.4,2.2,1.8,2.3,3,1.9,1.2]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[13,13.1,13,13.5,12.5,17.8,13.4,14.1,12.2,13.1,13.2,13.1,13.3,12.8,13.2],"script":[2.3,1.9,2.2,2.1,2.4,3,1.7,3,2.1,2.2,2.2,2.3,2.3,2,1.6],"paint":[9.4,10.1,8.5,9.2,9,11.7,9.2,8.9,8.7,9.3,9.4,8.5,8.8,9.2,9.5]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[26.1,25.8,26.1,26,26.4,25.2,25.8,25.9,26.1,25.5,26.2,26.1,25.5,26.3,25.3],"script":[8,8,8,7.9,8.2,7.5,7.9,7.9,8.1,7.8,8.3,7.9,7.9,8.1,7.7],"paint":[16.8,16.6,17.1,16.9,17.2,16.4,16.7,17.1,16.9,16.7,16.7,17.3,16.9,17.3,16.7]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[443.6,442,445.4,441.4,440.4,441,441.9,443.8,445.8,440.1,443.9,442.8,441.7,443.3,445.3],"script":[188.8,187.1,190.1,187.9,186.7,187.9,188.8,188.4,190.6,186.8,188.9,187.7,187.5,188.1,189.4],"paint":[245,245.1,245.5,243.8,244,243.4,243.6,245.6,245.5,243.8,245.4,245.5,244.3,245.4,246]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.9,51.4,50.9,51.6,51.2,51,50.9,52,50.8,50.9,50.9,50.7,51.7,50.8,50.7],"script":[21,21.1,20.9,21,21.2,21,20.8,21,21.1,21,20.9,20.7,20.9,20.7,20.8],"paint":[29.6,29.1,28.8,29.4,28.9,28.9,29,29.9,28.6,28.9,28.9,28.8,29.5,29,28.8]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.1,22.1,22.7,22,21.6,24.5,22.3,22.6,22.5,24,22.9,22.7,22.9,22,22.2],"script":[20.1,20.9,20.8,21,20.6,22.3,20.5,20.7,20.4,21.7,21.5,20.5,21.6,20.5,20.5],"paint":[1.1,0.3,1.8,0.9,0.3,1.7,1,1.2,2,1.7,0.9,2.1,0.3,1.4,0.9]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6199922561645508]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.437088012695312]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.457786560058594]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.256784439086914]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[76.74854373931885]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.4]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.9]}},{"framework":"vanillajs-non-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.1,23.5,23.5,22.9,23,23.7,24,23.6,23.4,23.1,23.3,25.5,23.3,23.5],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[21.6,21.5,21.8,21.8,21.3,21.4,22,22.3,21.9,21.7,21.5,21.6,23.7,21.6,21.8]}},{"framework":"vanillajs-non-keyed","benchmark":"02_replace1k","values":{"total":[10.9,10.7,10.7,11,11,11,10.6,10.9,10.8,10.8,10.8,11.1,10.9,10.7,11],"script":[1.4,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[9.1,9.1,9.1,9.3,9.3,9.2,9,9.3,9.1,9.2,9.1,9.4,9.3,9,9.3]}},{"framework":"vanillajs-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.5,10.7,11.6,12.1,10.8,12.4,12,11.1,11.6,10.5,10.5,11.1,10.8,11.1],"script":[0.1,0.5,0.1,0.1,1.1,0.1,0.1,0.9,0.5,0.9,0.1,0.4,0.1,0.2,0.7],"paint":[10.3,9.8,9.6,10.2,9,9.5,10.9,10.1,8.5,9.4,9.4,9.1,9.8,9.7,9.8]}},{"framework":"vanillajs-non-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.3,2.7,2.2,3.2,2.5,2.5,2.8,2.2,1.9,2.4,2.6,1.9,2.6,2,4,2.8,2.9,2.7,3.3,2.2,2.1,2.8,2.5,2.8],"script":[0,0,0,0,1,0,0,0,0,0,0,0.6,0,0,0,0,0.8,0,0,0,0,0,0,0,0],"paint":[2.2,1.5,2.5,2,2.1,2.4,2.1,2.6,1.3,1.7,1.9,1.4,1.1,2.4,1.8,1.9,1.5,2.6,2.4,1.6,1.3,1.7,1.3,2.4,1.5]}},{"framework":"vanillajs-non-keyed","benchmark":"05_swap1k","values":{"total":[24.4,8.5,7.9,12,8.3,7.9,8.9,8.1,8.2,10.4,8.6,9.1,7.9,8.2,8.5],"script":[0.1,0.1,0.1,0.6,0.1,0.1,1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.9],"paint":[6.1,7.4,6.1,9.2,6.8,7,6.4,6.9,6.5,8.9,7.5,8.1,6.8,7.2,6.6]}},{"framework":"vanillajs-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.8,18.3,19.5,18.5,18.9,18.7,18.6,18.5,18.8,18.1,18.2,18.2,17.8,18.5,18.3],"script":[2.5,2.1,2.8,2.8,2.5,2.5,2.7,2.4,2.5,2.4,2.4,2.5,2.4,2.4,2.4],"paint":[15.6,15.6,16,15.1,15.8,15.6,15,15.4,15.6,15.1,15.2,15.1,14.7,15.4,15.2]}},{"framework":"vanillajs-non-keyed","benchmark":"07_create10k","values":{"total":[252.5,250.3,250.3,251.7,249.7,253.1,249.4,250.3,248.6,252.8,253,250.8,248.8,251.1,251.9],"script":[14.8,14.7,14.9,14.8,14.8,14.7,14.6,14.6,14.7,14.8,14.8,14.6,14.5,14.4,15],"paint":[229.7,228.4,228,229.6,227.8,231.1,227.6,228.6,226.6,230.5,230.7,228.9,227.1,229.6,229.8]}},{"framework":"vanillajs-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.3,27.3,27.3,27.4,27.2,27.1,27.2,27.5,26.9,27.3,27.2,27.4,27.2,26.9],"script":[1.3,1.4,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4],"paint":[25.3,25.2,25.3,25.2,25.4,25.1,25.1,25.2,25.4,24.8,25.2,25.2,25.4,25.1,24.8]}},{"framework":"vanillajs-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,9.5,9.5,9.1,9.2,9,9.9,8.8,9.4,8.9,9.5,8.9,8.8,9.5,9.9],"script":[7.4,7.3,7,7,7.5,6.8,7.8,7.2,7.1,7.3,8.1,7.1,6.8,7.4,7.9],"paint":[1.3,1.1,1.7,0.9,0.2,1.3,1.4,0.3,0.8,0.4,0.2,1,0.9,1.4,0.7]}},{"framework":"vanillajs-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4959230422973633]}},{"framework":"vanillajs-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.885274887084961]}},{"framework":"vanillajs-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9034509658813477]}},{"framework":"vanillajs-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.602320671081543]}},{"framework":"vanillajs-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.000962257385254]}},{"framework":"vanillajs-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12]}},{"framework":"vanillajs-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.4]}},{"framework":"vanillajs-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.5]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"01_run1k","values":{"total":[30.1,31.8,36.1,35.5,35.8,37.5,29.7,34.9,37,36.2,31.6,37.1,34.3,35.5,36.5],"script":[7.4,7.8,6.6,6.7,6.5,7.5,6.9,6.7,6.6,7.4,6.6,6.6,7.4,6.9,7.4],"paint":[22.4,23.6,22.7,22.7,22.3,22.5,22.5,22.6,22.5,22.2,22.8,22.6,22.7,22.3,22.1]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"02_replace1k","values":{"total":[18.9,18.9,19,14.8,19.2,21.1,17.5,18.6,16.5,16.7,16.9,18.1,18.6,17.4,17.7],"script":[3.8,3.7,3.7,3.8,3.9,3.8,3.6,3.7,3.7,3.6,3.7,4,4.3,3.7,3.7],"paint":[8.9,8.7,9,9,9.2,9.1,8.9,8.9,8.8,8.7,9,9.1,10.2,8.8,9]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.3,30,13.9,30.1,30.1,30,30,31.7,29.6,30.1,31.4,28.5,14.2,32,15.7],"script":[2.8,2.8,2.7,2.7,2,2.6,2.5,2.6,2.5,2.7,2.3,2.5,1.9,2.8,2.6],"paint":[9.7,11.1,11,9.7,12,11.8,11.4,12.2,10,11.8,13,10.6,10.1,12.8,10.4]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.9,3.9,6.1,3.6,4.1,5,3.7,6.8,7.3,3.4,3.7,4.2,4,4,3.8,4.2,3.4,4,3.5,3.8,4,3.9,3.6,3.7,3.5],"script":[0.6,1.7,0.9,1,0.9,0.9,1.5,1.6,1.9,0.3,1.5,1.9,1.7,1.5,1.6,1.1,1.2,1,0.7,1.4,1.6,0.8,1.3,0.9,1.4],"paint":[2.7,1.4,1.6,2.4,3,1.7,1.3,2.3,1.8,1.4,1.3,1.4,1.4,1.4,1.6,1.6,1.3,1.4,2,1.9,1.4,2.2,1.4,1.7,1.3]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"05_swap1k","values":{"total":[24.8,24.3,9.5,24.9,24.6,9.1,25.5,25.3,9.4,25.1,25.4,25.4,24.4,25.8,25.7],"script":[0.6,0.8,0.6,1.1,0.6,1.1,1.3,1.3,0.7,1.1,1.2,0.7,1.1,1.8,1.5],"paint":[7.7,7.1,7.2,7.9,7.5,7,8,7.6,7.7,7.4,7.8,8.6,7.2,8.4,8.3]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.5,22.4,21.9,24.6,21.8,21.4,23.3,22.2,22.9,23.8,22.8,24.6,21.6,21.9,24.7],"script":[6.4,6.3,6.3,6.6,6.6,6.2,6.2,6.3,6.3,6.4,6.4,6.4,6.2,6.6,6.7],"paint":[15.3,14.7,14.7,15.5,14.6,14.9,14.7,14.7,15.3,14.5,14.5,15.2,14.8,14.8,15.1]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"07_create10k","values":{"total":[307,311.7,311.7,310.6,307.6,310.6,306.7,314.4,308.9,310,310.6,312.2,309.6,306.6,313.3],"script":[75.5,78.6,75.9,76,75.7,76.3,77.2,75.2,75.4,75.1,76.7,76.7,76.4,76.2,77.9],"paint":[227.2,224.5,225.9,227.7,226.2,224,223.5,230.9,226.3,224.4,226.5,226.4,223.3,223.7,227.1]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.2,40.8,34.4,34.1,38.3,38,38.1,34.9,34.1,34,34.5,38.6,38.4,38,39.2],"script":[6.3,6.2,6.6,6.5,6.2,6.3,6.3,6.8,6.3,6.4,6.7,6.4,6.4,6.3,6.4],"paint":[26.7,27.1,27.2,27.1,26.9,26.8,26.7,27.2,27.2,27.1,27.2,26.9,26.9,26.8,27.1]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[28,27.6,29.1,28.3,29,26.9,12.4,26.7,27.7,27.2,27.3,10.7,11.6,26.8,27.5],"script":[10.6,9.5,10.8,10.9,11.5,9.7,10.6,9.1,10.1,9.6,9.5,9.6,10,9,9.4],"paint":[1.2,1.2,2.2,0.3,0.7,0.8,0.8,1.1,0.4,0.6,1.2,0.3,1.3,0.9,0.8]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5821304321289062]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9737510681152344]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.950702667236328]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7388839721679688]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.53023338317871]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.4]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.7]}}]
\ No newline at end of file
diff --git a/webdriver-ts/src/createResultJS.ts b/webdriver-ts/src/createResultJS.ts
index cd9c150fa..93bf07893 100644
--- a/webdriver-ts/src/createResultJS.ts
+++ b/webdriver-ts/src/createResultJS.ts
@@ -141,7 +141,7 @@ async function main() {
}
});
resultJS += "\n" + JSON.stringify(result, function(key, val) {
- return val.toFixed ? Number(val.toFixed(1)) : val;
+ return val.toFixed ? Number(val.toFixed(2)) : val;
}) + ",";
});
diff --git a/webdriver-ts/tsconfig.json b/webdriver-ts/tsconfig.json
index 13c8e2876..527739576 100644
--- a/webdriver-ts/tsconfig.json
+++ b/webdriver-ts/tsconfig.json
@@ -7,6 +7,7 @@
"moduleResolution": "NodeNext",
"declaration": false,
"target": "es2017",
+ "lib": ["es2022", "dom"],
"allowSyntheticDefaultImports": true,
"noLib": false,