Datasets:
Add benchmark dataset
Browse files- .gitattributes +3 -0
- README.md +35 -0
- data/benchmark.jsonl +15 -0
- data/task_03_cities.jsonl +300 -0
- data/task_04_sir_reference.jsonl +400 -0
- data/task_05_configs.jsonl +36 -0
- data/task_05_data.jsonl +3 -0
- data/task_06_patients.jsonl +0 -0
- data/task_07_sequences.jsonl +0 -0
- data/task_08_test.jsonl +0 -0
- data/task_08_train.jsonl +3 -0
- data/task_10_portfolio.jsonl +300 -0
- data/task_10_scenarios.jsonl +0 -0
- data/task_11_library.jsonl +3 -0
- data/task_13_edges.jsonl +0 -0
- data/task_13_nodes.jsonl +0 -0
- data/task_13_sources.jsonl +400 -0
- data/task_15_sequences.jsonl +0 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
data/task_05_data.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
data/task_08_train.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
data/task_11_library.jsonl filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- other
|
| 5 |
+
tags:
|
| 6 |
+
- parcs
|
| 7 |
+
- benchmark
|
| 8 |
+
- parallel-computing
|
| 9 |
+
- ai-agents
|
| 10 |
+
pretty_name: "PARCS-Agent Benchmark — 15 Parallel Computing Tasks"
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# PARCS-Agent Benchmark
|
| 14 |
+
|
| 15 |
+
15 tasks for evaluating PARCS-enabled (parallel) vs. sequential AI agents.
|
| 16 |
+
|
| 17 |
+
## Main split — `benchmark`
|
| 18 |
+
|
| 19 |
+
| Column | Type | Description |
|
| 20 |
+
|--------|------|-------------|
|
| 21 |
+
| `task_id` | int | Task number 1–15 |
|
| 22 |
+
| `question` | string | Self-contained prompt given to the agent |
|
| 23 |
+
| `answer` | string | JSON with reference / ground-truth values |
|
| 24 |
+
|
| 25 |
+
## Supplementary splits
|
| 26 |
+
|
| 27 |
+
Seed-based tasks include pre-generated input data:
|
| 28 |
+
`task_03_cities`, `task_04_sir_reference`, `task_05_data`, `task_05_configs`,
|
| 29 |
+
`task_06_patients`, `task_07_sequences`, `task_08_train`, `task_08_test`,
|
| 30 |
+
`task_10_portfolio`, `task_10_scenarios`, `task_11_library`,
|
| 31 |
+
`task_13_nodes`, `task_13_edges`, `task_13_sources`, `task_15_sequences`
|
| 32 |
+
|
| 33 |
+
## Citation
|
| 34 |
+
|
| 35 |
+
PARCS-Agent benchmark (Bohusevych, 2026). Forthcoming.
|
data/benchmark.jsonl
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"task_id":1,"question":"You have a portfolio of 50 assets with equal weights (w_i = 1/50). The return covariance matrix Σ ∈ ℝ^{50×50} is generated from seed=42: A = randn(50,50,seed=42); Σ = Aᵀ·A/50 + 0.01·I. Using 2,000,000 Monte Carlo scenarios (each of 20 workers generates 100,000 using seed WorkerIndex*1000+42 and the shared Cholesky factor L of Σ), estimate the 1-day 99% Value-at-Risk (VaR) and Conditional VaR (CVaR) of the portfolio loss distribution. Loss = –(portfolio return). Return {var_99, cvar_99} as floats.","answer":"{\"var_99_approx\":0.294775,\"cvar_99_approx\":0.338588,\"note\":\"Reference computed with 50k scenarios; full task uses 2M.\"}"}
|
| 2 |
+
{"task_id":2,"question":"Price 200 down-and-out European call options on a (S,σ,T) grid: S ∈ {80,85,90,95,100,105,110,115,120,125}, σ ∈ {0.10,0.15,0.20,0.25}, T ∈ {0.25,0.5,1.0,2.0,4.0} years. Parameters: K=100, r=0.05, B=0.85·S. Use 500,000 GBM paths per grid point; each of 20 workers prices 10 points using seed WorkerIndex*999+7. Compute delta and vega by central finite difference. Return a JSON array of {S,sigma,T,price,delta,vega} for all 200 points.","answer":"{\"reference_price_S100_sig020_T1\":7.9153,\"note\":\"Analytical barrier option price at S=100,σ=0.20,T=1.\"}"}
|
| 3 |
+
{"task_id":3,"question":"Find the shortest Hamiltonian tour through 300 cities. City coordinates: x[i]=rng()*1000, y[i]=rng()*1000 generated from seed=12345 (Mulberry32 PRNG). Run 20 independent Simulated Annealing trials (α=0.9995, T₀=1000, 500,000 iterations, 2-opt neighbourhood), each worker using seed WorkerIndex*777. Return {best_tour_length, best_worker_seed, all_trial_lengths}. The nearest-neighbour baseline is provided in the answer for reference.","answer":"{\"nearest_neighbour_tour_length\":16018.84,\"note\":\"SA with 20 trials should beat NN by 10–20%.\"}"}
|
| 4 |
+
{"task_id":4,"question":"Simulate a discrete-time SIR epidemic on N=1,000,000 individuals for 365 days across a 20×20 parameter grid: R₀ ∈ linspace(0.8,4.0,20), θ ∈ linspace(0.01,0.20,20). Parameters: γ=1/14, β=R₀·γ; when I/N ≥ θ apply 50% contact-rate reduction. Initial conditions: S₀=999900, I₀=100, R₀_init=0. Each of 20 workers simulates 20 parameter combinations. Return a JSON array of {R0,theta,peak_infected_frac,attack_rate,days_to_peak,intervention_days} for all 400 combinations.","answer":"{\"max_peak_infected_frac\":0.254092,\"min_attack_rate\":0.000497}"}
|
| 5 |
+
{"task_id":5,"question":"Train a gradient boosting classifier on a synthetic dataset (80,000 rows, 25 features). Dataset: features X~N(0,1)^{80000×25} from seed=42, labels via logit(P(y=1))=X·β, β~N(0,1) from seed=42. Evaluate all 20 hyperparameter configs (learning_rate∈{0.01,0.05,0.1}, max_depth∈{3,5,7}, n_estimators∈{100,300}, subsample∈{0.8,1.0}) with 5-fold CV. Each worker trains one config. Return {best_config_index, best_auc_roc, ranked_configs:[{config_index,auc_roc}]}.","answer":"{\"note\":\"Best AUC-ROC typically 0.82–0.90 for max_depth≥5 configs.\"}"}
|
| 6 |
+
{"task_id":6,"question":"Fit a Cox proportional hazards model on a synthetic patient dataset (N=8,000; 5 covariates cov_0…cov_4; time; event) and compute 95% bootstrap confidence intervals for all 5 hazard ratios using B=10,000 resamples. Dataset: cov~N(0,1) seed=42; β=(0.5,−0.3,0.8,0.1,−0.6); event times~Exponential(exp(X·β)); 30% censoring. Each of 20 workers runs 500 resamples. Return {cov_i:{ci_lower,ci_upper,point_estimate}} for i=0..4.","answer":"{\"true_betas\":[0.5,-0.3,0.8,0.1,-0.6],\"note\":\"95% CIs should bracket true betas.\"}"}
|
| 7 |
+
{"task_id":7,"question":"Compute the 600×600 pairwise similarity matrix for 600 synthetic protein sequences using simplified Smith-Waterman (match=+2, mismatch=−1, gap=−2). Sequence i: length~Uniform(50,500) from seed=i, amino acids from 20-letter alphabet with biological frequencies from seed=i*31+17. Normalise scores to [0,1] by dividing by min(len_i,len_j)*2. Return {top_20_pairs:[{seq_i,seq_j,score}], matrix_checksum (sum of upper-triangular normalised scores, 4 d.p.), n_families_above_0p7}.","answer":"{\"n_pairs\":179700,\"note\":\"Expect 5–15 high-similarity family clusters.\"}"}
|
| 8 |
+
{"task_id":8,"question":"Train a random forest of 200 decision trees on a synthetic regression dataset (60,000 train rows, 30 features, 10,000 test rows). Dataset: X~N(0,1)^{70000×30} from seed=99; y=sin(X·β)+0.1·ε, β~N(0,1) seed=99. Each tree: bootstrap sample, √30≈5 features/split, max_depth=15, min_leaf=5. Each of 20 workers grows 10 trees using seeds WorkerIndex*200+treeIndex. Return {oob_rmse, test_rmse, feature_importances:[{feature,importance}] top 10}.","answer":"{\"target_variance_test\":0.5114,\"note\":\"Expect test_rmse << sqrt(target_variance).\"}"}
|
| 9 |
+
{"task_id":9,"question":"Generate and test 10,000 candidate 512-bit odd integers for primality using Miller-Rabin (k=20 witness rounds, FP rate < 4^{−20}). For each confirmed prime p, check if (p−1)/2 is also prime (safe prime). Each of 20 workers tests 500 candidates using seed WorkerIndex*9973 to generate 512-bit odd numbers. Return {prime_count, safe_prime_count, empirical_prime_density, pnt_predicted_density (=1/ln(2^512)), iteration_histogram}.","answer":"{\"pnt_predicted_density\":0.002818,\"expected_primes_in_10000\":28.2}"}
|
| 10 |
+
{"task_id":10,"question":"Reprice a portfolio of 300 instruments under 500 stress scenarios using delta-linear approximation: P&L_s = Σ_i w_i·(δ_i·shock_s). Portfolio: sensitivities δ∈ℝ^{300×15} and weights w from seed=77. Scenarios: 500 shock vectors∈ℝ^{15}, entries~N(0,0.03) from seed=99. Each of 20 workers prices the full portfolio under 25 scenarios. Return {worst_10_scenarios:[{scenario_id,pnl}], pnl_var_99 (1st percentile), pnl_std, top_3_loss_drivers per worst scenario}.","answer":"{\"pnl_var_99\":-0.020224,\"pnl_std\":0.008591,\"worst_10_scenario_ids\":[16,50,408,43,34,332,317,173,480,330]}"}
|
| 11 |
+
{"task_id":11,"question":"Score 50,000 molecules against a reference kinase inhibitor fingerprint using Tanimoto similarity on 2048-bit Morgan fingerprints. Library: fps (bit-set prob 0.05 each bit) from seed=55; MW~N(350,80), HBD~Uniform(0,7), HBA~Uniform(0,11), logP~N(2.5,1.5). Reference fp from seed=0. Proxy score=0.7·Tanimoto+0.1·(1−MW/700)+0.1·(1−HBD/8)+0.1·(1−logP/7). Apply Lipinski filters: MW≤500, HBD≤5, HBA≤10, logP≤5. Each of 20 workers scores 2,500 molecules. Return {top_100_mol_ids, lipinski_pass_rate, mean_tanimoto}.","answer":"{\"top_100_mol_ids\":[47972,30290,40210,5161,5872,38406,44891,21874,7266,5554,2290,30080,41428,20730,36242,20479,42456,45469,31027,33939,6345,36606,2829,3006,12707,37149,44883,49562,43061,11653,963,38223,24642,45455,4943,29887,3794,8030,32869,25423,43806,15017,9732,11852,43965,3441,18200,6838,40087,473,44034,32451,21280,19621,18467,36524,46335,2254,3141,29337,15488,3535,26309,2682,42978,26383,1006,23791,34252,46793,22572,23065,6414,28417,16948,8849,44459,46,7504,42705,32526,8479,41237,27448,44288,26142,1002,31039,8041,5493,28629,40449,38549,31676,5000,42312,43649,2778,12118,13091],\"lipinski_pass_rate\":0.4374,\"mean_tanimoto\":0.026024}"}
|
| 12 |
+
{"task_id":12,"question":"Simulate 2,000,000 policy years under a compound Poisson risk process: claim count N~Poisson(λ=200), severity X~Lognormal(μ=8,σ=1.5). Premium P=(1+0.2)·E[S]; initial surplus U=500,000. Each of 20 workers simulates 100,000 policy years using seed_counts=WorkerIndex*2053+1, seed_severities=WorkerIndex*3571+2. Return {ruin_prob_1yr, ruin_prob_5yr, ruin_prob_10yr, scr_995 (99.5th-percentile annual loss), expected_deficit_given_ruin}.","answer":"{\"annual_premium\":2203679.28,\"E_S\":1836399.4,\"note\":\"Cramér-Lundberg: ruin prob ≤ exp(−R·U) for θ=0.2.\"}"}
|
| 13 |
+
{"task_id":13,"question":"On a synthetic road-network graph (5,000 nodes, ~25,000 edges): compute shortest-path lengths from 400 sampled source nodes (Dijkstra), approximate betweenness centrality for all nodes, network diameter and average path length (hop count), and top-20 most critical edges by removal impact. Graph: nodes in [0,1]² from seed=314; edges between nodes within distance 0.055; weights~Uniform(1,30) minutes from seed=314. Each of 20 workers runs Dijkstra from 20 source nodes (WorkerIndex*20…WorkerIndex*20+19). Return {top_20_nodes_by_betweenness, top_20_critical_edges, avg_path_length_hops, diameter_hops}.","answer":"{\"n_edges\":113877}"}
|
| 14 |
+
{"task_id":14,"question":"Simulate photon transport through a 50-layer plane-parallel atmosphere. Layer l: τ_scat[l]=0.1·exp(−0.05·l), τ_abs[l]=0.02·exp(−0.08·l), ω[l]=τ_scat/(τ_scat+τ_abs). Solar zenith θ=30°. Rayleigh phase function. Simulate 5,000,000 photons; each of 20 workers traces 250,000 using seed WorkerIndex*6271+3. Return {toa_radiance, surface_irradiance, heating_rates:[50 floats], ssa_retrieval_rmse}.","answer":"{\"total_optical_depth\":2.1375}"}
|
| 15 |
+
{"task_id":15,"question":"Compute the k=8 frequency spectrum (4^8=65,536 k-mers) for each of 20 synthetic genomic sequences (500,000 bp, composition A:0.30,C:0.20,G:0.20,T:0.30, sequence i from seed=i*104729+1) and for the combined corpus. For each sequence: top-50 over/under-represented k-mers vs. null expectation; repeat regions (k-mer freq>100 in consecutive 10kb windows). Final layer: Jensen-Shannon divergence between each spectrum and corpus mean. Return {js_divergences:[20 floats], corpus_top_10_kmers, frequency_table_checksums:[20 ints], expected_checksum_per_seq:499993}.","answer":"{\"expected_checksum_per_seq\":499993,\"note\":\"checksum = seq_length − k + 1 = 499993.\"}"}
|
data/task_03_cities.jsonl
ADDED
|
@@ -0,0 +1,300 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"city_id":0,"x":979.7283,"y":306.7523}
|
| 2 |
+
{"city_id":1,"x":484.2054,"y":817.9344}
|
| 3 |
+
{"city_id":2,"x":509.4284,"y":347.4719}
|
| 4 |
+
{"city_id":3,"x":73.7575,"y":766.3965}
|
| 5 |
+
{"city_id":4,"x":996.8264,"y":825.0225}
|
| 6 |
+
{"city_id":5,"x":459.9349,"y":945.8442}
|
| 7 |
+
{"city_id":6,"x":890.623,"y":969.3437}
|
| 8 |
+
{"city_id":7,"x":627.6605,"y":248.8257}
|
| 9 |
+
{"city_id":8,"x":473.3428,"y":305.0451}
|
| 10 |
+
{"city_id":9,"x":772.419,"y":865.1749}
|
| 11 |
+
{"city_id":10,"x":646.4686,"y":780.1495}
|
| 12 |
+
{"city_id":11,"x":787.3199,"y":652.9158}
|
| 13 |
+
{"city_id":12,"x":453.0412,"y":73.37}
|
| 14 |
+
{"city_id":13,"x":326.3069,"y":205.5863}
|
| 15 |
+
{"city_id":14,"x":752.235,"y":101.1084}
|
| 16 |
+
{"city_id":15,"x":279.1906,"y":65.4321}
|
| 17 |
+
{"city_id":16,"x":629.1882,"y":927.2993}
|
| 18 |
+
{"city_id":17,"x":347.7739,"y":211.9885}
|
| 19 |
+
{"city_id":18,"x":1.7582,"y":681.2131}
|
| 20 |
+
{"city_id":19,"x":809.1899,"y":48.3655}
|
| 21 |
+
{"city_id":20,"x":597.2538,"y":702.5257}
|
| 22 |
+
{"city_id":21,"x":936.97,"y":36.9489}
|
| 23 |
+
{"city_id":22,"x":564.6048,"y":902.0042}
|
| 24 |
+
{"city_id":23,"x":587.4347,"y":841.9002}
|
| 25 |
+
{"city_id":24,"x":461.4675,"y":260.9165}
|
| 26 |
+
{"city_id":25,"x":263.5621,"y":517.5131}
|
| 27 |
+
{"city_id":26,"x":718.843,"y":305.4587}
|
| 28 |
+
{"city_id":27,"x":94.6445,"y":855.8071}
|
| 29 |
+
{"city_id":28,"x":435.0532,"y":892.8155}
|
| 30 |
+
{"city_id":29,"x":145.9135,"y":12.7024}
|
| 31 |
+
{"city_id":30,"x":185.3474,"y":757.2246}
|
| 32 |
+
{"city_id":31,"x":426.5607,"y":731.15}
|
| 33 |
+
{"city_id":32,"x":429.8283,"y":79.9761}
|
| 34 |
+
{"city_id":33,"x":364.4476,"y":977.3226}
|
| 35 |
+
{"city_id":34,"x":974.5059,"y":767.7446}
|
| 36 |
+
{"city_id":35,"x":299.5453,"y":0.8159}
|
| 37 |
+
{"city_id":36,"x":589.2364,"y":155.2081}
|
| 38 |
+
{"city_id":37,"x":502.6519,"y":167.5424}
|
| 39 |
+
{"city_id":38,"x":827.4493,"y":917.076}
|
| 40 |
+
{"city_id":39,"x":232.5903,"y":767.132}
|
| 41 |
+
{"city_id":40,"x":296.5318,"y":763.2168}
|
| 42 |
+
{"city_id":41,"x":956.9259,"y":162.2363}
|
| 43 |
+
{"city_id":42,"x":868.511,"y":945.5537}
|
| 44 |
+
{"city_id":43,"x":542.5309,"y":12.4389}
|
| 45 |
+
{"city_id":44,"x":573.6708,"y":705.4704}
|
| 46 |
+
{"city_id":45,"x":657.0099,"y":603.93}
|
| 47 |
+
{"city_id":46,"x":946.1967,"y":811.4348}
|
| 48 |
+
{"city_id":47,"x":973.2454,"y":880.6413}
|
| 49 |
+
{"city_id":48,"x":478.0815,"y":398.7402}
|
| 50 |
+
{"city_id":49,"x":237.3082,"y":250.4604}
|
| 51 |
+
{"city_id":50,"x":993.0308,"y":454.7498}
|
| 52 |
+
{"city_id":51,"x":162.2024,"y":27.9166}
|
| 53 |
+
{"city_id":52,"x":353.568,"y":282.6305}
|
| 54 |
+
{"city_id":53,"x":407.2191,"y":258.332}
|
| 55 |
+
{"city_id":54,"x":813.1794,"y":335.0889}
|
| 56 |
+
{"city_id":55,"x":968.0493,"y":816.5217}
|
| 57 |
+
{"city_id":56,"x":584.4385,"y":623.0103}
|
| 58 |
+
{"city_id":57,"x":167.8816,"y":32.6374}
|
| 59 |
+
{"city_id":58,"x":989.6322,"y":21.9012}
|
| 60 |
+
{"city_id":59,"x":658.5567,"y":962.0431}
|
| 61 |
+
{"city_id":60,"x":742.6281,"y":355.6682}
|
| 62 |
+
{"city_id":61,"x":99.6933,"y":608.2469}
|
| 63 |
+
{"city_id":62,"x":377.8784,"y":1.2379}
|
| 64 |
+
{"city_id":63,"x":640.4719,"y":585.6686}
|
| 65 |
+
{"city_id":64,"x":70.9646,"y":323.5618}
|
| 66 |
+
{"city_id":65,"x":598.3936,"y":282.2013}
|
| 67 |
+
{"city_id":66,"x":606.4706,"y":963.9791}
|
| 68 |
+
{"city_id":67,"x":825.2489,"y":824.4766}
|
| 69 |
+
{"city_id":68,"x":768.9164,"y":385.863}
|
| 70 |
+
{"city_id":69,"x":944.8982,"y":864.0793}
|
| 71 |
+
{"city_id":70,"x":431.5184,"y":646.4558}
|
| 72 |
+
{"city_id":71,"x":879.0513,"y":851.5276}
|
| 73 |
+
{"city_id":72,"x":109.3036,"y":954.2187}
|
| 74 |
+
{"city_id":73,"x":434.2647,"y":817.7652}
|
| 75 |
+
{"city_id":74,"x":260.8809,"y":472.2949}
|
| 76 |
+
{"city_id":75,"x":1.1538,"y":179.9009}
|
| 77 |
+
{"city_id":76,"x":134.0757,"y":523.4896}
|
| 78 |
+
{"city_id":77,"x":679.842,"y":6.1106}
|
| 79 |
+
{"city_id":78,"x":615.9787,"y":932.0529}
|
| 80 |
+
{"city_id":79,"x":518.5817,"y":516.0837}
|
| 81 |
+
{"city_id":80,"x":603.5054,"y":672.7097}
|
| 82 |
+
{"city_id":81,"x":219.8981,"y":583.1856}
|
| 83 |
+
{"city_id":82,"x":972.75,"y":183.5364}
|
| 84 |
+
{"city_id":83,"x":451.2725,"y":671.8152}
|
| 85 |
+
{"city_id":84,"x":372.0055,"y":125.8162}
|
| 86 |
+
{"city_id":85,"x":708.4452,"y":924.7979}
|
| 87 |
+
{"city_id":86,"x":755.0078,"y":881.2082}
|
| 88 |
+
{"city_id":87,"x":802.7993,"y":598.6388}
|
| 89 |
+
{"city_id":88,"x":136.4054,"y":753.078}
|
| 90 |
+
{"city_id":89,"x":172.3757,"y":167.6153}
|
| 91 |
+
{"city_id":90,"x":561.4441,"y":43.6056}
|
| 92 |
+
{"city_id":91,"x":654.3442,"y":277.1553}
|
| 93 |
+
{"city_id":92,"x":941.9445,"y":978.6884}
|
| 94 |
+
{"city_id":93,"x":948.1444,"y":412.7279}
|
| 95 |
+
{"city_id":94,"x":793.0777,"y":628.5318}
|
| 96 |
+
{"city_id":95,"x":376.6992,"y":146.7386}
|
| 97 |
+
{"city_id":96,"x":141.1328,"y":729.3857}
|
| 98 |
+
{"city_id":97,"x":151.8854,"y":72.955}
|
| 99 |
+
{"city_id":98,"x":434.8086,"y":548.659}
|
| 100 |
+
{"city_id":99,"x":14.184,"y":664.2689}
|
| 101 |
+
{"city_id":100,"x":362.9242,"y":578.3133}
|
| 102 |
+
{"city_id":101,"x":718.4183,"y":507.3326}
|
| 103 |
+
{"city_id":102,"x":737.4441,"y":23.6848}
|
| 104 |
+
{"city_id":103,"x":274.5096,"y":129.4761}
|
| 105 |
+
{"city_id":104,"x":54.3216,"y":72.6001}
|
| 106 |
+
{"city_id":105,"x":624.4573,"y":74.4338}
|
| 107 |
+
{"city_id":106,"x":717.6767,"y":936.0999}
|
| 108 |
+
{"city_id":107,"x":4.9747,"y":868.2892}
|
| 109 |
+
{"city_id":108,"x":974.0149,"y":451.4437}
|
| 110 |
+
{"city_id":109,"x":559.683,"y":74.0967}
|
| 111 |
+
{"city_id":110,"x":944.1765,"y":233.6873}
|
| 112 |
+
{"city_id":111,"x":365.1444,"y":129.7198}
|
| 113 |
+
{"city_id":112,"x":438.7131,"y":42.9586}
|
| 114 |
+
{"city_id":113,"x":740.3383,"y":20.4745}
|
| 115 |
+
{"city_id":114,"x":107.3486,"y":473.5518}
|
| 116 |
+
{"city_id":115,"x":788.5005,"y":773.3462}
|
| 117 |
+
{"city_id":116,"x":675.577,"y":209.6041}
|
| 118 |
+
{"city_id":117,"x":386.4606,"y":207.8139}
|
| 119 |
+
{"city_id":118,"x":781.283,"y":670.0743}
|
| 120 |
+
{"city_id":119,"x":104.9757,"y":849.0772}
|
| 121 |
+
{"city_id":120,"x":454.3682,"y":563.2386}
|
| 122 |
+
{"city_id":121,"x":644.8076,"y":628.9891}
|
| 123 |
+
{"city_id":122,"x":473.4133,"y":861.0439}
|
| 124 |
+
{"city_id":123,"x":857.6332,"y":679.6456}
|
| 125 |
+
{"city_id":124,"x":779.8012,"y":335.7944}
|
| 126 |
+
{"city_id":125,"x":260.6653,"y":225.1752}
|
| 127 |
+
{"city_id":126,"x":505.8084,"y":108.109}
|
| 128 |
+
{"city_id":127,"x":212.2899,"y":752.3167}
|
| 129 |
+
{"city_id":128,"x":63.4987,"y":930.8724}
|
| 130 |
+
{"city_id":129,"x":712.9319,"y":117.3506}
|
| 131 |
+
{"city_id":130,"x":89.9284,"y":939.8907}
|
| 132 |
+
{"city_id":131,"x":620.2702,"y":746.9932}
|
| 133 |
+
{"city_id":132,"x":480.3371,"y":753.3916}
|
| 134 |
+
{"city_id":133,"x":141.0003,"y":961.3228}
|
| 135 |
+
{"city_id":134,"x":93.7746,"y":941.4296}
|
| 136 |
+
{"city_id":135,"x":889.1884,"y":929.5117}
|
| 137 |
+
{"city_id":136,"x":302.0092,"y":136.2262}
|
| 138 |
+
{"city_id":137,"x":817.7538,"y":835.9428}
|
| 139 |
+
{"city_id":138,"x":169.8182,"y":908.3022}
|
| 140 |
+
{"city_id":139,"x":32.3801,"y":657.446}
|
| 141 |
+
{"city_id":140,"x":903.3155,"y":362.2658}
|
| 142 |
+
{"city_id":141,"x":510.0962,"y":571.9658}
|
| 143 |
+
{"city_id":142,"x":241.0559,"y":290.9979}
|
| 144 |
+
{"city_id":143,"x":929.7306,"y":268.5313}
|
| 145 |
+
{"city_id":144,"x":717.5865,"y":99.4687}
|
| 146 |
+
{"city_id":145,"x":961.0761,"y":430.7225}
|
| 147 |
+
{"city_id":146,"x":394.6585,"y":998.848}
|
| 148 |
+
{"city_id":147,"x":998.7999,"y":354.8665}
|
| 149 |
+
{"city_id":148,"x":532.8887,"y":608.5158}
|
| 150 |
+
{"city_id":149,"x":823.0516,"y":925.3763}
|
| 151 |
+
{"city_id":150,"x":39.0841,"y":868.9191}
|
| 152 |
+
{"city_id":151,"x":71.8448,"y":747.3989}
|
| 153 |
+
{"city_id":152,"x":994.6314,"y":668.2432}
|
| 154 |
+
{"city_id":153,"x":8.8096,"y":106.9212}
|
| 155 |
+
{"city_id":154,"x":688.8417,"y":773.457}
|
| 156 |
+
{"city_id":155,"x":701.5393,"y":551.4117}
|
| 157 |
+
{"city_id":156,"x":920.2934,"y":165.3772}
|
| 158 |
+
{"city_id":157,"x":864.2572,"y":12.7765}
|
| 159 |
+
{"city_id":158,"x":775.9167,"y":447.7684}
|
| 160 |
+
{"city_id":159,"x":519.7158,"y":208.9752}
|
| 161 |
+
{"city_id":160,"x":61.1034,"y":470.3004}
|
| 162 |
+
{"city_id":161,"x":198.6408,"y":713.2533}
|
| 163 |
+
{"city_id":162,"x":557.7692,"y":438.8085}
|
| 164 |
+
{"city_id":163,"x":53.9131,"y":302.6256}
|
| 165 |
+
{"city_id":164,"x":26.297,"y":882.3968}
|
| 166 |
+
{"city_id":165,"x":555.1867,"y":878.045}
|
| 167 |
+
{"city_id":166,"x":154.1395,"y":308.4205}
|
| 168 |
+
{"city_id":167,"x":604.3279,"y":360.6501}
|
| 169 |
+
{"city_id":168,"x":853.0416,"y":602.4103}
|
| 170 |
+
{"city_id":169,"x":953.219,"y":740.292}
|
| 171 |
+
{"city_id":170,"x":552.8352,"y":341.707}
|
| 172 |
+
{"city_id":171,"x":769.3543,"y":817.2423}
|
| 173 |
+
{"city_id":172,"x":938.452,"y":709.6621}
|
| 174 |
+
{"city_id":173,"x":899.9396,"y":236.0197}
|
| 175 |
+
{"city_id":174,"x":755.2065,"y":101.656}
|
| 176 |
+
{"city_id":175,"x":311.0718,"y":93.6258}
|
| 177 |
+
{"city_id":176,"x":803.8734,"y":735.5395}
|
| 178 |
+
{"city_id":177,"x":879.0426,"y":839.205}
|
| 179 |
+
{"city_id":178,"x":514.0383,"y":223.845}
|
| 180 |
+
{"city_id":179,"x":170.5316,"y":228.1232}
|
| 181 |
+
{"city_id":180,"x":376.8728,"y":478.0992}
|
| 182 |
+
{"city_id":181,"x":585.458,"y":361.9846}
|
| 183 |
+
{"city_id":182,"x":735.0716,"y":108.1908}
|
| 184 |
+
{"city_id":183,"x":585.9202,"y":669.4547}
|
| 185 |
+
{"city_id":184,"x":56.5384,"y":134.2579}
|
| 186 |
+
{"city_id":185,"x":264.598,"y":677.4902}
|
| 187 |
+
{"city_id":186,"x":238.485,"y":72.46}
|
| 188 |
+
{"city_id":187,"x":302.7964,"y":625.58}
|
| 189 |
+
{"city_id":188,"x":285.5995,"y":705.9433}
|
| 190 |
+
{"city_id":189,"x":997.9136,"y":376.7419}
|
| 191 |
+
{"city_id":190,"x":645.5742,"y":357.6718}
|
| 192 |
+
{"city_id":191,"x":299.8715,"y":814.4154}
|
| 193 |
+
{"city_id":192,"x":481.142,"y":118.261}
|
| 194 |
+
{"city_id":193,"x":762.9498,"y":749.1014}
|
| 195 |
+
{"city_id":194,"x":416.0423,"y":234.2776}
|
| 196 |
+
{"city_id":195,"x":110.9479,"y":448.577}
|
| 197 |
+
{"city_id":196,"x":653.7573,"y":432.0352}
|
| 198 |
+
{"city_id":197,"x":415.2342,"y":597.2047}
|
| 199 |
+
{"city_id":198,"x":246.9015,"y":699.8455}
|
| 200 |
+
{"city_id":199,"x":984.3553,"y":826.5048}
|
| 201 |
+
{"city_id":200,"x":455.9197,"y":70.4191}
|
| 202 |
+
{"city_id":201,"x":632.7573,"y":980.7801}
|
| 203 |
+
{"city_id":202,"x":311.6678,"y":274.6695}
|
| 204 |
+
{"city_id":203,"x":341.8646,"y":482.0232}
|
| 205 |
+
{"city_id":204,"x":758.0759,"y":258.5103}
|
| 206 |
+
{"city_id":205,"x":644.2836,"y":159.2736}
|
| 207 |
+
{"city_id":206,"x":99.4452,"y":735.7347}
|
| 208 |
+
{"city_id":207,"x":342.1703,"y":831.0621}
|
| 209 |
+
{"city_id":208,"x":14.1866,"y":978.6267}
|
| 210 |
+
{"city_id":209,"x":150.5653,"y":469.357}
|
| 211 |
+
{"city_id":210,"x":385.2982,"y":801.4859}
|
| 212 |
+
{"city_id":211,"x":499.6538,"y":805.2586}
|
| 213 |
+
{"city_id":212,"x":452.7471,"y":285.9376}
|
| 214 |
+
{"city_id":213,"x":515.9691,"y":254.331}
|
| 215 |
+
{"city_id":214,"x":513.083,"y":794.1774}
|
| 216 |
+
{"city_id":215,"x":603.0978,"y":969.4833}
|
| 217 |
+
{"city_id":216,"x":246.6435,"y":717.9787}
|
| 218 |
+
{"city_id":217,"x":29.095,"y":708.5055}
|
| 219 |
+
{"city_id":218,"x":766.5924,"y":67.6281}
|
| 220 |
+
{"city_id":219,"x":750.1633,"y":542.6259}
|
| 221 |
+
{"city_id":220,"x":867.736,"y":591.191}
|
| 222 |
+
{"city_id":221,"x":516.3218,"y":352.7887}
|
| 223 |
+
{"city_id":222,"x":578.1502,"y":635.0643}
|
| 224 |
+
{"city_id":223,"x":359.6389,"y":908.0105}
|
| 225 |
+
{"city_id":224,"x":624.4052,"y":778.2847}
|
| 226 |
+
{"city_id":225,"x":306.9841,"y":513.4946}
|
| 227 |
+
{"city_id":226,"x":930.0404,"y":895.1842}
|
| 228 |
+
{"city_id":227,"x":694.566,"y":320.9959}
|
| 229 |
+
{"city_id":228,"x":958.8621,"y":298.3025}
|
| 230 |
+
{"city_id":229,"x":903.0161,"y":684.6021}
|
| 231 |
+
{"city_id":230,"x":970.4933,"y":696.247}
|
| 232 |
+
{"city_id":231,"x":4.9715,"y":721.3053}
|
| 233 |
+
{"city_id":232,"x":16.7667,"y":701.4348}
|
| 234 |
+
{"city_id":233,"x":11.9845,"y":351.2379}
|
| 235 |
+
{"city_id":234,"x":425.4838,"y":521.498}
|
| 236 |
+
{"city_id":235,"x":419.2229,"y":522.9285}
|
| 237 |
+
{"city_id":236,"x":863.2638,"y":15.9405}
|
| 238 |
+
{"city_id":237,"x":442.3293,"y":796.0089}
|
| 239 |
+
{"city_id":238,"x":503.4272,"y":207.9055}
|
| 240 |
+
{"city_id":239,"x":274.4534,"y":827.2863}
|
| 241 |
+
{"city_id":240,"x":813.2689,"y":826.6922}
|
| 242 |
+
{"city_id":241,"x":50.7847,"y":847.9164}
|
| 243 |
+
{"city_id":242,"x":344.6432,"y":994.7568}
|
| 244 |
+
{"city_id":243,"x":869.6015,"y":989.3021}
|
| 245 |
+
{"city_id":244,"x":181.9631,"y":617.119}
|
| 246 |
+
{"city_id":245,"x":544.6056,"y":578.9159}
|
| 247 |
+
{"city_id":246,"x":595.926,"y":808.518}
|
| 248 |
+
{"city_id":247,"x":844.1747,"y":901.1733}
|
| 249 |
+
{"city_id":248,"x":428.9864,"y":589.3092}
|
| 250 |
+
{"city_id":249,"x":343.7053,"y":280.2418}
|
| 251 |
+
{"city_id":250,"x":740.9017,"y":200.8031}
|
| 252 |
+
{"city_id":251,"x":842.3304,"y":525.802}
|
| 253 |
+
{"city_id":252,"x":844.8009,"y":329.0121}
|
| 254 |
+
{"city_id":253,"x":263.1764,"y":685.8786}
|
| 255 |
+
{"city_id":254,"x":452.6536,"y":987.4848}
|
| 256 |
+
{"city_id":255,"x":632.5648,"y":725.1515}
|
| 257 |
+
{"city_id":256,"x":289.4068,"y":891.1379}
|
| 258 |
+
{"city_id":257,"x":481.4928,"y":388.0687}
|
| 259 |
+
{"city_id":258,"x":929.8065,"y":94.2445}
|
| 260 |
+
{"city_id":259,"x":261.1276,"y":90.7264}
|
| 261 |
+
{"city_id":260,"x":23.5626,"y":360.1021}
|
| 262 |
+
{"city_id":261,"x":474.1708,"y":255.195}
|
| 263 |
+
{"city_id":262,"x":207.9285,"y":145.8193}
|
| 264 |
+
{"city_id":263,"x":483.1688,"y":110.7345}
|
| 265 |
+
{"city_id":264,"x":891.4749,"y":678.457}
|
| 266 |
+
{"city_id":265,"x":852.1804,"y":362.5094}
|
| 267 |
+
{"city_id":266,"x":231.9682,"y":878.8029}
|
| 268 |
+
{"city_id":267,"x":899.8829,"y":598.0554}
|
| 269 |
+
{"city_id":268,"x":705.6839,"y":715.4163}
|
| 270 |
+
{"city_id":269,"x":672.7351,"y":408.565}
|
| 271 |
+
{"city_id":270,"x":534.1389,"y":557.0729}
|
| 272 |
+
{"city_id":271,"x":681.0573,"y":476.4736}
|
| 273 |
+
{"city_id":272,"x":293.7131,"y":114.1251}
|
| 274 |
+
{"city_id":273,"x":688.9897,"y":819.2351}
|
| 275 |
+
{"city_id":274,"x":534.5519,"y":84.0766}
|
| 276 |
+
{"city_id":275,"x":911.5785,"y":148.0193}
|
| 277 |
+
{"city_id":276,"x":681.7756,"y":316.2813}
|
| 278 |
+
{"city_id":277,"x":540.1792,"y":554.6228}
|
| 279 |
+
{"city_id":278,"x":68.6959,"y":335.4219}
|
| 280 |
+
{"city_id":279,"x":828.4667,"y":520.8362}
|
| 281 |
+
{"city_id":280,"x":952.6131,"y":663.8825}
|
| 282 |
+
{"city_id":281,"x":201.1889,"y":799.17}
|
| 283 |
+
{"city_id":282,"x":28.3077,"y":672.1832}
|
| 284 |
+
{"city_id":283,"x":786.9927,"y":458.1905}
|
| 285 |
+
{"city_id":284,"x":538.0227,"y":470.4857}
|
| 286 |
+
{"city_id":285,"x":873.6259,"y":441.225}
|
| 287 |
+
{"city_id":286,"x":737.0124,"y":356.1398}
|
| 288 |
+
{"city_id":287,"x":919.245,"y":217.9528}
|
| 289 |
+
{"city_id":288,"x":35.2271,"y":268.1246}
|
| 290 |
+
{"city_id":289,"x":960.4719,"y":649.2966}
|
| 291 |
+
{"city_id":290,"x":737.3147,"y":493.3823}
|
| 292 |
+
{"city_id":291,"x":782.8623,"y":452.8469}
|
| 293 |
+
{"city_id":292,"x":195.0519,"y":883.7594}
|
| 294 |
+
{"city_id":293,"x":482.6502,"y":726.7157}
|
| 295 |
+
{"city_id":294,"x":756.4467,"y":826.8087}
|
| 296 |
+
{"city_id":295,"x":526.287,"y":562.7852}
|
| 297 |
+
{"city_id":296,"x":64.6221,"y":89.3463}
|
| 298 |
+
{"city_id":297,"x":485.2816,"y":188.9768}
|
| 299 |
+
{"city_id":298,"x":92.7726,"y":173.9374}
|
| 300 |
+
{"city_id":299,"x":921.1146,"y":711.8165}
|
data/task_04_sir_reference.jsonl
ADDED
|
@@ -0,0 +1,400 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"R0":0.8,"theta":0.01,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 2 |
+
{"R0":0.8,"theta":0.02,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 3 |
+
{"R0":0.8,"theta":0.03,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 4 |
+
{"R0":0.8,"theta":0.04,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 5 |
+
{"R0":0.8,"theta":0.05,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 6 |
+
{"R0":0.8,"theta":0.06,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 7 |
+
{"R0":0.8,"theta":0.07,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 8 |
+
{"R0":0.8,"theta":0.08,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 9 |
+
{"R0":0.8,"theta":0.09,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 10 |
+
{"R0":0.8,"theta":0.1,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 11 |
+
{"R0":0.8,"theta":0.11,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 12 |
+
{"R0":0.8,"theta":0.12,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 13 |
+
{"R0":0.8,"theta":0.13,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 14 |
+
{"R0":0.8,"theta":0.14,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 15 |
+
{"R0":0.8,"theta":0.15,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 16 |
+
{"R0":0.8,"theta":0.16,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 17 |
+
{"R0":0.8,"theta":0.17,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 18 |
+
{"R0":0.8,"theta":0.18,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 19 |
+
{"R0":0.8,"theta":0.19,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 20 |
+
{"R0":0.8,"theta":0.2,"peak_infected_frac":0.0001,"attack_rate":0.000497,"days_to_peak":0,"intervention_days":0}
|
| 21 |
+
{"R0":0.9684,"theta":0.01,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 22 |
+
{"R0":0.9684,"theta":0.02,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 23 |
+
{"R0":0.9684,"theta":0.03,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 24 |
+
{"R0":0.9684,"theta":0.04,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 25 |
+
{"R0":0.9684,"theta":0.05,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 26 |
+
{"R0":0.9684,"theta":0.06,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 27 |
+
{"R0":0.9684,"theta":0.07,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 28 |
+
{"R0":0.9684,"theta":0.08,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 29 |
+
{"R0":0.9684,"theta":0.09,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 30 |
+
{"R0":0.9684,"theta":0.1,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 31 |
+
{"R0":0.9684,"theta":0.11,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 32 |
+
{"R0":0.9684,"theta":0.12,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 33 |
+
{"R0":0.9684,"theta":0.13,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 34 |
+
{"R0":0.9684,"theta":0.14,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 35 |
+
{"R0":0.9684,"theta":0.15,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 36 |
+
{"R0":0.9684,"theta":0.16,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 37 |
+
{"R0":0.9684,"theta":0.17,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 38 |
+
{"R0":0.9684,"theta":0.18,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 39 |
+
{"R0":0.9684,"theta":0.19,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 40 |
+
{"R0":0.9684,"theta":0.2,"peak_infected_frac":0.0001,"attack_rate":0.001764,"days_to_peak":0,"intervention_days":0}
|
| 41 |
+
{"R0":1.1368,"theta":0.01,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 42 |
+
{"R0":1.1368,"theta":0.02,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 43 |
+
{"R0":1.1368,"theta":0.03,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 44 |
+
{"R0":1.1368,"theta":0.04,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 45 |
+
{"R0":1.1368,"theta":0.05,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 46 |
+
{"R0":1.1368,"theta":0.06,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 47 |
+
{"R0":1.1368,"theta":0.07,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 48 |
+
{"R0":1.1368,"theta":0.08,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 49 |
+
{"R0":1.1368,"theta":0.09,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 50 |
+
{"R0":1.1368,"theta":0.1,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 51 |
+
{"R0":1.1368,"theta":0.11,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 52 |
+
{"R0":1.1368,"theta":0.12,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 53 |
+
{"R0":1.1368,"theta":0.13,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 54 |
+
{"R0":1.1368,"theta":0.14,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 55 |
+
{"R0":1.1368,"theta":0.15,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 56 |
+
{"R0":1.1368,"theta":0.16,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 57 |
+
{"R0":1.1368,"theta":0.17,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 58 |
+
{"R0":1.1368,"theta":0.18,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 59 |
+
{"R0":1.1368,"theta":0.19,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 60 |
+
{"R0":1.1368,"theta":0.2,"peak_infected_frac":0.002854,"attack_rate":0.022503,"days_to_peak":365,"intervention_days":0}
|
| 61 |
+
{"R0":1.3053,"theta":0.01,"peak_infected_frac":0.01015,"attack_rate":0.136675,"days_to_peak":234,"intervention_days":43}
|
| 62 |
+
{"R0":1.3053,"theta":0.02,"peak_infected_frac":0.020161,"attack_rate":0.219869,"days_to_peak":273,"intervention_days":14}
|
| 63 |
+
{"R0":1.3053,"theta":0.03,"peak_infected_frac":0.030011,"attack_rate":0.26889,"days_to_peak":330,"intervention_days":1}
|
| 64 |
+
{"R0":1.3053,"theta":0.04,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 65 |
+
{"R0":1.3053,"theta":0.05,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 66 |
+
{"R0":1.3053,"theta":0.06,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 67 |
+
{"R0":1.3053,"theta":0.07,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 68 |
+
{"R0":1.3053,"theta":0.08,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 69 |
+
{"R0":1.3053,"theta":0.09,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 70 |
+
{"R0":1.3053,"theta":0.1,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 71 |
+
{"R0":1.3053,"theta":0.11,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 72 |
+
{"R0":1.3053,"theta":0.12,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 73 |
+
{"R0":1.3053,"theta":0.13,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 74 |
+
{"R0":1.3053,"theta":0.14,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 75 |
+
{"R0":1.3053,"theta":0.15,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 76 |
+
{"R0":1.3053,"theta":0.16,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 77 |
+
{"R0":1.3053,"theta":0.17,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 78 |
+
{"R0":1.3053,"theta":0.18,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 79 |
+
{"R0":1.3053,"theta":0.19,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 80 |
+
{"R0":1.3053,"theta":0.2,"peak_infected_frac":0.03004,"attack_rate":0.27125,"days_to_peak":333,"intervention_days":0}
|
| 81 |
+
{"R0":1.4737,"theta":0.01,"peak_infected_frac":0.010275,"attack_rate":0.181524,"days_to_peak":149,"intervention_days":104}
|
| 82 |
+
{"R0":1.4737,"theta":0.02,"peak_infected_frac":0.020485,"attack_rate":0.328971,"days_to_peak":176,"intervention_days":54}
|
| 83 |
+
{"R0":1.4737,"theta":0.03,"peak_infected_frac":0.03066,"attack_rate":0.432859,"days_to_peak":183,"intervention_days":27}
|
| 84 |
+
{"R0":1.4737,"theta":0.04,"peak_infected_frac":0.040629,"attack_rate":0.486468,"days_to_peak":197,"intervention_days":14}
|
| 85 |
+
{"R0":1.4737,"theta":0.05,"peak_infected_frac":0.050266,"attack_rate":0.525437,"days_to_peak":215,"intervention_days":5}
|
| 86 |
+
{"R0":1.4737,"theta":0.06,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 87 |
+
{"R0":1.4737,"theta":0.07,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 88 |
+
{"R0":1.4737,"theta":0.08,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 89 |
+
{"R0":1.4737,"theta":0.09,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 90 |
+
{"R0":1.4737,"theta":0.1,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 91 |
+
{"R0":1.4737,"theta":0.11,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 92 |
+
{"R0":1.4737,"theta":0.12,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 93 |
+
{"R0":1.4737,"theta":0.13,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 94 |
+
{"R0":1.4737,"theta":0.14,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 95 |
+
{"R0":1.4737,"theta":0.15,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 96 |
+
{"R0":1.4737,"theta":0.16,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 97 |
+
{"R0":1.4737,"theta":0.17,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 98 |
+
{"R0":1.4737,"theta":0.18,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 99 |
+
{"R0":1.4737,"theta":0.19,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 100 |
+
{"R0":1.4737,"theta":0.2,"peak_infected_frac":0.058921,"attack_rate":0.548609,"days_to_peak":238,"intervention_days":0}
|
| 101 |
+
{"R0":1.6421,"theta":0.01,"peak_infected_frac":0.010413,"attack_rate":0.203465,"days_to_peak":120,"intervention_days":158}
|
| 102 |
+
{"R0":1.6421,"theta":0.02,"peak_infected_frac":0.020727,"attack_rate":0.380785,"days_to_peak":138,"intervention_days":96}
|
| 103 |
+
{"R0":1.6421,"theta":0.03,"peak_infected_frac":0.031014,"attack_rate":0.508184,"days_to_peak":139,"intervention_days":55}
|
| 104 |
+
{"R0":1.6421,"theta":0.04,"peak_infected_frac":0.041028,"attack_rate":0.56208,"days_to_peak":153,"intervention_days":35}
|
| 105 |
+
{"R0":1.6421,"theta":0.05,"peak_infected_frac":0.051209,"attack_rate":0.592237,"days_to_peak":154,"intervention_days":23}
|
| 106 |
+
{"R0":1.6421,"theta":0.06,"peak_infected_frac":0.060912,"attack_rate":0.617366,"days_to_peak":174,"intervention_days":14}
|
| 107 |
+
{"R0":1.6421,"theta":0.07,"peak_infected_frac":0.070896,"attack_rate":0.635583,"days_to_peak":170,"intervention_days":8}
|
| 108 |
+
{"R0":1.6421,"theta":0.08,"peak_infected_frac":0.080616,"attack_rate":0.649156,"days_to_peak":170,"intervention_days":4}
|
| 109 |
+
{"R0":1.6421,"theta":0.09,"peak_infected_frac":0.09001,"attack_rate":0.660731,"days_to_peak":185,"intervention_days":1}
|
| 110 |
+
{"R0":1.6421,"theta":0.1,"peak_infected_frac":0.090131,"attack_rate":0.66493,"days_to_peak":187,"intervention_days":0}
|
| 111 |
+
{"R0":1.6421,"theta":0.11,"peak_infected_frac":0.090131,"attack_rate":0.66493,"days_to_peak":187,"intervention_days":0}
|
| 112 |
+
{"R0":1.6421,"theta":0.12,"peak_infected_frac":0.090131,"attack_rate":0.66493,"days_to_peak":187,"intervention_days":0}
|
| 113 |
+
{"R0":1.6421,"theta":0.13,"peak_infected_frac":0.090131,"attack_rate":0.66493,"days_to_peak":187,"intervention_days":0}
|
| 114 |
+
{"R0":1.6421,"theta":0.14,"peak_infected_frac":0.090131,"attack_rate":0.66493,"days_to_peak":187,"intervention_days":0}
|
| 115 |
+
{"R0":1.6421,"theta":0.15,"peak_infected_frac":0.090131,"attack_rate":0.66493,"days_to_peak":187,"intervention_days":0}
|
| 116 |
+
{"R0":1.6421,"theta":0.16,"peak_infected_frac":0.090131,"attack_rate":0.66493,"days_to_peak":187,"intervention_days":0}
|
| 117 |
+
{"R0":1.6421,"theta":0.17,"peak_infected_frac":0.090131,"attack_rate":0.66493,"days_to_peak":187,"intervention_days":0}
|
| 118 |
+
{"R0":1.6421,"theta":0.18,"peak_infected_frac":0.090131,"attack_rate":0.66493,"days_to_peak":187,"intervention_days":0}
|
| 119 |
+
{"R0":1.6421,"theta":0.19,"peak_infected_frac":0.090131,"attack_rate":0.66493,"days_to_peak":187,"intervention_days":0}
|
| 120 |
+
{"R0":1.6421,"theta":0.2,"peak_infected_frac":0.090131,"attack_rate":0.66493,"days_to_peak":187,"intervention_days":0}
|
| 121 |
+
{"R0":1.8105,"theta":0.01,"peak_infected_frac":0.010525,"attack_rate":0.217036,"days_to_peak":107,"intervention_days":205}
|
| 122 |
+
{"R0":1.8105,"theta":0.02,"peak_infected_frac":0.020939,"attack_rate":0.411284,"days_to_peak":98,"intervention_days":138}
|
| 123 |
+
{"R0":1.8105,"theta":0.03,"peak_infected_frac":0.03132,"attack_rate":0.55567,"days_to_peak":105,"intervention_days":84}
|
| 124 |
+
{"R0":1.8105,"theta":0.04,"peak_infected_frac":0.041565,"attack_rate":0.614596,"days_to_peak":126,"intervention_days":56}
|
| 125 |
+
{"R0":1.8105,"theta":0.05,"peak_infected_frac":0.051707,"attack_rate":0.641549,"days_to_peak":119,"intervention_days":40}
|
| 126 |
+
{"R0":1.8105,"theta":0.06,"peak_infected_frac":0.061668,"attack_rate":0.661379,"days_to_peak":133,"intervention_days":29}
|
| 127 |
+
{"R0":1.8105,"theta":0.07,"peak_infected_frac":0.07195,"attack_rate":0.677808,"days_to_peak":125,"intervention_days":21}
|
| 128 |
+
{"R0":1.8105,"theta":0.08,"peak_infected_frac":0.081811,"attack_rate":0.691715,"days_to_peak":129,"intervention_days":15}
|
| 129 |
+
{"R0":1.8105,"theta":0.09,"peak_infected_frac":0.091664,"attack_rate":0.705538,"days_to_peak":135,"intervention_days":10}
|
| 130 |
+
{"R0":1.8105,"theta":0.1,"peak_infected_frac":0.101208,"attack_rate":0.718026,"days_to_peak":145,"intervention_days":6}
|
| 131 |
+
{"R0":1.8105,"theta":0.11,"peak_infected_frac":0.110264,"attack_rate":0.728298,"days_to_peak":142,"intervention_days":3}
|
| 132 |
+
{"R0":1.8105,"theta":0.12,"peak_infected_frac":0.120561,"attack_rate":0.735679,"days_to_peak":151,"intervention_days":1}
|
| 133 |
+
{"R0":1.8105,"theta":0.13,"peak_infected_frac":0.121614,"attack_rate":0.739722,"days_to_peak":155,"intervention_days":0}
|
| 134 |
+
{"R0":1.8105,"theta":0.14,"peak_infected_frac":0.121614,"attack_rate":0.739722,"days_to_peak":155,"intervention_days":0}
|
| 135 |
+
{"R0":1.8105,"theta":0.15,"peak_infected_frac":0.121614,"attack_rate":0.739722,"days_to_peak":155,"intervention_days":0}
|
| 136 |
+
{"R0":1.8105,"theta":0.16,"peak_infected_frac":0.121614,"attack_rate":0.739722,"days_to_peak":155,"intervention_days":0}
|
| 137 |
+
{"R0":1.8105,"theta":0.17,"peak_infected_frac":0.121614,"attack_rate":0.739722,"days_to_peak":155,"intervention_days":0}
|
| 138 |
+
{"R0":1.8105,"theta":0.18,"peak_infected_frac":0.121614,"attack_rate":0.739722,"days_to_peak":155,"intervention_days":0}
|
| 139 |
+
{"R0":1.8105,"theta":0.19,"peak_infected_frac":0.121614,"attack_rate":0.739722,"days_to_peak":155,"intervention_days":0}
|
| 140 |
+
{"R0":1.8105,"theta":0.2,"peak_infected_frac":0.121614,"attack_rate":0.739722,"days_to_peak":155,"intervention_days":0}
|
| 141 |
+
{"R0":1.9789,"theta":0.01,"peak_infected_frac":0.01064,"attack_rate":0.226228,"days_to_peak":79,"intervention_days":246}
|
| 142 |
+
{"R0":1.9789,"theta":0.02,"peak_infected_frac":0.021231,"attack_rate":0.43226,"days_to_peak":88,"intervention_days":177}
|
| 143 |
+
{"R0":1.9789,"theta":0.03,"peak_infected_frac":0.031743,"attack_rate":0.594426,"days_to_peak":96,"intervention_days":111}
|
| 144 |
+
{"R0":1.9789,"theta":0.04,"peak_infected_frac":0.041963,"attack_rate":0.653303,"days_to_peak":92,"intervention_days":77}
|
| 145 |
+
{"R0":1.9789,"theta":0.05,"peak_infected_frac":0.052459,"attack_rate":0.68139,"days_to_peak":102,"intervention_days":56}
|
| 146 |
+
{"R0":1.9789,"theta":0.06,"peak_infected_frac":0.062738,"attack_rate":0.700895,"days_to_peak":102,"intervention_days":42}
|
| 147 |
+
{"R0":1.9789,"theta":0.07,"peak_infected_frac":0.073087,"attack_rate":0.71629,"days_to_peak":104,"intervention_days":32}
|
| 148 |
+
{"R0":1.9789,"theta":0.08,"peak_infected_frac":0.083342,"attack_rate":0.727921,"days_to_peak":107,"intervention_days":25}
|
| 149 |
+
{"R0":1.9789,"theta":0.09,"peak_infected_frac":0.092402,"attack_rate":0.740195,"days_to_peak":114,"intervention_days":19}
|
| 150 |
+
{"R0":1.9789,"theta":0.1,"peak_infected_frac":0.102871,"attack_rate":0.748597,"days_to_peak":111,"intervention_days":15}
|
| 151 |
+
{"R0":1.9789,"theta":0.11,"peak_infected_frac":0.112826,"attack_rate":0.759022,"days_to_peak":119,"intervention_days":11}
|
| 152 |
+
{"R0":1.9789,"theta":0.12,"peak_infected_frac":0.121222,"attack_rate":0.767513,"days_to_peak":120,"intervention_days":8}
|
| 153 |
+
{"R0":1.9789,"theta":0.13,"peak_infected_frac":0.132387,"attack_rate":0.777001,"days_to_peak":122,"intervention_days":5}
|
| 154 |
+
{"R0":1.9789,"theta":0.14,"peak_infected_frac":0.140896,"attack_rate":0.783721,"days_to_peak":123,"intervention_days":3}
|
| 155 |
+
{"R0":1.9789,"theta":0.15,"peak_infected_frac":0.150621,"attack_rate":0.791068,"days_to_peak":129,"intervention_days":1}
|
| 156 |
+
{"R0":1.9789,"theta":0.16,"peak_infected_frac":0.152351,"attack_rate":0.794956,"days_to_peak":133,"intervention_days":0}
|
| 157 |
+
{"R0":1.9789,"theta":0.17,"peak_infected_frac":0.152351,"attack_rate":0.794956,"days_to_peak":133,"intervention_days":0}
|
| 158 |
+
{"R0":1.9789,"theta":0.18,"peak_infected_frac":0.152351,"attack_rate":0.794956,"days_to_peak":133,"intervention_days":0}
|
| 159 |
+
{"R0":1.9789,"theta":0.19,"peak_infected_frac":0.152351,"attack_rate":0.794956,"days_to_peak":133,"intervention_days":0}
|
| 160 |
+
{"R0":1.9789,"theta":0.2,"peak_infected_frac":0.152351,"attack_rate":0.794956,"days_to_peak":133,"intervention_days":0}
|
| 161 |
+
{"R0":2.1474,"theta":0.01,"peak_infected_frac":0.011398,"attack_rate":0.23882,"days_to_peak":121,"intervention_days":280}
|
| 162 |
+
{"R0":2.1474,"theta":0.02,"peak_infected_frac":0.02179,"attack_rate":0.450536,"days_to_peak":87,"intervention_days":210}
|
| 163 |
+
{"R0":2.1474,"theta":0.03,"peak_infected_frac":0.031919,"attack_rate":0.624641,"days_to_peak":97,"intervention_days":137}
|
| 164 |
+
{"R0":2.1474,"theta":0.04,"peak_infected_frac":0.042583,"attack_rate":0.687952,"days_to_peak":87,"intervention_days":96}
|
| 165 |
+
{"R0":2.1474,"theta":0.05,"peak_infected_frac":0.052778,"attack_rate":0.715025,"days_to_peak":96,"intervention_days":71}
|
| 166 |
+
{"R0":2.1474,"theta":0.06,"peak_infected_frac":0.063641,"attack_rate":0.731321,"days_to_peak":85,"intervention_days":55}
|
| 167 |
+
{"R0":2.1474,"theta":0.07,"peak_infected_frac":0.073965,"attack_rate":0.743169,"days_to_peak":92,"intervention_days":44}
|
| 168 |
+
{"R0":2.1474,"theta":0.08,"peak_infected_frac":0.084414,"attack_rate":0.755596,"days_to_peak":91,"intervention_days":35}
|
| 169 |
+
{"R0":2.1474,"theta":0.09,"peak_infected_frac":0.094626,"attack_rate":0.767189,"days_to_peak":92,"intervention_days":28}
|
| 170 |
+
{"R0":2.1474,"theta":0.1,"peak_infected_frac":0.104538,"attack_rate":0.775246,"days_to_peak":94,"intervention_days":23}
|
| 171 |
+
{"R0":2.1474,"theta":0.11,"peak_infected_frac":0.114675,"attack_rate":0.786235,"days_to_peak":96,"intervention_days":18}
|
| 172 |
+
{"R0":2.1474,"theta":0.12,"peak_infected_frac":0.124845,"attack_rate":0.792155,"days_to_peak":98,"intervention_days":15}
|
| 173 |
+
{"R0":2.1474,"theta":0.13,"peak_infected_frac":0.13483,"attack_rate":0.80295,"days_to_peak":100,"intervention_days":11}
|
| 174 |
+
{"R0":2.1474,"theta":0.14,"peak_infected_frac":0.144394,"attack_rate":0.807585,"days_to_peak":102,"intervention_days":9}
|
| 175 |
+
{"R0":2.1474,"theta":0.15,"peak_infected_frac":0.153742,"attack_rate":0.816859,"days_to_peak":106,"intervention_days":6}
|
| 176 |
+
{"R0":2.1474,"theta":0.16,"peak_infected_frac":0.161704,"attack_rate":0.82318,"days_to_peak":111,"intervention_days":4}
|
| 177 |
+
{"R0":2.1474,"theta":0.17,"peak_infected_frac":0.171148,"attack_rate":0.829918,"days_to_peak":109,"intervention_days":2}
|
| 178 |
+
{"R0":2.1474,"theta":0.18,"peak_infected_frac":0.18064,"attack_rate":0.833356,"days_to_peak":114,"intervention_days":1}
|
| 179 |
+
{"R0":2.1474,"theta":0.19,"peak_infected_frac":0.181832,"attack_rate":0.837058,"days_to_peak":117,"intervention_days":0}
|
| 180 |
+
{"R0":2.1474,"theta":0.2,"peak_infected_frac":0.181832,"attack_rate":0.837058,"days_to_peak":117,"intervention_days":0}
|
| 181 |
+
{"R0":2.3158,"theta":0.01,"peak_infected_frac":0.017847,"attack_rate":0.308381,"days_to_peak":156,"intervention_days":292}
|
| 182 |
+
{"R0":2.3158,"theta":0.02,"peak_infected_frac":0.026072,"attack_rate":0.486952,"days_to_peak":115,"intervention_days":230}
|
| 183 |
+
{"R0":2.3158,"theta":0.03,"peak_infected_frac":0.034897,"attack_rate":0.657068,"days_to_peak":97,"intervention_days":155}
|
| 184 |
+
{"R0":2.3158,"theta":0.04,"peak_infected_frac":0.045085,"attack_rate":0.717566,"days_to_peak":87,"intervention_days":111}
|
| 185 |
+
{"R0":2.3158,"theta":0.05,"peak_infected_frac":0.053042,"attack_rate":0.74138,"days_to_peak":99,"intervention_days":86}
|
| 186 |
+
{"R0":2.3158,"theta":0.06,"peak_infected_frac":0.063246,"attack_rate":0.757227,"days_to_peak":79,"intervention_days":67}
|
| 187 |
+
{"R0":2.3158,"theta":0.07,"peak_infected_frac":0.073759,"attack_rate":0.769516,"days_to_peak":92,"intervention_days":54}
|
| 188 |
+
{"R0":2.3158,"theta":0.08,"peak_infected_frac":0.084305,"attack_rate":0.780892,"days_to_peak":90,"intervention_days":44}
|
| 189 |
+
{"R0":2.3158,"theta":0.09,"peak_infected_frac":0.094825,"attack_rate":0.791045,"days_to_peak":80,"intervention_days":36}
|
| 190 |
+
{"R0":2.3158,"theta":0.1,"peak_infected_frac":0.105885,"attack_rate":0.799547,"days_to_peak":84,"intervention_days":30}
|
| 191 |
+
{"R0":2.3158,"theta":0.11,"peak_infected_frac":0.114647,"attack_rate":0.807903,"days_to_peak":89,"intervention_days":25}
|
| 192 |
+
{"R0":2.3158,"theta":0.12,"peak_infected_frac":0.125535,"attack_rate":0.814947,"days_to_peak":86,"intervention_days":21}
|
| 193 |
+
{"R0":2.3158,"theta":0.13,"peak_infected_frac":0.1348,"attack_rate":0.823422,"days_to_peak":90,"intervention_days":17}
|
| 194 |
+
{"R0":2.3158,"theta":0.14,"peak_infected_frac":0.144701,"attack_rate":0.82998,"days_to_peak":89,"intervention_days":14}
|
| 195 |
+
{"R0":2.3158,"theta":0.15,"peak_infected_frac":0.154342,"attack_rate":0.837359,"days_to_peak":92,"intervention_days":11}
|
| 196 |
+
{"R0":2.3158,"theta":0.16,"peak_infected_frac":0.165781,"attack_rate":0.842026,"days_to_peak":91,"intervention_days":9}
|
| 197 |
+
{"R0":2.3158,"theta":0.17,"peak_infected_frac":0.173743,"attack_rate":0.847667,"days_to_peak":94,"intervention_days":7}
|
| 198 |
+
{"R0":2.3158,"theta":0.18,"peak_infected_frac":0.18324,"attack_rate":0.853425,"days_to_peak":96,"intervention_days":5}
|
| 199 |
+
{"R0":2.3158,"theta":0.19,"peak_infected_frac":0.192187,"attack_rate":0.859741,"days_to_peak":96,"intervention_days":3}
|
| 200 |
+
{"R0":2.3158,"theta":0.2,"peak_infected_frac":0.202855,"attack_rate":0.862812,"days_to_peak":99,"intervention_days":2}
|
| 201 |
+
{"R0":2.4842,"theta":0.01,"peak_infected_frac":0.027402,"attack_rate":0.40311,"days_to_peak":159,"intervention_days":293}
|
| 202 |
+
{"R0":2.4842,"theta":0.02,"peak_infected_frac":0.035745,"attack_rate":0.562765,"days_to_peak":121,"intervention_days":223}
|
| 203 |
+
{"R0":2.4842,"theta":0.03,"peak_infected_frac":0.043023,"attack_rate":0.695636,"days_to_peak":105,"intervention_days":159}
|
| 204 |
+
{"R0":2.4842,"theta":0.04,"peak_infected_frac":0.050562,"attack_rate":0.742119,"days_to_peak":95,"intervention_days":121}
|
| 205 |
+
{"R0":2.4842,"theta":0.05,"peak_infected_frac":0.060446,"attack_rate":0.762679,"days_to_peak":87,"intervention_days":94}
|
| 206 |
+
{"R0":2.4842,"theta":0.06,"peak_infected_frac":0.068629,"attack_rate":0.778123,"days_to_peak":83,"intervention_days":76}
|
| 207 |
+
{"R0":2.4842,"theta":0.07,"peak_infected_frac":0.078311,"attack_rate":0.790659,"days_to_peak":79,"intervention_days":62}
|
| 208 |
+
{"R0":2.4842,"theta":0.08,"peak_infected_frac":0.083987,"attack_rate":0.79995,"days_to_peak":93,"intervention_days":53}
|
| 209 |
+
{"R0":2.4842,"theta":0.09,"peak_infected_frac":0.09609,"attack_rate":0.809117,"days_to_peak":75,"intervention_days":44}
|
| 210 |
+
{"R0":2.4842,"theta":0.1,"peak_infected_frac":0.105505,"attack_rate":0.819204,"days_to_peak":85,"intervention_days":37}
|
| 211 |
+
{"R0":2.4842,"theta":0.11,"peak_infected_frac":0.116913,"attack_rate":0.827747,"days_to_peak":78,"intervention_days":31}
|
| 212 |
+
{"R0":2.4842,"theta":0.12,"peak_infected_frac":0.126211,"attack_rate":0.835625,"days_to_peak":75,"intervention_days":26}
|
| 213 |
+
{"R0":2.4842,"theta":0.13,"peak_infected_frac":0.135879,"attack_rate":0.839529,"days_to_peak":83,"intervention_days":23}
|
| 214 |
+
{"R0":2.4842,"theta":0.14,"peak_infected_frac":0.147183,"attack_rate":0.847599,"days_to_peak":81,"intervention_days":19}
|
| 215 |
+
{"R0":2.4842,"theta":0.15,"peak_infected_frac":0.157931,"attack_rate":0.853508,"days_to_peak":80,"intervention_days":16}
|
| 216 |
+
{"R0":2.4842,"theta":0.16,"peak_infected_frac":0.167756,"attack_rate":0.860267,"days_to_peak":80,"intervention_days":13}
|
| 217 |
+
{"R0":2.4842,"theta":0.17,"peak_infected_frac":0.175892,"attack_rate":0.864669,"days_to_peak":81,"intervention_days":11}
|
| 218 |
+
{"R0":2.4842,"theta":0.18,"peak_infected_frac":0.184843,"attack_rate":0.869437,"days_to_peak":85,"intervention_days":9}
|
| 219 |
+
{"R0":2.4842,"theta":0.19,"peak_infected_frac":0.194879,"attack_rate":0.874734,"days_to_peak":85,"intervention_days":7}
|
| 220 |
+
{"R0":2.4842,"theta":0.2,"peak_infected_frac":0.20532,"attack_rate":0.880266,"days_to_peak":85,"intervention_days":5}
|
| 221 |
+
{"R0":2.6526,"theta":0.01,"peak_infected_frac":0.039905,"attack_rate":0.500456,"days_to_peak":147,"intervention_days":279}
|
| 222 |
+
{"R0":2.6526,"theta":0.02,"peak_infected_frac":0.046018,"attack_rate":0.635155,"days_to_peak":123,"intervention_days":210}
|
| 223 |
+
{"R0":2.6526,"theta":0.03,"peak_infected_frac":0.052902,"attack_rate":0.730331,"days_to_peak":107,"intervention_days":156}
|
| 224 |
+
{"R0":2.6526,"theta":0.04,"peak_infected_frac":0.060314,"attack_rate":0.764974,"days_to_peak":97,"intervention_days":122}
|
| 225 |
+
{"R0":2.6526,"theta":0.05,"peak_infected_frac":0.066668,"attack_rate":0.783641,"days_to_peak":91,"intervention_days":100}
|
| 226 |
+
{"R0":2.6526,"theta":0.06,"peak_infected_frac":0.074408,"attack_rate":0.796173,"days_to_peak":86,"intervention_days":83}
|
| 227 |
+
{"R0":2.6526,"theta":0.07,"peak_infected_frac":0.083783,"attack_rate":0.806961,"days_to_peak":81,"intervention_days":69}
|
| 228 |
+
{"R0":2.6526,"theta":0.08,"peak_infected_frac":0.089167,"attack_rate":0.81897,"days_to_peak":79,"intervention_days":59}
|
| 229 |
+
{"R0":2.6526,"theta":0.09,"peak_infected_frac":0.101492,"attack_rate":0.828356,"days_to_peak":75,"intervention_days":49}
|
| 230 |
+
{"R0":2.6526,"theta":0.1,"peak_infected_frac":0.108508,"attack_rate":0.834878,"days_to_peak":74,"intervention_days":43}
|
| 231 |
+
{"R0":2.6526,"theta":0.11,"peak_infected_frac":0.116129,"attack_rate":0.843007,"days_to_peak":72,"intervention_days":37}
|
| 232 |
+
{"R0":2.6526,"theta":0.12,"peak_infected_frac":0.126096,"attack_rate":0.849984,"days_to_peak":82,"intervention_days":32}
|
| 233 |
+
{"R0":2.6526,"theta":0.13,"peak_infected_frac":0.136982,"attack_rate":0.855153,"days_to_peak":79,"intervention_days":28}
|
| 234 |
+
{"R0":2.6526,"theta":0.14,"peak_infected_frac":0.147737,"attack_rate":0.861924,"days_to_peak":77,"intervention_days":24}
|
| 235 |
+
{"R0":2.6526,"theta":0.15,"peak_infected_frac":0.158238,"attack_rate":0.869348,"days_to_peak":76,"intervention_days":20}
|
| 236 |
+
{"R0":2.6526,"theta":0.16,"peak_infected_frac":0.168074,"attack_rate":0.872099,"days_to_peak":76,"intervention_days":18}
|
| 237 |
+
{"R0":2.6526,"theta":0.17,"peak_infected_frac":0.178399,"attack_rate":0.878292,"days_to_peak":76,"intervention_days":15}
|
| 238 |
+
{"R0":2.6526,"theta":0.18,"peak_infected_frac":0.186814,"attack_rate":0.88225,"days_to_peak":77,"intervention_days":13}
|
| 239 |
+
{"R0":2.6526,"theta":0.19,"peak_infected_frac":0.197754,"attack_rate":0.886633,"days_to_peak":77,"intervention_days":11}
|
| 240 |
+
{"R0":2.6526,"theta":0.2,"peak_infected_frac":0.205783,"attack_rate":0.891372,"days_to_peak":78,"intervention_days":9}
|
| 241 |
+
{"R0":2.8211,"theta":0.01,"peak_infected_frac":0.05334,"attack_rate":0.58261,"days_to_peak":138,"intervention_days":260}
|
| 242 |
+
{"R0":2.8211,"theta":0.02,"peak_infected_frac":0.059426,"attack_rate":0.704308,"days_to_peak":116,"intervention_days":187}
|
| 243 |
+
{"R0":2.8211,"theta":0.03,"peak_infected_frac":0.06664,"attack_rate":0.761517,"days_to_peak":103,"intervention_days":143}
|
| 244 |
+
{"R0":2.8211,"theta":0.04,"peak_infected_frac":0.071694,"attack_rate":0.785121,"days_to_peak":96,"intervention_days":119}
|
| 245 |
+
{"R0":2.8211,"theta":0.05,"peak_infected_frac":0.078017,"attack_rate":0.800055,"days_to_peak":90,"intervention_days":100}
|
| 246 |
+
{"R0":2.8211,"theta":0.06,"peak_infected_frac":0.085885,"attack_rate":0.812341,"days_to_peak":85,"intervention_days":84}
|
| 247 |
+
{"R0":2.8211,"theta":0.07,"peak_infected_frac":0.090496,"attack_rate":0.825087,"days_to_peak":82,"intervention_days":73}
|
| 248 |
+
{"R0":2.8211,"theta":0.08,"peak_infected_frac":0.101273,"attack_rate":0.83239,"days_to_peak":78,"intervention_days":62}
|
| 249 |
+
{"R0":2.8211,"theta":0.09,"peak_infected_frac":0.107536,"attack_rate":0.842218,"days_to_peak":75,"intervention_days":54}
|
| 250 |
+
{"R0":2.8211,"theta":0.1,"peak_infected_frac":0.114436,"attack_rate":0.851105,"days_to_peak":74,"intervention_days":47}
|
| 251 |
+
{"R0":2.8211,"theta":0.11,"peak_infected_frac":0.122033,"attack_rate":0.855664,"days_to_peak":72,"intervention_days":42}
|
| 252 |
+
{"R0":2.8211,"theta":0.12,"peak_infected_frac":0.130351,"attack_rate":0.864696,"days_to_peak":70,"intervention_days":36}
|
| 253 |
+
{"R0":2.8211,"theta":0.13,"peak_infected_frac":0.139432,"attack_rate":0.86931,"days_to_peak":69,"intervention_days":32}
|
| 254 |
+
{"R0":2.8211,"theta":0.14,"peak_infected_frac":0.149315,"attack_rate":0.874814,"days_to_peak":67,"intervention_days":28}
|
| 255 |
+
{"R0":2.8211,"theta":0.15,"peak_infected_frac":0.160048,"attack_rate":0.881534,"days_to_peak":66,"intervention_days":24}
|
| 256 |
+
{"R0":2.8211,"theta":0.16,"peak_infected_frac":0.171635,"attack_rate":0.886243,"days_to_peak":65,"intervention_days":21}
|
| 257 |
+
{"R0":2.8211,"theta":0.17,"peak_infected_frac":0.179332,"attack_rate":0.889503,"days_to_peak":71,"intervention_days":19}
|
| 258 |
+
{"R0":2.8211,"theta":0.18,"peak_infected_frac":0.188679,"attack_rate":0.895408,"days_to_peak":72,"intervention_days":16}
|
| 259 |
+
{"R0":2.8211,"theta":0.19,"peak_infected_frac":0.197506,"attack_rate":0.898953,"days_to_peak":73,"intervention_days":14}
|
| 260 |
+
{"R0":2.8211,"theta":0.2,"peak_infected_frac":0.208863,"attack_rate":0.902869,"days_to_peak":73,"intervention_days":12}
|
| 261 |
+
{"R0":2.9895,"theta":0.01,"peak_infected_frac":0.067988,"attack_rate":0.655004,"days_to_peak":127,"intervention_days":231}
|
| 262 |
+
{"R0":2.9895,"theta":0.02,"peak_infected_frac":0.074302,"attack_rate":0.7483,"days_to_peak":108,"intervention_days":166}
|
| 263 |
+
{"R0":2.9895,"theta":0.03,"peak_infected_frac":0.07982,"attack_rate":0.78131,"days_to_peak":99,"intervention_days":135}
|
| 264 |
+
{"R0":2.9895,"theta":0.04,"peak_infected_frac":0.084829,"attack_rate":0.801357,"days_to_peak":93,"intervention_days":114}
|
| 265 |
+
{"R0":2.9895,"theta":0.05,"peak_infected_frac":0.091224,"attack_rate":0.815174,"days_to_peak":87,"intervention_days":97}
|
| 266 |
+
{"R0":2.9895,"theta":0.06,"peak_infected_frac":0.09936,"attack_rate":0.827742,"days_to_peak":82,"intervention_days":82}
|
| 267 |
+
{"R0":2.9895,"theta":0.07,"peak_infected_frac":0.104185,"attack_rate":0.837294,"days_to_peak":80,"intervention_days":73}
|
| 268 |
+
{"R0":2.9895,"theta":0.08,"peak_infected_frac":0.109609,"attack_rate":0.845845,"days_to_peak":77,"intervention_days":65}
|
| 269 |
+
{"R0":2.9895,"theta":0.09,"peak_infected_frac":0.115664,"attack_rate":0.855762,"days_to_peak":75,"intervention_days":57}
|
| 270 |
+
{"R0":2.9895,"theta":0.1,"peak_infected_frac":0.12241,"attack_rate":0.861799,"days_to_peak":73,"intervention_days":51}
|
| 271 |
+
{"R0":2.9895,"theta":0.11,"peak_infected_frac":0.129914,"attack_rate":0.868902,"days_to_peak":71,"intervention_days":45}
|
| 272 |
+
{"R0":2.9895,"theta":0.12,"peak_infected_frac":0.13823,"attack_rate":0.874743,"days_to_peak":69,"intervention_days":40}
|
| 273 |
+
{"R0":2.9895,"theta":0.13,"peak_infected_frac":0.147401,"attack_rate":0.881323,"days_to_peak":67,"intervention_days":35}
|
| 274 |
+
{"R0":2.9895,"theta":0.14,"peak_infected_frac":0.157495,"attack_rate":0.886459,"days_to_peak":66,"intervention_days":31}
|
| 275 |
+
{"R0":2.9895,"theta":0.15,"peak_infected_frac":0.157495,"attack_rate":0.892549,"days_to_peak":66,"intervention_days":28}
|
| 276 |
+
{"R0":2.9895,"theta":0.16,"peak_infected_frac":0.168534,"attack_rate":0.896027,"days_to_peak":64,"intervention_days":25}
|
| 277 |
+
{"R0":2.9895,"theta":0.17,"peak_infected_frac":0.180595,"attack_rate":0.90029,"days_to_peak":63,"intervention_days":22}
|
| 278 |
+
{"R0":2.9895,"theta":0.18,"peak_infected_frac":0.193668,"attack_rate":0.905274,"days_to_peak":62,"intervention_days":19}
|
| 279 |
+
{"R0":2.9895,"theta":0.19,"peak_infected_frac":0.199106,"attack_rate":0.909217,"days_to_peak":69,"intervention_days":17}
|
| 280 |
+
{"R0":2.9895,"theta":0.2,"peak_infected_frac":0.207874,"attack_rate":0.91244,"days_to_peak":70,"intervention_days":15}
|
| 281 |
+
{"R0":3.1579,"theta":0.01,"peak_infected_frac":0.083553,"attack_rate":0.714796,"days_to_peak":116,"intervention_days":200}
|
| 282 |
+
{"R0":3.1579,"theta":0.02,"peak_infected_frac":0.088995,"attack_rate":0.773597,"days_to_peak":102,"intervention_days":152}
|
| 283 |
+
{"R0":3.1579,"theta":0.03,"peak_infected_frac":0.094601,"attack_rate":0.799338,"days_to_peak":94,"intervention_days":125}
|
| 284 |
+
{"R0":3.1579,"theta":0.04,"peak_infected_frac":0.099812,"attack_rate":0.816065,"days_to_peak":88,"intervention_days":107}
|
| 285 |
+
{"R0":3.1579,"theta":0.05,"peak_infected_frac":0.106616,"attack_rate":0.828605,"days_to_peak":83,"intervention_days":92}
|
| 286 |
+
{"R0":3.1579,"theta":0.06,"peak_infected_frac":0.110728,"attack_rate":0.840306,"days_to_peak":80,"intervention_days":82}
|
| 287 |
+
{"R0":3.1579,"theta":0.07,"peak_infected_frac":0.115416,"attack_rate":0.850971,"days_to_peak":78,"intervention_days":73}
|
| 288 |
+
{"R0":3.1579,"theta":0.08,"peak_infected_frac":0.120703,"attack_rate":0.857929,"days_to_peak":76,"intervention_days":66}
|
| 289 |
+
{"R0":3.1579,"theta":0.09,"peak_infected_frac":0.126704,"attack_rate":0.865792,"days_to_peak":73,"intervention_days":59}
|
| 290 |
+
{"R0":3.1579,"theta":0.1,"peak_infected_frac":0.133456,"attack_rate":0.874584,"days_to_peak":71,"intervention_days":52}
|
| 291 |
+
{"R0":3.1579,"theta":0.11,"peak_infected_frac":0.141035,"attack_rate":0.879306,"days_to_peak":69,"intervention_days":47}
|
| 292 |
+
{"R0":3.1579,"theta":0.12,"peak_infected_frac":0.149517,"attack_rate":0.884879,"days_to_peak":67,"intervention_days":42}
|
| 293 |
+
{"R0":3.1579,"theta":0.13,"peak_infected_frac":0.158964,"attack_rate":0.891428,"days_to_peak":65,"intervention_days":37}
|
| 294 |
+
{"R0":3.1579,"theta":0.14,"peak_infected_frac":0.158964,"attack_rate":0.897755,"days_to_peak":65,"intervention_days":34}
|
| 295 |
+
{"R0":3.1579,"theta":0.15,"peak_infected_frac":0.16945,"attack_rate":0.900145,"days_to_peak":64,"intervention_days":31}
|
| 296 |
+
{"R0":3.1579,"theta":0.16,"peak_infected_frac":0.181047,"attack_rate":0.905814,"days_to_peak":62,"intervention_days":27}
|
| 297 |
+
{"R0":3.1579,"theta":0.17,"peak_infected_frac":0.181047,"attack_rate":0.90986,"days_to_peak":62,"intervention_days":25}
|
| 298 |
+
{"R0":3.1579,"theta":0.18,"peak_infected_frac":0.19378,"attack_rate":0.913852,"days_to_peak":61,"intervention_days":22}
|
| 299 |
+
{"R0":3.1579,"theta":0.19,"peak_infected_frac":0.200332,"attack_rate":0.917731,"days_to_peak":67,"intervention_days":20}
|
| 300 |
+
{"R0":3.1579,"theta":0.2,"peak_infected_frac":0.208459,"attack_rate":0.920111,"days_to_peak":68,"intervention_days":18}
|
| 301 |
+
{"R0":3.3263,"theta":0.01,"peak_infected_frac":0.099129,"attack_rate":0.751257,"days_to_peak":108,"intervention_days":180}
|
| 302 |
+
{"R0":3.3263,"theta":0.02,"peak_infected_frac":0.103382,"attack_rate":0.79134,"days_to_peak":98,"intervention_days":143}
|
| 303 |
+
{"R0":3.3263,"theta":0.03,"peak_infected_frac":0.108719,"attack_rate":0.813303,"days_to_peak":90,"intervention_days":119}
|
| 304 |
+
{"R0":3.3263,"theta":0.04,"peak_infected_frac":0.113817,"attack_rate":0.828362,"days_to_peak":85,"intervention_days":103}
|
| 305 |
+
{"R0":3.3263,"theta":0.05,"peak_infected_frac":0.120601,"attack_rate":0.840801,"days_to_peak":80,"intervention_days":89}
|
| 306 |
+
{"R0":3.3263,"theta":0.06,"peak_infected_frac":0.124774,"attack_rate":0.851482,"days_to_peak":77,"intervention_days":80}
|
| 307 |
+
{"R0":3.3263,"theta":0.07,"peak_infected_frac":0.129567,"attack_rate":0.860811,"days_to_peak":75,"intervention_days":72}
|
| 308 |
+
{"R0":3.3263,"theta":0.08,"peak_infected_frac":0.13503,"attack_rate":0.868562,"days_to_peak":73,"intervention_days":65}
|
| 309 |
+
{"R0":3.3263,"theta":0.09,"peak_infected_frac":0.141287,"attack_rate":0.877034,"days_to_peak":70,"intervention_days":58}
|
| 310 |
+
{"R0":3.3263,"theta":0.1,"peak_infected_frac":0.148397,"attack_rate":0.883898,"days_to_peak":68,"intervention_days":52}
|
| 311 |
+
{"R0":3.3263,"theta":0.11,"peak_infected_frac":0.156447,"attack_rate":0.889082,"days_to_peak":66,"intervention_days":47}
|
| 312 |
+
{"R0":3.3263,"theta":0.12,"peak_infected_frac":0.156447,"attack_rate":0.895521,"days_to_peak":66,"intervention_days":44}
|
| 313 |
+
{"R0":3.3263,"theta":0.13,"peak_infected_frac":0.165523,"attack_rate":0.89915,"days_to_peak":64,"intervention_days":40}
|
| 314 |
+
{"R0":3.3263,"theta":0.14,"peak_infected_frac":0.175698,"attack_rate":0.905828,"days_to_peak":62,"intervention_days":35}
|
| 315 |
+
{"R0":3.3263,"theta":0.15,"peak_infected_frac":0.175698,"attack_rate":0.909932,"days_to_peak":62,"intervention_days":33}
|
| 316 |
+
{"R0":3.3263,"theta":0.16,"peak_infected_frac":0.187114,"attack_rate":0.914992,"days_to_peak":61,"intervention_days":29}
|
| 317 |
+
{"R0":3.3263,"theta":0.17,"peak_infected_frac":0.187114,"attack_rate":0.91909,"days_to_peak":61,"intervention_days":27}
|
| 318 |
+
{"R0":3.3263,"theta":0.18,"peak_infected_frac":0.199754,"attack_rate":0.922378,"days_to_peak":59,"intervention_days":24}
|
| 319 |
+
{"R0":3.3263,"theta":0.19,"peak_infected_frac":0.199754,"attack_rate":0.926408,"days_to_peak":59,"intervention_days":22}
|
| 320 |
+
{"R0":3.3263,"theta":0.2,"peak_infected_frac":0.213752,"attack_rate":0.928183,"days_to_peak":58,"intervention_days":20}
|
| 321 |
+
{"R0":3.4947,"theta":0.01,"peak_infected_frac":0.114522,"attack_rate":0.773744,"days_to_peak":101,"intervention_days":168}
|
| 322 |
+
{"R0":3.4947,"theta":0.02,"peak_infected_frac":0.118828,"attack_rate":0.804559,"days_to_peak":92,"intervention_days":135}
|
| 323 |
+
{"R0":3.4947,"theta":0.03,"peak_infected_frac":0.1244,"attack_rate":0.824118,"days_to_peak":85,"intervention_days":113}
|
| 324 |
+
{"R0":3.4947,"theta":0.04,"peak_infected_frac":0.126926,"attack_rate":0.83949,"days_to_peak":82,"intervention_days":101}
|
| 325 |
+
{"R0":3.4947,"theta":0.05,"peak_infected_frac":0.13328,"attack_rate":0.851186,"days_to_peak":77,"intervention_days":88}
|
| 326 |
+
{"R0":3.4947,"theta":0.06,"peak_infected_frac":0.137274,"attack_rate":0.860392,"days_to_peak":75,"intervention_days":80}
|
| 327 |
+
{"R0":3.4947,"theta":0.07,"peak_infected_frac":0.141883,"attack_rate":0.870171,"days_to_peak":73,"intervention_days":72}
|
| 328 |
+
{"R0":3.4947,"theta":0.08,"peak_infected_frac":0.147203,"attack_rate":0.878329,"days_to_peak":70,"intervention_days":65}
|
| 329 |
+
{"R0":3.4947,"theta":0.09,"peak_infected_frac":0.15337,"attack_rate":0.884774,"days_to_peak":68,"intervention_days":59}
|
| 330 |
+
{"R0":3.4947,"theta":0.1,"peak_infected_frac":0.160445,"attack_rate":0.891738,"days_to_peak":66,"intervention_days":53}
|
| 331 |
+
{"R0":3.4947,"theta":0.11,"peak_infected_frac":0.160445,"attack_rate":0.898187,"days_to_peak":66,"intervention_days":50}
|
| 332 |
+
{"R0":3.4947,"theta":0.12,"peak_infected_frac":0.168535,"attack_rate":0.903526,"days_to_peak":64,"intervention_days":45}
|
| 333 |
+
{"R0":3.4947,"theta":0.13,"peak_infected_frac":0.177748,"attack_rate":0.907105,"days_to_peak":62,"intervention_days":41}
|
| 334 |
+
{"R0":3.4947,"theta":0.14,"peak_infected_frac":0.177748,"attack_rate":0.913562,"days_to_peak":62,"intervention_days":38}
|
| 335 |
+
{"R0":3.4947,"theta":0.15,"peak_infected_frac":0.188177,"attack_rate":0.917848,"days_to_peak":60,"intervention_days":34}
|
| 336 |
+
{"R0":3.4947,"theta":0.16,"peak_infected_frac":0.188177,"attack_rate":0.921997,"days_to_peak":60,"intervention_days":32}
|
| 337 |
+
{"R0":3.4947,"theta":0.17,"peak_infected_frac":0.199964,"attack_rate":0.92461,"days_to_peak":59,"intervention_days":29}
|
| 338 |
+
{"R0":3.4947,"theta":0.18,"peak_infected_frac":0.213162,"attack_rate":0.927734,"days_to_peak":57,"intervention_days":26}
|
| 339 |
+
{"R0":3.4947,"theta":0.19,"peak_infected_frac":0.213162,"attack_rate":0.931867,"days_to_peak":57,"intervention_days":24}
|
| 340 |
+
{"R0":3.4947,"theta":0.2,"peak_infected_frac":0.227838,"attack_rate":0.935575,"days_to_peak":56,"intervention_days":21}
|
| 341 |
+
{"R0":3.6632,"theta":0.01,"peak_infected_frac":0.12967,"attack_rate":0.79115,"days_to_peak":96,"intervention_days":161}
|
| 342 |
+
{"R0":3.6632,"theta":0.02,"peak_infected_frac":0.133829,"attack_rate":0.818161,"days_to_peak":87,"intervention_days":129}
|
| 343 |
+
{"R0":3.6632,"theta":0.03,"peak_infected_frac":0.139408,"attack_rate":0.834867,"days_to_peak":80,"intervention_days":109}
|
| 344 |
+
{"R0":3.6632,"theta":0.04,"peak_infected_frac":0.141996,"attack_rate":0.84851,"days_to_peak":78,"intervention_days":98}
|
| 345 |
+
{"R0":3.6632,"theta":0.05,"peak_infected_frac":0.14858,"attack_rate":0.86097,"days_to_peak":74,"intervention_days":85}
|
| 346 |
+
{"R0":3.6632,"theta":0.06,"peak_infected_frac":0.152766,"attack_rate":0.870602,"days_to_peak":71,"intervention_days":77}
|
| 347 |
+
{"R0":3.6632,"theta":0.07,"peak_infected_frac":0.157673,"attack_rate":0.878688,"days_to_peak":69,"intervention_days":70}
|
| 348 |
+
{"R0":3.6632,"theta":0.08,"peak_infected_frac":0.163387,"attack_rate":0.887199,"days_to_peak":67,"intervention_days":63}
|
| 349 |
+
{"R0":3.6632,"theta":0.09,"peak_infected_frac":0.163387,"attack_rate":0.893482,"days_to_peak":67,"intervention_days":60}
|
| 350 |
+
{"R0":3.6632,"theta":0.1,"peak_infected_frac":0.170024,"attack_rate":0.900416,"days_to_peak":65,"intervention_days":54}
|
| 351 |
+
{"R0":3.6632,"theta":0.11,"peak_infected_frac":0.177712,"attack_rate":0.905586,"days_to_peak":63,"intervention_days":49}
|
| 352 |
+
{"R0":3.6632,"theta":0.12,"peak_infected_frac":0.177712,"attack_rate":0.909774,"days_to_peak":63,"intervention_days":47}
|
| 353 |
+
{"R0":3.6632,"theta":0.13,"peak_infected_frac":0.186577,"attack_rate":0.915454,"days_to_peak":61,"intervention_days":42}
|
| 354 |
+
{"R0":3.6632,"theta":0.14,"peak_infected_frac":0.196742,"attack_rate":0.919406,"days_to_peak":59,"intervention_days":38}
|
| 355 |
+
{"R0":3.6632,"theta":0.15,"peak_infected_frac":0.196742,"attack_rate":0.923582,"days_to_peak":59,"intervention_days":36}
|
| 356 |
+
{"R0":3.6632,"theta":0.16,"peak_infected_frac":0.208309,"attack_rate":0.928064,"days_to_peak":57,"intervention_days":32}
|
| 357 |
+
{"R0":3.6632,"theta":0.17,"peak_infected_frac":0.208309,"attack_rate":0.932167,"days_to_peak":57,"intervention_days":30}
|
| 358 |
+
{"R0":3.6632,"theta":0.18,"peak_infected_frac":0.221421,"attack_rate":0.934996,"days_to_peak":56,"intervention_days":27}
|
| 359 |
+
{"R0":3.6632,"theta":0.19,"peak_infected_frac":0.221421,"attack_rate":0.936908,"days_to_peak":56,"intervention_days":26}
|
| 360 |
+
{"R0":3.6632,"theta":0.2,"peak_infected_frac":0.236174,"attack_rate":0.94031,"days_to_peak":54,"intervention_days":23}
|
| 361 |
+
{"R0":3.8316,"theta":0.01,"peak_infected_frac":0.145214,"attack_rate":0.809249,"days_to_peak":90,"intervention_days":152}
|
| 362 |
+
{"R0":3.8316,"theta":0.02,"peak_infected_frac":0.148355,"attack_rate":0.829876,"days_to_peak":83,"intervention_days":126}
|
| 363 |
+
{"R0":3.8316,"theta":0.03,"peak_infected_frac":0.15374,"attack_rate":0.846302,"days_to_peak":77,"intervention_days":106}
|
| 364 |
+
{"R0":3.8316,"theta":0.04,"peak_infected_frac":0.156259,"attack_rate":0.857943,"days_to_peak":75,"intervention_days":96}
|
| 365 |
+
{"R0":3.8316,"theta":0.05,"peak_infected_frac":0.162801,"attack_rate":0.868816,"days_to_peak":71,"intervention_days":84}
|
| 366 |
+
{"R0":3.8316,"theta":0.06,"peak_infected_frac":0.167023,"attack_rate":0.878435,"days_to_peak":68,"intervention_days":76}
|
| 367 |
+
{"R0":3.8316,"theta":0.07,"peak_infected_frac":0.172024,"attack_rate":0.886605,"days_to_peak":66,"intervention_days":69}
|
| 368 |
+
{"R0":3.8316,"theta":0.08,"peak_infected_frac":0.177906,"attack_rate":0.893166,"days_to_peak":64,"intervention_days":63}
|
| 369 |
+
{"R0":3.8316,"theta":0.09,"peak_infected_frac":0.177906,"attack_rate":0.901339,"days_to_peak":64,"intervention_days":59}
|
| 370 |
+
{"R0":3.8316,"theta":0.1,"peak_infected_frac":0.184803,"attack_rate":0.906298,"days_to_peak":62,"intervention_days":54}
|
| 371 |
+
{"R0":3.8316,"theta":0.11,"peak_infected_frac":0.192854,"attack_rate":0.911606,"days_to_peak":60,"intervention_days":49}
|
| 372 |
+
{"R0":3.8316,"theta":0.12,"peak_infected_frac":0.192854,"attack_rate":0.917857,"days_to_peak":60,"intervention_days":46}
|
| 373 |
+
{"R0":3.8316,"theta":0.13,"peak_infected_frac":0.202203,"attack_rate":0.921487,"days_to_peak":58,"intervention_days":42}
|
| 374 |
+
{"R0":3.8316,"theta":0.14,"peak_infected_frac":0.202203,"attack_rate":0.925613,"days_to_peak":58,"intervention_days":40}
|
| 375 |
+
{"R0":3.8316,"theta":0.15,"peak_infected_frac":0.212978,"attack_rate":0.929655,"days_to_peak":56,"intervention_days":36}
|
| 376 |
+
{"R0":3.8316,"theta":0.16,"peak_infected_frac":0.212978,"attack_rate":0.933734,"days_to_peak":56,"intervention_days":34}
|
| 377 |
+
{"R0":3.8316,"theta":0.17,"peak_infected_frac":0.22543,"attack_rate":0.936152,"days_to_peak":55,"intervention_days":31}
|
| 378 |
+
{"R0":3.8316,"theta":0.18,"peak_infected_frac":0.22543,"attack_rate":0.940154,"days_to_peak":55,"intervention_days":29}
|
| 379 |
+
{"R0":3.8316,"theta":0.19,"peak_infected_frac":0.22543,"attack_rate":0.942026,"days_to_peak":55,"intervention_days":28}
|
| 380 |
+
{"R0":3.8316,"theta":0.2,"peak_infected_frac":0.239558,"attack_rate":0.94494,"days_to_peak":53,"intervention_days":25}
|
| 381 |
+
{"R0":4,"theta":0.01,"peak_infected_frac":0.159667,"attack_rate":0.825892,"days_to_peak":86,"intervention_days":148}
|
| 382 |
+
{"R0":4,"theta":0.02,"peak_infected_frac":0.163809,"attack_rate":0.843554,"days_to_peak":78,"intervention_days":120}
|
| 383 |
+
{"R0":4,"theta":0.03,"peak_infected_frac":0.167406,"attack_rate":0.857603,"days_to_peak":74,"intervention_days":104}
|
| 384 |
+
{"R0":4,"theta":0.04,"peak_infected_frac":0.172628,"attack_rate":0.869126,"days_to_peak":70,"intervention_days":91}
|
| 385 |
+
{"R0":4,"theta":0.05,"peak_infected_frac":0.176049,"attack_rate":0.877949,"days_to_peak":68,"intervention_days":83}
|
| 386 |
+
{"R0":4,"theta":0.06,"peak_infected_frac":0.180144,"attack_rate":0.887377,"days_to_peak":66,"intervention_days":75}
|
| 387 |
+
{"R0":4,"theta":0.07,"peak_infected_frac":0.185031,"attack_rate":0.893573,"days_to_peak":64,"intervention_days":69}
|
| 388 |
+
{"R0":4,"theta":0.08,"peak_infected_frac":0.190846,"attack_rate":0.902025,"days_to_peak":62,"intervention_days":62}
|
| 389 |
+
{"R0":4,"theta":0.09,"peak_infected_frac":0.190846,"attack_rate":0.907925,"days_to_peak":62,"intervention_days":59}
|
| 390 |
+
{"R0":4,"theta":0.1,"peak_infected_frac":0.197735,"attack_rate":0.9129,"days_to_peak":60,"intervention_days":54}
|
| 391 |
+
{"R0":4,"theta":0.11,"peak_infected_frac":0.205858,"attack_rate":0.918189,"days_to_peak":58,"intervention_days":49}
|
| 392 |
+
{"R0":4,"theta":0.12,"peak_infected_frac":0.205858,"attack_rate":0.922212,"days_to_peak":58,"intervention_days":47}
|
| 393 |
+
{"R0":4,"theta":0.13,"peak_infected_frac":0.215377,"attack_rate":0.927857,"days_to_peak":56,"intervention_days":42}
|
| 394 |
+
{"R0":4,"theta":0.14,"peak_infected_frac":0.215377,"attack_rate":0.931862,"days_to_peak":56,"intervention_days":40}
|
| 395 |
+
{"R0":4,"theta":0.15,"peak_infected_frac":0.226441,"attack_rate":0.935858,"days_to_peak":54,"intervention_days":36}
|
| 396 |
+
{"R0":4,"theta":0.16,"peak_infected_frac":0.226441,"attack_rate":0.937823,"days_to_peak":54,"intervention_days":35}
|
| 397 |
+
{"R0":4,"theta":0.17,"peak_infected_frac":0.226441,"attack_rate":0.941724,"days_to_peak":54,"intervention_days":33}
|
| 398 |
+
{"R0":4,"theta":0.18,"peak_infected_frac":0.239352,"attack_rate":0.944125,"days_to_peak":53,"intervention_days":30}
|
| 399 |
+
{"R0":4,"theta":0.19,"peak_infected_frac":0.239352,"attack_rate":0.947942,"days_to_peak":53,"intervention_days":28}
|
| 400 |
+
{"R0":4,"theta":0.2,"peak_infected_frac":0.254092,"attack_rate":0.950763,"days_to_peak":51,"intervention_days":25}
|
data/task_05_configs.jsonl
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"config_index":0,"learning_rate":0.01,"max_depth":3,"n_estimators":100,"subsample":0.8}
|
| 2 |
+
{"config_index":1,"learning_rate":0.01,"max_depth":3,"n_estimators":100,"subsample":1}
|
| 3 |
+
{"config_index":2,"learning_rate":0.01,"max_depth":3,"n_estimators":300,"subsample":0.8}
|
| 4 |
+
{"config_index":3,"learning_rate":0.01,"max_depth":3,"n_estimators":300,"subsample":1}
|
| 5 |
+
{"config_index":4,"learning_rate":0.01,"max_depth":5,"n_estimators":100,"subsample":0.8}
|
| 6 |
+
{"config_index":5,"learning_rate":0.01,"max_depth":5,"n_estimators":100,"subsample":1}
|
| 7 |
+
{"config_index":6,"learning_rate":0.01,"max_depth":5,"n_estimators":300,"subsample":0.8}
|
| 8 |
+
{"config_index":7,"learning_rate":0.01,"max_depth":5,"n_estimators":300,"subsample":1}
|
| 9 |
+
{"config_index":8,"learning_rate":0.01,"max_depth":7,"n_estimators":100,"subsample":0.8}
|
| 10 |
+
{"config_index":9,"learning_rate":0.01,"max_depth":7,"n_estimators":100,"subsample":1}
|
| 11 |
+
{"config_index":10,"learning_rate":0.01,"max_depth":7,"n_estimators":300,"subsample":0.8}
|
| 12 |
+
{"config_index":11,"learning_rate":0.01,"max_depth":7,"n_estimators":300,"subsample":1}
|
| 13 |
+
{"config_index":12,"learning_rate":0.05,"max_depth":3,"n_estimators":100,"subsample":0.8}
|
| 14 |
+
{"config_index":13,"learning_rate":0.05,"max_depth":3,"n_estimators":100,"subsample":1}
|
| 15 |
+
{"config_index":14,"learning_rate":0.05,"max_depth":3,"n_estimators":300,"subsample":0.8}
|
| 16 |
+
{"config_index":15,"learning_rate":0.05,"max_depth":3,"n_estimators":300,"subsample":1}
|
| 17 |
+
{"config_index":16,"learning_rate":0.05,"max_depth":5,"n_estimators":100,"subsample":0.8}
|
| 18 |
+
{"config_index":17,"learning_rate":0.05,"max_depth":5,"n_estimators":100,"subsample":1}
|
| 19 |
+
{"config_index":18,"learning_rate":0.05,"max_depth":5,"n_estimators":300,"subsample":0.8}
|
| 20 |
+
{"config_index":19,"learning_rate":0.05,"max_depth":5,"n_estimators":300,"subsample":1}
|
| 21 |
+
{"config_index":20,"learning_rate":0.05,"max_depth":7,"n_estimators":100,"subsample":0.8}
|
| 22 |
+
{"config_index":21,"learning_rate":0.05,"max_depth":7,"n_estimators":100,"subsample":1}
|
| 23 |
+
{"config_index":22,"learning_rate":0.05,"max_depth":7,"n_estimators":300,"subsample":0.8}
|
| 24 |
+
{"config_index":23,"learning_rate":0.05,"max_depth":7,"n_estimators":300,"subsample":1}
|
| 25 |
+
{"config_index":24,"learning_rate":0.1,"max_depth":3,"n_estimators":100,"subsample":0.8}
|
| 26 |
+
{"config_index":25,"learning_rate":0.1,"max_depth":3,"n_estimators":100,"subsample":1}
|
| 27 |
+
{"config_index":26,"learning_rate":0.1,"max_depth":3,"n_estimators":300,"subsample":0.8}
|
| 28 |
+
{"config_index":27,"learning_rate":0.1,"max_depth":3,"n_estimators":300,"subsample":1}
|
| 29 |
+
{"config_index":28,"learning_rate":0.1,"max_depth":5,"n_estimators":100,"subsample":0.8}
|
| 30 |
+
{"config_index":29,"learning_rate":0.1,"max_depth":5,"n_estimators":100,"subsample":1}
|
| 31 |
+
{"config_index":30,"learning_rate":0.1,"max_depth":5,"n_estimators":300,"subsample":0.8}
|
| 32 |
+
{"config_index":31,"learning_rate":0.1,"max_depth":5,"n_estimators":300,"subsample":1}
|
| 33 |
+
{"config_index":32,"learning_rate":0.1,"max_depth":7,"n_estimators":100,"subsample":0.8}
|
| 34 |
+
{"config_index":33,"learning_rate":0.1,"max_depth":7,"n_estimators":100,"subsample":1}
|
| 35 |
+
{"config_index":34,"learning_rate":0.1,"max_depth":7,"n_estimators":300,"subsample":0.8}
|
| 36 |
+
{"config_index":35,"learning_rate":0.1,"max_depth":7,"n_estimators":300,"subsample":1}
|
data/task_05_data.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e793f17c65aa6204f2a9e8f0b8439e046ff671b59b9dc6380d2a27f61a96882
|
| 3 |
+
size 28937571
|
data/task_06_patients.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/task_07_sequences.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/task_08_test.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/task_08_train.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b92845a776c1041cdf35279e37d1af71583ad12195888e810d3216675e8d5eee
|
| 3 |
+
size 26522924
|
data/task_10_portfolio.jsonl
ADDED
|
@@ -0,0 +1,300 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"instrument_id":0,"weight":0.003956,"delta_0":-0.08797,"delta_1":-0.54129,"delta_2":1.92776,"delta_3":-0.13869,"delta_4":0.34927,"delta_5":0.25888,"delta_6":0.83062,"delta_7":0.17033,"delta_8":-0.04251,"delta_9":1.97002,"delta_10":-0.10796,"delta_11":-0.61864,"delta_12":-2.66577,"delta_13":0.2105,"delta_14":-0.83821}
|
| 2 |
+
{"instrument_id":1,"weight":0.004864,"delta_0":-0.99169,"delta_1":-0.40965,"delta_2":-0.3289,"delta_3":1.35025,"delta_4":0.09016,"delta_5":-0.54451,"delta_6":2.4097,"delta_7":-0.87106,"delta_8":-1.06957,"delta_9":0.67711,"delta_10":-1.54926,"delta_11":1.76377,"delta_12":-0.47395,"delta_13":1.77578,"delta_14":1.25504}
|
| 3 |
+
{"instrument_id":2,"weight":0.006131,"delta_0":-0.24368,"delta_1":-0.93204,"delta_2":-1.80675,"delta_3":0.57129,"delta_4":-0.04741,"delta_5":1.3528,"delta_6":-1.50063,"delta_7":-1.0147,"delta_8":-1.29999,"delta_9":0.86222,"delta_10":1.1223,"delta_11":-0.27814,"delta_12":-1.9899,"delta_13":1.20178,"delta_14":-0.78613}
|
| 4 |
+
{"instrument_id":3,"weight":0.001854,"delta_0":1.01682,"delta_1":-1.76864,"delta_2":-1.25823,"delta_3":-2.08749,"delta_4":-0.32678,"delta_5":2.13905,"delta_6":0.73913,"delta_7":1.3891,"delta_8":0.04945,"delta_9":2.54212,"delta_10":2.24429,"delta_11":-2.17393,"delta_12":-0.45013,"delta_13":1.56978,"delta_14":1.51845}
|
| 5 |
+
{"instrument_id":4,"weight":0.006499,"delta_0":-2.06786,"delta_1":-0.61939,"delta_2":-0.45096,"delta_3":-0.09184,"delta_4":-1.81048,"delta_5":-0.60864,"delta_6":-1.08399,"delta_7":-0.7988,"delta_8":0.15037,"delta_9":-0.55857,"delta_10":-0.20302,"delta_11":1.32627,"delta_12":1.94539,"delta_13":0.49355,"delta_14":0.86329}
|
| 6 |
+
{"instrument_id":5,"weight":0.000682,"delta_0":-1.6808,"delta_1":1.38448,"delta_2":0.11846,"delta_3":-0.02975,"delta_4":-0.15694,"delta_5":1.33335,"delta_6":-0.10996,"delta_7":-0.62957,"delta_8":0.24347,"delta_9":-0.2528,"delta_10":-0.72879,"delta_11":-0.11752,"delta_12":-0.16685,"delta_13":-0.59581,"delta_14":0.76847}
|
| 7 |
+
{"instrument_id":6,"weight":0.003866,"delta_0":0.39585,"delta_1":-0.44421,"delta_2":0.01018,"delta_3":0.62643,"delta_4":0.05343,"delta_5":1.34348,"delta_6":2.42414,"delta_7":0.60406,"delta_8":-0.59554,"delta_9":-0.6928,"delta_10":-0.26078,"delta_11":1.76031,"delta_12":0.75744,"delta_13":0.75411,"delta_14":1.15719}
|
| 8 |
+
{"instrument_id":7,"weight":0.005634,"delta_0":-0.64817,"delta_1":2.65984,"delta_2":-1.41366,"delta_3":-1.32292,"delta_4":-0.5763,"delta_5":0.24527,"delta_6":-0.31202,"delta_7":0.15163,"delta_8":0.22289,"delta_9":1.1972,"delta_10":-0.44315,"delta_11":-1.37468,"delta_12":0.86908,"delta_13":0.27285,"delta_14":0.13769}
|
| 9 |
+
{"instrument_id":8,"weight":0.00111,"delta_0":-0.29647,"delta_1":0.0425,"delta_2":-0.70466,"delta_3":-0.17325,"delta_4":0.73656,"delta_5":-0.01817,"delta_6":1.44552,"delta_7":-1.35915,"delta_8":1.55504,"delta_9":-0.5099,"delta_10":1.01104,"delta_11":0.25784,"delta_12":-1.72571,"delta_13":-0.60529,"delta_14":-0.47421}
|
| 10 |
+
{"instrument_id":9,"weight":0.002966,"delta_0":2.72185,"delta_1":0.57702,"delta_2":0.3118,"delta_3":2.00186,"delta_4":1.0014,"delta_5":-1.00732,"delta_6":0.73109,"delta_7":-0.74416,"delta_8":0.48589,"delta_9":-0.20542,"delta_10":-0.42726,"delta_11":0.60656,"delta_12":0.97061,"delta_13":-1.4031,"delta_14":-3.0512}
|
| 11 |
+
{"instrument_id":10,"weight":0.00603,"delta_0":0.05431,"delta_1":1.42471,"delta_2":-1.67005,"delta_3":-2.18006,"delta_4":0.60715,"delta_5":-1.16429,"delta_6":0.25062,"delta_7":-0.10863,"delta_8":-0.27993,"delta_9":-0.2031,"delta_10":-0.19097,"delta_11":-1.75447,"delta_12":0.76264,"delta_13":-1.53537,"delta_14":-0.24425}
|
| 12 |
+
{"instrument_id":11,"weight":0.004088,"delta_0":1.34696,"delta_1":1.54934,"delta_2":1.41787,"delta_3":-0.0409,"delta_4":0.83138,"delta_5":-0.84879,"delta_6":-0.67101,"delta_7":0.78258,"delta_8":-1.71659,"delta_9":-0.516,"delta_10":0.96694,"delta_11":-0.63722,"delta_12":1.43416,"delta_13":-0.18016,"delta_14":-0.15093}
|
| 13 |
+
{"instrument_id":12,"weight":0.005881,"delta_0":-0.06182,"delta_1":0.79245,"delta_2":1.11561,"delta_3":1.36473,"delta_4":0.24321,"delta_5":1.14515,"delta_6":1.72017,"delta_7":0.03275,"delta_8":0.3849,"delta_9":0.18498,"delta_10":-0.59012,"delta_11":-0.70842,"delta_12":0.07933,"delta_13":-0.92485,"delta_14":0.98156}
|
| 14 |
+
{"instrument_id":13,"weight":0.002891,"delta_0":1.41972,"delta_1":1.6152,"delta_2":0.5327,"delta_3":-0.87378,"delta_4":0.83654,"delta_5":-0.30002,"delta_6":0.49847,"delta_7":-0.56006,"delta_8":1.46421,"delta_9":-2.37161,"delta_10":0.22727,"delta_11":1.69359,"delta_12":-2.19299,"delta_13":0.03571,"delta_14":-1.21651}
|
| 15 |
+
{"instrument_id":14,"weight":0.002646,"delta_0":2.3404,"delta_1":1.4196,"delta_2":-0.90819,"delta_3":0.45474,"delta_4":0.62013,"delta_5":0.59146,"delta_6":1.12306,"delta_7":0.60501,"delta_8":0.9199,"delta_9":-0.30386,"delta_10":2.26801,"delta_11":0.47651,"delta_12":-0.36768,"delta_13":-1.59612,"delta_14":-0.54444}
|
| 16 |
+
{"instrument_id":15,"weight":0.006515,"delta_0":-1.31459,"delta_1":0.44367,"delta_2":-0.44544,"delta_3":1.23106,"delta_4":0.38366,"delta_5":-0.06466,"delta_6":-0.9135,"delta_7":0.7852,"delta_8":0.22881,"delta_9":-0.47419,"delta_10":-1.59025,"delta_11":-0.97375,"delta_12":0.30474,"delta_13":-0.55888,"delta_14":-1.09389}
|
| 17 |
+
{"instrument_id":16,"weight":0.005357,"delta_0":0.03563,"delta_1":-1.6735,"delta_2":0.46338,"delta_3":-0.22865,"delta_4":0.57074,"delta_5":-2.24812,"delta_6":0.95873,"delta_7":0.52414,"delta_8":-0.6609,"delta_9":-0.79733,"delta_10":0.39721,"delta_11":0.1673,"delta_12":0.10182,"delta_13":-1.33476,"delta_14":-0.8298}
|
| 18 |
+
{"instrument_id":17,"weight":0.002358,"delta_0":1.20568,"delta_1":-0.68576,"delta_2":0.8212,"delta_3":-0.89294,"delta_4":-1.12552,"delta_5":1.80618,"delta_6":1.07306,"delta_7":0.23402,"delta_8":-0.69529,"delta_9":1.04133,"delta_10":0.832,"delta_11":0.54846,"delta_12":0.86969,"delta_13":1.67629,"delta_14":-0.74337}
|
| 19 |
+
{"instrument_id":18,"weight":0.00281,"delta_0":0.90685,"delta_1":0.17287,"delta_2":0.56468,"delta_3":0.43836,"delta_4":-0.4584,"delta_5":-0.6926,"delta_6":1.60551,"delta_7":0.49056,"delta_8":0.48079,"delta_9":0.15498,"delta_10":-0.09227,"delta_11":1.53136,"delta_12":-0.84832,"delta_13":-0.65267,"delta_14":0.67661}
|
| 20 |
+
{"instrument_id":19,"weight":0.000984,"delta_0":-2.14631,"delta_1":-0.19874,"delta_2":-0.45027,"delta_3":0.47249,"delta_4":-0.88339,"delta_5":0.32311,"delta_6":-0.30904,"delta_7":-0.15163,"delta_8":1.66728,"delta_9":-0.38717,"delta_10":-0.30137,"delta_11":-0.26739,"delta_12":-0.26681,"delta_13":-0.33467,"delta_14":2.34162}
|
| 21 |
+
{"instrument_id":20,"weight":0.002596,"delta_0":0.02139,"delta_1":0.24067,"delta_2":-1.36245,"delta_3":0.66205,"delta_4":-2.51766,"delta_5":0.4253,"delta_6":-0.82149,"delta_7":1.05066,"delta_8":1.21371,"delta_9":2.00118,"delta_10":-0.40783,"delta_11":-2.21346,"delta_12":0.34145,"delta_13":-0.91607,"delta_14":-1.33923}
|
| 22 |
+
{"instrument_id":21,"weight":0.002931,"delta_0":0.60866,"delta_1":-0.36386,"delta_2":-1.732,"delta_3":-0.88625,"delta_4":-0.28807,"delta_5":0.56722,"delta_6":1.69332,"delta_7":-0.38291,"delta_8":0.1337,"delta_9":0.70516,"delta_10":1.58076,"delta_11":1.86121,"delta_12":0.64138,"delta_13":-0.97693,"delta_14":1.83069}
|
| 23 |
+
{"instrument_id":22,"weight":0.002843,"delta_0":-0.59259,"delta_1":1.11756,"delta_2":-0.02238,"delta_3":0.50594,"delta_4":0.46452,"delta_5":-0.87164,"delta_6":0.80484,"delta_7":0.45925,"delta_8":-1.37558,"delta_9":-0.50862,"delta_10":1.75605,"delta_11":0.12937,"delta_12":0.58216,"delta_13":-0.10837,"delta_14":0.78222}
|
| 24 |
+
{"instrument_id":23,"weight":0.005652,"delta_0":-0.55098,"delta_1":-0.55488,"delta_2":0.09321,"delta_3":-1.0508,"delta_4":0.7238,"delta_5":-0.11719,"delta_6":-0.74556,"delta_7":-0.26608,"delta_8":0.04691,"delta_9":0.4827,"delta_10":-1.73319,"delta_11":-0.22937,"delta_12":0.82065,"delta_13":-0.33875,"delta_14":0.01752}
|
| 25 |
+
{"instrument_id":24,"weight":0.000793,"delta_0":-1.07785,"delta_1":1.38464,"delta_2":-0.60624,"delta_3":-1.82862,"delta_4":0.74622,"delta_5":-0.08846,"delta_6":0.33673,"delta_7":-0.07005,"delta_8":1.2938,"delta_9":-0.01907,"delta_10":-1.3999,"delta_11":2.14556,"delta_12":-2.05724,"delta_13":-0.68663,"delta_14":-1.89609}
|
| 26 |
+
{"instrument_id":25,"weight":0.004517,"delta_0":-0.154,"delta_1":0.08041,"delta_2":0.5684,"delta_3":0.2072,"delta_4":0.57112,"delta_5":0.66272,"delta_6":0.62465,"delta_7":0.02728,"delta_8":-1.8987,"delta_9":1.5502,"delta_10":-0.21005,"delta_11":-0.22701,"delta_12":0.87149,"delta_13":-2.096,"delta_14":-1.98304}
|
| 27 |
+
{"instrument_id":26,"weight":0.005508,"delta_0":-0.34169,"delta_1":0.45532,"delta_2":0.70952,"delta_3":0.44233,"delta_4":-0.44283,"delta_5":0.34014,"delta_6":-1.34982,"delta_7":1.63155,"delta_8":0.40632,"delta_9":-0.74351,"delta_10":-0.04323,"delta_11":-0.81043,"delta_12":-0.04522,"delta_13":-0.15514,"delta_14":0.01391}
|
| 28 |
+
{"instrument_id":27,"weight":0.005914,"delta_0":0.46583,"delta_1":0.22574,"delta_2":-0.33243,"delta_3":0.19714,"delta_4":-1.77641,"delta_5":-0.16623,"delta_6":-0.4192,"delta_7":1.7474,"delta_8":-0.16208,"delta_9":-1.8004,"delta_10":-0.03645,"delta_11":1.02878,"delta_12":-1.53699,"delta_13":-1.78957,"delta_14":-1.192}
|
| 29 |
+
{"instrument_id":28,"weight":0.002373,"delta_0":-0.69786,"delta_1":0.60295,"delta_2":-1.08424,"delta_3":0.09636,"delta_4":-0.87338,"delta_5":-2.00887,"delta_6":0.71439,"delta_7":-0.01707,"delta_8":1.66164,"delta_9":1.51402,"delta_10":1.51085,"delta_11":0.21122,"delta_12":1.19435,"delta_13":-0.16089,"delta_14":-1.12706}
|
| 30 |
+
{"instrument_id":29,"weight":0.002017,"delta_0":-0.73012,"delta_1":-0.09347,"delta_2":0.38671,"delta_3":0.69509,"delta_4":-0.09941,"delta_5":-0.98341,"delta_6":-1.46345,"delta_7":0.94544,"delta_8":3.04636,"delta_9":-0.11836,"delta_10":-0.78998,"delta_11":0.45017,"delta_12":0.59023,"delta_13":1.14802,"delta_14":-0.05242}
|
| 31 |
+
{"instrument_id":30,"weight":0.000669,"delta_0":0.07444,"delta_1":-0.30583,"delta_2":-0.16622,"delta_3":-1.04894,"delta_4":-0.12797,"delta_5":2.01796,"delta_6":-1.19966,"delta_7":1.43002,"delta_8":0.53629,"delta_9":-0.6829,"delta_10":0.33943,"delta_11":1.09139,"delta_12":-0.05051,"delta_13":-0.43304,"delta_14":-0.50293}
|
| 32 |
+
{"instrument_id":31,"weight":0.00429,"delta_0":0.73905,"delta_1":-1.1549,"delta_2":-0.77126,"delta_3":-0.89132,"delta_4":-1.4555,"delta_5":0.76162,"delta_6":0.26416,"delta_7":0.38513,"delta_8":-0.03024,"delta_9":0.93241,"delta_10":-0.27508,"delta_11":1.93016,"delta_12":-1.64755,"delta_13":-0.08143,"delta_14":-1.46992}
|
| 33 |
+
{"instrument_id":32,"weight":0.000822,"delta_0":0.23194,"delta_1":0.10566,"delta_2":-1.11474,"delta_3":-1.34689,"delta_4":0.35642,"delta_5":0.03707,"delta_6":2.55064,"delta_7":0.46503,"delta_8":-1.01844,"delta_9":-1.51055,"delta_10":0.32468,"delta_11":0.40127,"delta_12":0.15305,"delta_13":-0.67054,"delta_14":0.08636}
|
| 34 |
+
{"instrument_id":33,"weight":0.001662,"delta_0":0.33951,"delta_1":-0.85585,"delta_2":0.39115,"delta_3":0.13396,"delta_4":1.36136,"delta_5":-2.28433,"delta_6":-0.07488,"delta_7":0.5946,"delta_8":0.90353,"delta_9":-1.10362,"delta_10":-0.16068,"delta_11":-0.87646,"delta_12":-1.34842,"delta_13":0.93532,"delta_14":1.23619}
|
| 35 |
+
{"instrument_id":34,"weight":0.004859,"delta_0":-1.9999,"delta_1":-0.73727,"delta_2":0.99785,"delta_3":-0.63049,"delta_4":0.66332,"delta_5":-1.38279,"delta_6":0.29679,"delta_7":0.03202,"delta_8":-0.14584,"delta_9":-0.3051,"delta_10":-0.82073,"delta_11":1.04641,"delta_12":-0.01354,"delta_13":-2.01126,"delta_14":-1.78368}
|
| 36 |
+
{"instrument_id":35,"weight":0.003843,"delta_0":-1.74771,"delta_1":0.05638,"delta_2":-0.84819,"delta_3":-1.11935,"delta_4":0.31261,"delta_5":0.15944,"delta_6":-0.35296,"delta_7":0.81921,"delta_8":-1.70995,"delta_9":-0.31327,"delta_10":0.70469,"delta_11":-0.87065,"delta_12":-0.91156,"delta_13":-0.17442,"delta_14":0.94436}
|
| 37 |
+
{"instrument_id":36,"weight":0.002416,"delta_0":-0.49332,"delta_1":-0.29576,"delta_2":0.86419,"delta_3":-1.32394,"delta_4":-0.02842,"delta_5":-0.0973,"delta_6":0.33776,"delta_7":1.09102,"delta_8":-0.35879,"delta_9":-0.06265,"delta_10":-1.3226,"delta_11":-0.36629,"delta_12":0.59074,"delta_13":0.88965,"delta_14":1.05099}
|
| 38 |
+
{"instrument_id":37,"weight":0.002754,"delta_0":0.99312,"delta_1":-1.11351,"delta_2":1.14758,"delta_3":-0.85035,"delta_4":-0.43859,"delta_5":-1.06193,"delta_6":1.665,"delta_7":0.48843,"delta_8":0.19787,"delta_9":-0.437,"delta_10":-0.75378,"delta_11":-1.90926,"delta_12":-0.35452,"delta_13":-0.4751,"delta_14":-0.26872}
|
| 39 |
+
{"instrument_id":38,"weight":0.006458,"delta_0":-1.20908,"delta_1":-0.18885,"delta_2":0.84418,"delta_3":-0.27585,"delta_4":0.03566,"delta_5":-0.94567,"delta_6":1.32365,"delta_7":-1.35686,"delta_8":1.5968,"delta_9":0.47984,"delta_10":-1.45812,"delta_11":-0.61526,"delta_12":-0.019,"delta_13":-0.12838,"delta_14":-1.10246}
|
| 40 |
+
{"instrument_id":39,"weight":0.005758,"delta_0":-2.15709,"delta_1":1.47127,"delta_2":-1.43252,"delta_3":-0.26972,"delta_4":1.086,"delta_5":1.22481,"delta_6":1.66276,"delta_7":0.42132,"delta_8":2.43191,"delta_9":0.82863,"delta_10":0.94817,"delta_11":0.62991,"delta_12":-0.52323,"delta_13":0.19066,"delta_14":1.86356}
|
| 41 |
+
{"instrument_id":40,"weight":0.000916,"delta_0":0.4664,"delta_1":0.24876,"delta_2":-0.19232,"delta_3":-0.21925,"delta_4":-0.72575,"delta_5":0.15546,"delta_6":0.41196,"delta_7":-0.95845,"delta_8":0.63906,"delta_9":-1.04188,"delta_10":-0.56161,"delta_11":-1.64292,"delta_12":-0.15172,"delta_13":0.78532,"delta_14":0.81922}
|
| 42 |
+
{"instrument_id":41,"weight":0.005601,"delta_0":0.11769,"delta_1":0.71974,"delta_2":0.00489,"delta_3":-1.71707,"delta_4":-0.97983,"delta_5":1.03711,"delta_6":0.69613,"delta_7":-0.99278,"delta_8":0.66067,"delta_9":0.78762,"delta_10":0.9094,"delta_11":0.66044,"delta_12":-0.32946,"delta_13":0.9179,"delta_14":-0.37663}
|
| 43 |
+
{"instrument_id":42,"weight":0.00443,"delta_0":-0.33183,"delta_1":-1.38963,"delta_2":2.23414,"delta_3":-0.00907,"delta_4":-0.71044,"delta_5":0.48787,"delta_6":0.58715,"delta_7":0.60853,"delta_8":1.7875,"delta_9":1.68292,"delta_10":0.39795,"delta_11":0.313,"delta_12":1.14118,"delta_13":-0.8053,"delta_14":0.24486}
|
| 44 |
+
{"instrument_id":43,"weight":0.000935,"delta_0":-0.19065,"delta_1":1.51927,"delta_2":1.5658,"delta_3":-0.91931,"delta_4":1.01278,"delta_5":0.70857,"delta_6":1.16205,"delta_7":0.11611,"delta_8":-2.00287,"delta_9":0.87841,"delta_10":-0.14486,"delta_11":-0.16908,"delta_12":0.09683,"delta_13":-2.37984,"delta_14":0.35523}
|
| 45 |
+
{"instrument_id":44,"weight":0.004418,"delta_0":0.02892,"delta_1":-0.50416,"delta_2":1.17692,"delta_3":-1.5357,"delta_4":-0.55507,"delta_5":1.00974,"delta_6":0.62866,"delta_7":0.25177,"delta_8":0.77369,"delta_9":-0.35722,"delta_10":-0.82903,"delta_11":-1.23501,"delta_12":-2.14417,"delta_13":-1.26369,"delta_14":1.8121}
|
| 46 |
+
{"instrument_id":45,"weight":0.004736,"delta_0":0.34489,"delta_1":0.39199,"delta_2":-1.70952,"delta_3":0.39961,"delta_4":-2.00117,"delta_5":0.89117,"delta_6":0.80855,"delta_7":1.18679,"delta_8":-0.32682,"delta_9":0.09432,"delta_10":0.45588,"delta_11":-0.27899,"delta_12":-0.03306,"delta_13":-1.01035,"delta_14":0.68714}
|
| 47 |
+
{"instrument_id":46,"weight":0.006633,"delta_0":-0.7258,"delta_1":0.48024,"delta_2":-0.52553,"delta_3":2.07015,"delta_4":-0.15674,"delta_5":-0.00434,"delta_6":0.26197,"delta_7":-0.89281,"delta_8":-2.37311,"delta_9":-1.78722,"delta_10":-0.32918,"delta_11":0.63758,"delta_12":0.03882,"delta_13":-0.62048,"delta_14":-0.53813}
|
| 48 |
+
{"instrument_id":47,"weight":0.003485,"delta_0":-0.45683,"delta_1":-1.52529,"delta_2":0.32207,"delta_3":0.68074,"delta_4":-0.80873,"delta_5":0.83505,"delta_6":0.43967,"delta_7":2.40092,"delta_8":-0.88575,"delta_9":-2.17241,"delta_10":-2.24878,"delta_11":3.24429,"delta_12":-0.39128,"delta_13":0.48221,"delta_14":-1.7477}
|
| 49 |
+
{"instrument_id":48,"weight":0.000078,"delta_0":1.28583,"delta_1":0.85984,"delta_2":-1.20933,"delta_3":0.74184,"delta_4":-0.88978,"delta_5":-0.73991,"delta_6":0.18747,"delta_7":-0.26517,"delta_8":0.78292,"delta_9":0.41475,"delta_10":-0.46255,"delta_11":0.86688,"delta_12":-0.08832,"delta_13":1.06887,"delta_14":0.75292}
|
| 50 |
+
{"instrument_id":49,"weight":0.003911,"delta_0":1.6839,"delta_1":-0.72624,"delta_2":2.10211,"delta_3":0.9318,"delta_4":-0.67502,"delta_5":-0.32763,"delta_6":-0.61501,"delta_7":0.12847,"delta_8":0.14461,"delta_9":-0.07943,"delta_10":1.04217,"delta_11":1.23038,"delta_12":-0.29591,"delta_13":0.395,"delta_14":-1.72364}
|
| 51 |
+
{"instrument_id":50,"weight":0.002358,"delta_0":1.30732,"delta_1":-0.47733,"delta_2":0.76103,"delta_3":0.35256,"delta_4":-0.34247,"delta_5":1.39382,"delta_6":0.30189,"delta_7":0.03723,"delta_8":-0.82034,"delta_9":-1.7487,"delta_10":-1.35827,"delta_11":-0.89801,"delta_12":-1.10885,"delta_13":-0.86783,"delta_14":-0.14129}
|
| 52 |
+
{"instrument_id":51,"weight":0.00604,"delta_0":-1.23896,"delta_1":0.91113,"delta_2":-0.15654,"delta_3":0.3675,"delta_4":-0.44768,"delta_5":1.00757,"delta_6":-0.24113,"delta_7":-0.14302,"delta_8":0.72797,"delta_9":1.34867,"delta_10":0.02087,"delta_11":0.67707,"delta_12":-2.15905,"delta_13":-0.19602,"delta_14":0.8436}
|
| 53 |
+
{"instrument_id":52,"weight":0.006021,"delta_0":-1.07864,"delta_1":0.72798,"delta_2":-0.69536,"delta_3":-0.18185,"delta_4":0.2191,"delta_5":-0.3613,"delta_6":0.3147,"delta_7":-0.80553,"delta_8":0.70449,"delta_9":-0.39196,"delta_10":1.69619,"delta_11":-1.16492,"delta_12":-0.84838,"delta_13":-1.3967,"delta_14":-1.22634}
|
| 54 |
+
{"instrument_id":53,"weight":0.00372,"delta_0":-0.99475,"delta_1":0.2957,"delta_2":0.18583,"delta_3":-0.56776,"delta_4":-1.16315,"delta_5":-1.72867,"delta_6":-0.07613,"delta_7":-0.89217,"delta_8":-0.40535,"delta_9":0.8969,"delta_10":-1.97817,"delta_11":-0.41842,"delta_12":1.23027,"delta_13":-1.44948,"delta_14":0.12172}
|
| 55 |
+
{"instrument_id":54,"weight":0.002045,"delta_0":1.13121,"delta_1":1.15258,"delta_2":-0.17033,"delta_3":1.10565,"delta_4":-0.81295,"delta_5":0.11911,"delta_6":-0.35206,"delta_7":-1.61085,"delta_8":1.00151,"delta_9":1.64972,"delta_10":0.1718,"delta_11":-0.612,"delta_12":-0.61437,"delta_13":-0.92857,"delta_14":1.15736}
|
| 56 |
+
{"instrument_id":55,"weight":0.000346,"delta_0":2.23569,"delta_1":0.18462,"delta_2":-0.3997,"delta_3":-0.96054,"delta_4":0.98276,"delta_5":0.49041,"delta_6":-0.70351,"delta_7":-0.05173,"delta_8":0.91764,"delta_9":-1.22056,"delta_10":0.01867,"delta_11":0.84776,"delta_12":0.06402,"delta_13":2.05556,"delta_14":0.43068}
|
| 57 |
+
{"instrument_id":56,"weight":0.005096,"delta_0":1.4559,"delta_1":-1.18619,"delta_2":0.83101,"delta_3":0.30344,"delta_4":0.5766,"delta_5":-0.57946,"delta_6":-1.07932,"delta_7":0.38011,"delta_8":0.2129,"delta_9":0.94451,"delta_10":-0.01704,"delta_11":1.05614,"delta_12":0.2075,"delta_13":0.32672,"delta_14":-0.34233}
|
| 58 |
+
{"instrument_id":57,"weight":0.000958,"delta_0":-0.799,"delta_1":0.82675,"delta_2":1.117,"delta_3":0.91294,"delta_4":-0.798,"delta_5":-0.01662,"delta_6":0.94964,"delta_7":-1.15981,"delta_8":-0.16521,"delta_9":-1.21917,"delta_10":1.09734,"delta_11":2.00699,"delta_12":-1.12467,"delta_13":0.31628,"delta_14":1.20627}
|
| 59 |
+
{"instrument_id":58,"weight":0.005998,"delta_0":0.76089,"delta_1":0.63166,"delta_2":-0.19084,"delta_3":0.65839,"delta_4":0.95207,"delta_5":-0.18003,"delta_6":-1.57698,"delta_7":-1.33383,"delta_8":1.53324,"delta_9":-0.2363,"delta_10":-1.08689,"delta_11":-2.13456,"delta_12":-0.30687,"delta_13":-1.51071,"delta_14":-1.88772}
|
| 60 |
+
{"instrument_id":59,"weight":0.001822,"delta_0":-2.08865,"delta_1":0.22104,"delta_2":0.9868,"delta_3":4.06396,"delta_4":-1.79351,"delta_5":1.41287,"delta_6":-0.01038,"delta_7":1.00276,"delta_8":0.77855,"delta_9":-0.65545,"delta_10":-0.26387,"delta_11":1.55178,"delta_12":1.64481,"delta_13":-1.38468,"delta_14":0.92693}
|
| 61 |
+
{"instrument_id":60,"weight":0.000997,"delta_0":-0.66755,"delta_1":-0.5457,"delta_2":0.60299,"delta_3":-0.53367,"delta_4":-1.96304,"delta_5":0.89923,"delta_6":-1.19667,"delta_7":-3.15399,"delta_8":-0.27814,"delta_9":-0.29056,"delta_10":1.89688,"delta_11":1.77392,"delta_12":1.42242,"delta_13":-0.73322,"delta_14":0.55113}
|
| 62 |
+
{"instrument_id":61,"weight":0.005434,"delta_0":-0.90121,"delta_1":-2.15746,"delta_2":-0.40099,"delta_3":-0.86709,"delta_4":-0.40062,"delta_5":-0.0786,"delta_6":0.60885,"delta_7":-0.387,"delta_8":-0.18348,"delta_9":-0.45464,"delta_10":0.01373,"delta_11":0.12976,"delta_12":0.20913,"delta_13":0.29145,"delta_14":0.16078}
|
| 63 |
+
{"instrument_id":62,"weight":0.003799,"delta_0":-0.74247,"delta_1":1.42055,"delta_2":0.44796,"delta_3":-0.12083,"delta_4":-0.54522,"delta_5":-0.92726,"delta_6":1.90614,"delta_7":-0.82781,"delta_8":1.15861,"delta_9":-0.10168,"delta_10":-0.56049,"delta_11":1.31311,"delta_12":-0.93893,"delta_13":2.0527,"delta_14":-0.05095}
|
| 64 |
+
{"instrument_id":63,"weight":0.003194,"delta_0":0.49817,"delta_1":-0.7444,"delta_2":-3.05637,"delta_3":-3.00468,"delta_4":1.18251,"delta_5":0.6362,"delta_6":-0.96236,"delta_7":3.14749,"delta_8":0.29003,"delta_9":0.31235,"delta_10":1.41007,"delta_11":0.71768,"delta_12":0.9383,"delta_13":0.43366,"delta_14":0.0951}
|
| 65 |
+
{"instrument_id":64,"weight":0.001115,"delta_0":0.8085,"delta_1":-0.39339,"delta_2":0.72759,"delta_3":-0.77774,"delta_4":1.71987,"delta_5":-0.87938,"delta_6":-0.10665,"delta_7":0.63801,"delta_8":0.76935,"delta_9":2.49663,"delta_10":-0.21661,"delta_11":-0.59233,"delta_12":0.25835,"delta_13":-1.13685,"delta_14":1.16224}
|
| 66 |
+
{"instrument_id":65,"weight":0.006609,"delta_0":-0.71937,"delta_1":1.85314,"delta_2":-0.16616,"delta_3":-0.07403,"delta_4":0.76943,"delta_5":-1.08202,"delta_6":-2.18398,"delta_7":1.68503,"delta_8":-0.1165,"delta_9":1.06191,"delta_10":-1.58811,"delta_11":-2.05163,"delta_12":0.23082,"delta_13":-0.4724,"delta_14":-0.41587}
|
| 67 |
+
{"instrument_id":66,"weight":0.006504,"delta_0":-0.2668,"delta_1":-2.04126,"delta_2":-0.47648,"delta_3":0.06191,"delta_4":1.52194,"delta_5":1.34505,"delta_6":1.04166,"delta_7":0.2466,"delta_8":0.86433,"delta_9":-1.47905,"delta_10":0.56997,"delta_11":-0.05067,"delta_12":0.64731,"delta_13":-0.47893,"delta_14":-0.77164}
|
| 68 |
+
{"instrument_id":67,"weight":0.005713,"delta_0":-0.14861,"delta_1":-0.59604,"delta_2":0.48691,"delta_3":-0.01985,"delta_4":-0.28299,"delta_5":1.25827,"delta_6":-1.30102,"delta_7":0.50562,"delta_8":-0.18417,"delta_9":-0.87771,"delta_10":0.30339,"delta_11":0.05825,"delta_12":-0.67569,"delta_13":1.82557,"delta_14":0.01125}
|
| 69 |
+
{"instrument_id":68,"weight":0.00402,"delta_0":-0.65164,"delta_1":-0.00845,"delta_2":-0.72393,"delta_3":0.65148,"delta_4":-1.57178,"delta_5":1.32356,"delta_6":-0.9693,"delta_7":-0.65102,"delta_8":-0.76784,"delta_9":-1.09294,"delta_10":-0.17202,"delta_11":0.72095,"delta_12":-0.04991,"delta_13":1.29654,"delta_14":-0.53171}
|
| 70 |
+
{"instrument_id":69,"weight":0.004994,"delta_0":-1.28112,"delta_1":-0.75319,"delta_2":-0.145,"delta_3":0.93794,"delta_4":-1.34157,"delta_5":-2.45755,"delta_6":-0.62202,"delta_7":-0.16825,"delta_8":0.43064,"delta_9":-0.04059,"delta_10":-0.5114,"delta_11":-0.33613,"delta_12":-0.21596,"delta_13":0.95153,"delta_14":0.33837}
|
| 71 |
+
{"instrument_id":70,"weight":0.004466,"delta_0":-0.2989,"delta_1":1.21406,"delta_2":-0.38742,"delta_3":-1.24131,"delta_4":-0.15476,"delta_5":-0.28429,"delta_6":0.38171,"delta_7":-0.10686,"delta_8":0.09033,"delta_9":1.3002,"delta_10":-0.26355,"delta_11":-1.35597,"delta_12":0.98425,"delta_13":1.15284,"delta_14":0.83769}
|
| 72 |
+
{"instrument_id":71,"weight":0.000429,"delta_0":1.03346,"delta_1":-0.77342,"delta_2":-1.01459,"delta_3":-1.27168,"delta_4":-0.4294,"delta_5":0.65608,"delta_6":-0.50788,"delta_7":-0.12367,"delta_8":0.73353,"delta_9":-0.2419,"delta_10":0.29072,"delta_11":2.00726,"delta_12":-0.87824,"delta_13":-2.00078,"delta_14":-0.70076}
|
| 73 |
+
{"instrument_id":72,"weight":0.005316,"delta_0":1.16263,"delta_1":-1.68968,"delta_2":0.06713,"delta_3":-0.14791,"delta_4":0.04623,"delta_5":0.82858,"delta_6":-0.01634,"delta_7":0.22885,"delta_8":0.48737,"delta_9":0.41352,"delta_10":0.13402,"delta_11":0.65986,"delta_12":1.60077,"delta_13":1.09655,"delta_14":-1.68637}
|
| 74 |
+
{"instrument_id":73,"weight":0.000456,"delta_0":0.30442,"delta_1":0.44378,"delta_2":-0.53186,"delta_3":-0.32437,"delta_4":0.14807,"delta_5":-0.8559,"delta_6":0.28079,"delta_7":0.26375,"delta_8":-1.28306,"delta_9":-1.51691,"delta_10":-1.18378,"delta_11":0.20504,"delta_12":-2.37076,"delta_13":0.61334,"delta_14":0.59729}
|
| 75 |
+
{"instrument_id":74,"weight":0.002608,"delta_0":-0.66831,"delta_1":1.02616,"delta_2":1.0657,"delta_3":-1.25057,"delta_4":-0.24467,"delta_5":1.94251,"delta_6":-0.24891,"delta_7":0.2941,"delta_8":0.82123,"delta_9":0.75817,"delta_10":-0.4566,"delta_11":-0.27729,"delta_12":1.45415,"delta_13":0.80716,"delta_14":0.85785}
|
| 76 |
+
{"instrument_id":75,"weight":0.005218,"delta_0":0.2255,"delta_1":-0.21239,"delta_2":-1.73766,"delta_3":0.6483,"delta_4":0.26135,"delta_5":-1.02625,"delta_6":-0.03844,"delta_7":-0.34479,"delta_8":-0.97111,"delta_9":-1.22248,"delta_10":-0.95461,"delta_11":-0.03726,"delta_12":1.82263,"delta_13":1.96085,"delta_14":-0.22644}
|
| 77 |
+
{"instrument_id":76,"weight":0.006516,"delta_0":-0.95995,"delta_1":-0.01178,"delta_2":-0.54111,"delta_3":-1.07558,"delta_4":1.29491,"delta_5":-1.20074,"delta_6":0.65636,"delta_7":0.79733,"delta_8":-0.25189,"delta_9":-0.74072,"delta_10":0.17175,"delta_11":-0.68204,"delta_12":-0.63114,"delta_13":1.14244,"delta_14":-0.70053}
|
| 78 |
+
{"instrument_id":77,"weight":0.006611,"delta_0":0.54753,"delta_1":-0.58698,"delta_2":0.84287,"delta_3":1.4474,"delta_4":1.21157,"delta_5":0.10847,"delta_6":0.96562,"delta_7":0.584,"delta_8":-0.08108,"delta_9":1.65493,"delta_10":-1.59611,"delta_11":0.23552,"delta_12":2.24669,"delta_13":-1.54009,"delta_14":3.07067}
|
| 79 |
+
{"instrument_id":78,"weight":0.000481,"delta_0":0.13798,"delta_1":-0.02863,"delta_2":-0.68639,"delta_3":0.19289,"delta_4":1.60283,"delta_5":0.99222,"delta_6":-0.60187,"delta_7":1.0504,"delta_8":0.09328,"delta_9":-0.3276,"delta_10":-0.22851,"delta_11":0.92947,"delta_12":1.54267,"delta_13":-0.97544,"delta_14":-0.35321}
|
| 80 |
+
{"instrument_id":79,"weight":0.00169,"delta_0":-0.36489,"delta_1":0.26754,"delta_2":-2.46444,"delta_3":0.89791,"delta_4":-0.80965,"delta_5":0.38749,"delta_6":0.32167,"delta_7":-0.50306,"delta_8":1.76574,"delta_9":-1.01191,"delta_10":-0.02597,"delta_11":-0.5801,"delta_12":0.85846,"delta_13":0.79809,"delta_14":-0.70973}
|
| 81 |
+
{"instrument_id":80,"weight":0.004499,"delta_0":0.21253,"delta_1":-0.08903,"delta_2":0.12174,"delta_3":-0.314,"delta_4":-0.11131,"delta_5":0.59239,"delta_6":0.27542,"delta_7":-1.08108,"delta_8":-0.37878,"delta_9":0.46203,"delta_10":0.0341,"delta_11":-2.87192,"delta_12":0.37782,"delta_13":1.02966,"delta_14":1.36315}
|
| 82 |
+
{"instrument_id":81,"weight":0.005997,"delta_0":0.85145,"delta_1":1.46071,"delta_2":-1.40098,"delta_3":-1.21534,"delta_4":-0.15274,"delta_5":0.20686,"delta_6":-1.61839,"delta_7":-0.5441,"delta_8":-0.51818,"delta_9":-1.6117,"delta_10":0.1616,"delta_11":-0.80335,"delta_12":1.18783,"delta_13":-0.40746,"delta_14":0.41713}
|
| 83 |
+
{"instrument_id":82,"weight":0.003914,"delta_0":-0.64704,"delta_1":-0.34155,"delta_2":2.1689,"delta_3":0.37184,"delta_4":1.74959,"delta_5":1.25663,"delta_6":0.0206,"delta_7":0.52054,"delta_8":-0.66362,"delta_9":0.43313,"delta_10":-1.20733,"delta_11":-0.26496,"delta_12":0.04357,"delta_13":-2.63253,"delta_14":0.99537}
|
| 84 |
+
{"instrument_id":83,"weight":0.001384,"delta_0":0.51694,"delta_1":-1.6154,"delta_2":0.28564,"delta_3":1.4289,"delta_4":0.03112,"delta_5":-1.41313,"delta_6":-1.88869,"delta_7":-0.55748,"delta_8":0.1721,"delta_9":-0.76697,"delta_10":0.16607,"delta_11":-0.59102,"delta_12":0.43434,"delta_13":-0.60423,"delta_14":2.93116}
|
| 85 |
+
{"instrument_id":84,"weight":0.004252,"delta_0":-0.87515,"delta_1":1.59976,"delta_2":0.61549,"delta_3":0.14318,"delta_4":-0.05119,"delta_5":1.01273,"delta_6":-0.2725,"delta_7":0.52952,"delta_8":0.25137,"delta_9":-0.44521,"delta_10":-0.75075,"delta_11":-0.39413,"delta_12":-1.97783,"delta_13":0.25003,"delta_14":-1.51324}
|
| 86 |
+
{"instrument_id":85,"weight":0.005551,"delta_0":-1.03948,"delta_1":1.08012,"delta_2":0.41638,"delta_3":0.30785,"delta_4":-1.51487,"delta_5":0.82467,"delta_6":-2.0145,"delta_7":-0.08388,"delta_8":-0.35253,"delta_9":0.17932,"delta_10":-0.49721,"delta_11":-1.10443,"delta_12":-0.26024,"delta_13":-0.09186,"delta_14":-0.77979}
|
| 87 |
+
{"instrument_id":86,"weight":0.001937,"delta_0":0.27055,"delta_1":-1.02967,"delta_2":-1.01216,"delta_3":0.46204,"delta_4":0.627,"delta_5":-1.71405,"delta_6":-1.56659,"delta_7":-0.37818,"delta_8":0.70635,"delta_9":-0.31522,"delta_10":-0.20545,"delta_11":-0.59992,"delta_12":1.59827,"delta_13":-0.49771,"delta_14":0.92755}
|
| 88 |
+
{"instrument_id":87,"weight":0.004778,"delta_0":-1.39972,"delta_1":-0.02722,"delta_2":0.63525,"delta_3":0.44966,"delta_4":-0.80543,"delta_5":1.44946,"delta_6":0.15033,"delta_7":-0.19925,"delta_8":1.30722,"delta_9":0.72212,"delta_10":-2.2332,"delta_11":0.38465,"delta_12":-0.21977,"delta_13":-1.27536,"delta_14":1.06468}
|
| 89 |
+
{"instrument_id":88,"weight":0.004904,"delta_0":0.82912,"delta_1":0.0552,"delta_2":0.49486,"delta_3":0.83623,"delta_4":2.37472,"delta_5":-0.50285,"delta_6":1.14351,"delta_7":0.23952,"delta_8":-0.27274,"delta_9":0.34479,"delta_10":-0.22403,"delta_11":-0.09377,"delta_12":0.07556,"delta_13":-0.00334,"delta_14":-2.92359}
|
| 90 |
+
{"instrument_id":89,"weight":0.005015,"delta_0":2.09244,"delta_1":-1.81238,"delta_2":1.38925,"delta_3":1.55533,"delta_4":-0.15711,"delta_5":2.589,"delta_6":1.75132,"delta_7":0.47762,"delta_8":0.82247,"delta_9":0.45994,"delta_10":-1.63354,"delta_11":-0.62624,"delta_12":-1.39493,"delta_13":1.70597,"delta_14":-0.07953}
|
| 91 |
+
{"instrument_id":90,"weight":0.006477,"delta_0":0.19808,"delta_1":0.4176,"delta_2":0.29922,"delta_3":0.91387,"delta_4":0.10338,"delta_5":-0.16275,"delta_6":0.1765,"delta_7":-1.39959,"delta_8":0.17729,"delta_9":-0.12188,"delta_10":1.74339,"delta_11":0.05612,"delta_12":-1.69968,"delta_13":0.1607,"delta_14":-0.62462}
|
| 92 |
+
{"instrument_id":91,"weight":0.003024,"delta_0":-0.33245,"delta_1":-0.86963,"delta_2":-0.9997,"delta_3":0.09496,"delta_4":0.02249,"delta_5":0.79082,"delta_6":0.93754,"delta_7":-1.20846,"delta_8":-1.29416,"delta_9":-0.84529,"delta_10":0.05309,"delta_11":-0.98505,"delta_12":1.91237,"delta_13":0.77274,"delta_14":-1.17064}
|
| 93 |
+
{"instrument_id":92,"weight":0.003845,"delta_0":-1.56528,"delta_1":-1.57189,"delta_2":-0.19346,"delta_3":-0.62004,"delta_4":-0.01653,"delta_5":-1.00822,"delta_6":-2.2579,"delta_7":0.9532,"delta_8":-1.60563,"delta_9":-0.83065,"delta_10":0.18137,"delta_11":0.17666,"delta_12":-0.6223,"delta_13":-0.87594,"delta_14":1.2863}
|
| 94 |
+
{"instrument_id":93,"weight":0.004894,"delta_0":1.09587,"delta_1":0.00267,"delta_2":-1.89326,"delta_3":-0.41087,"delta_4":1.06697,"delta_5":-1.37248,"delta_6":0.29192,"delta_7":-0.23426,"delta_8":0.82862,"delta_9":0.00089,"delta_10":-1.04001,"delta_11":-0.5772,"delta_12":-0.59382,"delta_13":-0.51648,"delta_14":-0.28176}
|
| 95 |
+
{"instrument_id":94,"weight":0.002839,"delta_0":1.05509,"delta_1":1.27813,"delta_2":0.43134,"delta_3":0.86807,"delta_4":-1.53219,"delta_5":0.89476,"delta_6":1.39423,"delta_7":-0.45661,"delta_8":0.37068,"delta_9":-0.65238,"delta_10":-0.42076,"delta_11":-0.03572,"delta_12":1.12446,"delta_13":0.76122,"delta_14":-0.68466}
|
| 96 |
+
{"instrument_id":95,"weight":0.005498,"delta_0":0.10812,"delta_1":0.10296,"delta_2":-0.12252,"delta_3":-0.58373,"delta_4":-0.05912,"delta_5":-0.06693,"delta_6":-1.91606,"delta_7":2.39712,"delta_8":-1.05061,"delta_9":0.55337,"delta_10":-0.18035,"delta_11":-0.56236,"delta_12":0.64954,"delta_13":-0.35204,"delta_14":-0.41421}
|
| 97 |
+
{"instrument_id":96,"weight":0.006257,"delta_0":1.09495,"delta_1":1.04199,"delta_2":-1.45675,"delta_3":-1.14174,"delta_4":-2.04653,"delta_5":-0.71644,"delta_6":1.91626,"delta_7":-0.78321,"delta_8":0.37151,"delta_9":-1.35804,"delta_10":-1.45585,"delta_11":0.36257,"delta_12":-0.7923,"delta_13":-2.29194,"delta_14":0.53689}
|
| 98 |
+
{"instrument_id":97,"weight":0.000893,"delta_0":2.49827,"delta_1":0.14305,"delta_2":0.62858,"delta_3":-0.53741,"delta_4":0.50061,"delta_5":-0.73884,"delta_6":0.22121,"delta_7":-2.05959,"delta_8":-0.71212,"delta_9":0.10926,"delta_10":0.1834,"delta_11":0.06566,"delta_12":0.27741,"delta_13":1.50249,"delta_14":-0.80642}
|
| 99 |
+
{"instrument_id":98,"weight":0.002748,"delta_0":0.13863,"delta_1":2.60507,"delta_2":-0.66346,"delta_3":0.75322,"delta_4":-1.34561,"delta_5":0.33801,"delta_6":0.27538,"delta_7":0.07193,"delta_8":-1.47818,"delta_9":-0.48825,"delta_10":0.83816,"delta_11":0.00303,"delta_12":-0.87479,"delta_13":0.36095,"delta_14":-2.30724}
|
| 100 |
+
{"instrument_id":99,"weight":0.001307,"delta_0":-0.93093,"delta_1":-0.31502,"delta_2":-0.36351,"delta_3":-0.43499,"delta_4":-0.47149,"delta_5":-0.22345,"delta_6":-0.01192,"delta_7":-0.82873,"delta_8":0.45566,"delta_9":1.22343,"delta_10":-0.20153,"delta_11":0.63499,"delta_12":-0.42876,"delta_13":-1.04421,"delta_14":-1.01489}
|
| 101 |
+
{"instrument_id":100,"weight":0.004551,"delta_0":-1.13604,"delta_1":1.37881,"delta_2":-1.32112,"delta_3":0.88113,"delta_4":-0.84034,"delta_5":1.24203,"delta_6":-0.56809,"delta_7":2.18006,"delta_8":0.40162,"delta_9":-0.84774,"delta_10":1.00641,"delta_11":0.41954,"delta_12":0.45001,"delta_13":0.66047,"delta_14":-1.14176}
|
| 102 |
+
{"instrument_id":101,"weight":0.00317,"delta_0":-0.53396,"delta_1":1.54215,"delta_2":-1.23598,"delta_3":0.18461,"delta_4":0.79867,"delta_5":1.20151,"delta_6":1.05444,"delta_7":-0.91397,"delta_8":-0.64759,"delta_9":-1.48083,"delta_10":0.1092,"delta_11":0.48921,"delta_12":-0.96423,"delta_13":0.68039,"delta_14":-0.18191}
|
| 103 |
+
{"instrument_id":102,"weight":0.001681,"delta_0":-0.11971,"delta_1":-1.21546,"delta_2":-0.50422,"delta_3":1.04677,"delta_4":-0.23804,"delta_5":-0.20973,"delta_6":-0.16733,"delta_7":-0.68467,"delta_8":-0.07139,"delta_9":1.75772,"delta_10":-1.56052,"delta_11":0.38827,"delta_12":-1.14076,"delta_13":1.05322,"delta_14":1.18685}
|
| 104 |
+
{"instrument_id":103,"weight":0.003944,"delta_0":0.74069,"delta_1":1.96775,"delta_2":-0.8465,"delta_3":0.16408,"delta_4":0.46238,"delta_5":0.34062,"delta_6":0.20079,"delta_7":1.12796,"delta_8":-0.1209,"delta_9":-1.70267,"delta_10":1.11632,"delta_11":0.74276,"delta_12":1.4496,"delta_13":-0.80576,"delta_14":-0.20682}
|
| 105 |
+
{"instrument_id":104,"weight":0.002881,"delta_0":-0.65592,"delta_1":-1.0826,"delta_2":-0.4608,"delta_3":0.36763,"delta_4":-0.76368,"delta_5":-0.10652,"delta_6":-1.14575,"delta_7":-0.25672,"delta_8":-0.3956,"delta_9":-0.45659,"delta_10":0.19192,"delta_11":2.44061,"delta_12":-0.54163,"delta_13":0.79432,"delta_14":0.43452}
|
| 106 |
+
{"instrument_id":105,"weight":0.003228,"delta_0":-0.08948,"delta_1":0.67119,"delta_2":1.23003,"delta_3":-0.61169,"delta_4":-0.31212,"delta_5":-0.46818,"delta_6":-1.47331,"delta_7":0.63424,"delta_8":-1.48906,"delta_9":-0.36396,"delta_10":-2.17301,"delta_11":-0.52548,"delta_12":0.28134,"delta_13":-0.11214,"delta_14":-1.34628}
|
| 107 |
+
{"instrument_id":106,"weight":0.000461,"delta_0":-0.99676,"delta_1":-1.92313,"delta_2":-0.55948,"delta_3":0.50961,"delta_4":1.12165,"delta_5":-0.72304,"delta_6":-1.22399,"delta_7":-1.40777,"delta_8":-1.54967,"delta_9":0.35772,"delta_10":1.03066,"delta_11":-0.54205,"delta_12":-1.3537,"delta_13":-0.21094,"delta_14":0.33487}
|
| 108 |
+
{"instrument_id":107,"weight":0.00134,"delta_0":-1.44075,"delta_1":1.08732,"delta_2":-1.43041,"delta_3":1.69976,"delta_4":0.80595,"delta_5":-0.80075,"delta_6":-0.21656,"delta_7":-0.81389,"delta_8":0.70065,"delta_9":0.67823,"delta_10":-0.03179,"delta_11":-1.55568,"delta_12":-0.15214,"delta_13":0.35817,"delta_14":-0.1255}
|
| 109 |
+
{"instrument_id":108,"weight":0.004776,"delta_0":-0.15964,"delta_1":0.86942,"delta_2":-2.37215,"delta_3":-0.10057,"delta_4":-0.56181,"delta_5":0.72451,"delta_6":-0.04127,"delta_7":-0.65597,"delta_8":0.52264,"delta_9":0.67501,"delta_10":-0.61361,"delta_11":-0.91032,"delta_12":-0.27823,"delta_13":0.88249,"delta_14":0.68669}
|
| 110 |
+
{"instrument_id":109,"weight":0.001294,"delta_0":-0.41087,"delta_1":-0.92301,"delta_2":1.04545,"delta_3":-0.7267,"delta_4":-1.0249,"delta_5":-0.96722,"delta_6":-0.41873,"delta_7":-0.88344,"delta_8":-0.13351,"delta_9":0.54981,"delta_10":0.06337,"delta_11":-0.71097,"delta_12":-0.65883,"delta_13":-0.17664,"delta_14":1.42588}
|
| 111 |
+
{"instrument_id":110,"weight":0.002802,"delta_0":1.59544,"delta_1":-1.36683,"delta_2":0.06894,"delta_3":-0.73452,"delta_4":-1.09651,"delta_5":-1.05015,"delta_6":-0.45655,"delta_7":-2.08593,"delta_8":0.31931,"delta_9":-0.25369,"delta_10":2.40211,"delta_11":0.80334,"delta_12":1.31761,"delta_13":-0.08195,"delta_14":1.06985}
|
| 112 |
+
{"instrument_id":111,"weight":0.005083,"delta_0":-0.53972,"delta_1":1.62175,"delta_2":1.20656,"delta_3":1.92919,"delta_4":0.75439,"delta_5":-0.71828,"delta_6":0.80675,"delta_7":0.27544,"delta_8":0.04381,"delta_9":0.42826,"delta_10":-0.96756,"delta_11":-0.57086,"delta_12":0.31674,"delta_13":0.32605,"delta_14":1.0107}
|
| 113 |
+
{"instrument_id":112,"weight":0.004651,"delta_0":-0.67089,"delta_1":-0.92521,"delta_2":-1.15594,"delta_3":0.83441,"delta_4":-0.40747,"delta_5":0.82853,"delta_6":0.32135,"delta_7":1.50134,"delta_8":-0.22084,"delta_9":1.02816,"delta_10":0.81392,"delta_11":-0.28914,"delta_12":1.78124,"delta_13":0.77735,"delta_14":0.71579}
|
| 114 |
+
{"instrument_id":113,"weight":0.005849,"delta_0":1.01243,"delta_1":1.58616,"delta_2":-0.72552,"delta_3":-0.14043,"delta_4":1.66978,"delta_5":0.37064,"delta_6":1.53053,"delta_7":2.03827,"delta_8":-0.20097,"delta_9":0.41336,"delta_10":1.56509,"delta_11":-0.18613,"delta_12":-1.03273,"delta_13":-0.26436,"delta_14":0.45537}
|
| 115 |
+
{"instrument_id":114,"weight":0.002848,"delta_0":-0.085,"delta_1":-1.29415,"delta_2":-1.0102,"delta_3":0.82299,"delta_4":1.51633,"delta_5":-1.77159,"delta_6":0.73851,"delta_7":-1.63255,"delta_8":0.69184,"delta_9":0.80208,"delta_10":1.36002,"delta_11":1.30065,"delta_12":-0.25511,"delta_13":1.12771,"delta_14":1.55453}
|
| 116 |
+
{"instrument_id":115,"weight":0.004365,"delta_0":1.82903,"delta_1":-0.3745,"delta_2":1.66873,"delta_3":1.73346,"delta_4":0.32343,"delta_5":-1.06118,"delta_6":0.55897,"delta_7":-1.20156,"delta_8":-0.82582,"delta_9":1.40705,"delta_10":-0.22543,"delta_11":0.59139,"delta_12":-2.30167,"delta_13":0.46632,"delta_14":-1.10746}
|
| 117 |
+
{"instrument_id":116,"weight":0.000263,"delta_0":1.31237,"delta_1":0.2913,"delta_2":0.94675,"delta_3":1.51702,"delta_4":1.14102,"delta_5":-0.09658,"delta_6":-0.07906,"delta_7":1.36779,"delta_8":-1.29623,"delta_9":0.24003,"delta_10":-2.12225,"delta_11":-1.39888,"delta_12":-0.22248,"delta_13":-3.2725,"delta_14":0.92067}
|
| 118 |
+
{"instrument_id":117,"weight":0.000998,"delta_0":0.83211,"delta_1":-0.65414,"delta_2":0.0134,"delta_3":-0.21053,"delta_4":-1.31379,"delta_5":0.45216,"delta_6":0.76502,"delta_7":-0.86404,"delta_8":-0.96362,"delta_9":-0.1927,"delta_10":1.05746,"delta_11":1.59886,"delta_12":0.37806,"delta_13":1.15971,"delta_14":1.42278}
|
| 119 |
+
{"instrument_id":118,"weight":0.003601,"delta_0":0.74644,"delta_1":0.48921,"delta_2":-2.24595,"delta_3":-0.88906,"delta_4":-0.94515,"delta_5":-0.35185,"delta_6":-0.71619,"delta_7":-1.19636,"delta_8":-0.74215,"delta_9":0.11553,"delta_10":-0.28693,"delta_11":-0.43123,"delta_12":-0.32582,"delta_13":0.50297,"delta_14":-2.74456}
|
| 120 |
+
{"instrument_id":119,"weight":0.006634,"delta_0":-0.54121,"delta_1":0.99318,"delta_2":-0.24103,"delta_3":0.75144,"delta_4":-0.81883,"delta_5":1.977,"delta_6":0.61846,"delta_7":-1.21866,"delta_8":0.41345,"delta_9":-0.13183,"delta_10":1.08121,"delta_11":0.3369,"delta_12":-0.11585,"delta_13":0.4358,"delta_14":0.35747}
|
| 121 |
+
{"instrument_id":120,"weight":0.000155,"delta_0":-0.298,"delta_1":2.16609,"delta_2":-0.91921,"delta_3":-1.06234,"delta_4":-0.96674,"delta_5":1.80736,"delta_6":-1.4458,"delta_7":-1.4268,"delta_8":0.11461,"delta_9":1.50732,"delta_10":-3.05905,"delta_11":-1.21784,"delta_12":1.57295,"delta_13":-0.5954,"delta_14":0.91132}
|
| 122 |
+
{"instrument_id":121,"weight":0.001618,"delta_0":-1.24054,"delta_1":0.69389,"delta_2":-1.82233,"delta_3":0.51054,"delta_4":0.16034,"delta_5":-0.13412,"delta_6":0.17473,"delta_7":-1.75893,"delta_8":-1.11668,"delta_9":1.17706,"delta_10":0.14394,"delta_11":0.416,"delta_12":-0.12977,"delta_13":-1.56433,"delta_14":0.64648}
|
| 123 |
+
{"instrument_id":122,"weight":0.006458,"delta_0":-1.02369,"delta_1":1.69249,"delta_2":0.0633,"delta_3":0.64302,"delta_4":1.58934,"delta_5":0.05918,"delta_6":0.62497,"delta_7":0.25625,"delta_8":-1.17956,"delta_9":-1.07584,"delta_10":-0.43607,"delta_11":1.27797,"delta_12":-0.05812,"delta_13":0.39237,"delta_14":-1.83917}
|
| 124 |
+
{"instrument_id":123,"weight":0.00569,"delta_0":-1.00989,"delta_1":0.9657,"delta_2":0.20096,"delta_3":1.3371,"delta_4":0.62402,"delta_5":-0.51204,"delta_6":1.01584,"delta_7":-1.22985,"delta_8":-0.03883,"delta_9":-2.08141,"delta_10":0.39602,"delta_11":-1.15674,"delta_12":-1.44425,"delta_13":0.95416,"delta_14":-1.30767}
|
| 125 |
+
{"instrument_id":124,"weight":0.00278,"delta_0":-0.42732,"delta_1":-0.51403,"delta_2":-1.09434,"delta_3":1.47294,"delta_4":1.97831,"delta_5":-1.28532,"delta_6":-0.06081,"delta_7":0.44128,"delta_8":-0.25026,"delta_9":1.0163,"delta_10":1.16878,"delta_11":-0.8687,"delta_12":-0.40204,"delta_13":-0.3062,"delta_14":-0.43329}
|
| 126 |
+
{"instrument_id":125,"weight":0.003519,"delta_0":1.39808,"delta_1":-1.78714,"delta_2":1.27898,"delta_3":-1.02163,"delta_4":-0.15262,"delta_5":0.94821,"delta_6":-0.82503,"delta_7":0.50863,"delta_8":-0.30935,"delta_9":0.05895,"delta_10":-0.36443,"delta_11":1.01841,"delta_12":0.11467,"delta_13":-0.88287,"delta_14":-0.49492}
|
| 127 |
+
{"instrument_id":126,"weight":0.001739,"delta_0":0.6148,"delta_1":1.39165,"delta_2":-0.0132,"delta_3":-0.85426,"delta_4":-0.75109,"delta_5":-1.01645,"delta_6":-1.11621,"delta_7":-0.44399,"delta_8":0.09569,"delta_9":-0.76073,"delta_10":-0.56129,"delta_11":2.08727,"delta_12":0.64103,"delta_13":-0.06277,"delta_14":1.49495}
|
| 128 |
+
{"instrument_id":127,"weight":0.005105,"delta_0":0.31531,"delta_1":1.17231,"delta_2":-1.04916,"delta_3":-0.56677,"delta_4":-1.11923,"delta_5":0.30133,"delta_6":1.33872,"delta_7":-1.28862,"delta_8":0.28204,"delta_9":0.63938,"delta_10":-0.71656,"delta_11":-0.21247,"delta_12":-0.00394,"delta_13":0.71721,"delta_14":-0.06044}
|
| 129 |
+
{"instrument_id":128,"weight":0.00094,"delta_0":1.19411,"delta_1":-1.63169,"delta_2":0.09993,"delta_3":0.67931,"delta_4":0.14517,"delta_5":-0.23415,"delta_6":-0.66342,"delta_7":0.34455,"delta_8":-2.54183,"delta_9":0.1141,"delta_10":0.07124,"delta_11":-1.03984,"delta_12":-1.10497,"delta_13":1.68738,"delta_14":0.07969}
|
| 130 |
+
{"instrument_id":129,"weight":0.004051,"delta_0":0.08312,"delta_1":-1.66007,"delta_2":-0.18431,"delta_3":-0.94233,"delta_4":0.34909,"delta_5":1.83976,"delta_6":-2.06158,"delta_7":-1.31997,"delta_8":0.02197,"delta_9":-0.71275,"delta_10":-0.22848,"delta_11":-1.78575,"delta_12":-0.64352,"delta_13":0.46532,"delta_14":1.51997}
|
| 131 |
+
{"instrument_id":130,"weight":0.001763,"delta_0":-1.23088,"delta_1":0.2172,"delta_2":0.89174,"delta_3":-0.07251,"delta_4":0.92739,"delta_5":1.6224,"delta_6":-1.35855,"delta_7":-0.69206,"delta_8":1.29425,"delta_9":-0.45272,"delta_10":0.24819,"delta_11":-1.26168,"delta_12":0.11651,"delta_13":-0.3135,"delta_14":-2.36163}
|
| 132 |
+
{"instrument_id":131,"weight":0.005054,"delta_0":-2.43634,"delta_1":-0.53228,"delta_2":1.64331,"delta_3":2.07601,"delta_4":-1.01242,"delta_5":0.02528,"delta_6":0.51991,"delta_7":-0.00881,"delta_8":-0.14007,"delta_9":0.74155,"delta_10":-0.10727,"delta_11":0.05954,"delta_12":-0.45343,"delta_13":-1.25039,"delta_14":-2.29536}
|
| 133 |
+
{"instrument_id":132,"weight":0.004817,"delta_0":-0.74409,"delta_1":-1.06835,"delta_2":-0.9942,"delta_3":-1.5159,"delta_4":0.84772,"delta_5":0.57001,"delta_6":-0.44198,"delta_7":-0.48723,"delta_8":-2.32665,"delta_9":0.82684,"delta_10":-2.20341,"delta_11":-0.42041,"delta_12":1.154,"delta_13":1.16884,"delta_14":-1.2568}
|
| 134 |
+
{"instrument_id":133,"weight":0.005587,"delta_0":-1.91987,"delta_1":0.19866,"delta_2":-2.10401,"delta_3":0.60037,"delta_4":1.34797,"delta_5":1.11578,"delta_6":-0.5152,"delta_7":-0.72686,"delta_8":-0.57092,"delta_9":-1.61337,"delta_10":-0.97487,"delta_11":-0.93385,"delta_12":0.52135,"delta_13":-2.25428,"delta_14":0.99588}
|
| 135 |
+
{"instrument_id":134,"weight":0.005501,"delta_0":-1.19626,"delta_1":-0.65803,"delta_2":-0.95713,"delta_3":0.43478,"delta_4":0.57912,"delta_5":2.0023,"delta_6":0.07192,"delta_7":0.59801,"delta_8":1.05691,"delta_9":0.72892,"delta_10":-0.62398,"delta_11":0.32678,"delta_12":1.15384,"delta_13":0.25571,"delta_14":1.26531}
|
| 136 |
+
{"instrument_id":135,"weight":0.004847,"delta_0":-3.02014,"delta_1":2.32105,"delta_2":-0.15137,"delta_3":-1.03793,"delta_4":-1.12786,"delta_5":1.00178,"delta_6":-0.72289,"delta_7":-0.2031,"delta_8":0.31484,"delta_9":1.05615,"delta_10":0.79215,"delta_11":1.23365,"delta_12":0.02347,"delta_13":-0.59771,"delta_14":-2.61109}
|
| 137 |
+
{"instrument_id":136,"weight":0.003309,"delta_0":0.67521,"delta_1":0.86098,"delta_2":1.1845,"delta_3":0.51965,"delta_4":-0.70475,"delta_5":-0.45749,"delta_6":-1.5238,"delta_7":0.80613,"delta_8":2.31686,"delta_9":0.90185,"delta_10":-0.49475,"delta_11":-0.44408,"delta_12":-0.4746,"delta_13":1.46805,"delta_14":1.89948}
|
| 138 |
+
{"instrument_id":137,"weight":0.003803,"delta_0":-0.6238,"delta_1":-0.73272,"delta_2":0.26484,"delta_3":-0.17235,"delta_4":-1.10942,"delta_5":0.21156,"delta_6":0.18255,"delta_7":-0.83691,"delta_8":1.79305,"delta_9":-0.07223,"delta_10":0.26256,"delta_11":-1.8216,"delta_12":0.72303,"delta_13":0.14656,"delta_14":1.29648}
|
| 139 |
+
{"instrument_id":138,"weight":0.006075,"delta_0":0.01646,"delta_1":0.47609,"delta_2":-0.87911,"delta_3":1.53993,"delta_4":0.87943,"delta_5":0.20356,"delta_6":1.66135,"delta_7":-1.35462,"delta_8":0.54176,"delta_9":-0.24608,"delta_10":0.49985,"delta_11":0.67772,"delta_12":2.2604,"delta_13":0.35145,"delta_14":-0.55805}
|
| 140 |
+
{"instrument_id":139,"weight":0.001466,"delta_0":-0.05526,"delta_1":1.79937,"delta_2":1.39717,"delta_3":-0.51863,"delta_4":-0.26158,"delta_5":-2.63989,"delta_6":0.68972,"delta_7":0.92141,"delta_8":1.13,"delta_9":0.46517,"delta_10":-0.68196,"delta_11":-0.49565,"delta_12":-0.14885,"delta_13":-0.10447,"delta_14":-1.054}
|
| 141 |
+
{"instrument_id":140,"weight":0.004893,"delta_0":1.87704,"delta_1":-0.05313,"delta_2":1.21034,"delta_3":-1.27099,"delta_4":0.0013,"delta_5":0.0516,"delta_6":0.52922,"delta_7":0.39868,"delta_8":-1.95253,"delta_9":0.60875,"delta_10":0.66943,"delta_11":-0.09833,"delta_12":-0.6257,"delta_13":0.00905,"delta_14":-0.50428}
|
| 142 |
+
{"instrument_id":141,"weight":0.004689,"delta_0":-0.74237,"delta_1":-0.41267,"delta_2":1.194,"delta_3":-0.1817,"delta_4":-0.90646,"delta_5":0.67308,"delta_6":-0.08021,"delta_7":0.59902,"delta_8":0.03321,"delta_9":-0.37423,"delta_10":2.29731,"delta_11":1.08229,"delta_12":1.10089,"delta_13":-0.06555,"delta_14":1.31002}
|
| 143 |
+
{"instrument_id":142,"weight":0.005543,"delta_0":1.16071,"delta_1":1.4394,"delta_2":-0.86418,"delta_3":0.85597,"delta_4":1.3225,"delta_5":-0.30982,"delta_6":-1.91851,"delta_7":1.07349,"delta_8":-0.38784,"delta_9":-1.24789,"delta_10":0.43011,"delta_11":0.16024,"delta_12":-0.69774,"delta_13":0.29812,"delta_14":-1.87302}
|
| 144 |
+
{"instrument_id":143,"weight":0.003258,"delta_0":-0.20207,"delta_1":-0.67644,"delta_2":0.37612,"delta_3":-1.27682,"delta_4":1.23399,"delta_5":-0.18972,"delta_6":-0.76579,"delta_7":2.1444,"delta_8":0.24607,"delta_9":-0.95451,"delta_10":-0.73208,"delta_11":0.85185,"delta_12":2.3982,"delta_13":-0.26925,"delta_14":0.11157}
|
| 145 |
+
{"instrument_id":144,"weight":0.003379,"delta_0":0.77377,"delta_1":0.97759,"delta_2":-1.03126,"delta_3":-1.01812,"delta_4":0.19318,"delta_5":0.21616,"delta_6":0.30595,"delta_7":0.49825,"delta_8":0.37474,"delta_9":0.87269,"delta_10":0.72061,"delta_11":-0.99977,"delta_12":-0.75158,"delta_13":0.10774,"delta_14":0.77816}
|
| 146 |
+
{"instrument_id":145,"weight":0.001033,"delta_0":0.40549,"delta_1":0.66641,"delta_2":0.00334,"delta_3":0.39558,"delta_4":0.75098,"delta_5":-0.36132,"delta_6":1.13417,"delta_7":-0.38451,"delta_8":-2.71294,"delta_9":-0.00842,"delta_10":0.57699,"delta_11":0.5508,"delta_12":0.74344,"delta_13":1.47518,"delta_14":-1.45084}
|
| 147 |
+
{"instrument_id":146,"weight":0.0043,"delta_0":-0.39984,"delta_1":0.40368,"delta_2":1.55715,"delta_3":-0.63788,"delta_4":1.61657,"delta_5":-0.55406,"delta_6":-1.03894,"delta_7":1.44487,"delta_8":-0.58058,"delta_9":-0.25126,"delta_10":-0.74975,"delta_11":-0.65816,"delta_12":-1.38095,"delta_13":0.23719,"delta_14":0.52931}
|
| 148 |
+
{"instrument_id":147,"weight":0.002073,"delta_0":0.22174,"delta_1":-1.70626,"delta_2":0.99332,"delta_3":0.31923,"delta_4":1.20156,"delta_5":-1.06932,"delta_6":1.58583,"delta_7":1.38917,"delta_8":1.2425,"delta_9":-1.08432,"delta_10":-0.71881,"delta_11":-0.73979,"delta_12":0.72939,"delta_13":-1.16065,"delta_14":0.69245}
|
| 149 |
+
{"instrument_id":148,"weight":0.000577,"delta_0":-0.48812,"delta_1":-0.70715,"delta_2":0.20043,"delta_3":0.54946,"delta_4":-1.29267,"delta_5":-0.4135,"delta_6":-0.26283,"delta_7":0.31909,"delta_8":0.08993,"delta_9":0.95056,"delta_10":1.59786,"delta_11":0.40882,"delta_12":-1.28324,"delta_13":1.0337,"delta_14":-0.0778}
|
| 150 |
+
{"instrument_id":149,"weight":0.004131,"delta_0":0.60793,"delta_1":-0.08019,"delta_2":2.35414,"delta_3":-1.02103,"delta_4":-0.47677,"delta_5":1.23135,"delta_6":0.41277,"delta_7":1.86406,"delta_8":-1.2075,"delta_9":0.73587,"delta_10":0.09315,"delta_11":-0.72115,"delta_12":-0.26514,"delta_13":-1.99385,"delta_14":-0.63195}
|
| 151 |
+
{"instrument_id":150,"weight":0.000786,"delta_0":-1.92795,"delta_1":-1.00928,"delta_2":1.55675,"delta_3":-0.19256,"delta_4":-0.45706,"delta_5":-0.3146,"delta_6":0.85906,"delta_7":0.07426,"delta_8":-2.0317,"delta_9":-1.72626,"delta_10":-1.93753,"delta_11":-1.90373,"delta_12":1.85143,"delta_13":0.54123,"delta_14":-2.66355}
|
| 152 |
+
{"instrument_id":151,"weight":0.004163,"delta_0":-1.79048,"delta_1":-0.31669,"delta_2":0.73004,"delta_3":1.13966,"delta_4":-0.35753,"delta_5":0.46707,"delta_6":1.37329,"delta_7":0.12729,"delta_8":0.14897,"delta_9":-0.00869,"delta_10":2.23073,"delta_11":1.85531,"delta_12":0.31676,"delta_13":-0.3307,"delta_14":0.09678}
|
| 153 |
+
{"instrument_id":152,"weight":0.003474,"delta_0":-2.46846,"delta_1":3.07971,"delta_2":-1.07782,"delta_3":-2.67317,"delta_4":1.42835,"delta_5":-0.3086,"delta_6":-0.64025,"delta_7":0.52081,"delta_8":-0.21514,"delta_9":-0.59568,"delta_10":0.03552,"delta_11":0.50113,"delta_12":0.15885,"delta_13":-0.11025,"delta_14":-0.52476}
|
| 154 |
+
{"instrument_id":153,"weight":0.003799,"delta_0":-0.99793,"delta_1":0.66969,"delta_2":-1.18017,"delta_3":0.02191,"delta_4":-0.04544,"delta_5":1.26931,"delta_6":-0.61109,"delta_7":-1.10577,"delta_8":-0.18863,"delta_9":0.33896,"delta_10":0.50444,"delta_11":1.65802,"delta_12":-0.1807,"delta_13":-0.25704,"delta_14":-1.12321}
|
| 155 |
+
{"instrument_id":154,"weight":0.006057,"delta_0":0.14164,"delta_1":0.47318,"delta_2":0.89343,"delta_3":-2.02013,"delta_4":0.6586,"delta_5":0.07616,"delta_6":0.68622,"delta_7":2.04804,"delta_8":-0.32499,"delta_9":-0.828,"delta_10":-0.18282,"delta_11":-0.10681,"delta_12":1.03573,"delta_13":-0.57898,"delta_14":-1.31718}
|
| 156 |
+
{"instrument_id":155,"weight":0.003876,"delta_0":-0.35472,"delta_1":-0.50523,"delta_2":-0.51515,"delta_3":-0.65298,"delta_4":-0.31785,"delta_5":1.04899,"delta_6":-1.09821,"delta_7":0.57419,"delta_8":-1.20411,"delta_9":1.29928,"delta_10":-0.01126,"delta_11":2.26929,"delta_12":0.65534,"delta_13":-1.02191,"delta_14":-0.57324}
|
| 157 |
+
{"instrument_id":156,"weight":0.002477,"delta_0":0.22101,"delta_1":1.61864,"delta_2":-1.54461,"delta_3":0.72911,"delta_4":-0.37278,"delta_5":-0.28345,"delta_6":-0.02121,"delta_7":0.08945,"delta_8":-0.13698,"delta_9":0.63184,"delta_10":-0.34447,"delta_11":1.87247,"delta_12":-0.47869,"delta_13":-1.31885,"delta_14":0.66956}
|
| 158 |
+
{"instrument_id":157,"weight":0.001766,"delta_0":-1.40644,"delta_1":-0.53719,"delta_2":0.3225,"delta_3":-0.6004,"delta_4":1.57805,"delta_5":-0.94663,"delta_6":1.22898,"delta_7":-0.10427,"delta_8":-0.4679,"delta_9":-2.90653,"delta_10":-0.10503,"delta_11":0.16608,"delta_12":1.96664,"delta_13":0.69169,"delta_14":-1.7291}
|
| 159 |
+
{"instrument_id":158,"weight":0.000056,"delta_0":-2.76612,"delta_1":-0.35515,"delta_2":0.16433,"delta_3":-2.03396,"delta_4":-0.57816,"delta_5":0.7705,"delta_6":1.16857,"delta_7":1.39027,"delta_8":0.29489,"delta_9":-0.87654,"delta_10":0.34645,"delta_11":-0.14752,"delta_12":-1.12567,"delta_13":0.59378,"delta_14":-1.99637}
|
| 160 |
+
{"instrument_id":159,"weight":0.004681,"delta_0":-0.40719,"delta_1":0.56663,"delta_2":0.47361,"delta_3":0.1644,"delta_4":0.39205,"delta_5":-0.15177,"delta_6":0.74333,"delta_7":0.40556,"delta_8":0.48419,"delta_9":-1.44408,"delta_10":-0.44126,"delta_11":-0.53752,"delta_12":-1.16098,"delta_13":1.29068,"delta_14":0.68771}
|
| 161 |
+
{"instrument_id":160,"weight":0.0059,"delta_0":-0.15166,"delta_1":0.5377,"delta_2":0.60521,"delta_3":-0.62969,"delta_4":-0.6389,"delta_5":-1.1681,"delta_6":0.05535,"delta_7":1.63706,"delta_8":1.08825,"delta_9":-0.88364,"delta_10":0.38639,"delta_11":0.03936,"delta_12":0.89753,"delta_13":0.18366,"delta_14":-1.05424}
|
| 162 |
+
{"instrument_id":161,"weight":0.004964,"delta_0":0.87509,"delta_1":-0.27392,"delta_2":0.79826,"delta_3":1.77645,"delta_4":0.47546,"delta_5":-1.00261,"delta_6":0.0536,"delta_7":-0.27693,"delta_8":1.14003,"delta_9":0.2651,"delta_10":0.4238,"delta_11":0.84401,"delta_12":-0.75139,"delta_13":1.42691,"delta_14":0.08701}
|
| 163 |
+
{"instrument_id":162,"weight":0.006115,"delta_0":1.82598,"delta_1":0.68414,"delta_2":0.48278,"delta_3":0.01731,"delta_4":-0.49857,"delta_5":-1.31686,"delta_6":0.65175,"delta_7":1.29171,"delta_8":-0.34777,"delta_9":-0.91585,"delta_10":0.39297,"delta_11":-0.62637,"delta_12":1.09537,"delta_13":1.51161,"delta_14":0.60885}
|
| 164 |
+
{"instrument_id":163,"weight":0.00253,"delta_0":-0.27648,"delta_1":-1.5352,"delta_2":0.00189,"delta_3":-0.63867,"delta_4":-0.45162,"delta_5":0.26942,"delta_6":-0.06391,"delta_7":-0.20976,"delta_8":1.61396,"delta_9":-0.61719,"delta_10":-0.76571,"delta_11":0.7793,"delta_12":-0.60722,"delta_13":-0.25494,"delta_14":-0.2685}
|
| 165 |
+
{"instrument_id":164,"weight":0.006091,"delta_0":0.26284,"delta_1":-0.40425,"delta_2":-0.22189,"delta_3":0.40055,"delta_4":2.68855,"delta_5":0.08607,"delta_6":0.26295,"delta_7":-0.94024,"delta_8":1.0349,"delta_9":-0.48533,"delta_10":-1.00783,"delta_11":0.92023,"delta_12":-0.13059,"delta_13":-0.83664,"delta_14":0.06832}
|
| 166 |
+
{"instrument_id":165,"weight":0.001009,"delta_0":-1.39434,"delta_1":-0.00504,"delta_2":-0.55425,"delta_3":0.35629,"delta_4":-0.53764,"delta_5":-0.91303,"delta_6":0.83021,"delta_7":-1.45475,"delta_8":0.04715,"delta_9":-0.5849,"delta_10":1.22515,"delta_11":0.90032,"delta_12":-0.0426,"delta_13":0.07342,"delta_14":0.39286}
|
| 167 |
+
{"instrument_id":166,"weight":0.00545,"delta_0":-0.13469,"delta_1":1.85657,"delta_2":-0.61251,"delta_3":-2.11898,"delta_4":-0.79196,"delta_5":-2.06693,"delta_6":2.26097,"delta_7":0.96074,"delta_8":0.01134,"delta_9":0.83504,"delta_10":-1.4849,"delta_11":0.15922,"delta_12":-0.86824,"delta_13":1.9511,"delta_14":0.36015}
|
| 168 |
+
{"instrument_id":167,"weight":0.000393,"delta_0":0.45179,"delta_1":1.65062,"delta_2":-1.43062,"delta_3":-0.23532,"delta_4":-0.12017,"delta_5":0.53562,"delta_6":-0.57837,"delta_7":0.16165,"delta_8":-0.76209,"delta_9":-0.87544,"delta_10":-0.16809,"delta_11":0.33744,"delta_12":-1.28358,"delta_13":-2.48984,"delta_14":-1.60563}
|
| 169 |
+
{"instrument_id":168,"weight":0.00052,"delta_0":1.44568,"delta_1":-0.46725,"delta_2":-0.47635,"delta_3":1.008,"delta_4":0.47858,"delta_5":0.17997,"delta_6":-1.08253,"delta_7":0.22336,"delta_8":-0.14566,"delta_9":-0.15013,"delta_10":-1.53769,"delta_11":-0.11988,"delta_12":-1.56927,"delta_13":-0.00488,"delta_14":1.18103}
|
| 170 |
+
{"instrument_id":169,"weight":0.000847,"delta_0":-0.90624,"delta_1":-0.56954,"delta_2":0.5233,"delta_3":0.04199,"delta_4":1.35359,"delta_5":-1.57204,"delta_6":0.86928,"delta_7":0.15566,"delta_8":0.1747,"delta_9":-1.64732,"delta_10":0.31123,"delta_11":-1.17639,"delta_12":-0.12047,"delta_13":-0.82452,"delta_14":0.89132}
|
| 171 |
+
{"instrument_id":170,"weight":0.002694,"delta_0":0.75273,"delta_1":-0.09248,"delta_2":0.00457,"delta_3":0.46176,"delta_4":-1.01808,"delta_5":-0.7132,"delta_6":-1.01575,"delta_7":0.166,"delta_8":-0.26134,"delta_9":1.10705,"delta_10":0.25488,"delta_11":-0.16373,"delta_12":0.04672,"delta_13":-0.4256,"delta_14":0.92879}
|
| 172 |
+
{"instrument_id":171,"weight":0.001383,"delta_0":-2.15471,"delta_1":-1.77795,"delta_2":-0.65398,"delta_3":0.92673,"delta_4":0.35263,"delta_5":1.92009,"delta_6":-1.66056,"delta_7":-0.53926,"delta_8":-0.65902,"delta_9":-1.21935,"delta_10":1.89269,"delta_11":-0.46905,"delta_12":-0.49366,"delta_13":0.54233,"delta_14":0.33543}
|
| 173 |
+
{"instrument_id":172,"weight":0.006322,"delta_0":0.50114,"delta_1":0.02225,"delta_2":-0.67093,"delta_3":-1.20114,"delta_4":0.33188,"delta_5":0.65352,"delta_6":-1.89782,"delta_7":0.48623,"delta_8":-0.32801,"delta_9":-1.6852,"delta_10":1.10741,"delta_11":1.15475,"delta_12":-0.44596,"delta_13":-0.99525,"delta_14":0.42192}
|
| 174 |
+
{"instrument_id":173,"weight":0.003771,"delta_0":0.44567,"delta_1":-0.47344,"delta_2":-1.85441,"delta_3":-0.06098,"delta_4":-0.96275,"delta_5":-0.33212,"delta_6":-0.29108,"delta_7":0.68412,"delta_8":-1.14641,"delta_9":-0.2318,"delta_10":0.98392,"delta_11":-1.26009,"delta_12":-0.16894,"delta_13":0.38078,"delta_14":0.17116}
|
| 175 |
+
{"instrument_id":174,"weight":0.005205,"delta_0":-0.3035,"delta_1":0.5068,"delta_2":-0.56658,"delta_3":0.09662,"delta_4":1.55448,"delta_5":-0.34907,"delta_6":0.3697,"delta_7":1.86909,"delta_8":0.18914,"delta_9":0.69017,"delta_10":-0.9823,"delta_11":2.51212,"delta_12":0.00708,"delta_13":0.06685,"delta_14":-0.49308}
|
| 176 |
+
{"instrument_id":175,"weight":0.002521,"delta_0":0.99617,"delta_1":-1.41475,"delta_2":1.04421,"delta_3":-0.96557,"delta_4":0.68621,"delta_5":-0.58788,"delta_6":0.01401,"delta_7":-0.1458,"delta_8":-1.09136,"delta_9":2.3235,"delta_10":0.51049,"delta_11":-0.25987,"delta_12":-1.86094,"delta_13":-0.67597,"delta_14":-1.69575}
|
| 177 |
+
{"instrument_id":176,"weight":0.000212,"delta_0":-0.09544,"delta_1":-0.65854,"delta_2":-1.02468,"delta_3":0.45062,"delta_4":0.22391,"delta_5":0.5526,"delta_6":-0.54916,"delta_7":0.82008,"delta_8":-0.481,"delta_9":0.02889,"delta_10":-1.22266,"delta_11":0.19352,"delta_12":-0.94253,"delta_13":-1.809,"delta_14":0.30735}
|
| 178 |
+
{"instrument_id":177,"weight":0.001684,"delta_0":-0.4302,"delta_1":0.9415,"delta_2":-1.36682,"delta_3":0.09452,"delta_4":-0.95604,"delta_5":0.69985,"delta_6":-1.05415,"delta_7":2.03658,"delta_8":-0.78784,"delta_9":-0.44488,"delta_10":-1.22209,"delta_11":1.51586,"delta_12":0.61657,"delta_13":0.60289,"delta_14":-0.33219}
|
| 179 |
+
{"instrument_id":178,"weight":0.001534,"delta_0":-1.01232,"delta_1":-1.16729,"delta_2":1.44119,"delta_3":-0.77674,"delta_4":1.50801,"delta_5":-0.24469,"delta_6":-1.5005,"delta_7":0.88056,"delta_8":0.1462,"delta_9":-0.47984,"delta_10":0.49958,"delta_11":1.0784,"delta_12":1.1119,"delta_13":1.863,"delta_14":0.74419}
|
| 180 |
+
{"instrument_id":179,"weight":0.000583,"delta_0":-0.76342,"delta_1":0.56418,"delta_2":-0.97741,"delta_3":-0.72429,"delta_4":-0.83069,"delta_5":0.96204,"delta_6":-0.44484,"delta_7":0.33397,"delta_8":-0.41694,"delta_9":-1.04429,"delta_10":-0.19477,"delta_11":-1.02889,"delta_12":-0.46131,"delta_13":1.80373,"delta_14":1.21753}
|
| 181 |
+
{"instrument_id":180,"weight":0.003176,"delta_0":-1.74599,"delta_1":0.12379,"delta_2":-1.70266,"delta_3":2.52395,"delta_4":-0.39626,"delta_5":-0.1014,"delta_6":0.0997,"delta_7":1.1275,"delta_8":-1.3079,"delta_9":0.89138,"delta_10":0.71688,"delta_11":1.05098,"delta_12":1.50424,"delta_13":-0.23829,"delta_14":0.37965}
|
| 182 |
+
{"instrument_id":181,"weight":0.003894,"delta_0":0.94622,"delta_1":-2.04332,"delta_2":-0.12069,"delta_3":-0.5012,"delta_4":0.0599,"delta_5":0.18935,"delta_6":1.56753,"delta_7":0.58163,"delta_8":-1.07834,"delta_9":1.25866,"delta_10":0.40464,"delta_11":0.59655,"delta_12":-0.846,"delta_13":-0.9219,"delta_14":-2.22768}
|
| 183 |
+
{"instrument_id":182,"weight":0.002145,"delta_0":-0.0128,"delta_1":-0.40374,"delta_2":-1.19448,"delta_3":-0.77683,"delta_4":-1.68266,"delta_5":-0.57865,"delta_6":-0.27826,"delta_7":0.35403,"delta_8":-1.41998,"delta_9":1.46416,"delta_10":0.99419,"delta_11":-0.45875,"delta_12":0.09873,"delta_13":1.20535,"delta_14":2.08401}
|
| 184 |
+
{"instrument_id":183,"weight":0.003524,"delta_0":0.00231,"delta_1":-0.56266,"delta_2":2.19297,"delta_3":0.0424,"delta_4":0.57895,"delta_5":0.81777,"delta_6":1.24843,"delta_7":-0.87684,"delta_8":-1.02786,"delta_9":1.34308,"delta_10":-0.43001,"delta_11":-1.87621,"delta_12":-0.42344,"delta_13":-0.79715,"delta_14":-0.85206}
|
| 185 |
+
{"instrument_id":184,"weight":0.002093,"delta_0":1.44557,"delta_1":0.37015,"delta_2":0.80524,"delta_3":0.13299,"delta_4":-0.99193,"delta_5":-0.28581,"delta_6":1.81839,"delta_7":1.01056,"delta_8":-0.40238,"delta_9":0.36126,"delta_10":0.36618,"delta_11":-1.63915,"delta_12":0.5879,"delta_13":0.75574,"delta_14":0.35739}
|
| 186 |
+
{"instrument_id":185,"weight":0.005876,"delta_0":1.00035,"delta_1":1.43941,"delta_2":-0.82498,"delta_3":1.19906,"delta_4":0.03095,"delta_5":0.26835,"delta_6":-1.62195,"delta_7":0.757,"delta_8":0.39675,"delta_9":0.55761,"delta_10":0.62612,"delta_11":-1.06635,"delta_12":1.20432,"delta_13":-0.09727,"delta_14":-1.19701}
|
| 187 |
+
{"instrument_id":186,"weight":0.003697,"delta_0":1.44672,"delta_1":1.50256,"delta_2":-0.17701,"delta_3":-0.06619,"delta_4":1.10088,"delta_5":1.55045,"delta_6":0.83709,"delta_7":1.37656,"delta_8":-0.18256,"delta_9":-1.59154,"delta_10":1.16223,"delta_11":-0.71888,"delta_12":-0.06905,"delta_13":0.01361,"delta_14":0.5308}
|
| 188 |
+
{"instrument_id":187,"weight":0.006052,"delta_0":-1.18573,"delta_1":1.69402,"delta_2":-2.30325,"delta_3":1.03746,"delta_4":-0.20181,"delta_5":0.92853,"delta_6":-1.17577,"delta_7":-0.75832,"delta_8":0.31191,"delta_9":0.58144,"delta_10":2.68934,"delta_11":0.72372,"delta_12":-0.80935,"delta_13":-1.04407,"delta_14":2.14641}
|
| 189 |
+
{"instrument_id":188,"weight":0.005486,"delta_0":1.93525,"delta_1":-1.66353,"delta_2":-0.34335,"delta_3":0.46129,"delta_4":-1.98187,"delta_5":-0.60407,"delta_6":-0.64535,"delta_7":0.38597,"delta_8":0.174,"delta_9":2.51613,"delta_10":0.69211,"delta_11":0.02137,"delta_12":-0.88227,"delta_13":-0.93446,"delta_14":-1.34846}
|
| 190 |
+
{"instrument_id":189,"weight":0.001887,"delta_0":-0.41999,"delta_1":-0.74321,"delta_2":-0.54492,"delta_3":0.89714,"delta_4":-1.51521,"delta_5":-0.17589,"delta_6":0.99109,"delta_7":0.48942,"delta_8":1.74347,"delta_9":0.62547,"delta_10":-0.67123,"delta_11":-1.53474,"delta_12":-1.61771,"delta_13":-1.90816,"delta_14":-0.11889}
|
| 191 |
+
{"instrument_id":190,"weight":0.003365,"delta_0":1.58858,"delta_1":-0.22329,"delta_2":-0.27534,"delta_3":-1.57771,"delta_4":1.89967,"delta_5":0.36888,"delta_6":-0.06506,"delta_7":-0.78793,"delta_8":0.60805,"delta_9":-1.26588,"delta_10":-1.02952,"delta_11":0.85102,"delta_12":0.19229,"delta_13":-0.01896,"delta_14":-0.58002}
|
| 192 |
+
{"instrument_id":191,"weight":0.005252,"delta_0":1.11644,"delta_1":-1.4001,"delta_2":0.93504,"delta_3":-2.01052,"delta_4":0.02708,"delta_5":-0.0273,"delta_6":-0.31542,"delta_7":0.78043,"delta_8":0.07595,"delta_9":-1.56675,"delta_10":-0.48671,"delta_11":-0.21255,"delta_12":0.65365,"delta_13":0.68861,"delta_14":-0.71704}
|
| 193 |
+
{"instrument_id":192,"weight":0.000673,"delta_0":0.39485,"delta_1":0.66841,"delta_2":-0.38603,"delta_3":-1.69885,"delta_4":0.95651,"delta_5":-0.04019,"delta_6":-1.50899,"delta_7":-0.11091,"delta_8":0.52707,"delta_9":0.14085,"delta_10":-1.06335,"delta_11":-0.52589,"delta_12":1.10832,"delta_13":0.9772,"delta_14":0.67504}
|
| 194 |
+
{"instrument_id":193,"weight":0.000335,"delta_0":1.013,"delta_1":0.44297,"delta_2":-0.7224,"delta_3":0.43903,"delta_4":0.62041,"delta_5":0.80063,"delta_6":-0.00137,"delta_7":1.29794,"delta_8":0.22379,"delta_9":1.69379,"delta_10":-1.64528,"delta_11":0.15604,"delta_12":3.51915,"delta_13":0.10302,"delta_14":2.15836}
|
| 195 |
+
{"instrument_id":194,"weight":0.006284,"delta_0":0.41433,"delta_1":0.85524,"delta_2":-0.582,"delta_3":0.12101,"delta_4":-0.47298,"delta_5":-1.04559,"delta_6":0.20249,"delta_7":-0.5517,"delta_8":-0.19633,"delta_9":1.4692,"delta_10":0.13321,"delta_11":-0.03192,"delta_12":-0.12922,"delta_13":-1.21148,"delta_14":-0.92741}
|
| 196 |
+
{"instrument_id":195,"weight":0.003014,"delta_0":-0.28181,"delta_1":-0.90088,"delta_2":0.67857,"delta_3":0.55956,"delta_4":0.89727,"delta_5":0.44739,"delta_6":0.67868,"delta_7":0.11987,"delta_8":0.08106,"delta_9":-1.66654,"delta_10":0.42021,"delta_11":0.03513,"delta_12":0.41115,"delta_13":0.3546,"delta_14":1.32144}
|
| 197 |
+
{"instrument_id":196,"weight":0.001015,"delta_0":0.98832,"delta_1":1.12342,"delta_2":1.87782,"delta_3":-0.12375,"delta_4":0.67958,"delta_5":-2.30165,"delta_6":-0.72831,"delta_7":-0.41929,"delta_8":-0.93775,"delta_9":-1.90866,"delta_10":0.56116,"delta_11":0.21556,"delta_12":1.1885,"delta_13":-0.70967,"delta_14":0.85224}
|
| 198 |
+
{"instrument_id":197,"weight":0.00199,"delta_0":1.58824,"delta_1":0.02298,"delta_2":-0.45468,"delta_3":-0.09357,"delta_4":-0.62827,"delta_5":0.4179,"delta_6":-1.42434,"delta_7":0.25254,"delta_8":1.74201,"delta_9":-1.30213,"delta_10":-0.30478,"delta_11":0.51868,"delta_12":-1.47839,"delta_13":0.95713,"delta_14":1.00455}
|
| 199 |
+
{"instrument_id":198,"weight":0.001824,"delta_0":0.37586,"delta_1":0.22224,"delta_2":0.02028,"delta_3":0.1673,"delta_4":-0.36293,"delta_5":-0.3377,"delta_6":-0.73389,"delta_7":-2.20076,"delta_8":0.67721,"delta_9":0.72952,"delta_10":0.09768,"delta_11":0.07661,"delta_12":-1.06022,"delta_13":0.34674,"delta_14":-0.47582}
|
| 200 |
+
{"instrument_id":199,"weight":0.005677,"delta_0":1.05231,"delta_1":-0.03481,"delta_2":-1.44557,"delta_3":1.15093,"delta_4":-0.69122,"delta_5":1.53763,"delta_6":-0.75052,"delta_7":0.21907,"delta_8":1.04701,"delta_9":0.65017,"delta_10":1.82876,"delta_11":-2.4439,"delta_12":-0.61552,"delta_13":-1.08748,"delta_14":0.36299}
|
| 201 |
+
{"instrument_id":200,"weight":0.006096,"delta_0":0.17271,"delta_1":0.51978,"delta_2":0.40372,"delta_3":0.51077,"delta_4":0.98894,"delta_5":-0.1067,"delta_6":0.82194,"delta_7":-0.12925,"delta_8":0.88386,"delta_9":-0.78667,"delta_10":-0.57633,"delta_11":1.56141,"delta_12":-0.56676,"delta_13":0.49834,"delta_14":0.64897}
|
| 202 |
+
{"instrument_id":201,"weight":0.003602,"delta_0":-0.23231,"delta_1":0.89284,"delta_2":-0.4402,"delta_3":-1.48275,"delta_4":0.91727,"delta_5":1.09647,"delta_6":0.26137,"delta_7":0.05169,"delta_8":-0.5096,"delta_9":0.98657,"delta_10":-0.33965,"delta_11":-1.24883,"delta_12":1.59006,"delta_13":0.39512,"delta_14":-0.06506}
|
| 203 |
+
{"instrument_id":202,"weight":0.003038,"delta_0":-1.27417,"delta_1":-0.87892,"delta_2":-1.0967,"delta_3":0.81498,"delta_4":-0.44009,"delta_5":-0.08345,"delta_6":0.06038,"delta_7":1.43151,"delta_8":0.21889,"delta_9":-0.23064,"delta_10":0.5445,"delta_11":1.14514,"delta_12":1.15683,"delta_13":-0.43864,"delta_14":0.38865}
|
| 204 |
+
{"instrument_id":203,"weight":0.001935,"delta_0":0.12742,"delta_1":0.12786,"delta_2":-0.2151,"delta_3":1.02869,"delta_4":1.78082,"delta_5":-0.40257,"delta_6":0.00071,"delta_7":1.08701,"delta_8":-0.12529,"delta_9":1.54094,"delta_10":-0.69645,"delta_11":0.62509,"delta_12":0.31519,"delta_13":0.37574,"delta_14":1.43741}
|
| 205 |
+
{"instrument_id":204,"weight":0.00021,"delta_0":-1.92578,"delta_1":-0.04781,"delta_2":-0.88223,"delta_3":1.66646,"delta_4":1.16895,"delta_5":-2.50883,"delta_6":1.06298,"delta_7":2.01255,"delta_8":0.26262,"delta_9":0.23645,"delta_10":-0.04438,"delta_11":-0.89459,"delta_12":0.34913,"delta_13":-0.43855,"delta_14":-1.43843}
|
| 206 |
+
{"instrument_id":205,"weight":0.004314,"delta_0":0.00786,"delta_1":1.49883,"delta_2":-1.48687,"delta_3":-1.19833,"delta_4":0.33879,"delta_5":0.01728,"delta_6":-1.38287,"delta_7":0.83627,"delta_8":0.33675,"delta_9":-1.10777,"delta_10":0.09917,"delta_11":1.16902,"delta_12":-0.04971,"delta_13":-0.26012,"delta_14":-1.27923}
|
| 207 |
+
{"instrument_id":206,"weight":0.005156,"delta_0":-0.13868,"delta_1":0.24584,"delta_2":0.50435,"delta_3":0.23874,"delta_4":-0.83522,"delta_5":1.4612,"delta_6":-1.66024,"delta_7":1.18408,"delta_8":0.96093,"delta_9":-1.05807,"delta_10":0.51241,"delta_11":-1.32069,"delta_12":0.31273,"delta_13":0.78946,"delta_14":0.01558}
|
| 208 |
+
{"instrument_id":207,"weight":0.001283,"delta_0":-0.76416,"delta_1":0.1956,"delta_2":0.91614,"delta_3":-1.79177,"delta_4":0.16408,"delta_5":0.5555,"delta_6":0.40225,"delta_7":0.97146,"delta_8":0.71538,"delta_9":-0.33685,"delta_10":0.37921,"delta_11":0.65794,"delta_12":0.59905,"delta_13":0.81211,"delta_14":-0.29568}
|
| 209 |
+
{"instrument_id":208,"weight":0.001824,"delta_0":0.76144,"delta_1":0.38971,"delta_2":-0.29216,"delta_3":-1.05506,"delta_4":0.05586,"delta_5":1.38298,"delta_6":-0.32063,"delta_7":1.83629,"delta_8":0.80539,"delta_9":1.50232,"delta_10":1.38946,"delta_11":0.27074,"delta_12":0.85766,"delta_13":1.15735,"delta_14":1.12652}
|
| 210 |
+
{"instrument_id":209,"weight":0.002702,"delta_0":-0.48684,"delta_1":-0.25593,"delta_2":-0.09754,"delta_3":-2.43414,"delta_4":0.59002,"delta_5":0.2959,"delta_6":1.2417,"delta_7":-0.83551,"delta_8":-0.07235,"delta_9":-2.61649,"delta_10":-0.09307,"delta_11":0.33834,"delta_12":-0.44165,"delta_13":0.47488,"delta_14":-0.93513}
|
| 211 |
+
{"instrument_id":210,"weight":0.001977,"delta_0":1.51309,"delta_1":-1.28433,"delta_2":-1.3333,"delta_3":-0.12407,"delta_4":0.453,"delta_5":0.64932,"delta_6":-1.24146,"delta_7":-1.3202,"delta_8":0.82792,"delta_9":2.27017,"delta_10":0.20755,"delta_11":1.76758,"delta_12":0.41304,"delta_13":0.52011,"delta_14":-0.6706}
|
| 212 |
+
{"instrument_id":211,"weight":0.000805,"delta_0":0.4186,"delta_1":-2.25543,"delta_2":0.88426,"delta_3":1.36737,"delta_4":-0.22788,"delta_5":-0.22557,"delta_6":0.03706,"delta_7":-0.3966,"delta_8":-0.05791,"delta_9":1.02694,"delta_10":-0.12497,"delta_11":-2.10788,"delta_12":-0.15288,"delta_13":-0.08047,"delta_14":-0.13094}
|
| 213 |
+
{"instrument_id":212,"weight":0.00273,"delta_0":0.35626,"delta_1":0.66425,"delta_2":-0.05665,"delta_3":-1.00989,"delta_4":0.65338,"delta_5":0.76267,"delta_6":-0.13704,"delta_7":2.24063,"delta_8":-0.07842,"delta_9":1.56184,"delta_10":-0.06613,"delta_11":0.13478,"delta_12":0.00382,"delta_13":0.50008,"delta_14":-1.40809}
|
| 214 |
+
{"instrument_id":213,"weight":0.000411,"delta_0":-0.26228,"delta_1":-0.58489,"delta_2":-0.22205,"delta_3":-2.04279,"delta_4":-1.36291,"delta_5":-0.27007,"delta_6":-0.35686,"delta_7":0.82168,"delta_8":-1.69151,"delta_9":-0.55263,"delta_10":1.24775,"delta_11":-0.79704,"delta_12":-1.34446,"delta_13":0.08422,"delta_14":-0.70209}
|
| 215 |
+
{"instrument_id":214,"weight":0.006568,"delta_0":1.02782,"delta_1":-1.52303,"delta_2":-1.24212,"delta_3":1.30098,"delta_4":-0.20024,"delta_5":0.74975,"delta_6":0.48359,"delta_7":-0.77467,"delta_8":-0.31934,"delta_9":-0.30519,"delta_10":-0.67285,"delta_11":-0.89947,"delta_12":-0.22742,"delta_13":-1.25017,"delta_14":0.30542}
|
| 216 |
+
{"instrument_id":215,"weight":0.002233,"delta_0":0.21673,"delta_1":-1.61072,"delta_2":1.76926,"delta_3":1.54805,"delta_4":-1.10753,"delta_5":-0.46255,"delta_6":0.68549,"delta_7":0.98753,"delta_8":1.44748,"delta_9":-1.19745,"delta_10":0.12468,"delta_11":-0.84149,"delta_12":0.18778,"delta_13":0.44795,"delta_14":-0.12748}
|
| 217 |
+
{"instrument_id":216,"weight":0.005379,"delta_0":-1.2557,"delta_1":1.38198,"delta_2":1.40267,"delta_3":2.20393,"delta_4":-1.04524,"delta_5":-0.43222,"delta_6":0.81423,"delta_7":0.41663,"delta_8":0.38703,"delta_9":0.71012,"delta_10":0.55839,"delta_11":-0.96886,"delta_12":-0.37937,"delta_13":1.10983,"delta_14":-1.68455}
|
| 218 |
+
{"instrument_id":217,"weight":0.001738,"delta_0":0.1424,"delta_1":-0.78714,"delta_2":0.44441,"delta_3":-1.38358,"delta_4":-0.04097,"delta_5":0.18177,"delta_6":1.20764,"delta_7":-0.568,"delta_8":1.02293,"delta_9":1.5652,"delta_10":0.26976,"delta_11":-0.9586,"delta_12":0.53838,"delta_13":0.41752,"delta_14":0.33686}
|
| 219 |
+
{"instrument_id":218,"weight":0.005391,"delta_0":3.07319,"delta_1":0.13425,"delta_2":-0.09395,"delta_3":1.00783,"delta_4":-0.21615,"delta_5":-0.77588,"delta_6":1.21092,"delta_7":0.64319,"delta_8":-1.38855,"delta_9":-0.73055,"delta_10":-0.26101,"delta_11":1.45077,"delta_12":-0.92219,"delta_13":-1.22609,"delta_14":1.78733}
|
| 220 |
+
{"instrument_id":219,"weight":0.001303,"delta_0":0.01982,"delta_1":1.6571,"delta_2":-1.28072,"delta_3":1.1531,"delta_4":0.2379,"delta_5":1.11951,"delta_6":0.52107,"delta_7":-1.27869,"delta_8":-0.19738,"delta_9":-0.02039,"delta_10":1.21711,"delta_11":1.28088,"delta_12":-0.72556,"delta_13":1.10903,"delta_14":-0.4396}
|
| 221 |
+
{"instrument_id":220,"weight":0.000646,"delta_0":0.29157,"delta_1":0.4031,"delta_2":0.39871,"delta_3":0.81719,"delta_4":-0.93015,"delta_5":-0.22973,"delta_6":0.07642,"delta_7":-0.15351,"delta_8":-0.42414,"delta_9":-0.39048,"delta_10":1.91693,"delta_11":-0.94982,"delta_12":1.67514,"delta_13":-0.52586,"delta_14":0.03152}
|
| 222 |
+
{"instrument_id":221,"weight":0.002546,"delta_0":0.53292,"delta_1":0.01501,"delta_2":1.27045,"delta_3":0.1878,"delta_4":0.17719,"delta_5":-1.53141,"delta_6":2.34216,"delta_7":0.62017,"delta_8":-0.86968,"delta_9":-0.90556,"delta_10":0.02609,"delta_11":0.11028,"delta_12":-1.65162,"delta_13":-0.60817,"delta_14":-0.31154}
|
| 223 |
+
{"instrument_id":222,"weight":0.005556,"delta_0":-0.16219,"delta_1":0.04615,"delta_2":1.05687,"delta_3":3.01282,"delta_4":1.10625,"delta_5":-0.21114,"delta_6":0.37131,"delta_7":0.16561,"delta_8":-0.38608,"delta_9":0.89309,"delta_10":-0.13911,"delta_11":-0.88085,"delta_12":-0.03358,"delta_13":0.70941,"delta_14":1.06344}
|
| 224 |
+
{"instrument_id":223,"weight":0.006394,"delta_0":-2.08541,"delta_1":-0.51977,"delta_2":1.61548,"delta_3":1.17574,"delta_4":-0.38579,"delta_5":1.99529,"delta_6":-0.77685,"delta_7":0.58246,"delta_8":-0.10288,"delta_9":1.53709,"delta_10":-0.0047,"delta_11":-0.34923,"delta_12":1.08919,"delta_13":-0.59285,"delta_14":-1.53518}
|
| 225 |
+
{"instrument_id":224,"weight":0.006199,"delta_0":0.78359,"delta_1":0.07183,"delta_2":1.9145,"delta_3":-0.57125,"delta_4":1.3948,"delta_5":-1.92126,"delta_6":-0.68434,"delta_7":0.05175,"delta_8":-1.97058,"delta_9":-1.88203,"delta_10":-0.62307,"delta_11":-0.43431,"delta_12":0.05359,"delta_13":0.18244,"delta_14":0.64611}
|
| 226 |
+
{"instrument_id":225,"weight":0.002826,"delta_0":-0.1216,"delta_1":-1.60802,"delta_2":1.1579,"delta_3":-0.53529,"delta_4":0.10509,"delta_5":-0.66639,"delta_6":-1.25375,"delta_7":-0.15653,"delta_8":0.72374,"delta_9":0.52085,"delta_10":-1.39855,"delta_11":0.74934,"delta_12":-0.14921,"delta_13":2.21804,"delta_14":0.99367}
|
| 227 |
+
{"instrument_id":226,"weight":0.003784,"delta_0":0.21515,"delta_1":0.44877,"delta_2":1.94484,"delta_3":0.32681,"delta_4":0.02167,"delta_5":-1.10691,"delta_6":0.43965,"delta_7":0.01983,"delta_8":-0.68371,"delta_9":-0.01753,"delta_10":0.64962,"delta_11":1.21225,"delta_12":-0.90722,"delta_13":-0.09723,"delta_14":1.74277}
|
| 228 |
+
{"instrument_id":227,"weight":0.003285,"delta_0":-1.42466,"delta_1":0.26432,"delta_2":0.60578,"delta_3":-1.24883,"delta_4":0.68523,"delta_5":1.07324,"delta_6":-1.01181,"delta_7":0.87284,"delta_8":-2.18871,"delta_9":-0.76212,"delta_10":-0.62464,"delta_11":-0.46123,"delta_12":-0.34373,"delta_13":0.87795,"delta_14":0.3829}
|
| 229 |
+
{"instrument_id":228,"weight":0.0025,"delta_0":-1.27037,"delta_1":-0.35779,"delta_2":0.39579,"delta_3":0.43107,"delta_4":-0.11633,"delta_5":-0.22331,"delta_6":-1.12516,"delta_7":1.61117,"delta_8":-0.65993,"delta_9":0.99129,"delta_10":-0.73079,"delta_11":-1.04597,"delta_12":0.50441,"delta_13":-1.95076,"delta_14":-0.68056}
|
| 230 |
+
{"instrument_id":229,"weight":0.00417,"delta_0":-0.85335,"delta_1":-0.59115,"delta_2":-1.19975,"delta_3":-1.96315,"delta_4":-0.0607,"delta_5":0.78805,"delta_6":-0.73266,"delta_7":0.46686,"delta_8":-3.67435,"delta_9":0.26659,"delta_10":0.33882,"delta_11":0.6842,"delta_12":-0.82663,"delta_13":-0.6785,"delta_14":-0.4729}
|
| 231 |
+
{"instrument_id":230,"weight":0.003889,"delta_0":0.05746,"delta_1":0.89799,"delta_2":-0.42908,"delta_3":0.05763,"delta_4":-0.5757,"delta_5":0.23362,"delta_6":-0.29846,"delta_7":-0.37602,"delta_8":1.27683,"delta_9":0.94789,"delta_10":-1.13505,"delta_11":0.47531,"delta_12":-0.11856,"delta_13":0.08825,"delta_14":-2.74981}
|
| 232 |
+
{"instrument_id":231,"weight":0.000342,"delta_0":-0.51715,"delta_1":0.89783,"delta_2":-0.05642,"delta_3":-1.3291,"delta_4":-0.06136,"delta_5":0.99352,"delta_6":0.77175,"delta_7":-0.15052,"delta_8":1.38492,"delta_9":1.13118,"delta_10":-0.32222,"delta_11":0.06589,"delta_12":-0.83262,"delta_13":0.66459,"delta_14":0.3289}
|
| 233 |
+
{"instrument_id":232,"weight":0.005232,"delta_0":0.23992,"delta_1":0.91344,"delta_2":0.9411,"delta_3":0.63075,"delta_4":1.15566,"delta_5":1.07397,"delta_6":-1.0837,"delta_7":-1.56872,"delta_8":2.05419,"delta_9":1.5983,"delta_10":0.63699,"delta_11":0.9695,"delta_12":-1.00598,"delta_13":1.13756,"delta_14":0.35313}
|
| 234 |
+
{"instrument_id":233,"weight":0.002676,"delta_0":0.61812,"delta_1":-1.46278,"delta_2":1.87899,"delta_3":-0.59068,"delta_4":-0.11052,"delta_5":1.03609,"delta_6":1.03088,"delta_7":-1.8088,"delta_8":-0.00732,"delta_9":-0.12372,"delta_10":0.04514,"delta_11":0.1708,"delta_12":-1.24357,"delta_13":-2.00972,"delta_14":0.63017}
|
| 235 |
+
{"instrument_id":234,"weight":0.001644,"delta_0":0.87255,"delta_1":-1.56644,"delta_2":0.61628,"delta_3":-0.19229,"delta_4":0.91739,"delta_5":-0.85502,"delta_6":0.44645,"delta_7":-1.28194,"delta_8":0.10492,"delta_9":0.66402,"delta_10":-1.15635,"delta_11":1.02985,"delta_12":0.21226,"delta_13":0.49802,"delta_14":1.9619}
|
| 236 |
+
{"instrument_id":235,"weight":0.003807,"delta_0":-1.21033,"delta_1":1.72344,"delta_2":-0.7955,"delta_3":0.64584,"delta_4":-0.44116,"delta_5":1.33526,"delta_6":-0.09129,"delta_7":1.18488,"delta_8":0.0936,"delta_9":0.43182,"delta_10":-0.16686,"delta_11":0.6572,"delta_12":0.6291,"delta_13":-0.74175,"delta_14":-0.69164}
|
| 237 |
+
{"instrument_id":236,"weight":0.000862,"delta_0":0.34348,"delta_1":1.31226,"delta_2":0.64641,"delta_3":0.32225,"delta_4":1.22279,"delta_5":-1.37347,"delta_6":0.92518,"delta_7":0.47503,"delta_8":0.69806,"delta_9":-0.27768,"delta_10":-0.69789,"delta_11":-0.61076,"delta_12":-0.29596,"delta_13":-1.48692,"delta_14":0.43412}
|
| 238 |
+
{"instrument_id":237,"weight":0.003734,"delta_0":-0.18699,"delta_1":0.68053,"delta_2":-0.21566,"delta_3":-0.61346,"delta_4":-0.22519,"delta_5":0.68858,"delta_6":0.3249,"delta_7":0.09667,"delta_8":2.1932,"delta_9":-0.85702,"delta_10":1.16645,"delta_11":-0.50729,"delta_12":1.2874,"delta_13":-1.02608,"delta_14":-0.03786}
|
| 239 |
+
{"instrument_id":238,"weight":0.003767,"delta_0":1.08485,"delta_1":-1.57683,"delta_2":-0.50228,"delta_3":1.25894,"delta_4":-0.16631,"delta_5":0.35221,"delta_6":-0.00008,"delta_7":-0.34292,"delta_8":-0.76452,"delta_9":0.76666,"delta_10":2.52413,"delta_11":1.37678,"delta_12":1.6664,"delta_13":0.802,"delta_14":2.28893}
|
| 240 |
+
{"instrument_id":239,"weight":0.002834,"delta_0":-1.10099,"delta_1":1.09495,"delta_2":-0.87449,"delta_3":0.90849,"delta_4":0.96237,"delta_5":-0.90614,"delta_6":-0.61455,"delta_7":1.63606,"delta_8":-0.31919,"delta_9":0.28411,"delta_10":-0.45328,"delta_11":-0.29309,"delta_12":0.3718,"delta_13":-0.334,"delta_14":1.42042}
|
| 241 |
+
{"instrument_id":240,"weight":0.006472,"delta_0":-2.7767,"delta_1":0.75444,"delta_2":0.2222,"delta_3":0.98412,"delta_4":-0.38969,"delta_5":0.69877,"delta_6":2.19132,"delta_7":0.16452,"delta_8":-0.29028,"delta_9":0.84821,"delta_10":0.16154,"delta_11":-0.28711,"delta_12":0.29969,"delta_13":-0.30012,"delta_14":-0.22394}
|
| 242 |
+
{"instrument_id":241,"weight":0.00014,"delta_0":0.07999,"delta_1":1.56125,"delta_2":-0.82007,"delta_3":-1.33901,"delta_4":-0.19856,"delta_5":-0.22866,"delta_6":0.85323,"delta_7":0.5829,"delta_8":-0.83352,"delta_9":-0.59493,"delta_10":-0.00496,"delta_11":-0.96565,"delta_12":-0.14188,"delta_13":0.78513,"delta_14":-0.37099}
|
| 243 |
+
{"instrument_id":242,"weight":0.000449,"delta_0":-0.61482,"delta_1":0.53493,"delta_2":0.18945,"delta_3":1.04637,"delta_4":0.12732,"delta_5":-0.62443,"delta_6":0.10351,"delta_7":-0.37822,"delta_8":-0.56402,"delta_9":1.32749,"delta_10":-0.17987,"delta_11":-0.31122,"delta_12":-0.18265,"delta_13":0.9495,"delta_14":0.12358}
|
| 244 |
+
{"instrument_id":243,"weight":0.003472,"delta_0":1.56538,"delta_1":-0.31984,"delta_2":-0.88686,"delta_3":-0.50215,"delta_4":0.28929,"delta_5":-0.30945,"delta_6":0.06675,"delta_7":-0.48691,"delta_8":0.27185,"delta_9":1.80663,"delta_10":-0.59155,"delta_11":0.28041,"delta_12":-0.17214,"delta_13":-1.39028,"delta_14":-0.6963}
|
| 245 |
+
{"instrument_id":244,"weight":0.002664,"delta_0":-0.60297,"delta_1":-1.10683,"delta_2":0.78207,"delta_3":1.157,"delta_4":-0.29933,"delta_5":-1.50474,"delta_6":0.95803,"delta_7":-0.76835,"delta_8":-1.48705,"delta_9":-0.05532,"delta_10":-0.20562,"delta_11":-1.65048,"delta_12":-1.69437,"delta_13":-1.39074,"delta_14":-0.02516}
|
| 246 |
+
{"instrument_id":245,"weight":0.000804,"delta_0":1.20626,"delta_1":1.31086,"delta_2":-2.16718,"delta_3":0.24975,"delta_4":0.60168,"delta_5":1.07714,"delta_6":0.12597,"delta_7":0.63909,"delta_8":-1.52146,"delta_9":-0.01549,"delta_10":0.21894,"delta_11":-2.46164,"delta_12":-0.31091,"delta_13":-0.52664,"delta_14":0.14827}
|
| 247 |
+
{"instrument_id":246,"weight":0.001711,"delta_0":-0.05555,"delta_1":-0.25136,"delta_2":0.14414,"delta_3":-1.41388,"delta_4":0.25552,"delta_5":0.00331,"delta_6":-0.36673,"delta_7":0.32669,"delta_8":0.84958,"delta_9":1.21215,"delta_10":1.27952,"delta_11":0.70122,"delta_12":-2.39672,"delta_13":-0.86768,"delta_14":-1.6611}
|
| 248 |
+
{"instrument_id":247,"weight":0.002626,"delta_0":1.31956,"delta_1":-0.79154,"delta_2":-0.50776,"delta_3":-0.33404,"delta_4":-1.7038,"delta_5":0.84832,"delta_6":-0.38786,"delta_7":0.72557,"delta_8":0.55323,"delta_9":-0.43492,"delta_10":-0.09484,"delta_11":2.49881,"delta_12":-0.36175,"delta_13":1.35679,"delta_14":1.22225}
|
| 249 |
+
{"instrument_id":248,"weight":0.000413,"delta_0":1.33182,"delta_1":0.06961,"delta_2":1.23532,"delta_3":0.75104,"delta_4":-0.49194,"delta_5":0.5762,"delta_6":-1.95495,"delta_7":-0.09022,"delta_8":0.89273,"delta_9":-0.70195,"delta_10":-1.96035,"delta_11":-0.27265,"delta_12":0.28412,"delta_13":-1.13828,"delta_14":-0.97304}
|
| 250 |
+
{"instrument_id":249,"weight":0.00285,"delta_0":-0.87202,"delta_1":0.06212,"delta_2":-0.75542,"delta_3":-0.07481,"delta_4":0.7114,"delta_5":1.07209,"delta_6":-0.03588,"delta_7":0.24779,"delta_8":1.37948,"delta_9":0.16292,"delta_10":1.50833,"delta_11":0.03582,"delta_12":-0.39047,"delta_13":-0.32212,"delta_14":-0.5499}
|
| 251 |
+
{"instrument_id":250,"weight":0.000048,"delta_0":0.43869,"delta_1":-1.50121,"delta_2":-0.00841,"delta_3":-1.11091,"delta_4":-1.07719,"delta_5":-0.22686,"delta_6":0.95093,"delta_7":0.23543,"delta_8":0.70598,"delta_9":-1.97075,"delta_10":0.37793,"delta_11":-0.33693,"delta_12":0.92656,"delta_13":0.88367,"delta_14":2.00911}
|
| 252 |
+
{"instrument_id":251,"weight":0.000472,"delta_0":2.70443,"delta_1":-1.08679,"delta_2":0.11485,"delta_3":1.55555,"delta_4":0.7743,"delta_5":1.38336,"delta_6":-0.88171,"delta_7":-2.00764,"delta_8":-1.01006,"delta_9":0.68434,"delta_10":-0.12186,"delta_11":1.52451,"delta_12":-0.49864,"delta_13":-0.43862,"delta_14":-0.5548}
|
| 253 |
+
{"instrument_id":252,"weight":0.004324,"delta_0":0.08349,"delta_1":1.11271,"delta_2":0.36738,"delta_3":0.01551,"delta_4":0.91936,"delta_5":-1.01247,"delta_6":-0.09489,"delta_7":0.55913,"delta_8":0.20842,"delta_9":1.17754,"delta_10":0.11946,"delta_11":-1.45444,"delta_12":-0.10872,"delta_13":1.21732,"delta_14":0.79829}
|
| 254 |
+
{"instrument_id":253,"weight":0.001611,"delta_0":-0.37331,"delta_1":-0.02782,"delta_2":1.07454,"delta_3":0.23399,"delta_4":-1.39153,"delta_5":0.49744,"delta_6":-1.55362,"delta_7":0.15146,"delta_8":1.28694,"delta_9":-0.78846,"delta_10":1.3568,"delta_11":0.08176,"delta_12":1.40908,"delta_13":0.00827,"delta_14":-0.42938}
|
| 255 |
+
{"instrument_id":254,"weight":0.000541,"delta_0":-2.57181,"delta_1":1.72433,"delta_2":-0.69166,"delta_3":-1.23115,"delta_4":1.26341,"delta_5":-0.6613,"delta_6":0.73796,"delta_7":-0.54974,"delta_8":0.69837,"delta_9":0.17464,"delta_10":-0.66325,"delta_11":0.73939,"delta_12":0.52416,"delta_13":-0.2925,"delta_14":-1.38727}
|
| 256 |
+
{"instrument_id":255,"weight":0.002327,"delta_0":0.46341,"delta_1":1.66376,"delta_2":-0.93972,"delta_3":0.48998,"delta_4":0.25219,"delta_5":0.18999,"delta_6":0.57655,"delta_7":-0.06706,"delta_8":-0.68844,"delta_9":0.61908,"delta_10":-1.80296,"delta_11":-0.46366,"delta_12":1.15813,"delta_13":-1.74661,"delta_14":0.11515}
|
| 257 |
+
{"instrument_id":256,"weight":0.0059,"delta_0":0.22168,"delta_1":-1.05269,"delta_2":0.27751,"delta_3":-1.66514,"delta_4":-0.08475,"delta_5":-1.18406,"delta_6":-0.4687,"delta_7":0.29397,"delta_8":-0.84904,"delta_9":-1.10938,"delta_10":-0.05775,"delta_11":-0.02042,"delta_12":0.62593,"delta_13":0.93201,"delta_14":0.53665}
|
| 258 |
+
{"instrument_id":257,"weight":0.004379,"delta_0":-0.13426,"delta_1":2.15036,"delta_2":1.76609,"delta_3":-1.83198,"delta_4":1.65086,"delta_5":0.71297,"delta_6":0.55996,"delta_7":0.11357,"delta_8":-0.05425,"delta_9":-1.39493,"delta_10":1.824,"delta_11":0.15048,"delta_12":-0.11607,"delta_13":-0.86309,"delta_14":0.20772}
|
| 259 |
+
{"instrument_id":258,"weight":0.003468,"delta_0":-0.16535,"delta_1":1.88926,"delta_2":-2.1505,"delta_3":0.06015,"delta_4":-2.34254,"delta_5":-1.12237,"delta_6":1.22544,"delta_7":0.69002,"delta_8":-1.19569,"delta_9":-1.11658,"delta_10":0.58365,"delta_11":-0.60862,"delta_12":-0.7522,"delta_13":0.13392,"delta_14":-0.09587}
|
| 260 |
+
{"instrument_id":259,"weight":0.002379,"delta_0":0.75844,"delta_1":-0.70814,"delta_2":0.56871,"delta_3":-0.34933,"delta_4":0.02768,"delta_5":-0.91082,"delta_6":0.44769,"delta_7":2.15095,"delta_8":1.02358,"delta_9":-0.16599,"delta_10":-0.78931,"delta_11":-0.7338,"delta_12":0.85998,"delta_13":-0.57638,"delta_14":2.18838}
|
| 261 |
+
{"instrument_id":260,"weight":0.002025,"delta_0":-1.65916,"delta_1":0.8833,"delta_2":-0.39513,"delta_3":-1.04418,"delta_4":0.8433,"delta_5":-0.9521,"delta_6":-1.84856,"delta_7":1.89298,"delta_8":0.08031,"delta_9":-0.60232,"delta_10":0.29774,"delta_11":-1.8725,"delta_12":0.26745,"delta_13":0.05136,"delta_14":0.99587}
|
| 262 |
+
{"instrument_id":261,"weight":0.004646,"delta_0":-0.54011,"delta_1":-0.54313,"delta_2":-0.11774,"delta_3":0.30411,"delta_4":-0.54273,"delta_5":1.12022,"delta_6":-0.25228,"delta_7":-1.50443,"delta_8":1.55572,"delta_9":-0.5596,"delta_10":1.17441,"delta_11":1.91809,"delta_12":-1.03985,"delta_13":0.6517,"delta_14":0.32132}
|
| 263 |
+
{"instrument_id":262,"weight":0.004502,"delta_0":-0.3846,"delta_1":0.94674,"delta_2":-0.40965,"delta_3":-0.69025,"delta_4":-0.52671,"delta_5":-0.75028,"delta_6":0.54319,"delta_7":-1.68939,"delta_8":-0.23945,"delta_9":0.51333,"delta_10":0.69999,"delta_11":-1.08959,"delta_12":-0.50446,"delta_13":0.02853,"delta_14":-1.13859}
|
| 264 |
+
{"instrument_id":263,"weight":0.0034,"delta_0":-0.7485,"delta_1":0.71149,"delta_2":1.42036,"delta_3":-0.35918,"delta_4":0.21138,"delta_5":1.28475,"delta_6":0.36222,"delta_7":-0.53331,"delta_8":0.71516,"delta_9":0.92774,"delta_10":2.04084,"delta_11":-0.16355,"delta_12":-1.59683,"delta_13":-1.75728,"delta_14":-0.44013}
|
| 265 |
+
{"instrument_id":264,"weight":0.006018,"delta_0":2.60014,"delta_1":0.70339,"delta_2":0.40199,"delta_3":-0.74286,"delta_4":0.63109,"delta_5":1.03272,"delta_6":0.25892,"delta_7":-0.11008,"delta_8":1.15236,"delta_9":1.48195,"delta_10":-0.84667,"delta_11":-0.65761,"delta_12":0.86247,"delta_13":-0.18287,"delta_14":0.10045}
|
| 266 |
+
{"instrument_id":265,"weight":0.001139,"delta_0":1.51702,"delta_1":-1.11502,"delta_2":0.85592,"delta_3":-0.29429,"delta_4":0.51705,"delta_5":-0.70704,"delta_6":0.13034,"delta_7":0.68452,"delta_8":0.48931,"delta_9":0.47037,"delta_10":1.58694,"delta_11":0.75242,"delta_12":-0.437,"delta_13":-1.51218,"delta_14":-0.47954}
|
| 267 |
+
{"instrument_id":266,"weight":0.000907,"delta_0":-0.61175,"delta_1":-0.99011,"delta_2":-0.65634,"delta_3":-1.22024,"delta_4":0.58489,"delta_5":-0.21129,"delta_6":-0.16389,"delta_7":0.24045,"delta_8":-0.76212,"delta_9":-0.80864,"delta_10":0.57236,"delta_11":-0.7443,"delta_12":-0.60272,"delta_13":-0.27267,"delta_14":0.88618}
|
| 268 |
+
{"instrument_id":267,"weight":0.000898,"delta_0":-2.76781,"delta_1":0.81495,"delta_2":1.23694,"delta_3":-1.97443,"delta_4":1.44001,"delta_5":0.19074,"delta_6":-1.05168,"delta_7":1.07776,"delta_8":0.26574,"delta_9":0.52059,"delta_10":0.59276,"delta_11":1.33894,"delta_12":0.61191,"delta_13":0.8556,"delta_14":-0.72282}
|
| 269 |
+
{"instrument_id":268,"weight":0.0009,"delta_0":2.74028,"delta_1":-1.89975,"delta_2":-0.1364,"delta_3":1.00448,"delta_4":1.81269,"delta_5":-0.40919,"delta_6":1.49022,"delta_7":0.82358,"delta_8":1.15617,"delta_9":1.90272,"delta_10":-0.27257,"delta_11":-0.9328,"delta_12":0.74321,"delta_13":0.9165,"delta_14":-1.95972}
|
| 270 |
+
{"instrument_id":269,"weight":0.000663,"delta_0":1.44396,"delta_1":1.58936,"delta_2":1.81526,"delta_3":1.4749,"delta_4":0.46168,"delta_5":1.00362,"delta_6":0.07083,"delta_7":-0.7292,"delta_8":-1.71042,"delta_9":-0.63259,"delta_10":-1.12929,"delta_11":1.17805,"delta_12":-1.81614,"delta_13":-1.24625,"delta_14":-0.26397}
|
| 271 |
+
{"instrument_id":270,"weight":0.002675,"delta_0":-0.64191,"delta_1":1.69445,"delta_2":-1.27463,"delta_3":-1.03992,"delta_4":1.26411,"delta_5":-1.24832,"delta_6":0.72804,"delta_7":0.35167,"delta_8":-1.7935,"delta_9":-1.31489,"delta_10":0.70569,"delta_11":-0.63381,"delta_12":1.57563,"delta_13":-1.17989,"delta_14":0.83131}
|
| 272 |
+
{"instrument_id":271,"weight":0.006075,"delta_0":0.05296,"delta_1":0.3002,"delta_2":0.25965,"delta_3":0.09943,"delta_4":1.24828,"delta_5":0.9855,"delta_6":2.07042,"delta_7":0.16313,"delta_8":1.36228,"delta_9":0.51919,"delta_10":0.03653,"delta_11":1.302,"delta_12":-1.63996,"delta_13":1.01599,"delta_14":-1.09148}
|
| 273 |
+
{"instrument_id":272,"weight":0.001144,"delta_0":-0.08758,"delta_1":-1.02425,"delta_2":-1.56775,"delta_3":-0.4604,"delta_4":0.32232,"delta_5":0.17641,"delta_6":0.16793,"delta_7":-1.02458,"delta_8":0.63223,"delta_9":1.00242,"delta_10":-1.51598,"delta_11":-0.06301,"delta_12":0.89602,"delta_13":-0.59113,"delta_14":-0.33936}
|
| 274 |
+
{"instrument_id":273,"weight":0.001883,"delta_0":-0.11346,"delta_1":1.11235,"delta_2":-0.18362,"delta_3":0.05228,"delta_4":0.76325,"delta_5":-0.99958,"delta_6":-2.24055,"delta_7":-0.02428,"delta_8":-0.33125,"delta_9":0.73152,"delta_10":0.57096,"delta_11":1.51294,"delta_12":-0.47004,"delta_13":-1.52781,"delta_14":0.64803}
|
| 275 |
+
{"instrument_id":274,"weight":0.004721,"delta_0":-0.86641,"delta_1":0.63624,"delta_2":-0.60607,"delta_3":0.18323,"delta_4":-0.67969,"delta_5":2.09388,"delta_6":1.81561,"delta_7":-0.60963,"delta_8":-0.54152,"delta_9":-0.8978,"delta_10":-0.50917,"delta_11":-1.16506,"delta_12":0.02561,"delta_13":0.18696,"delta_14":0.21298}
|
| 276 |
+
{"instrument_id":275,"weight":0.002889,"delta_0":0.84125,"delta_1":0.14363,"delta_2":-0.60527,"delta_3":-1.24093,"delta_4":0.87222,"delta_5":0.70298,"delta_6":0.11595,"delta_7":1.42288,"delta_8":-1.31075,"delta_9":0.6702,"delta_10":0.29468,"delta_11":0.52479,"delta_12":0.67689,"delta_13":1.98562,"delta_14":-0.50272}
|
| 277 |
+
{"instrument_id":276,"weight":0.002219,"delta_0":0.36822,"delta_1":-0.75599,"delta_2":0.0077,"delta_3":0.86161,"delta_4":-0.66795,"delta_5":0.41007,"delta_6":0.658,"delta_7":0.42924,"delta_8":-0.63763,"delta_9":0.32335,"delta_10":1.40173,"delta_11":0.87885,"delta_12":-1.08034,"delta_13":0.92381,"delta_14":0.63195}
|
| 278 |
+
{"instrument_id":277,"weight":0.001321,"delta_0":-1.40689,"delta_1":-0.60227,"delta_2":0.33149,"delta_3":-0.2528,"delta_4":0.25302,"delta_5":-0.55325,"delta_6":0.1555,"delta_7":0.96487,"delta_8":-0.04259,"delta_9":-0.57608,"delta_10":1.46951,"delta_11":-0.77305,"delta_12":-2.33262,"delta_13":-0.33318,"delta_14":1.79998}
|
| 279 |
+
{"instrument_id":278,"weight":0.001665,"delta_0":0.24545,"delta_1":-0.13476,"delta_2":1.86397,"delta_3":-0.17758,"delta_4":0.91831,"delta_5":-0.13962,"delta_6":-2.29342,"delta_7":-0.55055,"delta_8":0.492,"delta_9":0.36639,"delta_10":0.03558,"delta_11":-1.41901,"delta_12":0.8549,"delta_13":-0.1415,"delta_14":-1.81946}
|
| 280 |
+
{"instrument_id":279,"weight":0.00639,"delta_0":-0.03916,"delta_1":-0.58392,"delta_2":-0.55078,"delta_3":-0.73645,"delta_4":-0.73429,"delta_5":0.02008,"delta_6":0.12286,"delta_7":-0.21166,"delta_8":-0.35506,"delta_9":-0.18073,"delta_10":0.1007,"delta_11":0.8725,"delta_12":0.46129,"delta_13":1.54039,"delta_14":0.84039}
|
| 281 |
+
{"instrument_id":280,"weight":0.002974,"delta_0":-1.33338,"delta_1":-1.29437,"delta_2":1.26254,"delta_3":-1.13612,"delta_4":-0.36868,"delta_5":0.33336,"delta_6":-0.97711,"delta_7":1.39334,"delta_8":2.00759,"delta_9":0.24154,"delta_10":0.12759,"delta_11":1.73476,"delta_12":-0.05409,"delta_13":-0.12018,"delta_14":1.13684}
|
| 282 |
+
{"instrument_id":281,"weight":0.00385,"delta_0":0.52884,"delta_1":0.30704,"delta_2":1.38211,"delta_3":0.09072,"delta_4":2.23107,"delta_5":0.69829,"delta_6":1.01861,"delta_7":1.11721,"delta_8":0.61902,"delta_9":2.5919,"delta_10":0.09663,"delta_11":0.42042,"delta_12":0.33261,"delta_13":0.85473,"delta_14":-1.63484}
|
| 283 |
+
{"instrument_id":282,"weight":0.002054,"delta_0":-0.73158,"delta_1":1.63567,"delta_2":-2.1722,"delta_3":-0.12423,"delta_4":-0.26221,"delta_5":0.05569,"delta_6":1.73985,"delta_7":1.02417,"delta_8":-1.49295,"delta_9":0.50807,"delta_10":-1.1265,"delta_11":0.39142,"delta_12":-0.90294,"delta_13":-0.16941,"delta_14":-1.1316}
|
| 284 |
+
{"instrument_id":283,"weight":0.000586,"delta_0":0.67744,"delta_1":-1.33328,"delta_2":0.26299,"delta_3":-0.14675,"delta_4":-1.16593,"delta_5":-0.12227,"delta_6":-1.13829,"delta_7":-1.17998,"delta_8":-0.6391,"delta_9":0.51531,"delta_10":1.79662,"delta_11":-1.20013,"delta_12":0.31391,"delta_13":-1.7865,"delta_14":-0.29248}
|
| 285 |
+
{"instrument_id":284,"weight":0.005394,"delta_0":-0.19461,"delta_1":0.3957,"delta_2":1.79552,"delta_3":0.64366,"delta_4":-0.80703,"delta_5":-0.00336,"delta_6":1.13372,"delta_7":1.17197,"delta_8":-0.58885,"delta_9":1.81689,"delta_10":2.32072,"delta_11":-0.21349,"delta_12":0.24162,"delta_13":-0.28414,"delta_14":1.3959}
|
| 286 |
+
{"instrument_id":285,"weight":0.004042,"delta_0":-2.01556,"delta_1":-0.09074,"delta_2":-1.22291,"delta_3":-0.6639,"delta_4":-0.05282,"delta_5":0.30418,"delta_6":1.52213,"delta_7":-0.86932,"delta_8":-0.03072,"delta_9":-1.02725,"delta_10":-0.69653,"delta_11":-0.89221,"delta_12":-1.11131,"delta_13":0.55848,"delta_14":0.54146}
|
| 287 |
+
{"instrument_id":286,"weight":0.005061,"delta_0":0.32962,"delta_1":0.70446,"delta_2":1.05149,"delta_3":0.89694,"delta_4":-0.96901,"delta_5":-0.68835,"delta_6":1.05629,"delta_7":-1.18457,"delta_8":-1.61343,"delta_9":-1.54219,"delta_10":0.48852,"delta_11":-0.58544,"delta_12":0.52785,"delta_13":-0.61761,"delta_14":0.12198}
|
| 288 |
+
{"instrument_id":287,"weight":0.001447,"delta_0":1.7972,"delta_1":0.83538,"delta_2":0.16719,"delta_3":0.22345,"delta_4":0.13089,"delta_5":-0.01668,"delta_6":1.7691,"delta_7":-0.50814,"delta_8":0.69334,"delta_9":-0.42151,"delta_10":1.64428,"delta_11":0.78167,"delta_12":-0.49043,"delta_13":-1.464,"delta_14":0.42759}
|
| 289 |
+
{"instrument_id":288,"weight":0.00637,"delta_0":-0.54051,"delta_1":-0.67539,"delta_2":-0.06392,"delta_3":-0.24197,"delta_4":-1.17893,"delta_5":0.50972,"delta_6":0.60263,"delta_7":1.7287,"delta_8":-0.28139,"delta_9":-0.85042,"delta_10":0.44528,"delta_11":0.3292,"delta_12":-1.43532,"delta_13":0.30468,"delta_14":-0.23454}
|
| 290 |
+
{"instrument_id":289,"weight":0.004008,"delta_0":0.96651,"delta_1":0.4956,"delta_2":0.00644,"delta_3":-0.06596,"delta_4":-1.0216,"delta_5":0.31887,"delta_6":0.34734,"delta_7":-0.81637,"delta_8":-0.7638,"delta_9":1.06292,"delta_10":-0.22731,"delta_11":-0.64716,"delta_12":-1.18778,"delta_13":-0.72685,"delta_14":0.73468}
|
| 291 |
+
{"instrument_id":290,"weight":0.003703,"delta_0":1.19314,"delta_1":0.72701,"delta_2":-1.10241,"delta_3":-0.75785,"delta_4":-1.17189,"delta_5":0.90423,"delta_6":-0.05372,"delta_7":-0.22353,"delta_8":-0.75519,"delta_9":-0.43567,"delta_10":1.05775,"delta_11":-0.05559,"delta_12":1.64129,"delta_13":-0.59278,"delta_14":0.65386}
|
| 292 |
+
{"instrument_id":291,"weight":0.00427,"delta_0":0.61432,"delta_1":0.75667,"delta_2":-0.75904,"delta_3":0.10981,"delta_4":-3.47908,"delta_5":0.20752,"delta_6":-0.28871,"delta_7":-0.13783,"delta_8":-1.14987,"delta_9":0.8268,"delta_10":-0.46849,"delta_11":0.20957,"delta_12":0.06909,"delta_13":-0.0469,"delta_14":1.08194}
|
| 293 |
+
{"instrument_id":292,"weight":0.001615,"delta_0":-0.21394,"delta_1":-0.07973,"delta_2":0.4844,"delta_3":-0.09388,"delta_4":0.96558,"delta_5":1.24579,"delta_6":1.36177,"delta_7":0.12542,"delta_8":-0.89878,"delta_9":-3.08258,"delta_10":0.18838,"delta_11":-1.23234,"delta_12":0.76918,"delta_13":-0.34532,"delta_14":-1.01697}
|
| 294 |
+
{"instrument_id":293,"weight":0.002409,"delta_0":1.6155,"delta_1":3.24431,"delta_2":-0.16021,"delta_3":-0.27251,"delta_4":1.00631,"delta_5":-0.11703,"delta_6":0.72278,"delta_7":-1.54058,"delta_8":1.35342,"delta_9":-0.0405,"delta_10":0.35068,"delta_11":-0.15123,"delta_12":-1.57752,"delta_13":-0.39467,"delta_14":-1.30124}
|
| 295 |
+
{"instrument_id":294,"weight":0.000669,"delta_0":-0.48463,"delta_1":1.59814,"delta_2":0.6784,"delta_3":-1.2304,"delta_4":1.99584,"delta_5":-0.71774,"delta_6":1.76822,"delta_7":0.95538,"delta_8":0.05944,"delta_9":1.0627,"delta_10":-1.28625,"delta_11":-1.90749,"delta_12":-0.35517,"delta_13":0.75391,"delta_14":0.06241}
|
| 296 |
+
{"instrument_id":295,"weight":0.004978,"delta_0":-2.06654,"delta_1":0.45262,"delta_2":1.11353,"delta_3":-0.00732,"delta_4":0.41942,"delta_5":-1.24106,"delta_6":-0.92955,"delta_7":-0.07182,"delta_8":0.38615,"delta_9":0.35697,"delta_10":2.10215,"delta_11":0.41265,"delta_12":-1.07483,"delta_13":1.07041,"delta_14":-1.48712}
|
| 297 |
+
{"instrument_id":296,"weight":0.002285,"delta_0":1.33349,"delta_1":1.03085,"delta_2":0.57526,"delta_3":-0.41014,"delta_4":-1.2358,"delta_5":-0.44066,"delta_6":1.20742,"delta_7":0.08064,"delta_8":-0.56282,"delta_9":-0.30138,"delta_10":-1.57633,"delta_11":-0.81295,"delta_12":-0.23708,"delta_13":-0.54138,"delta_14":-0.56557}
|
| 298 |
+
{"instrument_id":297,"weight":0.006473,"delta_0":-0.7749,"delta_1":0.45137,"delta_2":1.5498,"delta_3":0.43231,"delta_4":-1.50288,"delta_5":-0.58402,"delta_6":0.4986,"delta_7":0.20045,"delta_8":1.59656,"delta_9":0.65023,"delta_10":-0.12489,"delta_11":0.83145,"delta_12":1.3195,"delta_13":-0.00031,"delta_14":0.70129}
|
| 299 |
+
{"instrument_id":298,"weight":0.002718,"delta_0":-0.06965,"delta_1":0.1358,"delta_2":-1.77216,"delta_3":0.38781,"delta_4":-0.76882,"delta_5":0.71098,"delta_6":0.22089,"delta_7":-0.46755,"delta_8":0.76792,"delta_9":1.76255,"delta_10":-1.31162,"delta_11":0.3139,"delta_12":-0.2703,"delta_13":-0.72893,"delta_14":-0.33823}
|
| 300 |
+
{"instrument_id":299,"weight":0.004351,"delta_0":-0.913,"delta_1":-0.18112,"delta_2":0.6331,"delta_3":-2.23147,"delta_4":0.53784,"delta_5":-0.05011,"delta_6":-2.51601,"delta_7":0.8931,"delta_8":0.26884,"delta_9":0.00894,"delta_10":1.44993,"delta_11":0.25824,"delta_12":0.24325,"delta_13":0.83727,"delta_14":2.1665}
|
data/task_10_scenarios.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/task_11_library.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bd48748b5c3af1f3b0f71f0b70327a42b7b00d6fd754f48139bae9605c7b382b
|
| 3 |
+
size 29346995
|
data/task_13_edges.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/task_13_nodes.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/task_13_sources.jsonl
ADDED
|
@@ -0,0 +1,400 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"source_id":0,"node":0,"worker_id":0}
|
| 2 |
+
{"source_id":1,"node":1,"worker_id":0}
|
| 3 |
+
{"source_id":2,"node":2,"worker_id":0}
|
| 4 |
+
{"source_id":3,"node":3,"worker_id":0}
|
| 5 |
+
{"source_id":4,"node":4,"worker_id":0}
|
| 6 |
+
{"source_id":5,"node":5,"worker_id":0}
|
| 7 |
+
{"source_id":6,"node":6,"worker_id":0}
|
| 8 |
+
{"source_id":7,"node":7,"worker_id":0}
|
| 9 |
+
{"source_id":8,"node":8,"worker_id":0}
|
| 10 |
+
{"source_id":9,"node":9,"worker_id":0}
|
| 11 |
+
{"source_id":10,"node":10,"worker_id":0}
|
| 12 |
+
{"source_id":11,"node":11,"worker_id":0}
|
| 13 |
+
{"source_id":12,"node":12,"worker_id":0}
|
| 14 |
+
{"source_id":13,"node":13,"worker_id":0}
|
| 15 |
+
{"source_id":14,"node":14,"worker_id":0}
|
| 16 |
+
{"source_id":15,"node":15,"worker_id":0}
|
| 17 |
+
{"source_id":16,"node":16,"worker_id":0}
|
| 18 |
+
{"source_id":17,"node":17,"worker_id":0}
|
| 19 |
+
{"source_id":18,"node":18,"worker_id":0}
|
| 20 |
+
{"source_id":19,"node":19,"worker_id":0}
|
| 21 |
+
{"source_id":20,"node":20,"worker_id":1}
|
| 22 |
+
{"source_id":21,"node":21,"worker_id":1}
|
| 23 |
+
{"source_id":22,"node":22,"worker_id":1}
|
| 24 |
+
{"source_id":23,"node":23,"worker_id":1}
|
| 25 |
+
{"source_id":24,"node":24,"worker_id":1}
|
| 26 |
+
{"source_id":25,"node":25,"worker_id":1}
|
| 27 |
+
{"source_id":26,"node":26,"worker_id":1}
|
| 28 |
+
{"source_id":27,"node":27,"worker_id":1}
|
| 29 |
+
{"source_id":28,"node":28,"worker_id":1}
|
| 30 |
+
{"source_id":29,"node":29,"worker_id":1}
|
| 31 |
+
{"source_id":30,"node":30,"worker_id":1}
|
| 32 |
+
{"source_id":31,"node":31,"worker_id":1}
|
| 33 |
+
{"source_id":32,"node":32,"worker_id":1}
|
| 34 |
+
{"source_id":33,"node":33,"worker_id":1}
|
| 35 |
+
{"source_id":34,"node":34,"worker_id":1}
|
| 36 |
+
{"source_id":35,"node":35,"worker_id":1}
|
| 37 |
+
{"source_id":36,"node":36,"worker_id":1}
|
| 38 |
+
{"source_id":37,"node":37,"worker_id":1}
|
| 39 |
+
{"source_id":38,"node":38,"worker_id":1}
|
| 40 |
+
{"source_id":39,"node":39,"worker_id":1}
|
| 41 |
+
{"source_id":40,"node":40,"worker_id":2}
|
| 42 |
+
{"source_id":41,"node":41,"worker_id":2}
|
| 43 |
+
{"source_id":42,"node":42,"worker_id":2}
|
| 44 |
+
{"source_id":43,"node":43,"worker_id":2}
|
| 45 |
+
{"source_id":44,"node":44,"worker_id":2}
|
| 46 |
+
{"source_id":45,"node":45,"worker_id":2}
|
| 47 |
+
{"source_id":46,"node":46,"worker_id":2}
|
| 48 |
+
{"source_id":47,"node":47,"worker_id":2}
|
| 49 |
+
{"source_id":48,"node":48,"worker_id":2}
|
| 50 |
+
{"source_id":49,"node":49,"worker_id":2}
|
| 51 |
+
{"source_id":50,"node":50,"worker_id":2}
|
| 52 |
+
{"source_id":51,"node":51,"worker_id":2}
|
| 53 |
+
{"source_id":52,"node":52,"worker_id":2}
|
| 54 |
+
{"source_id":53,"node":53,"worker_id":2}
|
| 55 |
+
{"source_id":54,"node":54,"worker_id":2}
|
| 56 |
+
{"source_id":55,"node":55,"worker_id":2}
|
| 57 |
+
{"source_id":56,"node":56,"worker_id":2}
|
| 58 |
+
{"source_id":57,"node":57,"worker_id":2}
|
| 59 |
+
{"source_id":58,"node":58,"worker_id":2}
|
| 60 |
+
{"source_id":59,"node":59,"worker_id":2}
|
| 61 |
+
{"source_id":60,"node":60,"worker_id":3}
|
| 62 |
+
{"source_id":61,"node":61,"worker_id":3}
|
| 63 |
+
{"source_id":62,"node":62,"worker_id":3}
|
| 64 |
+
{"source_id":63,"node":63,"worker_id":3}
|
| 65 |
+
{"source_id":64,"node":64,"worker_id":3}
|
| 66 |
+
{"source_id":65,"node":65,"worker_id":3}
|
| 67 |
+
{"source_id":66,"node":66,"worker_id":3}
|
| 68 |
+
{"source_id":67,"node":67,"worker_id":3}
|
| 69 |
+
{"source_id":68,"node":68,"worker_id":3}
|
| 70 |
+
{"source_id":69,"node":69,"worker_id":3}
|
| 71 |
+
{"source_id":70,"node":70,"worker_id":3}
|
| 72 |
+
{"source_id":71,"node":71,"worker_id":3}
|
| 73 |
+
{"source_id":72,"node":72,"worker_id":3}
|
| 74 |
+
{"source_id":73,"node":73,"worker_id":3}
|
| 75 |
+
{"source_id":74,"node":74,"worker_id":3}
|
| 76 |
+
{"source_id":75,"node":75,"worker_id":3}
|
| 77 |
+
{"source_id":76,"node":76,"worker_id":3}
|
| 78 |
+
{"source_id":77,"node":77,"worker_id":3}
|
| 79 |
+
{"source_id":78,"node":78,"worker_id":3}
|
| 80 |
+
{"source_id":79,"node":79,"worker_id":3}
|
| 81 |
+
{"source_id":80,"node":80,"worker_id":4}
|
| 82 |
+
{"source_id":81,"node":81,"worker_id":4}
|
| 83 |
+
{"source_id":82,"node":82,"worker_id":4}
|
| 84 |
+
{"source_id":83,"node":83,"worker_id":4}
|
| 85 |
+
{"source_id":84,"node":84,"worker_id":4}
|
| 86 |
+
{"source_id":85,"node":85,"worker_id":4}
|
| 87 |
+
{"source_id":86,"node":86,"worker_id":4}
|
| 88 |
+
{"source_id":87,"node":87,"worker_id":4}
|
| 89 |
+
{"source_id":88,"node":88,"worker_id":4}
|
| 90 |
+
{"source_id":89,"node":89,"worker_id":4}
|
| 91 |
+
{"source_id":90,"node":90,"worker_id":4}
|
| 92 |
+
{"source_id":91,"node":91,"worker_id":4}
|
| 93 |
+
{"source_id":92,"node":92,"worker_id":4}
|
| 94 |
+
{"source_id":93,"node":93,"worker_id":4}
|
| 95 |
+
{"source_id":94,"node":94,"worker_id":4}
|
| 96 |
+
{"source_id":95,"node":95,"worker_id":4}
|
| 97 |
+
{"source_id":96,"node":96,"worker_id":4}
|
| 98 |
+
{"source_id":97,"node":97,"worker_id":4}
|
| 99 |
+
{"source_id":98,"node":98,"worker_id":4}
|
| 100 |
+
{"source_id":99,"node":99,"worker_id":4}
|
| 101 |
+
{"source_id":100,"node":100,"worker_id":5}
|
| 102 |
+
{"source_id":101,"node":101,"worker_id":5}
|
| 103 |
+
{"source_id":102,"node":102,"worker_id":5}
|
| 104 |
+
{"source_id":103,"node":103,"worker_id":5}
|
| 105 |
+
{"source_id":104,"node":104,"worker_id":5}
|
| 106 |
+
{"source_id":105,"node":105,"worker_id":5}
|
| 107 |
+
{"source_id":106,"node":106,"worker_id":5}
|
| 108 |
+
{"source_id":107,"node":107,"worker_id":5}
|
| 109 |
+
{"source_id":108,"node":108,"worker_id":5}
|
| 110 |
+
{"source_id":109,"node":109,"worker_id":5}
|
| 111 |
+
{"source_id":110,"node":110,"worker_id":5}
|
| 112 |
+
{"source_id":111,"node":111,"worker_id":5}
|
| 113 |
+
{"source_id":112,"node":112,"worker_id":5}
|
| 114 |
+
{"source_id":113,"node":113,"worker_id":5}
|
| 115 |
+
{"source_id":114,"node":114,"worker_id":5}
|
| 116 |
+
{"source_id":115,"node":115,"worker_id":5}
|
| 117 |
+
{"source_id":116,"node":116,"worker_id":5}
|
| 118 |
+
{"source_id":117,"node":117,"worker_id":5}
|
| 119 |
+
{"source_id":118,"node":118,"worker_id":5}
|
| 120 |
+
{"source_id":119,"node":119,"worker_id":5}
|
| 121 |
+
{"source_id":120,"node":120,"worker_id":6}
|
| 122 |
+
{"source_id":121,"node":121,"worker_id":6}
|
| 123 |
+
{"source_id":122,"node":122,"worker_id":6}
|
| 124 |
+
{"source_id":123,"node":123,"worker_id":6}
|
| 125 |
+
{"source_id":124,"node":124,"worker_id":6}
|
| 126 |
+
{"source_id":125,"node":125,"worker_id":6}
|
| 127 |
+
{"source_id":126,"node":126,"worker_id":6}
|
| 128 |
+
{"source_id":127,"node":127,"worker_id":6}
|
| 129 |
+
{"source_id":128,"node":128,"worker_id":6}
|
| 130 |
+
{"source_id":129,"node":129,"worker_id":6}
|
| 131 |
+
{"source_id":130,"node":130,"worker_id":6}
|
| 132 |
+
{"source_id":131,"node":131,"worker_id":6}
|
| 133 |
+
{"source_id":132,"node":132,"worker_id":6}
|
| 134 |
+
{"source_id":133,"node":133,"worker_id":6}
|
| 135 |
+
{"source_id":134,"node":134,"worker_id":6}
|
| 136 |
+
{"source_id":135,"node":135,"worker_id":6}
|
| 137 |
+
{"source_id":136,"node":136,"worker_id":6}
|
| 138 |
+
{"source_id":137,"node":137,"worker_id":6}
|
| 139 |
+
{"source_id":138,"node":138,"worker_id":6}
|
| 140 |
+
{"source_id":139,"node":139,"worker_id":6}
|
| 141 |
+
{"source_id":140,"node":140,"worker_id":7}
|
| 142 |
+
{"source_id":141,"node":141,"worker_id":7}
|
| 143 |
+
{"source_id":142,"node":142,"worker_id":7}
|
| 144 |
+
{"source_id":143,"node":143,"worker_id":7}
|
| 145 |
+
{"source_id":144,"node":144,"worker_id":7}
|
| 146 |
+
{"source_id":145,"node":145,"worker_id":7}
|
| 147 |
+
{"source_id":146,"node":146,"worker_id":7}
|
| 148 |
+
{"source_id":147,"node":147,"worker_id":7}
|
| 149 |
+
{"source_id":148,"node":148,"worker_id":7}
|
| 150 |
+
{"source_id":149,"node":149,"worker_id":7}
|
| 151 |
+
{"source_id":150,"node":150,"worker_id":7}
|
| 152 |
+
{"source_id":151,"node":151,"worker_id":7}
|
| 153 |
+
{"source_id":152,"node":152,"worker_id":7}
|
| 154 |
+
{"source_id":153,"node":153,"worker_id":7}
|
| 155 |
+
{"source_id":154,"node":154,"worker_id":7}
|
| 156 |
+
{"source_id":155,"node":155,"worker_id":7}
|
| 157 |
+
{"source_id":156,"node":156,"worker_id":7}
|
| 158 |
+
{"source_id":157,"node":157,"worker_id":7}
|
| 159 |
+
{"source_id":158,"node":158,"worker_id":7}
|
| 160 |
+
{"source_id":159,"node":159,"worker_id":7}
|
| 161 |
+
{"source_id":160,"node":160,"worker_id":8}
|
| 162 |
+
{"source_id":161,"node":161,"worker_id":8}
|
| 163 |
+
{"source_id":162,"node":162,"worker_id":8}
|
| 164 |
+
{"source_id":163,"node":163,"worker_id":8}
|
| 165 |
+
{"source_id":164,"node":164,"worker_id":8}
|
| 166 |
+
{"source_id":165,"node":165,"worker_id":8}
|
| 167 |
+
{"source_id":166,"node":166,"worker_id":8}
|
| 168 |
+
{"source_id":167,"node":167,"worker_id":8}
|
| 169 |
+
{"source_id":168,"node":168,"worker_id":8}
|
| 170 |
+
{"source_id":169,"node":169,"worker_id":8}
|
| 171 |
+
{"source_id":170,"node":170,"worker_id":8}
|
| 172 |
+
{"source_id":171,"node":171,"worker_id":8}
|
| 173 |
+
{"source_id":172,"node":172,"worker_id":8}
|
| 174 |
+
{"source_id":173,"node":173,"worker_id":8}
|
| 175 |
+
{"source_id":174,"node":174,"worker_id":8}
|
| 176 |
+
{"source_id":175,"node":175,"worker_id":8}
|
| 177 |
+
{"source_id":176,"node":176,"worker_id":8}
|
| 178 |
+
{"source_id":177,"node":177,"worker_id":8}
|
| 179 |
+
{"source_id":178,"node":178,"worker_id":8}
|
| 180 |
+
{"source_id":179,"node":179,"worker_id":8}
|
| 181 |
+
{"source_id":180,"node":180,"worker_id":9}
|
| 182 |
+
{"source_id":181,"node":181,"worker_id":9}
|
| 183 |
+
{"source_id":182,"node":182,"worker_id":9}
|
| 184 |
+
{"source_id":183,"node":183,"worker_id":9}
|
| 185 |
+
{"source_id":184,"node":184,"worker_id":9}
|
| 186 |
+
{"source_id":185,"node":185,"worker_id":9}
|
| 187 |
+
{"source_id":186,"node":186,"worker_id":9}
|
| 188 |
+
{"source_id":187,"node":187,"worker_id":9}
|
| 189 |
+
{"source_id":188,"node":188,"worker_id":9}
|
| 190 |
+
{"source_id":189,"node":189,"worker_id":9}
|
| 191 |
+
{"source_id":190,"node":190,"worker_id":9}
|
| 192 |
+
{"source_id":191,"node":191,"worker_id":9}
|
| 193 |
+
{"source_id":192,"node":192,"worker_id":9}
|
| 194 |
+
{"source_id":193,"node":193,"worker_id":9}
|
| 195 |
+
{"source_id":194,"node":194,"worker_id":9}
|
| 196 |
+
{"source_id":195,"node":195,"worker_id":9}
|
| 197 |
+
{"source_id":196,"node":196,"worker_id":9}
|
| 198 |
+
{"source_id":197,"node":197,"worker_id":9}
|
| 199 |
+
{"source_id":198,"node":198,"worker_id":9}
|
| 200 |
+
{"source_id":199,"node":199,"worker_id":9}
|
| 201 |
+
{"source_id":200,"node":200,"worker_id":10}
|
| 202 |
+
{"source_id":201,"node":201,"worker_id":10}
|
| 203 |
+
{"source_id":202,"node":202,"worker_id":10}
|
| 204 |
+
{"source_id":203,"node":203,"worker_id":10}
|
| 205 |
+
{"source_id":204,"node":204,"worker_id":10}
|
| 206 |
+
{"source_id":205,"node":205,"worker_id":10}
|
| 207 |
+
{"source_id":206,"node":206,"worker_id":10}
|
| 208 |
+
{"source_id":207,"node":207,"worker_id":10}
|
| 209 |
+
{"source_id":208,"node":208,"worker_id":10}
|
| 210 |
+
{"source_id":209,"node":209,"worker_id":10}
|
| 211 |
+
{"source_id":210,"node":210,"worker_id":10}
|
| 212 |
+
{"source_id":211,"node":211,"worker_id":10}
|
| 213 |
+
{"source_id":212,"node":212,"worker_id":10}
|
| 214 |
+
{"source_id":213,"node":213,"worker_id":10}
|
| 215 |
+
{"source_id":214,"node":214,"worker_id":10}
|
| 216 |
+
{"source_id":215,"node":215,"worker_id":10}
|
| 217 |
+
{"source_id":216,"node":216,"worker_id":10}
|
| 218 |
+
{"source_id":217,"node":217,"worker_id":10}
|
| 219 |
+
{"source_id":218,"node":218,"worker_id":10}
|
| 220 |
+
{"source_id":219,"node":219,"worker_id":10}
|
| 221 |
+
{"source_id":220,"node":220,"worker_id":11}
|
| 222 |
+
{"source_id":221,"node":221,"worker_id":11}
|
| 223 |
+
{"source_id":222,"node":222,"worker_id":11}
|
| 224 |
+
{"source_id":223,"node":223,"worker_id":11}
|
| 225 |
+
{"source_id":224,"node":224,"worker_id":11}
|
| 226 |
+
{"source_id":225,"node":225,"worker_id":11}
|
| 227 |
+
{"source_id":226,"node":226,"worker_id":11}
|
| 228 |
+
{"source_id":227,"node":227,"worker_id":11}
|
| 229 |
+
{"source_id":228,"node":228,"worker_id":11}
|
| 230 |
+
{"source_id":229,"node":229,"worker_id":11}
|
| 231 |
+
{"source_id":230,"node":230,"worker_id":11}
|
| 232 |
+
{"source_id":231,"node":231,"worker_id":11}
|
| 233 |
+
{"source_id":232,"node":232,"worker_id":11}
|
| 234 |
+
{"source_id":233,"node":233,"worker_id":11}
|
| 235 |
+
{"source_id":234,"node":234,"worker_id":11}
|
| 236 |
+
{"source_id":235,"node":235,"worker_id":11}
|
| 237 |
+
{"source_id":236,"node":236,"worker_id":11}
|
| 238 |
+
{"source_id":237,"node":237,"worker_id":11}
|
| 239 |
+
{"source_id":238,"node":238,"worker_id":11}
|
| 240 |
+
{"source_id":239,"node":239,"worker_id":11}
|
| 241 |
+
{"source_id":240,"node":240,"worker_id":12}
|
| 242 |
+
{"source_id":241,"node":241,"worker_id":12}
|
| 243 |
+
{"source_id":242,"node":242,"worker_id":12}
|
| 244 |
+
{"source_id":243,"node":243,"worker_id":12}
|
| 245 |
+
{"source_id":244,"node":244,"worker_id":12}
|
| 246 |
+
{"source_id":245,"node":245,"worker_id":12}
|
| 247 |
+
{"source_id":246,"node":246,"worker_id":12}
|
| 248 |
+
{"source_id":247,"node":247,"worker_id":12}
|
| 249 |
+
{"source_id":248,"node":248,"worker_id":12}
|
| 250 |
+
{"source_id":249,"node":249,"worker_id":12}
|
| 251 |
+
{"source_id":250,"node":250,"worker_id":12}
|
| 252 |
+
{"source_id":251,"node":251,"worker_id":12}
|
| 253 |
+
{"source_id":252,"node":252,"worker_id":12}
|
| 254 |
+
{"source_id":253,"node":253,"worker_id":12}
|
| 255 |
+
{"source_id":254,"node":254,"worker_id":12}
|
| 256 |
+
{"source_id":255,"node":255,"worker_id":12}
|
| 257 |
+
{"source_id":256,"node":256,"worker_id":12}
|
| 258 |
+
{"source_id":257,"node":257,"worker_id":12}
|
| 259 |
+
{"source_id":258,"node":258,"worker_id":12}
|
| 260 |
+
{"source_id":259,"node":259,"worker_id":12}
|
| 261 |
+
{"source_id":260,"node":260,"worker_id":13}
|
| 262 |
+
{"source_id":261,"node":261,"worker_id":13}
|
| 263 |
+
{"source_id":262,"node":262,"worker_id":13}
|
| 264 |
+
{"source_id":263,"node":263,"worker_id":13}
|
| 265 |
+
{"source_id":264,"node":264,"worker_id":13}
|
| 266 |
+
{"source_id":265,"node":265,"worker_id":13}
|
| 267 |
+
{"source_id":266,"node":266,"worker_id":13}
|
| 268 |
+
{"source_id":267,"node":267,"worker_id":13}
|
| 269 |
+
{"source_id":268,"node":268,"worker_id":13}
|
| 270 |
+
{"source_id":269,"node":269,"worker_id":13}
|
| 271 |
+
{"source_id":270,"node":270,"worker_id":13}
|
| 272 |
+
{"source_id":271,"node":271,"worker_id":13}
|
| 273 |
+
{"source_id":272,"node":272,"worker_id":13}
|
| 274 |
+
{"source_id":273,"node":273,"worker_id":13}
|
| 275 |
+
{"source_id":274,"node":274,"worker_id":13}
|
| 276 |
+
{"source_id":275,"node":275,"worker_id":13}
|
| 277 |
+
{"source_id":276,"node":276,"worker_id":13}
|
| 278 |
+
{"source_id":277,"node":277,"worker_id":13}
|
| 279 |
+
{"source_id":278,"node":278,"worker_id":13}
|
| 280 |
+
{"source_id":279,"node":279,"worker_id":13}
|
| 281 |
+
{"source_id":280,"node":280,"worker_id":14}
|
| 282 |
+
{"source_id":281,"node":281,"worker_id":14}
|
| 283 |
+
{"source_id":282,"node":282,"worker_id":14}
|
| 284 |
+
{"source_id":283,"node":283,"worker_id":14}
|
| 285 |
+
{"source_id":284,"node":284,"worker_id":14}
|
| 286 |
+
{"source_id":285,"node":285,"worker_id":14}
|
| 287 |
+
{"source_id":286,"node":286,"worker_id":14}
|
| 288 |
+
{"source_id":287,"node":287,"worker_id":14}
|
| 289 |
+
{"source_id":288,"node":288,"worker_id":14}
|
| 290 |
+
{"source_id":289,"node":289,"worker_id":14}
|
| 291 |
+
{"source_id":290,"node":290,"worker_id":14}
|
| 292 |
+
{"source_id":291,"node":291,"worker_id":14}
|
| 293 |
+
{"source_id":292,"node":292,"worker_id":14}
|
| 294 |
+
{"source_id":293,"node":293,"worker_id":14}
|
| 295 |
+
{"source_id":294,"node":294,"worker_id":14}
|
| 296 |
+
{"source_id":295,"node":295,"worker_id":14}
|
| 297 |
+
{"source_id":296,"node":296,"worker_id":14}
|
| 298 |
+
{"source_id":297,"node":297,"worker_id":14}
|
| 299 |
+
{"source_id":298,"node":298,"worker_id":14}
|
| 300 |
+
{"source_id":299,"node":299,"worker_id":14}
|
| 301 |
+
{"source_id":300,"node":300,"worker_id":15}
|
| 302 |
+
{"source_id":301,"node":301,"worker_id":15}
|
| 303 |
+
{"source_id":302,"node":302,"worker_id":15}
|
| 304 |
+
{"source_id":303,"node":303,"worker_id":15}
|
| 305 |
+
{"source_id":304,"node":304,"worker_id":15}
|
| 306 |
+
{"source_id":305,"node":305,"worker_id":15}
|
| 307 |
+
{"source_id":306,"node":306,"worker_id":15}
|
| 308 |
+
{"source_id":307,"node":307,"worker_id":15}
|
| 309 |
+
{"source_id":308,"node":308,"worker_id":15}
|
| 310 |
+
{"source_id":309,"node":309,"worker_id":15}
|
| 311 |
+
{"source_id":310,"node":310,"worker_id":15}
|
| 312 |
+
{"source_id":311,"node":311,"worker_id":15}
|
| 313 |
+
{"source_id":312,"node":312,"worker_id":15}
|
| 314 |
+
{"source_id":313,"node":313,"worker_id":15}
|
| 315 |
+
{"source_id":314,"node":314,"worker_id":15}
|
| 316 |
+
{"source_id":315,"node":315,"worker_id":15}
|
| 317 |
+
{"source_id":316,"node":316,"worker_id":15}
|
| 318 |
+
{"source_id":317,"node":317,"worker_id":15}
|
| 319 |
+
{"source_id":318,"node":318,"worker_id":15}
|
| 320 |
+
{"source_id":319,"node":319,"worker_id":15}
|
| 321 |
+
{"source_id":320,"node":320,"worker_id":16}
|
| 322 |
+
{"source_id":321,"node":321,"worker_id":16}
|
| 323 |
+
{"source_id":322,"node":322,"worker_id":16}
|
| 324 |
+
{"source_id":323,"node":323,"worker_id":16}
|
| 325 |
+
{"source_id":324,"node":324,"worker_id":16}
|
| 326 |
+
{"source_id":325,"node":325,"worker_id":16}
|
| 327 |
+
{"source_id":326,"node":326,"worker_id":16}
|
| 328 |
+
{"source_id":327,"node":327,"worker_id":16}
|
| 329 |
+
{"source_id":328,"node":328,"worker_id":16}
|
| 330 |
+
{"source_id":329,"node":329,"worker_id":16}
|
| 331 |
+
{"source_id":330,"node":330,"worker_id":16}
|
| 332 |
+
{"source_id":331,"node":331,"worker_id":16}
|
| 333 |
+
{"source_id":332,"node":332,"worker_id":16}
|
| 334 |
+
{"source_id":333,"node":333,"worker_id":16}
|
| 335 |
+
{"source_id":334,"node":334,"worker_id":16}
|
| 336 |
+
{"source_id":335,"node":335,"worker_id":16}
|
| 337 |
+
{"source_id":336,"node":336,"worker_id":16}
|
| 338 |
+
{"source_id":337,"node":337,"worker_id":16}
|
| 339 |
+
{"source_id":338,"node":338,"worker_id":16}
|
| 340 |
+
{"source_id":339,"node":339,"worker_id":16}
|
| 341 |
+
{"source_id":340,"node":340,"worker_id":17}
|
| 342 |
+
{"source_id":341,"node":341,"worker_id":17}
|
| 343 |
+
{"source_id":342,"node":342,"worker_id":17}
|
| 344 |
+
{"source_id":343,"node":343,"worker_id":17}
|
| 345 |
+
{"source_id":344,"node":344,"worker_id":17}
|
| 346 |
+
{"source_id":345,"node":345,"worker_id":17}
|
| 347 |
+
{"source_id":346,"node":346,"worker_id":17}
|
| 348 |
+
{"source_id":347,"node":347,"worker_id":17}
|
| 349 |
+
{"source_id":348,"node":348,"worker_id":17}
|
| 350 |
+
{"source_id":349,"node":349,"worker_id":17}
|
| 351 |
+
{"source_id":350,"node":350,"worker_id":17}
|
| 352 |
+
{"source_id":351,"node":351,"worker_id":17}
|
| 353 |
+
{"source_id":352,"node":352,"worker_id":17}
|
| 354 |
+
{"source_id":353,"node":353,"worker_id":17}
|
| 355 |
+
{"source_id":354,"node":354,"worker_id":17}
|
| 356 |
+
{"source_id":355,"node":355,"worker_id":17}
|
| 357 |
+
{"source_id":356,"node":356,"worker_id":17}
|
| 358 |
+
{"source_id":357,"node":357,"worker_id":17}
|
| 359 |
+
{"source_id":358,"node":358,"worker_id":17}
|
| 360 |
+
{"source_id":359,"node":359,"worker_id":17}
|
| 361 |
+
{"source_id":360,"node":360,"worker_id":18}
|
| 362 |
+
{"source_id":361,"node":361,"worker_id":18}
|
| 363 |
+
{"source_id":362,"node":362,"worker_id":18}
|
| 364 |
+
{"source_id":363,"node":363,"worker_id":18}
|
| 365 |
+
{"source_id":364,"node":364,"worker_id":18}
|
| 366 |
+
{"source_id":365,"node":365,"worker_id":18}
|
| 367 |
+
{"source_id":366,"node":366,"worker_id":18}
|
| 368 |
+
{"source_id":367,"node":367,"worker_id":18}
|
| 369 |
+
{"source_id":368,"node":368,"worker_id":18}
|
| 370 |
+
{"source_id":369,"node":369,"worker_id":18}
|
| 371 |
+
{"source_id":370,"node":370,"worker_id":18}
|
| 372 |
+
{"source_id":371,"node":371,"worker_id":18}
|
| 373 |
+
{"source_id":372,"node":372,"worker_id":18}
|
| 374 |
+
{"source_id":373,"node":373,"worker_id":18}
|
| 375 |
+
{"source_id":374,"node":374,"worker_id":18}
|
| 376 |
+
{"source_id":375,"node":375,"worker_id":18}
|
| 377 |
+
{"source_id":376,"node":376,"worker_id":18}
|
| 378 |
+
{"source_id":377,"node":377,"worker_id":18}
|
| 379 |
+
{"source_id":378,"node":378,"worker_id":18}
|
| 380 |
+
{"source_id":379,"node":379,"worker_id":18}
|
| 381 |
+
{"source_id":380,"node":380,"worker_id":19}
|
| 382 |
+
{"source_id":381,"node":381,"worker_id":19}
|
| 383 |
+
{"source_id":382,"node":382,"worker_id":19}
|
| 384 |
+
{"source_id":383,"node":383,"worker_id":19}
|
| 385 |
+
{"source_id":384,"node":384,"worker_id":19}
|
| 386 |
+
{"source_id":385,"node":385,"worker_id":19}
|
| 387 |
+
{"source_id":386,"node":386,"worker_id":19}
|
| 388 |
+
{"source_id":387,"node":387,"worker_id":19}
|
| 389 |
+
{"source_id":388,"node":388,"worker_id":19}
|
| 390 |
+
{"source_id":389,"node":389,"worker_id":19}
|
| 391 |
+
{"source_id":390,"node":390,"worker_id":19}
|
| 392 |
+
{"source_id":391,"node":391,"worker_id":19}
|
| 393 |
+
{"source_id":392,"node":392,"worker_id":19}
|
| 394 |
+
{"source_id":393,"node":393,"worker_id":19}
|
| 395 |
+
{"source_id":394,"node":394,"worker_id":19}
|
| 396 |
+
{"source_id":395,"node":395,"worker_id":19}
|
| 397 |
+
{"source_id":396,"node":396,"worker_id":19}
|
| 398 |
+
{"source_id":397,"node":397,"worker_id":19}
|
| 399 |
+
{"source_id":398,"node":398,"worker_id":19}
|
| 400 |
+
{"source_id":399,"node":399,"worker_id":19}
|
data/task_15_sequences.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|