diff --git a/.github/workflows/update-charts.yml b/.github/workflows/update-charts.yml index 89d6862..a454eef 100644 --- a/.github/workflows/update-charts.yml +++ b/.github/workflows/update-charts.yml @@ -1,15 +1,7 @@ -name: Update Charts +name: Update Charts Only on: - # Primary trigger: explicitly dispatched by update-data.yml after its PR merges. - # (GitHub does not fire push events from GITHUB_TOKEN bot merges, so on:push - # alone is not reliable for bot-initiated data updates.) - # Fallback: push to main touching docs/data/** covers human-initiated merges. - push: - branches: [main] - paths: - - 'docs/data/**' - workflow_dispatch: # Primary trigger from update-data.yml; also allows manual runs + workflow_dispatch: # Manual trigger only concurrency: group: update-charts @@ -71,10 +63,10 @@ jobs: git push origin "$BRANCH" gh pr create \ --title "Auto-update dashboard charts $(date -u +%Y-%m-%d)" \ - --body "Automated chart regeneration triggered by data update." \ + --body "Manual chart regeneration against current GCS database." \ --base main \ --head "$BRANCH" - gh pr merge "$BRANCH" --auto --squash + gh pr merge "$BRANCH" --squash - name: Open issue on failure if: failure() diff --git a/.github/workflows/update-data.yml b/.github/workflows/update-data.yml index 4901052..1d7954d 100644 --- a/.github/workflows/update-data.yml +++ b/.github/workflows/update-data.yml @@ -1,9 +1,7 @@ -name: Update Data +name: Update Data Only on: - schedule: - - cron: '0 6 * * 1' # Every Monday at 6am UTC - workflow_dispatch: # Allow manual trigger from GitHub UI + workflow_dispatch: # Manual trigger only env: FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true' @@ -43,7 +41,8 @@ jobs: - name: Write Google API key run: echo "${{ secrets.GOOGLE_API_KEY }}" > get_data/SECRET_GOOGLE_API_KEY - - name: Fetch data + - name: Fetch — EPA/budget/staff/EEA/CSO/precipitation/303d/MS4 + timeout-minutes: 45 working-directory: get_data run: | python get_EPARegion1_NPDES_permits.py @@ -55,6 +54,23 @@ jobs: python get_ATTAINS_303d.py python get_MS4_annual_reports.py --yes --skip-download + - name: Fetch — MA lobbying disclosures (incremental) + timeout-minutes: 45 + working-directory: get_data + run: python get_MA_lobbying.py + + - name: Fetch — MA legislature bills (incremental) + timeout-minutes: 20 + working-directory: get_data + run: python get_MA_legislature_bills.py + + - name: Score and cluster lobbying bills + timeout-minutes: 30 + working-directory: get_data + run: | + python score_lobbying_bills.py + python cluster_lobbying_bills.py --incremental + - name: Validate data working-directory: get_data run: python validate_data.py @@ -80,11 +96,10 @@ jobs: git push origin "$BRANCH" gh pr create \ --title "Auto-update data $(date -u +%Y-%m-%d)" \ - --body "Automated weekly data refresh. Merging this will trigger the chart-update workflow." \ + --body "Manual data-only refresh. Run 'Update Charts Only' separately to regenerate dashboard charts." \ --base main \ --head "$BRANCH" gh pr merge "$BRANCH" --squash - gh workflow run update-charts.yml --ref main - name: Open issue on failure if: failure() @@ -96,7 +111,7 @@ jobs: repo: context.repo.repo, title: `Data update failed: ${new Date().toISOString().split('T')[0]}`, body: [ - '## Scheduled data update failed', + '## Manual data update failed', '', `**Run:** ${context.serverUrl}/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`, '', diff --git a/.github/workflows/update-weekly.yml b/.github/workflows/update-weekly.yml new file mode 100644 index 0000000..7e4c93a --- /dev/null +++ b/.github/workflows/update-weekly.yml @@ -0,0 +1,146 @@ +name: Weekly Update (Data + Charts) + +on: + schedule: + - cron: '0 6 * * 1' # Every Monday at 6am UTC + workflow_dispatch: # Allow manual trigger from GitHub UI + +concurrency: + group: update-weekly + cancel-in-progress: false + +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true' + +jobs: + update: + runs-on: ubuntu-latest + permissions: + contents: write # to push branch + issues: write # to open failure issues + pull-requests: write # to create PR + + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + cache: pip + + - name: Install dependencies + run: pip install -r requirements-ci.txt + + - name: Authenticate to Google Cloud + uses: google-github-actions/auth@v2 + with: + credentials_json: ${{ secrets.GCP_SA_KEY }} + + - name: Set up Cloud SDK (provides gsutil) + uses: google-github-actions/setup-gcloud@v2 + + - name: Write SODA credentials + run: | + printf '%s\n%s\n' "${{ secrets.SODA_APP_TOKEN }}" "${{ secrets.SODA_SECRET_TOKEN }}" \ + > get_data/SECRET_SODA_token + + - name: Write Google API key + run: echo "${{ secrets.GOOGLE_API_KEY }}" > get_data/SECRET_GOOGLE_API_KEY + + - name: Fetch — EPA/budget/staff/EEA/CSO/precipitation/303d/MS4 + timeout-minutes: 45 + working-directory: get_data + run: | + python get_EPARegion1_NPDES_permits.py + python get_budget_CTHRU.py + python get_DEP_staff_SODA.py + python get_EEA_data_portal.py + python get_eea_dp_cso.py + python get_MA_precipitation.py + python get_ATTAINS_303d.py + python get_MS4_annual_reports.py --yes --skip-download + + - name: Fetch — MA lobbying disclosures (incremental) + timeout-minutes: 45 + working-directory: get_data + run: python get_MA_lobbying.py + + - name: Fetch — MA legislature bills (incremental) + timeout-minutes: 20 + working-directory: get_data + run: python get_MA_legislature_bills.py + + - name: Score and cluster lobbying bills + timeout-minutes: 30 + working-directory: get_data + run: | + python score_lobbying_bills.py + python cluster_lobbying_bills.py --incremental + + - name: Validate data + working-directory: get_data + run: python validate_data.py + + - name: Assemble database + working-directory: get_data + run: python assemble_db.py + + - name: Generate dashboard charts + working-directory: analysis + run: python dashboard_charts.py + + - name: Write timestamps + run: | + echo "updated: $(date -u +'%Y-%m-%d %H:%M:%S')" > docs/data/ts_update_dashboard.yml + + - name: Commit and open PR + env: + GH_TOKEN: ${{ github.token }} + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + git add docs/data/ \ + docs/_includes/charts/dash_*.html \ + docs/data/facts_dash_*.yml \ + docs/data/facts_DEPstaff.yml \ + docs/data/facts_DEPenforce.yml \ + docs/data/facts_ECOSbudgets.yml \ + docs/data/facts_EPA303d.yml \ + docs/data/ts_update_dashboard.yml + if git diff --staged --quiet; then + echo "No changes — skipping PR." + exit 0 + fi + BRANCH="auto/weekly-$(date -u +%Y-%m-%d)" + git checkout -b "$BRANCH" + git commit -m "Auto-update data + charts $(date -u +%Y-%m-%d)" + git push origin "$BRANCH" + gh pr create \ + --title "Auto-update data + charts $(date -u +%Y-%m-%d)" \ + --body "Automated weekly data and chart refresh." \ + --base main \ + --head "$BRANCH" + gh pr merge "$BRANCH" --squash + + - name: Open issue on failure + if: failure() + uses: actions/github-script@v7 + with: + script: | + github.rest.issues.create({ + owner: context.repo.owner, + repo: context.repo.repo, + title: `Weekly update failed: ${new Date().toISOString().split('T')[0]}`, + body: [ + '## Scheduled weekly update failed', + '', + `**Run:** ${context.serverUrl}/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`, + '', + 'Check the run logs above for details. Common causes:', + '- EPA or EEA website structure changed (scraper broke)', + '- API returned unexpected data (caught by validate_data.py)', + '- Row count decreased vs. previous run', + '- GCS credentials expired', + ].join('\n'), + labels: ['data-update-failure'], + }) diff --git a/.gitignore b/.gitignore index 20a2b09..fa15e36 100644 --- a/.gitignore +++ b/.gitignore @@ -103,6 +103,16 @@ get_data/MS4_annual_reports/ # Large files *EEADP_drinkingWater.csv +docs/data/MA_bill_embeddings.parquet +docs/data/MA_bill_embeddings.npy +get_data/MA_legislature_cache/ + +# MA lobbying large CSVs — stored in GCS, only samples committed +docs/data/MA_lobbying_bills.csv +docs/data/MA_lobbying_employers.csv +docs/data/MA_lobbying_summary_links.csv +docs/data/MA_lobbying_bills_scored.csv +docs/data/MA_legislature_bills.csv get_data/backup_AMEND.db get_data/EEADP_drinkingWater.csv @@ -117,3 +127,5 @@ get_data/backup_AMEND.db get_data/AMEND.db docs/assets/debug_screenshot.png +docs/data/MA_legislature_bills.csv.bak_wrong_gc +docs/data/MA_lobbying_static_site_proposal.md diff --git a/CLAUDE.md b/CLAUDE.md index 402f316..0c5f0e5 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -67,6 +67,14 @@ bash set_cors_gsutil.sh - **EPA NPDES page changes**: EPA changed JSON format and column names around 2025; both handled with `isinstance` checks and fallback column detection. - **EEA CSOAPI**: Requires `Referer` and `Origin` headers matching the portal URL; plain requests return HTTP 500. Pagination is 1-indexed. - **303(d) data (biennial)**: `get_ATTAINS_303d.py` fetches from MassGIS S3-hosted shapefiles (not the ATTAINS REST API, which times out on `/assessments`). Data updates only biennially (even years); the script exits early if all known cycles are already in the cached CSV. The 2020 cycle was never published by MassGIS. The 2024/2026 cycle is in draft as of April 2026 — the script will auto-detect it when MassGIS publishes the approved shapefile. `CSO_303d_Mapping` in `assemble_db.py` is a manually curated dict (35 verified matches of 56 CSO waterbodies); update it when a new cycle is added by reviewing new assessment unit names against CSO waterBody values. +- **MA lobbying portal (Incapsula WAF)**: The SoS portal (`sec.state.ma.us/LobbyistPublicSearch/`) is protected by Incapsula WAF. A Chrome User-Agent gets a 302 redirect to a JS challenge page. An **iPad User-Agent** bypasses it entirely with plain `requests` — no Selenium needed. The working UA is `Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148`. +- **MA lobbying portal (search form)**: ASP.NET with ViewState. POST to `Default.aspx` with `drpType=L` (Lobbyist or Lobbying Entity — do NOT use `Z` which returns Client pages with different structure), `drpPageSize=20000`, `ddlYear=`. POST timeout must be 120s (response is ~2MB for ~1700 results). Data goes back to 2005 (22 years). +- **MA lobbying incremental fetch**: Disclosures are filed semi-annually (H1 due ~Jul 15 of the year; H2 due ~Jan 15 of the following year), and amendments cluster within ~60 days of those deadlines. The incremental state lives in `MA_lobbying_summary_links.csv` (gitignored, synced to/from GCS by the script itself): each visited summary page is stamped with `last_checked`, pages with no disclosures get a marker row with null `disc_url`. Pages are re-checked only inside a filing window (`deadline − 14d` to `deadline + 60d`) plus one closing sweep after it; a year is skipped wholesale before Jul 1 (H1 period not yet closed). Steady-state weekly runs take ~1–2 min; runs during the Jul and Jan filing windows scan all ~1,700 pages (~40 min). State uploads to GCS happen every 200 pages (data files first, links index last) so a timed-out CI run still makes durable progress. +- **MA lobbying full historical fetch**: `REQUEST_DELAY` is 0.3s; actual page time is ~1.3s (server latency dominates). A full single-year scan (~1,700 registrants) takes ~40 min when most pages are skipped-after-visit, ~hours when every disclosure must also be fetched. The full 22-year history was completed in May 2026; it only ever needs re-running if the GCS state files are lost. +- **Running lobbying scripts**: Do NOT use `conda run` with stdout redirect (`> file`) — `conda run` buffers all output through a pipe and the log file stays empty until the process exits. Run Python directly: `/home/nes/miniconda/envs/amend_python/bin/python -u get_MA_lobbying.py` (the `-u` flag ensures unbuffered output). +- **MA lobbying Gemini SDK**: Uses `google-genai` (new SDK, `google.genai`), NOT the old `google-generativeai` package. API: `client = genai.Client(api_key=...)`, then `client.models.embed_content(model='gemini-embedding-2', contents=text, config=types.EmbedContentConfig(output_dimensionality=768))`. +- **MA lobbying Gemini API cost — do not underestimate**: Actual observed cost for `summarize_lobbying_bills.py` is **$0.627/1k bills** (verified June 2026). Output tokens ($2.50/1M) dominate at ~60% of total cost even though output is only ~151 tokens/bill. Prior estimates were off by 6× because they applied the input price ($0.30/1M) to output tokens. Rule of thumb: a one-time backfill of 7k bills ≈ $4.50; 26k bills ≈ $16. Weekly incremental runs (20–50 new bills) ≈ $0.02. Embedding via `gemini-embedding-2` is negligible ($0.20/1M tokens ≈ $0.00015/bill). Always verify estimate against GCP billing console before running a large batch — the API pricing page may show non-GA or pre-discount rates. +- **MA lobbying General Court formula bug (unfixed)**: `get_MA_lobbying.py` uses `FIRST_GC_START_YEAR = 2005` but the 183rd General Court started in 2003, not 2005. The correct constant is `2003`. As a result, every bill's `general_court` assignment is one session too low (year 2024 → GC192 instead of GC193, etc.), and `get_MA_legislature_bills.py` fetches bill text from the wrong legislative session. Fixing this constant and re-running the full pipeline would bring the title match rate from ~2% to ~65%. The remaining ~35% of mismatches are string-normalisation differences or genuinely wrong bill numbers in the SoS portal. See `get_data/NOTES_bill_embeddings.md` for full analysis. ## Running scripts diff --git a/analysis/dashboard_charts.py b/analysis/dashboard_charts.py index 74388a9..361438b 100644 --- a/analysis/dashboard_charts.py +++ b/analysis/dashboard_charts.py @@ -12,6 +12,11 @@ import ECOS_budgets_viz import EPA_303d_viz import MS4_compliance_viz +try: + import MA_lobbying_viz + _LOBBYING_VIZ_AVAILABLE = True +except ImportError: + _LOBBYING_VIZ_AVAILABLE = False from EEA_DP_CSO_map import CSOAnalysisEEADP PREFIX = 'dash_' @@ -56,3 +61,7 @@ # --- MS4 stormwater compliance charts (3 charts) --- MS4_compliance_viz.generate_charts(engine, prefix=PREFIX) + +# --- Lobbying charts (4 charts; skipped until MA_lobbying_viz.py is available) --- +if _LOBBYING_VIZ_AVAILABLE: + MA_lobbying_viz.generate_charts(engine, prefix=PREFIX) diff --git a/docs/README.md b/docs/README.md index 25e353c..7cd44c2 100644 --- a/docs/README.md +++ b/docs/README.md @@ -16,15 +16,20 @@ All data, code for data gathering and cleaning, code for analysis, and web devel ## Datasets {{ site.data.site_config.site_abbrev }} includes a [constantly-growing list of datasets]({{ site.url }}{{ site.baseurl }}/data/index.html) such as: - -* MA state budget information -* MA Department of Environmental Protection (DEP) staffing records -* MA DEP regulatory enforcement actions -* MA 2011 combined sewer overflow (CSO) discharge data -* US Environmental Protection Agency (EPA) Environmental Justice (EJ) community data -* US Environmental Protection Agency (EPA) Region 1 NPDES permits -* US Census and Social Security Administration population and wage data -* EPA 303(d) Integrated List of MA Impaired Waters — waterbodies failing water quality standards (MassGIS, biennial 2010–2022) + +* MA environmental agency budgets (DEP, DCR, EEA; FY2001–present) +* MA DEP staffing records +* MA DEP/EEA enforcement actions (1996–present) +* MA combined sewer overflow (CSO) discharge incidents (2022–present) +* MA municipal stormwater (MS4) annual compliance reports (FY2019–present) +* MA lobbying disclosures — bills, employers, spending (2005–present) +* MA Legislature bill text and passage status (GC183–194) +* EPA 303(d) impaired waters (MassGIS, biennial 2010–2022) +* EPA Region 1 NPDES permits +* EPA EJScreen environmental justice indicators (2017, 2023) +* US Census population and income estimates +* NOAA daily precipitation (Massachusetts) +* ECOS state environmental agency budget survey (FY2009–2023) ## Analysis diff --git a/docs/_includes/charts/dash_MADEP_enforcement_bytype.html b/docs/_includes/charts/dash_MADEP_enforcement_bytype.html index be7ac33..f048cad 100644 --- a/docs/_includes/charts/dash_MADEP_enforcement_bytype.html +++ b/docs/_includes/charts/dash_MADEP_enforcement_bytype.html @@ -14,7 +14,7 @@ data: { labels: ["2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"], - datasets: [{'data': [87, 63, 40, 46, 90, 110, 70, 67, 61, 44, 72, 49, 81, 60, 40, 48, 22, 21, 18, 9, 11, 5, 8, 8, 9, 3], 'label': 'ACO w/o Penalty', 'backgroundColor': 'rgba(31,120,180,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [129, 144, 271, 215, 291, 240, 201, 214, 203, 213, 175, 160, 152, 111, 97, 121, 67, 81, 88, 80, 70, 53, 66, 58, 73, 28], 'label': 'ACO w/ Penalty', 'backgroundColor': 'rgba(166,206,227,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [7, 3, 1, 4, 4, 14, 5, 7, 2, 3, 7, 10, 6, 9, 10, 6, 8, 10, 8, 2, 6, 6, 3, 2, 3, 2], 'label': 'Demand Action', 'backgroundColor': 'rgba(51,160,44,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [1, 0, 0, 16, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'label': 'Federal ACO (PWS)', 'backgroundColor': 'rgba(178,223,138,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [26, 35, 35, 30, 59, 96, 86, 68, 44, 12, 13, 13, 8, 87, 6, 8, 11, 12, 12, 13, 9, 3, 5, 9, 17, 9], 'label': 'Penalty Notice', 'backgroundColor': 'rgba(227,26,28,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [0, 0, 60, 67, 101, 91, 65, 128, 138, 58, 116, 77, 126, 84, 51, 57, 206, 164, 217, 106, 246, 226, 193, 240, 211, 85], 'label': 'Reporting Penalty', 'backgroundColor': 'rgba(253,191,111,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [20, 38, 47, 44, 56, 38, 67, 62, 51, 31, 58, 55, 58, 50, 45, 50, 20, 31, 26, 23, 27, 26, 39, 22, 27, 4], 'label': 'Unilateral Order', 'backgroundColor': 'rgba(202,178,214,0.8)', 'stack': 'annual', 'yAxisID': 'y'}] + datasets: [{'data': [87, 63, 40, 46, 90, 110, 70, 67, 61, 44, 72, 49, 81, 60, 40, 48, 22, 21, 18, 9, 11, 5, 8, 8, 9, 4], 'label': 'ACO w/o Penalty', 'backgroundColor': 'rgba(31,120,180,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [129, 144, 271, 215, 291, 240, 201, 214, 203, 213, 175, 160, 152, 111, 97, 121, 67, 81, 88, 80, 70, 53, 66, 58, 73, 34], 'label': 'ACO w/ Penalty', 'backgroundColor': 'rgba(166,206,227,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [7, 3, 1, 4, 4, 14, 5, 7, 2, 3, 7, 10, 6, 9, 10, 6, 8, 10, 8, 2, 6, 6, 3, 2, 3, 2], 'label': 'Demand Action', 'backgroundColor': 'rgba(51,160,44,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [1, 0, 0, 16, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'label': 'Federal ACO (PWS)', 'backgroundColor': 'rgba(178,223,138,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [26, 35, 35, 30, 59, 96, 86, 68, 44, 12, 13, 13, 8, 87, 6, 8, 11, 12, 12, 13, 9, 3, 5, 9, 17, 11], 'label': 'Penalty Notice', 'backgroundColor': 'rgba(227,26,28,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [0, 0, 60, 67, 101, 91, 65, 128, 138, 58, 116, 77, 126, 84, 51, 57, 206, 164, 217, 106, 246, 226, 193, 240, 211, 126], 'label': 'Reporting Penalty', 'backgroundColor': 'rgba(253,191,111,0.8)', 'stack': 'annual', 'yAxisID': 'y'},{'data': [20, 38, 47, 44, 56, 38, 67, 62, 51, 31, 58, 55, 58, 50, 45, 50, 20, 31, 26, 23, 27, 26, 39, 22, 27, 5], 'label': 'Unilateral Order', 'backgroundColor': 'rgba(202,178,214,0.8)', 'stack': 'annual', 'yAxisID': 'y'}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MADEP_enforcement_fines_overall.html b/docs/_includes/charts/dash_MADEP_enforcement_fines_overall.html index 16add90..74084c9 100644 --- a/docs/_includes/charts/dash_MADEP_enforcement_fines_overall.html +++ b/docs/_includes/charts/dash_MADEP_enforcement_fines_overall.html @@ -14,7 +14,7 @@ data: { labels: ["2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"], - datasets: [{'data': [3.11446, 1.826646, 1.938032, 2.62953, 4.837296, 3.59366, 2.889449, 2.110374, 2.301807, 2.109543, 1.786811, 1.337741, 1.368937, 1.900576, 0.902028, 0.706457, 1.193786, 0.953871, 0.969549, 0.683028, 1.672336, 1.053674, 1.035999, 1.300763, 1.419162, 0.665517], 'label': 'Reported penalties', 'backgroundColor': 'rgba(50,50,200,0.8)', 'stack': 'annual', 'yAxisID': 'y'}] + datasets: [{'data': [3.11446, 1.826646, 1.938032, 2.62953, 4.837296, 3.59366, 2.889449, 2.110374, 2.301807, 2.109543, 1.786811, 1.337741, 1.368937, 1.900576, 0.902028, 0.706457, 1.193786, 0.953871, 0.969549, 0.683028, 1.672336, 1.053674, 1.035999, 1.300763, 1.419162, 0.846677], 'label': 'Reported penalties', 'backgroundColor': 'rgba(50,50,200,0.8)', 'stack': 'annual', 'yAxisID': 'y'}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MADEP_enforcement_fines_overall_stacked.html b/docs/_includes/charts/dash_MADEP_enforcement_fines_overall_stacked.html index e13056f..c7f6e35 100644 --- a/docs/_includes/charts/dash_MADEP_enforcement_fines_overall_stacked.html +++ b/docs/_includes/charts/dash_MADEP_enforcement_fines_overall_stacked.html @@ -14,7 +14,7 @@ data: { labels: ["2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"], - datasets: [{'data': [1.1, 0.2905, 0.09, 0.108, 0.30432, 0.18, 0.175095, 0.085, 0.125, 0.137, 0.22211, 0.063725, 0.15, 0.54, 0.053299, 0.068613, 0.101, 0.085342, 0.06725, 0.07508, 0.1, 0.13356, 0.114969, 0.16614, 0.095434, 0.08615], 'label': 'Rank #1 penalty of the year', 'backgroundColor': 'rgba(166,206,227)'},{'data': [0.3, 0.185, 0.09, 0.101926, 0.25, 0.1479, 0.094275, 0.063, 0.105535, 0.109875, 0.054938, 0.053937, 0.049747, 0.07475, 0.04306, 0.04558, 0.06725, 0.073575, 0.06, 0.071688, 0.099875, 0.08117, 0.05718, 0.101005, 0.08217, 0.072688], 'label': 'Rank #2 penalty of the year', 'backgroundColor': 'rgba(31,120,180)'},{'data': [0.1575, 0.1, 0.09, 0.076, 0.25, 0.138, 0.09, 0.050412, 0.082188, 0.109464, 0.054916, 0.053937, 0.046412, 0.067541, 0.040473, 0.0255, 0.06725, 0.062098, 0.0425, 0.044413, 0.098004, 0.07795, 0.053938, 0.08231, 0.071513, 0.05629], 'label': 'Rank #3 penalty of the year', 'backgroundColor': 'rgba(178,223,138)'},{'data': [0.121, 0.085, 0.07325, 0.068613, 0.22325, 0.11906, 0.080586, 0.046413, 0.055937, 0.10223, 0.054714, 0.05, 0.04, 0.060725, 0.036775, 0.024332, 0.067142, 0.061725, 0.03922, 0.025, 0.08381, 0.073688, 0.04325, 0.072104, 0.071513, 0.051895], 'label': 'Rank #4 penalty of the year', 'backgroundColor': 'rgba(51,160,44)'},{'data': [0.085, 0.065625, 0.065625, 0.0675, 0.22, 0.11541, 0.06925, 0.04052, 0.054938, 0.1, 0.04913, 0.04625, 0.035185, 0.054895, 0.0311, 0.021994, 0.063478, 0.051938, 0.034, 0.01953, 0.0803, 0.052, 0.04, 0.06725, 0.05771, 0.04391], 'label': 'Rank #5 penalty of the year', 'backgroundColor': 'rgba(166,206,227)'},{'data': [0.075, 0.05, 0.064975, 0.067, 0.175, 0.101663, 0.061125, 0.037625, 0.053937, 0.062546, 0.0435, 0.040178, 0.03, 0.05175, 0.030218, 0.02, 0.053, 0.0345, 0.03381, 0.019513, 0.06986, 0.048055, 0.03998, 0.05855, 0.04698, 0.023573], 'label': 'Rank #6 penalty of the year', 'backgroundColor': 'rgba(31,120,180)'},{'data': [0.0625, 0.045, 0.064, 0.058, 0.1566, 0.101623, 0.059747, 0.03693, 0.053437, 0.047562, 0.041235, 0.038783, 0.028795, 0.0488, 0.02816, 0.019269, 0.049, 0.03, 0.030208, 0.0176, 0.06725, 0.0345, 0.031014, 0.05815, 0.04, 0.022], 'label': 'Rank #7 penalty of the year', 'backgroundColor': 'rgba(178,223,138)'},{'data': [0.058, 0.045, 0.05625, 0.05625, 0.1, 0.075, 0.05636, 0.036532, 0.053437, 0.045413, 0.03915, 0.033, 0.028795, 0.044, 0.025875, 0.016789, 0.045585, 0.03, 0.03, 0.015, 0.064074, 0.028201, 0.02834, 0.048563, 0.035403, 0.02156], 'label': 'Rank #8 penalty of the year', 'backgroundColor': 'rgba(51,160,44)'},{'data': [0.0525, 0.03675, 0.0525, 0.05625, 0.074183, 0.075, 0.055959, 0.0345, 0.05, 0.032909, 0.0351, 0.03075, 0.0266, 0.042, 0.025, 0.015375, 0.038608, 0.03, 0.0273, 0.014, 0.05855, 0.025255, 0.025, 0.03, 0.03103, 0.0215], 'label': 'Rank #9 penalty of the year', 'backgroundColor': 'rgba(166,206,227)'},{'data': [0.05, 0.033, 0.0525, 0.05625, 0.065356, 0.066209, 0.055414, 0.033625, 0.048648, 0.0325, 0.033315, 0.029575, 0.025875, 0.037625, 0.020817, 0.015, 0.03737, 0.029904, 0.025, 0.013758, 0.053938, 0.02386, 0.0225, 0.03, 0.030754, 0.020208], 'label': 'Rank #10 penalty of the year', 'backgroundColor': 'rgba(31,120,180)'},{'data': [1.03996, 0.887671, 1.215332, 1.893741, 2.997687, 2.43408, 2.006688, 1.621627, 1.61265, 1.189504, 1.052181, 0.822011, 0.906928, 0.755285, 0.519711, 0.330975, 0.600843, 0.463789, 0.553815, 0.352156, 0.893955, 0.475435, 0.577828, 0.566441, 0.769807, 0.244743], 'label': 'All other penalties (ranks 11+)', 'backgroundColor': 'rgba(200,200,200,0.7)'}] + datasets: [{'data': [1.1, 0.2905, 0.09, 0.108, 0.30432, 0.18, 0.175095, 0.085, 0.125, 0.137, 0.22211, 0.063725, 0.15, 0.54, 0.053299, 0.068613, 0.101, 0.085342, 0.06725, 0.07508, 0.1, 0.13356, 0.114969, 0.16614, 0.095434, 0.097227], 'label': 'Rank #1 penalty of the year', 'backgroundColor': 'rgba(166,206,227)'},{'data': [0.3, 0.185, 0.09, 0.101926, 0.25, 0.1479, 0.094275, 0.063, 0.105535, 0.109875, 0.054938, 0.053937, 0.049747, 0.07475, 0.04306, 0.04558, 0.06725, 0.073575, 0.06, 0.071688, 0.099875, 0.08117, 0.05718, 0.101005, 0.08217, 0.08615], 'label': 'Rank #2 penalty of the year', 'backgroundColor': 'rgba(31,120,180)'},{'data': [0.1575, 0.1, 0.09, 0.076, 0.25, 0.138, 0.09, 0.050412, 0.082188, 0.109464, 0.054916, 0.053937, 0.046412, 0.067541, 0.040473, 0.0255, 0.06725, 0.062098, 0.0425, 0.044413, 0.098004, 0.07795, 0.053938, 0.08231, 0.071513, 0.072688], 'label': 'Rank #3 penalty of the year', 'backgroundColor': 'rgba(178,223,138)'},{'data': [0.121, 0.085, 0.07325, 0.068613, 0.22325, 0.11906, 0.080586, 0.046413, 0.055937, 0.10223, 0.054714, 0.05, 0.04, 0.060725, 0.036775, 0.024332, 0.067142, 0.061725, 0.03922, 0.025, 0.08381, 0.073688, 0.04325, 0.072104, 0.071513, 0.05629], 'label': 'Rank #4 penalty of the year', 'backgroundColor': 'rgba(51,160,44)'},{'data': [0.085, 0.065625, 0.065625, 0.0675, 0.22, 0.11541, 0.06925, 0.04052, 0.054938, 0.1, 0.04913, 0.04625, 0.035185, 0.054895, 0.0311, 0.021994, 0.063478, 0.051938, 0.034, 0.01953, 0.0803, 0.052, 0.04, 0.06725, 0.05771, 0.051895], 'label': 'Rank #5 penalty of the year', 'backgroundColor': 'rgba(166,206,227)'},{'data': [0.075, 0.05, 0.064975, 0.067, 0.175, 0.101663, 0.061125, 0.037625, 0.053937, 0.062546, 0.0435, 0.040178, 0.03, 0.05175, 0.030218, 0.02, 0.053, 0.0345, 0.03381, 0.019513, 0.06986, 0.048055, 0.03998, 0.05855, 0.04698, 0.04391], 'label': 'Rank #6 penalty of the year', 'backgroundColor': 'rgba(31,120,180)'},{'data': [0.0625, 0.045, 0.064, 0.058, 0.1566, 0.101623, 0.059747, 0.03693, 0.053437, 0.047562, 0.041235, 0.038783, 0.028795, 0.0488, 0.02816, 0.019269, 0.049, 0.03, 0.030208, 0.0176, 0.06725, 0.0345, 0.031014, 0.05815, 0.04, 0.042993], 'label': 'Rank #7 penalty of the year', 'backgroundColor': 'rgba(178,223,138)'},{'data': [0.058, 0.045, 0.05625, 0.05625, 0.1, 0.075, 0.05636, 0.036532, 0.053437, 0.045413, 0.03915, 0.033, 0.028795, 0.044, 0.025875, 0.016789, 0.045585, 0.03, 0.03, 0.015, 0.064074, 0.028201, 0.02834, 0.048563, 0.035403, 0.023573], 'label': 'Rank #8 penalty of the year', 'backgroundColor': 'rgba(51,160,44)'},{'data': [0.0525, 0.03675, 0.0525, 0.05625, 0.074183, 0.075, 0.055959, 0.0345, 0.05, 0.032909, 0.0351, 0.03075, 0.0266, 0.042, 0.025, 0.015375, 0.038608, 0.03, 0.0273, 0.014, 0.05855, 0.025255, 0.025, 0.03, 0.03103, 0.022], 'label': 'Rank #9 penalty of the year', 'backgroundColor': 'rgba(166,206,227)'},{'data': [0.05, 0.033, 0.0525, 0.05625, 0.065356, 0.066209, 0.055414, 0.033625, 0.048648, 0.0325, 0.033315, 0.029575, 0.025875, 0.037625, 0.020817, 0.015, 0.03737, 0.029904, 0.025, 0.013758, 0.053938, 0.02386, 0.0225, 0.03, 0.030754, 0.02156], 'label': 'Rank #10 penalty of the year', 'backgroundColor': 'rgba(31,120,180)'},{'data': [1.03996, 0.887671, 1.215332, 1.893741, 2.997687, 2.43408, 2.006688, 1.621627, 1.61265, 1.189504, 1.052181, 0.822011, 0.906928, 0.755285, 0.519711, 0.330975, 0.600843, 0.463789, 0.553815, 0.352156, 0.893955, 0.475435, 0.577828, 0.566441, 0.769807, 0.325671], 'label': 'All other penalties (ranks 11+)', 'backgroundColor': 'rgba(200,200,200,0.7)'}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MADEP_enforcement_overall.html b/docs/_includes/charts/dash_MADEP_enforcement_overall.html index 7cf9f37..fe7350e 100644 --- a/docs/_includes/charts/dash_MADEP_enforcement_overall.html +++ b/docs/_includes/charts/dash_MADEP_enforcement_overall.html @@ -14,7 +14,7 @@ data: { labels: ["2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"], - datasets: [{'data': [270, 283, 454, 422, 605, 590, 495, 546, 499, 361, 441, 364, 431, 401, 249, 290, 334, 319, 369, 233, 369, 319, 314, 339, 340, 131], 'label': 'Number of enforcements', 'backgroundColor': 'rgba(50,50,200,0.8)', 'stack': 'annual', 'yAxisID': 'y'}] + datasets: [{'data': [270, 283, 454, 422, 605, 590, 495, 546, 499, 361, 441, 364, 431, 401, 249, 290, 334, 319, 369, 233, 369, 319, 314, 339, 340, 182], 'label': 'Number of enforcements', 'backgroundColor': 'rgba(50,50,200,0.8)', 'stack': 'annual', 'yAxisID': 'y'}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MADEP_enforcement_vsbudget.html b/docs/_includes/charts/dash_MADEP_enforcement_vsbudget.html index 14dd201..79885df 100644 --- a/docs/_includes/charts/dash_MADEP_enforcement_vsbudget.html +++ b/docs/_includes/charts/dash_MADEP_enforcement_vsbudget.html @@ -14,7 +14,7 @@ data: { labels: ["2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"], - datasets: [{'data': [270, 283, 454, 422, 605, 590, 495, 546, 499, 361, 441, 364, 431, 401, 249, 290, 334, 319, 369, 233, 369, 319, 314, 339, 340, 131], 'label': 'Number of enforcements', 'backgroundColor': 'rgba(50,50,50,0.5)', 'type': 'line', 'fill': false, 'borderWidth': 2, 'stack': 'annual', 'yAxisID': 'y'},{'data': [67.61507253270285, 64.03117821821397, 59.11452060906299, 55.13552970897133, 53.630970557496916, 54.50080651757284, 58.826813693302746, 58.78877609579202, 62.23068521836106, 49.673112547145536, 41.78850458160208, 38.896872431563395, 40.40385917341901, 42.60722184875473, 42.11776213526644, 42.389451355941304, 34.751856419563936, 33.12920736760928, 37.60870536390118, 40.28206302422945, 46.254922289813294, 36.60585418435639, 47.59754731934593, 52.038191, null, null], 'label': 'DEP administrative budget', 'borderColor': '#ff7f0e', 'fill': false, 'borderWidth': 2, 'stack': 'annual', 'type': 'line', 'yAxisID': 'y1'}] + datasets: [{'data': [270, 283, 454, 422, 605, 590, 495, 546, 499, 361, 441, 364, 431, 401, 249, 290, 334, 319, 369, 233, 369, 319, 314, 339, 340, 182], 'label': 'Number of enforcements', 'backgroundColor': 'rgba(50,50,50,0.5)', 'type': 'line', 'fill': false, 'borderWidth': 2, 'stack': 'annual', 'yAxisID': 'y'},{'data': [67.61507253270285, 64.03117821821397, 59.11452060906299, 55.13552970897133, 53.630970557496916, 54.50080651757284, 58.826813693302746, 58.78877609579202, 62.23068521836106, 49.673112547145536, 41.78850458160208, 38.896872431563395, 40.40385917341901, 42.60722184875473, 42.11776213526644, 42.389451355941304, 34.751856419563936, 33.12920736760928, 37.60870536390118, 40.28206302422945, 46.254922289813294, 36.60585418435639, 47.59754731934593, 52.038191, null, null], 'label': 'DEP administrative budget', 'borderColor': '#ff7f0e', 'fill': false, 'borderWidth': 2, 'stack': 'annual', 'type': 'line', 'yAxisID': 'y1'}] }, type: 'line', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LINGISOPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LINGISOPCT.html index 109b931..8d6a779 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LINGISOPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LINGISOPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.079847909, y: null}, {x: 0.118055556, y: null}, {x: 0.0, y: null}, {x: 0.017647059, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.103585657, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081967213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.093729}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.031034483, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015151515, y: null}, {x: 0.0, y: null}, {x: 0.012211669, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057142857, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030075188, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014534884, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061068702, y: null}, {x: 0.054151625, y: null}, {x: 0.0, y: null}, {x: 0.058091286, y: null}, {x: 0.0, y: null}, {x: 0.02507837, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023210832, y: null}, {x: 0.04610951, y: null}, {x: 0.033530572, y: null}, {x: 0.075471698, y: null}, {x: 0.0, y: null}, {x: 0.067114094, y: null}, {x: 0.060185185, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025706941, y: null}, {x: 0.19544592, y: null}, {x: 0.0, y: null}, {x: 0.046692607, y: null}, {x: 0.029761905, y: null}, {x: 0.0, y: null}, {x: 0.313311688, y: null}, {x: 0.054973822, y: null}, {x: 0.07, y: null}, {x: 0.056057866, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051319648, y: null}, {x: 0.036885246, y: null}, {x: 0.098613251, y: null}, {x: 0.012465374, y: null}, {x: 0.040106952, y: null}, {x: 0.0, y: null}, {x: 0.011363636, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.084684685, y: null}, {x: 0.052083333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.047516199, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042723632, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029673591, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066083576, y: null}, {x: 0.015662651, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055913978, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014634146, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034175334, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024930748, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009638554, y: null}, {x: 0.006882312, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.215231788, y: null}, {x: 0.119047619, y: null}, {x: 0.195348837, y: null}, {x: 0.0, y: null}, {x: 0.03030303, y: null}, {x: 0.03219697, y: null}, {x: 0.016330451, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040425532, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036613272, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04035309, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.064615385, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043902439, y: null}, {x: 0.0, y: null}, {x: 0.050531915, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.087962963, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007670182, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051369863, y: null}, {x: 0.0, y: null}, {x: 0.060301508, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.175}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015957447, y: null}, {x: 0.038076152, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040506329, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015781923, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.006329114, y: null}, {x: 0.0, y: null}, {x: 0.029821074, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029739777, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.003372681, y: null}, {x: 0.010498688, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004830918, y: null}, {x: 0.021680217, y: null}, {x: 0.007894737, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.006289308, y: null}, {x: 0.042056075, y: null}, {x: 0.0, y: null}, {x: 0.022727273, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034662045, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020761246, y: null}, {x: 0.0, y: null}, {x: 0.018549747, y: null}, {x: 0.01270648, y: null}, {x: 0.067919075, y: null}, {x: 0.0, y: null}, {x: 0.020942408, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019512195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095011876, y: null}, {x: 0.061583578, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015974441, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036170213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019345238, y: null}, {x: 0.00908059, y: null}, {x: 0.019047619, y: null}, {x: 0.092257002, y: null}, {x: 0.0, y: null}, {x: 0.199434229, y: null}, {x: 0.108108108, y: null}, {x: 0.141695703, y: null}, {x: 0.139573071, y: null}, {x: 0.0, y: null}, {x: 0.044067797, y: null}, {x: 0.117370892, y: null}, {x: 0.049360146, y: null}, {x: 0.102756892, y: null}, {x: 0.04952381, y: null}, {x: 0.170160296, y: 33.039}, {x: 0.009884679, y: null}, {x: 0.131929047, y: null}, {x: 0.074349442, y: null}, {x: 0.139215686, y: null}, {x: 0.048648649, y: null}, {x: 0.040540541, y: null}, {x: 0.043737575, y: null}, {x: 0.0625, y: null}, {x: 0.018556701, y: null}, {x: 0.020491803, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019900498, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045540797, y: null}, {x: 0.0, y: null}, {x: 0.014111007, y: null}, {x: 0.0, y: null}, {x: 0.01396648, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015437393, y: null}, {x: 0.0, y: null}, {x: 0.097222222, y: null}, {x: 0.032723773, y: null}, {x: 0.042124542, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.03087886, y: null}, {x: 0.0, y: null}, {x: 0.01994302, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095070423, y: null}, {x: 0.027210884, y: null}, {x: 0.108108108, y: null}, {x: 0.081705151, y: null}, {x: 0.0, y: null}, {x: 0.017305315, y: null}, {x: 0.022556391, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050785973, y: null}, {x: 0.066957787, y: null}, {x: 0.136279926, y: null}, {x: 0.010233918, y: null}, {x: 0.013057671, y: null}, {x: 0.0, y: null}, {x: 0.12244898, y: null}, {x: 0.030716724, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059418458, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 999.999999}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038054968, y: null}, {x: 0.027415144, y: null}, {x: 0.013800425, y: null}, {x: 0.082289803, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040816327, y: null}, {x: 0.015576324, y: null}, {x: 0.0, y: null}, {x: 0.128947368, y: null}, {x: 0.188679245, y: null}, {x: 0.28708134, y: null}, {x: 0.030237581, y: null}, {x: 0.120567376, y: null}, {x: 0.152027027, y: null}, {x: 0.083435583, y: null}, {x: 0.347107438, y: null}, {x: 0.192622951, y: null}, {x: 0.147386461, y: null}, {x: 0.128099174, y: 95.803564}, {x: 0.01863354, y: null}, {x: 0.058894231, y: 1904.333217}, {x: 0.231638418, y: null}, {x: 0.212250712, y: null}, {x: 0.097196262, y: 33.812967}, {x: 0.105263158, y: null}, {x: 0.104316547, y: null}, {x: 0.03988604, y: null}, {x: 0.186246418, y: 13.403297}, {x: 0.196940727, y: null}, {x: 0.159192825, y: null}, {x: 0.045553145, y: null}, {x: 0.241473397, y: null}, {x: 0.040540541, y: null}, {x: 0.083333333, y: null}, {x: 0.0, y: null}, {x: 0.097457627, y: null}, {x: 0.204678363, y: null}, {x: 0.135802469, y: null}, {x: 0.027726433, y: null}, {x: 0.0, y: null}, {x: 0.065764023, y: null}, {x: 0.227876106, y: null}, {x: 0.221719457, y: null}, {x: 0.096428571, y: null}, {x: 0.013071895, y: 29.512963}, {x: 0.309692671, y: null}, {x: 0.22979798, y: null}, {x: 0.088607595, y: null}, {x: 0.040229885, y: null}, {x: 0.11976631, y: null}, {x: 0.186813187, y: null}, {x: 0.403669725, y: null}, {x: 0.100719425, y: null}, {x: 0.213793103, y: null}, {x: 0.253144654, y: null}, {x: 0.157389635, y: null}, {x: 0.37755102, y: null}, {x: 0.1, y: null}, {x: 0.210648148, y: null}, {x: 0.22923588, y: null}, {x: 0.0, y: null}, {x: 0.012531328, y: null}, {x: 0.0848, y: null}, {x: 0.089552239, y: null}, {x: 0.085850556, y: null}, {x: 0.103529412, y: null}, {x: 0.102824859, y: null}, {x: 0.0, y: null}, {x: 0.092913386, y: null}, {x: 0.043103448, y: null}, {x: 0.053921569, y: null}, {x: 0.053191489, y: null}, {x: 0.154929578, y: 292.744127}, {x: 0.122651934, y: 194.570504}, {x: 0.05786802, y: 443.440785}, {x: 0.046641791, y: null}, {x: 0.0, y: null}, {x: 0.054373522, y: null}, {x: 0.112798265, y: null}, {x: 0.064606742, y: null}, {x: 0.016627078, y: null}, {x: 0.016091954, y: null}, {x: 0.14739229, y: null}, {x: 0.0, y: null}, {x: 0.004728132, y: null}, {x: 0.103117506, y: null}, {x: 0.067969414, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012300123, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.102362205, y: null}, {x: 0.0, y: null}, {x: 0.02907916, y: null}, {x: 0.0, y: null}, {x: 0.061173533, y: null}, {x: 0.03131524, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039827772, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.139664805, y: null}, {x: 0.076487252, y: null}, {x: 0.024679171, y: null}, {x: 0.017191977, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043814433, y: null}, {x: 0.164242943, y: null}, {x: 0.032490975, y: null}, {x: 0.042414356, y: null}, {x: 0.102244389, y: null}, {x: 0.0, y: null}, {x: 0.017751479, y: null}, {x: 0.145320197, y: null}, {x: 0.061425061, y: null}, {x: 0.050632911, y: null}, {x: 0.0, y: 0.12512}, {x: 0.058394161, y: null}, {x: 0.249283668, y: null}, {x: 0.007936508, y: 5.77926}, {x: 0.030651341, y: null}, {x: 0.048387097, y: null}, {x: 0.100649351, y: null}, {x: 0.161616162, y: null}, {x: 0.114854518, y: null}, {x: 0.144787645, y: null}, {x: 0.177156177, y: null}, {x: 0.368421053, y: null}, {x: 0.0, y: null}, {x: 0.131715771, y: 734.949067}, {x: 0.371937639, y: null}, {x: 0.145631068, y: null}, {x: 0.212707182, y: null}, {x: 0.337209302, y: null}, {x: 0.288416076, y: null}, {x: 0.311111111, y: null}, {x: 0.148, y: null}, {x: 0.080882353, y: null}, {x: 0.058823529, y: null}, {x: 0.026159334, y: null}, {x: 0.0, y: null}, {x: 0.120665742, y: null}, {x: 0.294117647, y: null}, {x: 0.074404762, y: null}, {x: 0.0, y: null}, {x: 0.090707965, y: null}, {x: 0.455555556, y: 11.58294}, {x: 0.226821192, y: null}, {x: 0.123595506, y: 71.329358}, {x: 0.008196721, y: null}, {x: 0.267898383, y: null}, {x: 0.044334975, y: null}, {x: 0.08, y: null}, {x: 0.060240964, y: null}, {x: 0.014423077, y: null}, {x: 0.133333333, y: null}, {x: 0.009208103, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.027027027, y: null}, {x: 0.026258206, y: null}, {x: 0.109028961, y: null}, {x: 0.019642857, y: null}, {x: 0.192810458, y: null}, {x: 0.05974026, y: null}, {x: 0.170068027, y: 148.959479}, {x: 0.306779661, y: null}, {x: 0.035460993, y: null}, {x: 0.204481793, y: null}, {x: 0.052730697, y: null}, {x: 0.018329939, y: null}, {x: 0.198275862, y: null}, {x: 0.158, y: null}, {x: 0.013806706, y: null}, {x: 0.068131868, y: null}, {x: 0.046218487, y: null}, {x: 0.430084746, y: null}, {x: 0.128888889, y: null}, {x: 0.088737201, y: null}, {x: 0.271367521, y: null}, {x: 0.236768802, y: 291.200847}, {x: 0.063366337, y: null}, {x: 0.159857904, y: null}, {x: 0.155778895, y: null}, {x: 0.226832642, y: 123.559491}, {x: 0.078740157, y: null}, {x: 0.387533875, y: 253.998766}, {x: 0.084858569, y: 25.889026}, {x: 0.18556701, y: null}, {x: 0.067961165, y: 32.36738}, {x: 0.025695931, y: 54.925090000000004}, {x: 0.257668712, y: null}, {x: 0.09221902, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.062740077, y: null}, {x: 0.101960784, y: null}, {x: 0.019067797, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02970297, y: null}, {x: 0.058823529, y: null}, {x: 0.103686636, y: null}, {x: 0.009535161, y: null}, {x: 0.0, y: null}, {x: 0.099455041, y: null}, {x: 0.038369305, y: null}, {x: 0.0, y: null}, {x: 0.043956044, y: null}, {x: 0.021615472, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039624609, y: null}, {x: 0.0, y: 40.416186}, {x: 0.009328358, y: null}, {x: 0.0, y: null}, {x: 0.036144578, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019851117, y: null}, {x: 0.174418605, y: null}, {x: 0.010309278, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.013157895, y: null}, {x: 0.0, y: null}, {x: 0.002805049, y: null}, {x: 0.0, y: null}, {x: 0.02259887, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.144021739, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.159793814, y: null}, {x: 0.073412698, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.119533528, y: null}, {x: 0.037783375, y: null}, {x: 0.0, y: null}, {x: 0.033045977, y: null}, {x: 0.0, y: null}, {x: 0.026923077, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 1.80788}, {x: 0.031823745, y: null}, {x: 0.014285714, y: null}, {x: 0.0, y: null}, {x: 0.01650165, y: null}, {x: 0.0, y: null}, {x: 0.113402062, y: null}, {x: 0.080178174, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.175496689, y: null}, {x: 0.287895311, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059952038, y: 1.335464}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.03180212, y: null}, {x: 0.092178771, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034090909, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009210526, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033834586, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.072}, {x: 0.013307985, y: null}, {x: 0.0, y: null}, {x: 0.014925373, y: null}, {x: 0.053221289, y: null}, {x: 0.0, y: null}, {x: 0.036474164, y: null}, {x: 0.046943231, y: null}, {x: 0.02907489, y: null}, {x: 0.0, y: null}, {x: 0.153465347, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.271186441, y: null}, {x: 0.395348837, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.298219585, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011056511, y: null}, {x: 0.043568465, y: null}, {x: 0.073083779, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.044736842, y: null}, {x: 0.110070258, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.345102506, y: null}, {x: 0.040636042, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.098654709, y: null}, {x: 0.08361204, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.174556213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059701493, y: null}, {x: 0.274011299, y: null}, {x: 0.237435009, y: null}, {x: 0.307692308, y: null}, {x: 0.039215686, y: null}, {x: 0.083850932, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.073474471, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046590909, y: null}, {x: 0.214814815, y: null}, {x: 0.120734908, y: null}, {x: 0.138235294, y: null}, {x: 0.063917526, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: 32.512411}, {x: 0.168639053, y: null}, {x: 0.340206186, y: null}, {x: 0.308016878, y: null}, {x: 0.077862595, y: null}, {x: 0.051212938, y: null}, {x: 0.161572052, y: null}, {x: 0.213219616, y: null}, {x: 0.333333333, y: null}, {x: 0.456839309, y: null}, {x: 0.498771499, y: null}, {x: 0.25498008, y: null}, {x: 0.180376611, y: null}, {x: 0.148688047, y: null}, {x: 0.232704403, y: null}, {x: 0.078397213, y: null}, {x: 0.220657277, y: null}, {x: 0.0, y: null}, {x: 0.327536232, y: null}, {x: 0.050847458, y: null}, {x: 0.104081633, y: null}, {x: 0.115566038, y: null}, {x: 0.0, y: null}, {x: 0.415857605, y: null}, {x: 0.029279279, y: null}, {x: 0.024299065, y: null}, {x: 0.046070461, y: null}, {x: 0.142023346, y: null}, {x: 0.176043557, y: null}, {x: 0.159914712, y: null}, {x: 0.095723014, y: null}, {x: 0.389140272, y: null}, {x: 0.286858974, y: null}, {x: 0.40066778, y: null}, {x: 0.26973027, y: null}, {x: 0.54351145, y: null}, {x: 0.066478076, y: null}, {x: 0.203324808, y: 144.338492}, {x: 0.548148148, y: null}, {x: 0.242378049, y: null}, {x: 0.24, y: null}, {x: 0.405867971, y: null}, {x: 0.24173028, y: null}, {x: 0.130630631, y: null}, {x: 0.107936508, y: null}, {x: 0.31147541, y: null}, {x: 0.0, y: null}, {x: 0.063732929, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.058659218, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.07244898, y: null}, {x: 0.0, y: null}, {x: 0.012254902, y: null}, {x: 0.049222798, y: null}, {x: 0.21448468, y: null}, {x: 0.064085447, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020378457, y: null}, {x: 0.0, y: null}, {x: 0.143884892, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02739726, y: null}, {x: 0.0, y: null}, {x: 0.050827423, y: null}, {x: 0.020044543, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012793177, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030241935, y: null}, {x: 0.015358362, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009463722, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033846154, y: null}, {x: 0.035233161, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.077272727, y: null}, {x: 0.031578947, y: null}, {x: 0.045177045, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061251664, y: null}, {x: 0.041666667, y: null}, {x: 0.097201767, y: null}, {x: 0.088669951, y: null}, {x: 0.156316917, y: null}, {x: 0.016556291, y: null}, {x: 0.120111732, y: null}, {x: 0.021806854, y: null}, {x: 0.292479109, y: null}, {x: 0.148648649, y: null}, {x: 0.125454546, y: null}, {x: 0.0, y: null}, {x: 0.129411765, y: null}, {x: 0.011450382, y: null}, {x: 0.0, y: null}, {x: 0.020632737, y: null}, {x: 0.062374245, y: null}, {x: 0.0, y: null}, {x: 0.024608501, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.06779661, y: null}, {x: 0.056798623, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: null}, {x: 0.01547619, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.05794702, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02905569, y: null}, {x: 0.042416452, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02994012, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030188679, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.191964286, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050675676, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025405787, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.093959732, y: null}, {x: 0.097560976, y: null}, {x: 0.111380145, y: null}, {x: 0.051437216, y: null}, {x: 0.0, y: null}, {x: 0.10940919, y: null}, {x: 0.0, y: null}, {x: 0.134790528, y: null}, {x: 0.07173913, y: null}, {x: 0.17679558, y: null}, {x: 0.04551201, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01980198, y: null}, {x: 0.0, y: null}, {x: 0.084168337, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015911873, y: null}, {x: 0.0, y: null}, {x: 0.0215311, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052083333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.89}, {x: 0.0, y: null}, {x: 0.05372617, y: null}, {x: 0.041728763, y: null}, {x: 0.0, y: 0.18}, {x: 0.010158014, y: null}, {x: 0.00872818, y: 0.276}, {x: 0.016997167, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057142857, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045133992, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.03030303, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.393442623, y: 176.54059600000002}, {x: 0.313210849, y: null}, {x: 0.116154873, y: null}, {x: 0.157360406, y: null}, {x: 0.050802139, y: null}, {x: 0.314855876, y: null}, {x: 0.424802111, y: null}, {x: 0.183098592, y: null}, {x: 0.418367347, y: null}, {x: 0.422619048, y: null}, {x: 0.258205689, y: null}, {x: 0.413294798, y: null}, {x: 0.294478528, y: null}, {x: 0.405353729, y: null}, {x: 0.200371058, y: null}, {x: 0.574870912, y: null}, {x: 0.405759162, y: null}, {x: 0.213618158, y: null}, {x: 0.379248658, y: null}, {x: 0.479041916, y: null}, {x: 0.071782178, y: null}, {x: 0.057654076, y: null}, {x: 0.14978903, y: null}, {x: 0.0, y: null}, {x: 0.541052632, y: null}, {x: 0.607709751, y: null}, {x: 0.45026178, y: 6.126247}, {x: 0.252115059, y: null}, {x: 0.497360085, y: null}, {x: 0.120274914, y: null}, {x: 0.521052632, y: null}, {x: 0.500703235, y: null}, {x: 0.526734926, y: null}, {x: 0.18579235, y: null}, {x: 0.296482412, y: null}, {x: 0.357045144, y: null}, {x: 0.080701754, y: null}, {x: 0.212454213, y: null}, {x: 0.069637883, y: null}, {x: 0.317391304, y: null}, {x: 0.255681818, y: null}, {x: 0.154074074, y: null}, {x: 0.0, y: null}, {x: 0.285053929, y: null}, {x: 0.089403974, y: 38.4927}, {x: 0.323453608, y: null}, {x: 0.505555556, y: null}, {x: 0.41509434, y: null}, {x: 0.034696406, y: null}, {x: 0.368852459, y: null}, {x: 0.419161677, y: null}, {x: 0.261029412, y: null}, {x: 0.027075812, y: null}, {x: 0.225531915, y: null}, {x: 0.158995816, y: null}, {x: 0.021505376, y: null}, {x: 0.043478261, y: null}, {x: 0.0, y: null}, {x: 0.04505814, y: null}, {x: 0.031746032, y: null}, {x: 0.0, y: null}, {x: 0.030405405, y: null}, {x: 0.124444444, y: null}, {x: 0.013513514, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.196261682, y: null}, {x: 0.096267191, y: null}, {x: 0.0, y: null}, {x: 0.375930521, y: null}, {x: 0.067209776, y: null}, {x: 0.104417671, y: null}, {x: 0.131294964, y: null}, {x: 0.19851577, y: null}, {x: 0.001146789, y: null}, {x: 0.0, y: null}, {x: 0.037735849, y: null}, {x: 0.007352941, y: null}, {x: 0.021881838, y: null}, {x: 0.018126888, y: null}, {x: 0.132743363, y: null}, {x: 0.140625, y: null}, {x: 0.0, y: null}, {x: 0.057142857, y: null}, {x: 0.01426025, y: null}, {x: 0.0, y: null}, {x: 0.014440433, y: null}, {x: 0.0, y: null}, {x: 0.067857143, y: null}, {x: 0.024203822, y: null}, {x: 0.128787879, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095923261, y: null}, {x: 0.051792829, y: null}, {x: 0.036649215, y: 57.7297}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.068877551, y: null}, {x: 0.0, y: null}, {x: 0.090517241, y: null}, {x: 0.0, y: null}, {x: 0.025, y: null}, {x: 0.018281536, y: null}, {x: 0.041564792, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010752688, y: null}, {x: 0.024793388, y: null}, {x: 0.035714286, y: null}, {x: 0.0, y: null}, {x: 0.025536261, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.049865229, y: null}, {x: 0.076458753, y: null}, {x: 0.0, y: null}, {x: 0.010028653, y: null}, {x: 0.028358209, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.068571429, y: null}, {x: 0.0, y: null}, {x: 0.040966387, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.070921986, y: null}, {x: 0.19005102, y: null}, {x: 0.017797553, y: null}, {x: 0.031088083, y: null}, {x: 0.13452381, y: null}, {x: 0.102848101, y: 26.852272}, {x: 0.179584121, y: 17.432869}, {x: 0.0, y: null}, {x: 0.068759342, y: null}, {x: 0.07135362, y: 2.114101}, {x: 0.041050903, y: null}, {x: 0.03030303, y: 27.576203}, {x: 0.0, y: null}, {x: 0.013227513, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02698145, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022222222, y: null}, {x: 0.080357143, y: null}, {x: 0.029328288, y: 9.574524}, {x: 0.029020556, y: null}, {x: 0.092996556, y: null}, {x: 0.025984252, y: 17.33541}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.060263653, y: null}, {x: 0.041407867, y: null}, {x: 0.02685624, y: 19.605847}, {x: 0.0, y: null}, {x: 0.0, y: 0.363247}, {x: 0.0, y: null}, {x: 0.0, y: 51.7282}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019886364, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035714286, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029216467, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.092417062, y: null}, {x: 0.0, y: null}, {x: 0.029100529, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02238806, y: null}, {x: 0.0, y: null}, {x: 0.034862385, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005813953, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043715847, y: null}, {x: 0.0, y: null}, {x: 0.061349693, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.027855153, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010373444, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.00166113, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004914005, y: null}, {x: 0.015177066, y: null}, {x: 0.00486618, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.751364}, {x: 0.0, y: null}, {x: 0.044280443, y: null}, {x: 0.0, y: null}, {x: 0.020979021, y: null}, {x: 0.0, y: 0.6538919999999999}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01174743, y: null}, {x: 0.051020408, y: null}, {x: 0.056179775, y: null}, {x: 0.037837838, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034050179, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018987342, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033854167, y: null}, {x: 0.082191781, y: null}, {x: 0.056689342, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.056737589, y: null}, {x: 0.132183908, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043478261, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04375, y: null}, {x: 0.068597561, y: null}, {x: 0.038636364, y: null}, {x: 0.028257457, y: null}, {x: 0.029275809, y: null}, {x: 0.194936709, y: 19.621000000000002}, {x: 0.152487962, y: null}, {x: 0.078125, y: null}, {x: 0.0, y: null}, {x: 0.097759674, y: null}, {x: 0.0, y: null}, {x: 0.045584046, y: null}, {x: 0.072056239, y: null}, {x: 0.034068136, y: null}, {x: 0.196946565, y: null}, {x: 0.091445428, y: null}, {x: 0.12, y: null}, {x: 0.194274029, y: null}, {x: 0.387096774, y: null}, {x: 0.0, y: null}, {x: 0.033138402, y: null}, {x: 0.234899329, y: null}, {x: 0.378980892, y: null}, {x: 0.138121547, y: null}, {x: 0.0, y: null}, {x: 0.461038961, y: null}, {x: 0.365296804, y: null}, {x: 0.3866171, y: null}, {x: 0.397333333, y: null}, {x: 0.372657111, y: 37.631}, {x: 0.383193277, y: null}, {x: 0.434782609, y: null}, {x: 0.371034483, y: null}, {x: 0.445409429, y: null}, {x: 0.146907217, y: null}, {x: 0.393715342, y: 739.527068}, {x: 0.111904762, y: null}, {x: 0.666666667, y: null}, {x: 0.288537549, y: null}, {x: 0.259668508, y: null}, {x: 0.053380783, y: null}, {x: 0.340694006, y: null}, {x: 0.288590604, y: null}, {x: 0.145390071, y: null}, {x: 0.0, y: null}, {x: 0.122370937, y: null}, {x: 0.384863124, y: null}, {x: 0.04735376, y: null}, {x: 0.218818381, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065843621, y: null}, {x: 0.056451613, y: null}, {x: 0.031311155, y: null}, {x: 0.0, y: null}, {x: 0.216572505, y: null}, {x: 0.019354839, y: null}, {x: 0.140661939, y: null}, {x: 0.084337349, y: null}, {x: 0.0, y: null}, {x: 0.024390244, y: null}, {x: 0.0, y: null}, {x: 0.008517888, y: null}, {x: 0.072463768, y: null}, {x: 0.05015674, y: null}, {x: 0.040816327, y: null}, {x: 0.0, y: null}, {x: 0.019571295, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.072897196, y: null}, {x: 0.019354839, y: null}, {x: 0.063218391, y: null}, {x: 0.088495575, y: null}, {x: 0.02393617, y: null}, {x: 0.161691542, y: null}, {x: 0.228813559, y: null}, {x: 0.0, y: null}, {x: 0.070680628, y: null}, {x: 0.165441177, y: null}, {x: 0.077647059, y: null}, {x: 0.13986014, y: null}, {x: 0.422360248, y: null}, {x: 0.206422018, y: null}, {x: 0.105571848, y: 27.040660999999997}, {x: 0.188592456, y: 81.680767}, {x: 0.413510747, y: null}, {x: 0.20046083, y: null}, {x: 0.428571429, y: null}, {x: 0.203045685, y: 198.331469}, {x: 0.29924812, y: null}, {x: 0.28, y: null}, {x: 0.186813187, y: null}, {x: 0.081081081, y: null}, {x: 0.02811245, y: null}, {x: 0.11036036, y: null}, {x: 0.144249513, y: null}, {x: 0.0, y: null}, {x: 0.11409396, y: 7.279}, {x: 0.234939759, y: null}, {x: 0.107594937, y: null}, {x: 0.12716763, y: null}, {x: 0.066907776, y: null}, {x: 0.33037037, y: null}, {x: 0.159217877, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.068527919, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005444646, y: null}, {x: 0.0, y: null}, {x: 0.052631579, y: null}, {x: 0.022260274, y: null}, {x: 0.158024691, y: null}, {x: 0.0, y: null}, {x: 0.036666667, y: null}, {x: 0.030998852, y: null}, {x: 0.0, y: null}, {x: 0.072580645, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020151134, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010416667, y: null}, {x: 0.101851852, y: null}, {x: 0.270114943, y: null}, {x: 0.21669627, y: null}, {x: 0.135514019, y: null}, {x: 0.108555658, y: null}, {x: 0.0, y: null}, {x: 0.04107425, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024619841, y: null}, {x: 0.0, y: null}, {x: 0.116357504, y: null}, {x: 0.0, y: null}, {x: 0.026064292, y: null}, {x: 0.0, y: 1.005625}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.206597222, y: null}, {x: 0.016806723, y: 21.590654999999998}, {x: 0.147426982, y: 2.36377}, {x: 0.066964286, y: null}, {x: 0.07518797, y: 69.454067}, {x: 0.096774194, y: null}, {x: 0.084337349, y: null}, {x: 0.0, y: null}, {x: 0.077389985, y: null}, {x: 0.0, y: null}, {x: 0.058103976, y: null}, {x: 0.0, y: null}, {x: 0.029484029, y: null}, {x: 0.037135279, y: 4.023005}, {x: 0.039622642, y: null}, {x: 0.0, y: 15.273601}, {x: 0.0, y: null}, {x: 0.115027829, y: null}, {x: 0.145762712, y: null}, {x: 0.224274406, y: null}, {x: 0.253507014, y: 17.667698}, {x: 0.035816619, y: 130.09780700000002}, {x: 0.034782609, y: null}, {x: 0.020030817, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.08531746, y: null}, {x: 0.0, y: null}, {x: 0.036333609, y: 98.279335}, {x: 0.0, y: 0.465397}, {x: 0.0, y: null}, {x: 0.031141869, y: null}, {x: 0.029166667, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.4325, y: null}, {x: 0.333333333, y: null}, {x: 0.175324675, y: null}, {x: 0.294117647, y: null}, {x: 0.394822007, y: null}, {x: 0.551020408, y: 1.850684}, {x: 0.314049587, y: null}, {x: 0.444210526, y: null}, {x: 0.637288136, y: 211.675397}, {x: 0.362391034, y: null}, {x: 0.043037975, y: null}, {x: 0.225433526, y: null}, {x: 0.055555556, y: null}, {x: 0.0, y: null}, {x: 0.326424871, y: null}, {x: 0.0, y: 106.444359}, {x: 0.051980198, y: 2.454447}, {x: 0.0, y: null}, {x: 0.616045845, y: null}, {x: 0.0, y: null}, {x: 0.317021277, y: null}, {x: 0.0, y: null}, {x: 0.080513419, y: null}, {x: 0.0, y: null}, {x: 0.068877551, y: null}, {x: 0.025, y: null}, {x: 0.027554535, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 617.717181}, {x: 0.152697095, y: 0.620762}, {x: 0.104095563, y: null}, {x: 0.044502618, y: null}, {x: 0.136, y: null}, {x: 0.147663551, y: null}, {x: 0.113128492, y: null}, {x: 0.0, y: null}, {x: 0.092964824, y: null}, {x: 0.104347826, y: null}, {x: 0.048494983, y: null}, {x: 0.0, y: null}, {x: 0.011483254, y: null}, {x: 0.0, y: null}, {x: 0.109808102, y: null}, {x: 0.054580897, y: null}, {x: 0.056390977, y: null}, {x: 0.136729223, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.06405694, y: null}, {x: 0.0, y: null}, {x: 0.041269841, y: null}, {x: 0.065830721, y: null}, {x: 0.028571429, y: null}, {x: 0.098360656, y: null}, {x: 0.0, y: null}, {x: 0.169745958, y: null}, {x: 0.05106383, y: null}, {x: 0.01621074, y: null}, {x: 0.0, y: null}, {x: 0.0975, y: null}, {x: 0.0, y: null}, {x: 0.027687296, y: null}, {x: 0.0, y: null}, {x: 0.079457364, y: null}, {x: 0.0, y: null}, {x: 0.058503401, y: null}, {x: 0.118243243, y: null}, {x: 0.201298701, y: null}, {x: 0.011655012, y: null}, {x: 0.049618321, y: null}, {x: 0.060457516, y: null}, {x: 0.017958412, y: null}, {x: 0.0, y: null}, {x: 0.009198423, y: null}, {x: 0.0, y: null}, {x: 0.095744681, y: null}, {x: 0.092105263, y: null}, {x: 0.008323424, y: null}, {x: 0.009485095, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007207207, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.047277937, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026986507, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.086350975, y: null}, {x: 0.0, y: null}, {x: 0.011695906, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041884817, y: null}, {x: 0.081836327, y: null}, {x: 0.0, y: null}, {x: 0.043363995, y: null}, {x: 0.088039867, y: 385.927118}, {x: 0.0, y: 2.816}, {x: 0.0, y: null}, {x: 0.014880952, y: null}, {x: 0.020737327, y: null}, {x: 0.0, y: null}, {x: 0.028037383, y: null}, {x: 0.007692308, y: null}, {x: 0.008695652, y: null}, {x: 0.007374631, y: null}, {x: 0.063694268, y: null}, {x: 0.0, y: null}, {x: 0.020089286, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046328671, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025562372, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010596026, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018739353, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.031190926, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009208103, y: null}, {x: 0.048582996, y: null}, {x: 0.084291188, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028753994, y: null}, {x: 0.0, y: null}, {x: 0.014371257, y: null}, {x: 0.138592751, y: null}, {x: 0.04587156, y: null}, {x: 0.0, y: null}, {x: 0.030888031, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036423841, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052313883, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007326007, y: null}, {x: 0.089866157, y: null}, {x: 0.057971014, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041860465, y: null}, {x: 0.105263158, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026109661, y: null}, {x: 0.02189781, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032225579, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.45}, {x: 0.005896226, y: null}, {x: 0.071618037, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041499331, y: null}, {x: 0.016393443, y: null}, {x: 0.093706294, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039840637, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.108739837, y: null}, {x: 0.0, y: null}, {x: 0.048635824, y: null}, {x: 0.028391167, y: null}, {x: 0.0, y: null}, {x: 0.046312178, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045454545, y: null}, {x: 0.0, y: null}, {x: 0.023584906, y: 5e-05}, {x: 0.036328872, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017201835, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065306122, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038596491, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022075055, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02173913, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.283557047, y: null}, {x: 0.181008902, y: null}, {x: 0.066528067, y: null}, {x: 0.164930556, y: null}, {x: 0.168814433, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2479.88946}, {x: 0.098404255, y: null}, {x: 0.037931034, y: null}, {x: 0.040723982, y: null}, {x: 0.130091984, y: null}, {x: 0.100574713, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061403509, y: null}, {x: 0.032258065, y: 482.90002}, {x: 0.226337449, y: null}, {x: 0.384615385, y: 67.833}, {x: 0.033587786, y: null}, {x: 0.009708738, y: null}, {x: 0.047453704, y: null}, {x: 0.154175589, y: null}, {x: 0.076142132, y: null}, {x: 0.015513126, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.091286307, y: null}, {x: 0.052469136, y: null}, {x: 0.0, y: 55.29}, {x: 0.221350079, y: null}, {x: 0.09929078, y: null}, {x: 0.12, y: null}, {x: 0.025449102, y: null}, {x: 0.141426784, y: null}, {x: 0.124620061, y: null}, {x: 0.186440678, y: null}, {x: 0.152866242, y: null}, {x: 0.080392157, y: null}, {x: 0.096774194, y: null}, {x: 0.108, y: null}, {x: 0.097027972, y: null}, {x: 0.0, y: null}, {x: 0.177062374, y: null}, {x: 0.094302554, y: null}, {x: 0.097069597, y: null}, {x: 0.083333333, y: null}, {x: 0.02739726, y: null}, {x: 0.0, y: null}, {x: 0.08852459, y: null}, {x: 0.127937337, y: null}, {x: 0.089595376, y: null}, {x: 0.121212121, y: null}, {x: 0.235602094, y: null}, {x: 0.060085837, y: null}, {x: 0.252045827, y: null}, {x: 0.473229706, y: null}, {x: 0.166904422, y: null}, {x: 0.113333333, y: null}, {x: 0.209109731, y: null}, {x: 0.082474227, y: null}, {x: 0.076335878, y: null}, {x: 0.125, y: null}, {x: 0.071343639, y: null}, {x: 0.196202532, y: null}, {x: 0.152866242, y: null}, {x: 0.07204611, y: null}, {x: 0.152597403, y: null}, {x: 0.070826307, y: null}, {x: 0.062034739, y: null}, {x: 0.09375, y: 199.24}, {x: 0.144537815, y: null}, {x: 0.036697248, y: 654.51638}, {x: 0.0, y: null}, {x: 0.056626506, y: null}, {x: 0.02090209, y: null}, {x: 0.138576779, y: null}, {x: 0.0, y: null}, {x: 0.08681672, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054151625, y: null}, {x: 0.073394495, y: null}, {x: 0.0, y: null}, {x: 0.042553191, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039045553, y: null}, {x: 0.0, y: null}, {x: 0.020604396, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030769231, y: null}, {x: 0.01912261, y: null}, {x: 0.142857143, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045908184, y: null}, {x: 0.0, y: null}, {x: 0.009950249, y: null}, {x: 0.021321962, y: null}, {x: 0.037698413, y: null}, {x: 0.0, y: null}, {x: 0.01302682, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023782559, y: null}, {x: 0.028497409, y: null}, {x: 0.014851485, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02303263, y: null}, {x: 0.032335329, y: null}, {x: 0.024305556, y: null}, {x: 0.053030303, y: null}, {x: 0.026845638, y: null}, {x: 0.013774105, y: null}, {x: 0.024875622, y: null}, {x: 0.0, y: null}, {x: 0.016363636, y: null}, {x: 0.0, y: null}, {x: 0.04445919, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055194805, y: null}, {x: 0.0, y: null}, {x: 0.051204819, y: null}, {x: 0.0, y: null}, {x: 0.025280899, y: null}, {x: 0.016081871, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034574468, y: 396.4304}, {x: 0.058035714, y: null}, {x: 0.107189543, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023776224, y: null}, {x: 0.01773399, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.070205479, y: null}, {x: 0.073226545, y: null}, {x: 0.032520325, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0110957, y: null}, {x: 0.0, y: null}, {x: 0.031591738, y: null}, {x: 0.105263158, y: null}, {x: 0.031165312, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02851711, y: null}, {x: 0.02154195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02640264, y: null}, {x: 0.010526316, y: null}, {x: 0.0, y: null}, {x: 0.016472868, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017951426, y: null}, {x: 0.061417323, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051239669, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046483909, y: null}, {x: 0.054464286, y: null}, {x: 0.172032193, y: null}, {x: 0.0, y: null}, {x: 0.085843373, y: null}, {x: 0.045346062, y: null}, {x: 0.06779661, y: null}, {x: 0.215025907, y: null}, {x: 0.0, y: null}, {x: 0.07106599, y: null}, {x: 0.110228401, y: null}, {x: 0.178913738, y: null}, {x: 0.173370319, y: null}, {x: 0.0, y: null}, {x: 0.044267877, y: null}, {x: 0.045555556, y: null}, {x: 0.236588721, y: null}, {x: 0.0, y: null}, {x: 0.012974052, y: null}, {x: 0.107773852, y: null}, {x: 0.0, y: null}, {x: 0.150621118, y: null}, {x: 0.168122271, y: null}, {x: 0.064814815, y: null}, {x: 0.055624227, y: null}, {x: 0.063786008, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.127576055, y: null}, {x: 0.075647668, y: null}, {x: 0.077596996, y: null}, {x: 0.0, y: null}, {x: 0.076358297, y: null}, {x: 0.034343434, y: null}, {x: 0.057057057, y: null}, {x: 0.144927536, y: null}, {x: 0.0, y: null}, {x: 0.033762058, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017507724, y: null}, {x: 0.0, y: null}, {x: 0.070707071, y: null}, {x: 0.018404908, y: null}, {x: 0.003333333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040449438, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029411765, y: null}, {x: 0.0, y: null}, {x: 0.024128686, y: null}, {x: 0.0, y: null}, {x: 0.125748503, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020289855, y: null}, {x: 0.011627907, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040449438, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02006689, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066576087, y: null}, {x: 0.0, y: null}, {x: 0.037313433, y: null}, {x: 0.0, y: null}, {x: 0.041778976, y: null}, {x: 0.0, y: null}, {x: 0.026359143, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011350738, y: null}, {x: 0.0, y: null}, {x: 0.042253521, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040629096, y: null}, {x: 0.0, y: null}, {x: 0.021818182, y: null}, {x: 0.0, y: null}, {x: 0.040451552, y: null}, {x: 0.0, y: null}, {x: 0.039235412, y: null}, {x: 0.0, y: null}, {x: 0.031847134, y: null}, {x: 0.07217695, y: null}, {x: 0.046218487, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033444816, y: null}, {x: 0.0, y: null}, {x: 0.024523161, y: null}, {x: 0.0, y: null}, {x: 0.017348203, y: null}, {x: 0.022749753, y: null}, {x: 0.032432432, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0456621, y: null}, {x: 0.091743119, y: null}, {x: 0.0, y: null}, {x: 0.117546848, y: null}, {x: 0.106854839, y: null}, {x: 0.080445545, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043052838, y: null}, {x: 0.0, y: null}, {x: 0.057522124, y: null}, {x: 0.034482759, y: null}, {x: 0.061983471, y: null}, {x: 0.177014531, y: null}, {x: 0.068846816, y: null}, {x: 0.050824176, y: null}, {x: 0.086007702, y: null}, {x: 0.0, y: null}, {x: 0.022807018, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032653061, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046476762, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052447552, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089403974, y: null}, {x: 0.0, y: null}, {x: 0.081300813, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04954955, y: null}, {x: 0.042168675, y: null}, {x: 0.02266289, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.016528926, y: null}, {x: 0.037878788, y: null}, {x: 0.0, y: null}, {x: 0.036655212, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089576547, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.073684211, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.069767442, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.092819615, y: null}, {x: 0.0, y: null}, {x: 0.102902375, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046218487, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026, y: null}, {x: 0.0, y: null}, {x: 0.126394052, y: null}, {x: 0.035514019, y: null}, {x: 0.0, y: null}, {x: 0.021943574, y: null}, {x: 0.268571429, y: null}, {x: 0.150980392, y: null}, {x: 0.062962963, y: null}, {x: 0.0, y: null}, {x: 0.027240773, y: null}, {x: 0.0, y: null}, {x: 0.041753653, y: null}, {x: 0.010954617, y: null}, {x: 0.0, y: null}, {x: 0.205250597, y: null}, {x: 0.041666667, y: null}, {x: 0.0, y: null}, {x: 0.045375218, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017886179, y: null}, {x: 0.016042781, y: null}, {x: 0.0, y: null}, {x: 0.015765766, y: null}, {x: 0.0, y: null}, {x: 0.012131716, y: null}, {x: 0.070866142, y: null}, {x: 0.0, y: null}, {x: 0.107186358, y: null}, {x: 0.0, y: null}, {x: 0.086378738, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.129120879, y: null}, {x: 0.0, y: null}, {x: 0.013333333, y: null}, {x: 0.066225166, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017716535, y: null}, {x: 0.024615385, y: null}, {x: 0.125490196, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.078703704, y: null}, {x: 0.0, y: null}, {x: 0.030092593, y: null}, {x: 0.023593466, y: null}, {x: 0.0, y: null}, {x: 0.05952381, y: null}, {x: 0.144262295, y: null}, {x: 0.009153318, y: null}, {x: 0.253333333, y: null}, {x: 0.021479714, y: null}, {x: 0.0, y: 68.97}, {x: 0.0, y: null}, {x: 0.06244087, y: null}, {x: 0.041980624, y: null}, {x: 0.141356256, y: null}, {x: 0.261538462, y: null}, {x: 0.0, y: null}, {x: 0.185654008, y: null}, {x: 0.0, y: null}, {x: 0.054054054, y: null}, {x: 0.034, y: null}, {x: 0.0, y: null}, {x: 0.289198606, y: null}, {x: 0.097402597, y: null}, {x: 0.103658537, y: null}, {x: 0.048442907, y: null}, {x: 0.279835391, y: null}, {x: 0.1, y: null}, {x: 0.038888889, y: null}, {x: 0.095823096, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.107526882, y: null}, {x: 0.207627119, y: null}, {x: 0.096618357, y: null}, {x: 0.288359788, y: null}, {x: 0.120262391, y: null}, {x: 0.0, y: null}, {x: 0.169102297, y: null}, {x: 0.567708333, y: null}, {x: 0.107623318, y: null}, {x: 0.119533528, y: null}, {x: 0.339250493, y: null}, {x: 0.14973262, y: null}, {x: 0.199416342, y: null}, {x: 0.108391608, y: null}, {x: 0.242307692, y: null}, {x: 0.234722222, y: null}, {x: 0.134490239, y: null}, {x: 0.302752294, y: null}, {x: 0.326446281, y: null}, {x: 0.209265176, y: null}, {x: 0.131355932, y: null}, {x: 0.145557656, y: null}, {x: 0.056603774, y: null}, {x: 0.35971223, y: null}, {x: 0.125874126, y: null}, {x: 0.206997085, y: null}, {x: 0.329949239, y: null}, {x: 0.0, y: null}, {x: 0.089655172, y: null}, {x: 0.084536082, y: null}, {x: 0.053398058, y: null}, {x: 0.0, y: null}, {x: 0.10989011, y: null}, {x: 0.0, y: null}, {x: 0.128113879, y: null}, {x: 0.281368821, y: null}, {x: 0.206543967, y: null}, {x: 0.143872114, y: null}, {x: 0.338666667, y: null}, {x: 0.041158537, y: null}, {x: 0.219435737, y: null}, {x: 0.533333333, y: null}, {x: 0.415708812, y: null}, {x: 0.33481153, y: null}, {x: 0.082733813, y: null}, {x: 0.082758621, y: null}, {x: 0.043973941, y: null}, {x: 0.168301887, y: null}, {x: 0.061290323, y: null}, {x: 0.059278351, y: null}, {x: 0.13898917, y: null}, {x: 0.0, y: null}, {x: 0.241883117, y: null}, {x: 0.0, y: null}, {x: 0.2375, y: null}, {x: 0.188010899, y: null}, {x: 0.14004914, y: null}, {x: 0.205128205, y: null}, {x: 0.144249513, y: null}, {x: 0.174285714, y: null}, {x: 0.233031674, y: null}, {x: 0.565995526, y: null}, {x: 0.235588972, y: null}, {x: 0.265346535, y: null}, {x: 0.174447174, y: null}, {x: 0.225913621, y: null}, {x: 0.033557047, y: null}, {x: 0.127586207, y: null}, {x: 0.190476191, y: null}, {x: 0.177902622, y: null}, {x: 0.281437126, y: null}, {x: 0.114722753, y: null}, {x: 0.00805153, y: null}, {x: 0.407079646, y: null}, {x: 0.022222222, y: null}, {x: 0.0, y: null}, {x: 0.172222222, y: null}, {x: 0.292134832, y: null}, {x: 0.0, y: null}, {x: 0.297235023, y: null}, {x: 0.044585987, y: null}, {x: 0.227083333, y: null}, {x: 0.064467766, y: null}, {x: 0.0, y: null}, {x: 0.335044929, y: null}, {x: 0.189937107, y: null}, {x: 0.166666667, y: null}, {x: 0.102199224, y: null}, {x: 0.168949772, y: null}, {x: 0.181514477, y: null}, {x: 0.054522924, y: null}, {x: 0.279094828, y: null}, {x: 0.0, y: null}, {x: 0.058479532, y: null}, {x: 0.227891157, y: null}, {x: 0.058585859, y: null}, {x: 0.065810594, y: null}, {x: 0.119587629, y: null}, {x: 0.126470588, y: null}, {x: 0.01399689, y: null}, {x: 0.06744868, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018759019, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042654028, y: null}, {x: 0.0, y: null}, {x: 0.034246575, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046065259, y: null}, {x: 0.063291139, y: null}, {x: 0.070422535, y: null}, {x: 0.206235012, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.091883614, y: null}, {x: 0.0, y: null}, {x: 0.032319392, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.235294118, y: null}, {x: 0.024475524, y: null}, {x: 0.0, y: null}, {x: 0.1, y: null}, {x: 0.06271777, y: null}, {x: 0.11786372, y: null}, {x: 0.0, y: null}, {x: 0.018108652, y: null}, {x: 0.0, y: null}, {x: 0.099576271, y: null}, {x: 0.072115385, y: null}, {x: 0.0, y: null}, {x: 0.092063492, y: null}, {x: 0.0203125, y: null}, {x: 0.0, y: null}, {x: 0.096064815, y: null}, {x: 0.140186916, y: null}, {x: 0.057507987, y: null}, {x: 0.319248826, y: null}, {x: 0.139616056, y: null}, {x: 0.116838488, y: null}, {x: 0.23015873, y: null}, {x: 0.205128205, y: null}, {x: 0.088888889, y: null}, {x: 0.152097902, y: null}, {x: 0.172523962, y: null}, {x: 0.019704434, y: null}, {x: 0.0, y: null}, {x: 0.016203704, y: null}, {x: 0.164300203, y: null}, {x: 0.35483871, y: null}, {x: 0.019047619, y: null}, {x: 0.067385445, y: null}, {x: 0.122147651, y: null}, {x: 0.029374202, y: 2.8}, {x: 0.066066066, y: null}, {x: 0.083160083, y: null}, {x: 0.012987013, y: null}, {x: 0.0, y: null}, {x: 0.118568233, y: null}, {x: 0.119122257, y: null}, {x: 0.001658375, y: null}, {x: 0.01971831, y: null}, {x: 0.060273973, y: null}, {x: 0.013808976, y: null}, {x: 0.030075188, y: null}, {x: 0.268336315, y: null}, {x: 0.075496689, y: null}, {x: 0.0, y: null}, {x: 0.011612903, y: null}, {x: 0.052066116, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.104770017, y: null}, {x: 0.017045455, y: null}, {x: 0.0, y: null}, {x: 1.0, y: null}, {x: 0.0, y: null}, {x: 0.033868093, y: null}, {x: 0.01793722, y: null}, {x: 0.089552239, y: null}, {x: 0.0, y: null}, {x: 0.070818071, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.098880597, y: null}, {x: 0.0, y: null}, {x: 0.17791411, y: null}, {x: 0.123123123, y: null}, {x: 0.085889571, y: null}, {x: 0.04665826, y: null}, {x: 0.074168798, y: null}, {x: 0.090686275, y: null}, {x: 0.050420168, y: null}, {x: 0.067961165, y: null}, {x: 0.0, y: null}, {x: 0.010830325, y: null}, {x: 0.020522388, y: null}, {x: 0.104874446, y: null}, {x: 0.066176471, y: null}, {x: 0.017333333, y: 1.38}, {x: 0.0, y: null}, {x: 0.061269147, y: 3.71}, {x: 0.0, y: null}, {x: 0.061389338, y: null}, {x: 0.03021978, y: null}, {x: 0.022140221, y: null}, {x: 0.0, y: null}, {x: 0.036036036, y: null}, {x: 0.016227181, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.048628429, y: null}, {x: 0.03931848, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.159045726, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.058551618, y: null}, {x: 0.098214286, y: null}, {x: 0.105849582, y: null}, {x: 0.10701107, y: null}, {x: 0.014925373, y: null}, {x: 0.124590164, y: null}, {x: 0.462857143, y: null}, {x: 0.062761506, y: null}, {x: 0.016563147, y: null}, {x: 0.029059829, y: 1.975}, {x: 0.021276596, y: null}, {x: 0.0, y: null}, {x: 0.022788204, y: null}, {x: 0.026578073, y: 45.306}, {x: 0.055319149, y: null}, {x: 0.177747626, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085889571, y: null}, {x: 0.0, y: null}, {x: 0.177446103, y: null}, {x: 0.0, y: null}, {x: 0.150214592, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081850534, y: null}, {x: 0.0, y: null}, {x: 0.030405405, y: null}, {x: 0.07660021, y: null}, {x: 0.0, y: null}, {x: 0.025510204, y: null}, {x: 0.073359073, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055155875, y: null}, {x: 0.181488203, y: null}, {x: 0.010404624, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.149405773, y: 12.033039}, {x: 0.005181347, y: null}, {x: 0.127272727, y: null}, {x: 0.050179211, y: null}, {x: 0.09765625, y: null}, {x: 0.0, y: null}, {x: 0.060869565, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061806656, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095823096, y: null}, {x: 0.015831135, y: null}, {x: 0.035591274, y: null}, {x: 0.0, y: null}, {x: 0.125766871, y: null}, {x: 0.025796662, y: null}, {x: 0.016304348, y: null}, {x: 0.025575448, y: null}, {x: 0.016574586, y: null}, {x: 0.0, y: null}, {x: 0.017605634, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.016835017, y: null}, {x: 0.065217391, y: null}, {x: 0.048913043, y: null}, {x: 0.176211454, y: null}, {x: 0.073015873, y: null}, {x: 0.099236641, y: null}, {x: 0.15727003, y: null}, {x: 0.02739726, y: null}, {x: 0.020881671, y: null}, {x: 0.0, y: null}, {x: 0.068627451, y: null}, {x: 0.108108108, y: null}, {x: 0.051118211, y: null}, {x: 0.0, y: null}, {x: 0.015904573, y: null}, {x: 0.106145251, y: null}, {x: 0.029680365, y: null}, {x: 0.071261682, y: null}, {x: 0.021683673, y: null}, {x: 0.0, y: null}, {x: 0.053511706, y: null}, {x: 0.116483517, y: null}, {x: 0.0, y: null}, {x: 0.041666667, y: null}, {x: 0.0, y: null}, {x: 0.019133938, y: null}, {x: 0.191964286, y: null}, {x: 0.0, y: null}, {x: 0.022088353, y: null}, {x: 0.110552764, y: null}, {x: 0.033898305, y: null}, {x: 0.193415638, y: null}, {x: 0.023809524, y: null}, {x: 0.0, y: null}, {x: 0.009977827, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035532995, y: null}, {x: 0.0, y: null}, {x: 0.032478632, y: null}, {x: 0.0, y: null}, {x: 0.0176, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055610725, y: null}, {x: 0.030144168, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045364892, y: null}, {x: 0.135635019, y: null}, {x: 0.0, y: null}, {x: 0.018808777, y: null}, {x: 0.0, y: null}, {x: 0.047445255, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066596195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019083969, y: null}, {x: 0.040816327, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042016807, y: null}, {x: 0.0, y: null}, {x: 0.017204301, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.021252796, y: null}, {x: 0.03892944, y: null}, {x: 0.0, y: null}, {x: 0.038043478, y: null}, {x: 0.113960114, y: 0.0117}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.181598063, y: null}, {x: 0.0625, y: null}, {x: 0.121666667, y: null}, {x: 0.032608696, y: null}, {x: 0.027600849, y: null}, {x: 0.053380783, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038709677, y: null}, {x: 0.016949153, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.074410163, y: null}, {x: 0.0, y: null}, {x: 0.056666667, y: null}, {x: 0.038265306, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025878004, y: null}, {x: 0.020262217, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015189873, y: null}, {x: 0.025974026, y: null}, {x: 0.043956044, y: null}, {x: 0.031862745, y: null}, {x: 0.011293635, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.056603774, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071969697, y: null}, {x: 0.111111111, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061046512, y: null}, {x: 0.021505376, y: null}, {x: 0.0, y: null}, {x: 0.040235525, y: null}, {x: 0.05631068, y: null}, {x: 0.017932489, y: null}, {x: 0.085343228, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043026706, y: null}, {x: 0.0, y: null}, {x: 0.054279749, y: null}, {x: 0.192949907, y: null}, {x: 0.0, y: null}, {x: 0.135542169, y: null}, {x: 0.048598131, y: null}, {x: 0.018571429, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042654028, y: null}, {x: 0.040066778, y: null}, {x: 0.024324324, y: null}, {x: 0.062982005, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.103752759, y: null}, {x: 0.081845238, y: null}, {x: 0.0, y: null}, {x: 0.104056437, y: null}, {x: 0.201818182, y: null}, {x: 0.243291592, y: null}, {x: 0.01641791, y: null}, {x: 0.017944535, y: null}, {x: 0.030864198, y: null}, {x: 0.05399061, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026086957, y: null}, {x: 0.10310559, y: null}, {x: 0.331125828, y: null}, {x: 0.061583578, y: null}, {x: 0.0, y: null}, {x: 0.027027027, y: null}, {x: 0.035066505, y: null}, {x: 0.086633663, y: null}, {x: 0.023722628, y: null}, {x: 0.022900763, y: null}, {x: 0.0, y: null}, {x: 0.025824964, y: null}, {x: 0.0, y: null}, {x: 0.056818182, y: null}, {x: 0.10567297, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057957682, y: null}, {x: 0.083687943, y: null}, {x: 0.011111111, y: null}, {x: 0.012844037, y: null}, {x: 0.014975042, y: null}, {x: 0.0, y: null}, {x: 0.024024024, y: null}, {x: 0.020454545, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025500911, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.276422764, y: null}, {x: 0.152466368, y: null}, {x: 0.0, y: null}, {x: 0.145958987, y: null}, {x: 0.0, y: null}, {x: 0.059090909, y: null}, {x: 0.076502732, y: null}, {x: 0.056089744, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035532995, y: null}, {x: 0.08852459, y: null}, {x: 0.205702648, y: null}, {x: 0.142642643, y: null}, {x: 0.0, y: null}, {x: 0.020771513, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.161001789, y: null}, {x: 0.031100478, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018617021, y: null}, {x: 0.018292683, y: null}, {x: 0.018789144, y: null}, {x: 0.01312336, y: null}, {x: 0.0, y: null}, {x: 0.051580699, y: null}, {x: 0.0, y: null}, {x: 0.021176471, y: null}, {x: 0.0, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055555556, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032894737, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032537961, y: null}, {x: 0.0, y: null}, {x: 0.009287926, y: null}, {x: 0.093959732, y: null}, {x: 0.082512315, y: null}, {x: 0.037105751, y: null}, {x: 0.120840631, y: null}, {x: 0.0, y: null}, {x: 0.034013605, y: null}, {x: 0.072727273, y: null}, {x: 0.043256997, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.07773386, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.049557522, y: null}, {x: 0.058181818, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041474654, y: null}, {x: 0.020618557, y: null}, {x: 0.0, y: null}, {x: 0.021164021, y: null}, {x: 0.028537455, y: null}, {x: 0.0, y: null}, {x: 0.153164557, y: null}, {x: 0.069767442, y: null}, {x: 0.013133208, y: null}, {x: 0.092631579, y: null}, {x: 0.010309278, y: null}, {x: 0.026392962, y: null}, {x: 0.027950311, y: null}, {x: 0.022988506, y: null}, {x: 0.038095238, y: null}, {x: 0.026200873, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035447761, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040735874, y: null}, {x: 0.046224961, y: null}, {x: 0.0, y: null}, {x: 0.052401747, y: null}, {x: 0.023746702, y: null}, {x: 0.0, y: null}, {x: 0.19126506, y: null}, {x: 0.0, y: null}, {x: 0.135379061, y: null}, {x: 0.203947368, y: null}, {x: 0.028571429, y: null}, {x: 0.198501873, y: null}, {x: 0.052238806, y: null}, {x: 0.065902579, y: null}, {x: 0.099778271, y: null}, {x: 0.019522777, y: null}, {x: 0.276061776, y: null}, {x: 0.452012384, y: null}, {x: 0.480591497, y: null}, {x: 0.325551232, y: null}, {x: 0.177613321, y: null}, {x: 0.243243243, y: null}, {x: 0.156989247, y: null}, {x: 0.149321267, y: null}, {x: 0.03950104, y: null}, {x: 0.440438872, y: null}, {x: 0.0, y: null}, {x: 0.300636943, y: null}, {x: 0.0, y: null}, {x: 0.247552448, y: null}, {x: 0.516778524, y: null}, {x: 0.132764921, y: null}, {x: 0.128484849, y: null}, {x: 0.027227723, y: null}, {x: 0.182149363, y: null}, {x: 0.016620499, y: null}, {x: 0.056338028, y: null}, {x: 0.018018018, y: null}, {x: 0.158227848, y: null}, {x: 0.203791469, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054982818, y: null}, {x: 0.039055404, y: null}, {x: 0.051873199, y: null}, {x: 0.0, y: null}, {x: 0.127596439, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.158730159, y: null}, {x: 0.059196617, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.161048689, y: null}, {x: 0.0, y: null}, {x: 0.145748988, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039792388, y: null}, {x: 0.0, y: null}, {x: 0.027272727, y: null}, {x: 0.059440559, y: null}, {x: 0.0, y: null}, {x: 0.146084337, y: null}, {x: 0.005167959, y: null}, {x: 0.057443366, y: null}, {x: 0.046632124, y: null}, {x: 0.029147982, y: null}, {x: 0.0202977, y: null}, {x: 0.052111411, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081534772, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.079726651, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076595745, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050200803, y: null}, {x: 0.0, y: null}, {x: 0.033126294, y: null}, {x: 0.0, y: null}, {x: 0.015572859, y: 0.0002}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.27458493, y: null}, {x: 0.120224719, y: null}, {x: 0.176100629, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024577573, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029498525, y: null}, {x: 0.0, y: null}, {x: 0.086021505, y: null}, {x: 0.0, y: null}, {x: 0.14861461, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.18839779, y: null}, {x: 0.379174853, y: null}, {x: 0.059067358, y: null}, {x: 0.0, y: null}, {x: 0.067547724, y: null}, {x: 0.103852596, y: null}, {x: 0.069990412, y: null}, {x: 0.052258636, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02688172, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040251572, y: null}, {x: 0.011220196, y: null}, {x: 0.047619048, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.092213115, y: null}, {x: 0.045676998, y: null}, {x: 0.0, y: null}, {x: 0.019202363, y: null}, {x: 0.0, y: null}, {x: 0.078677309, y: null}, {x: 0.26446281, y: null}, {x: 0.086614173, y: null}, {x: 0.329113924, y: null}, {x: 0.012048193, y: null}, {x: 0.049535604, y: null}, {x: 0.036101083, y: null}, {x: 0.10786802, y: null}, {x: 0.029950083, y: null}, {x: 0.0, y: null}, {x: 0.019920319, y: null}, {x: 0.057471264, y: null}, {x: 0.015325671, y: null}, {x: 0.03514377, y: null}, {x: 0.020887728, y: null}, {x: 0.169642857, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.078651685, y: null}, {x: 0.021403092, y: null}, {x: 0.017045455, y: null}, {x: 0.044834308, y: null}, {x: 0.0, y: null}, {x: 0.035087719, y: null}, {x: 0.025330396, y: null}, {x: 0.055162659, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076986755, y: null}, {x: 0.050847458, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012461059, y: null}, {x: 0.0, y: null}, {x: 0.120792079, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.016320475, y: null}, {x: 0.011535049, y: null}, {x: 0.0, y: null}, {x: 0.065934066, y: null}, {x: 0.085981308, y: null}, {x: 0.0, y: null}, {x: 0.024705882, y: null}, {x: 0.0, y: null}, {x: 0.022288262, y: null}, {x: 0.037585421, y: null}, {x: 0.066066066, y: null}, {x: 0.011142061, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.123493976, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076923077, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012787724, y: null}, {x: 0.113402062, y: null}, {x: 0.051212938, y: null}, {x: 0.0, y: null}, {x: 0.096491228, y: null}, {x: 0.0, y: null}, {x: 0.041580042, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033738192, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.013875124, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.222222222, y: null}, {x: 0.0, y: null}, {x: 0.053497942, y: null}, {x: 0.147914033, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.152671756, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051807229, y: null}, {x: 0.046070461, y: null}, {x: 0.0, y: null}, {x: 0.027372263, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.031858407, y: null}, {x: 0.10090703, y: null}, {x: 0.066539924, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004716981, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014705882, y: null}, {x: 0.040268456, y: null}, {x: 0.0, y: null}, {x: 0.031104199, y: null}, {x: 0.055393586, y: null}, {x: 0.011795544, y: null}, {x: 0.0, y: null}, {x: 0.016260163, y: null}, {x: 0.0, y: null}, {x: 0.048920863, y: null}, {x: 0.106598985, y: null}, {x: 0.0, y: null}, {x: 0.030816641, y: null}, {x: 0.0, y: null}, {x: 0.10741688, y: null}, {x: 0.030534351, y: null}, {x: 0.18579235, y: null}, {x: 0.0, y: null}, {x: 0.049360146, y: null}, {x: 0.111111111, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046511628, y: null}, {x: 0.04021164, y: null}, {x: 0.012509773, y: null}, {x: 0.05907173, y: null}, {x: 0.0, y: null}, {x: 0.03442029, y: null}, {x: 0.101449275, y: null}, {x: 0.0, y: null}, {x: 0.023376623, y: null}, {x: 0.095435685, y: null}, {x: 0.080675422, y: null}, {x: 0.084210526, y: null}, {x: 0.220689655, y: null}, {x: 0.348804501, y: null}, {x: 0.042168675, y: null}, {x: 0.0, y: null}, {x: 0.232876712, y: null}, {x: 0.053272451, y: null}, {x: 0.0, y: null}, {x: 0.093896714, y: null}, {x: 0.019296254, y: null}, {x: 0.0, y: null}, {x: 0.043010753, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095567867, y: null}, {x: 0.023391813, y: null}, {x: 0.0, y: null}, {x: 0.032906764, y: null}, {x: 0.0, y: null}, {x: 0.039130435, y: null}, {x: 0.076205288, y: null}, {x: 0.049327354, y: null}, {x: 0.0, y: null}, {x: 0.117647059, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054901961, y: null}, {x: 0.05615942, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017467249, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050458716, y: null}, {x: 0.0, y: null}, {x: 0.027444254, y: null}, {x: 0.0, y: null}, {x: 0.022160665, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071428571, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019011407, y: null}, {x: 0.025, y: null}, {x: 0.0, y: null}, {x: 0.166666667, y: null}, {x: 0.144970414, y: null}, {x: 0.045845272, y: null}, {x: 0.098924731, y: null}, {x: 0.108910891, y: null}, {x: 0.114035088, y: null}, {x: 0.051490515, y: null}, {x: 0.326424871, y: null}, {x: 0.294776119, y: null}, {x: 0.149925038, y: null}, {x: 0.081395349, y: null}, {x: 0.067741935, y: null}, {x: 0.112033195, y: null}, {x: 0.218018018, y: null}, {x: 0.067975831, y: null}, {x: 0.0, y: null}, {x: 0.03343949, y: null}, {x: 0.0, y: null}, {x: 0.475195823, y: null}, {x: 0.057086614, y: null}, {x: 0.152027027, y: null}, {x: 0.246753247, y: null}, {x: 0.17384106, y: null}, {x: 0.230476191, y: null}, {x: 0.251162791, y: null}, {x: 0.072635135, y: null}, {x: 0.0, y: null}, {x: 0.031553398, y: null}, {x: 0.341494845, y: null}, {x: 0.270457698, y: null}, {x: 0.0, y: null}, {x: 0.105633803, y: null}, {x: 0.206053551, y: null}, {x: 0.038461538, y: null}, {x: 0.120822622, y: null}, {x: 0.0, y: null}, {x: 0.243107769, y: null}, {x: 0.0, y: null}, {x: 0.12952381, y: null}, {x: 0.064088398, y: null}, {x: 0.07150368, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.079777365, y: null}, {x: 0.0, y: null}, {x: 0.041728763, y: null}, {x: 0.172470978, y: null}, {x: 0.264750378, y: null}, {x: 0.048695652, y: null}, {x: 0.112474438, y: null}, {x: 0.069948187, y: null}, {x: 0.135638298, y: null}, {x: 0.160068847, y: null}, {x: 0.171641791, y: null}, {x: 0.138613861, y: null}, {x: 0.096563011, y: null}, {x: 0.099078341, y: null}, {x: 0.0, y: null}, {x: 0.054151625, y: null}, {x: 0.0, y: null}, {x: 0.132989025, y: null}, {x: 0.048959608, y: null}, {x: 0.036637931, y: null}, {x: 0.1625, y: null}, {x: 0.042139384, y: null}, {x: 0.178194607, y: null}, {x: 0.0, y: null}, {x: 0.053521127, y: null}, {x: 0.155993432, y: null}, {x: 0.031296572, y: null}, {x: 0.048433048, y: null}, {x: 0.088421053, y: null}, {x: 0.117424242, y: null}, {x: 0.023779725, y: null}, {x: 0.116257947, y: null}, {x: 0.115906289, y: null}, {x: 0.012, y: null}, {x: 0.0, y: null}, {x: 0.027355623, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057901086, y: null}, {x: 0.018575851, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.141906874, y: null}, {x: 0.110192838, y: null}, {x: 0.087096774, y: null}, {x: 0.034642032, y: null}, {x: 0.258064516, y: null}, {x: 0.0, y: null}, {x: 0.091234347, y: null}, {x: 0.0, y: null}, {x: 0.030487805, y: null}, {x: 0.04261796, y: null}, {x: 0.038076152, y: null}, {x: 0.035816619, y: null}, {x: 0.036247335, y: null}, {x: 0.044692737, y: null}, {x: 0.010498688, y: null}, {x: 0.0, y: null}, {x: 0.06284658, y: null}, {x: 0.011627907, y: null}, {x: 0.037414966, y: null}, {x: 0.146236559, y: null}, {x: 0.0, y: null}, {x: 0.154716981, y: null}, {x: 0.131113424, y: null}, {x: 0.053003534, y: null}, {x: 0.06505102, y: null}, {x: 0.114886731, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.096952909, y: null}, {x: 0.0, y: null}, {x: 0.075851393, y: null}, {x: 0.100358423, y: null}, {x: 0.0, y: null}, {x: 0.053892216, y: null}, {x: 0.161290323, y: null}, {x: 0.0, y: null}, {x: 0.07375, y: null}, {x: 0.153262519, y: null}, {x: 0.127979925, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022826087, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057915058, y: null}, {x: 0.278911565, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.118206522, y: null}, {x: 0.106382979, y: null}, {x: 0.0, y: null}, {x: 0.168449198, y: null}, {x: 0.0, y: null}, {x: 0.097222222, y: null}, {x: 0.057361377, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.044345898, y: null}, {x: 0.068807339, y: null}, {x: 0.104100946, y: null}, {x: 0.028894472, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040299906, y: null}, {x: 0.045296167, y: null}, {x: 0.088050314, y: null}, {x: 0.122807018, y: null}, {x: 0.021912351, y: null}, {x: 0.021235521, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046920821, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.123036649, y: null}, {x: 0.0, y: null}, {x: 0.027480916, y: null}, {x: 0.054054054, y: null}, {x: 0.054794521, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061403509, y: null}, {x: 0.07037037, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.094117647, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01986755, y: null}, {x: 0.0, y: null}, {x: 0.026649746, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028416779, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076555024, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.084415584, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011574074, y: null}, {x: 0.03601108, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.037558685, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.037887486, y: null}, {x: 0.0, y: null}, {x: 0.049668874, y: null}, {x: 0.123870968, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026687598, y: null}, {x: 0.016977929, y: null}, {x: 0.175690608, y: null}, {x: 0.009400705, y: null}, {x: 0.253048781, y: null}, {x: 0.051136364, y: null}, {x: 0.095814978, y: null}, {x: 0.278873239, y: null}, {x: 0.045375218, y: null}, {x: 0.046768707, y: null}, {x: 0.032745592, y: null}, {x: 0.067375887, y: null}, {x: 0.035087719, y: null}, {x: 0.02994012, y: null}, {x: 0.010327022, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004123711, y: null}, {x: 0.132492114, y: null}, {x: 0.0, y: null}, {x: 0.09255079, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.09447983, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035483871, y: 3617.0713}, {x: 0.0, y: null}, {x: 0.013740458, y: null}, {x: 0.012113055, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019047619, y: null}, {x: 0.0, y: null}, {x: 0.033898305, y: null}, {x: 0.0, y: null}, {x: 0.017897092, y: null}, {x: 0.0, y: null}, {x: 0.024506467, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.05794948, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.116136919, y: null}, {x: 0.0, y: null}, {x: 0.03, y: 21.541675}, {x: 0.060377358, y: null}, {x: 0.0, y: null}, {x: 0.120287253, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066838046, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010650888, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009009009, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011308562, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.021042}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015625, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008849558, y: null}, {x: 0.013846154, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035874439, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.088291747, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085313175, y: null}, {x: 0.332382311, y: null}, {x: 0.288, y: null}, {x: 0.126984127, y: null}, {x: 0.193298969, y: null}, {x: 0.220338983, y: null}, {x: 0.24137931, y: null}, {x: 0.129554656, y: null}, {x: 0.04519774, y: null}, {x: 0.080174927, y: null}, {x: 0.130237826, y: null}, {x: 0.170426065, y: null}, {x: 0.007556675, y: null}, {x: 0.0, y: null}, {x: 0.300484653, y: null}, {x: 0.215256008, y: null}, {x: 0.238341969, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.047945205, y: null}, {x: 0.266033254, y: null}, {x: 0.289398281, y: null}, {x: 0.0, y: null}, {x: 0.080944351, y: null}, {x: 0.177033493, y: null}, {x: 0.0, y: null}, {x: 0.429012346, y: null}, {x: 0.070840198, y: null}, {x: 0.0, y: null}, {x: 0.060100167, y: null}, {x: 0.422924901, y: null}, {x: 0.212475634, y: null}, {x: 0.117540687, y: null}, {x: 0.269293925, y: null}, {x: 0.048672566, y: null}, {x: 0.019067797, y: null}, {x: 0.0, y: null}, {x: 0.313656388, y: null}, {x: 0.0, y: null}, {x: 0.371323529, y: null}, {x: 0.055797733, y: null}, {x: 0.172248804, y: null}, {x: 0.06035503, y: null}, {x: 0.122340426, y: null}, {x: 0.0, y: null}, {x: 0.063444109, y: null}, {x: 0.106598985, y: null}, {x: 0.0, y: null}, {x: 0.135775862, y: null}, {x: 0.22614841, y: null}, {x: 0.228486647, y: null}, {x: 0.370283019, y: null}, {x: 0.145129225, y: null}, {x: 0.073170732, y: null}, {x: 0.091338583, y: null}, {x: 0.0, y: null}, {x: 0.095528455, y: null}, {x: 0.074148297, y: null}, {x: 0.266452649, y: null}, {x: 0.117647059, y: null}, {x: 0.0, y: null}, {x: 0.038732394, y: null}, {x: 0.0, y: null}, {x: 0.010570825, y: null}, {x: 0.061287028, y: null}, {x: 0.018544936, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050359712, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071593533, y: null}, {x: 0.012962963, y: null}, {x: 0.0, y: null}, {x: 0.010062893, y: null}, {x: 0.012302285, y: null}, {x: 0.03874092, y: null}, {x: 0.0, y: null}, {x: 0.011363636, y: null}, {x: 0.0, y: null}, {x: 0.047318612, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029593095, y: null}, {x: 0.0, y: null}, {x: 0.012121212, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.112258065, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.120071685, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007430998, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009787928, y: null}, {x: 0.06185567, y: null}, {x: 0.048884166, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.074725275, y: null}, {x: 0.239583333, y: null}, {x: 0.0, y: null}, {x: 0.039156627, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.105747126, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.112781955, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008536585, y: null}, {x: 0.017421603, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040322581, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020440252, y: null}, {x: 0.0, y: null}, {x: 0.005213764, y: null}, {x: 0.00952381, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010230179, y: null}, {x: 0.0, y: null}, {x: 0.043222004, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0609319, y: null}, {x: 0.0, y: null}, {x: 0.009195402, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032183908, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076759062, y: null}, {x: 0.0, y: null}, {x: 0.027807487, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.021398003, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024817518, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038709677, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.103975535, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038906414, y: null}, {x: 0.049579046, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.157232704, y: null}, {x: 0.0, y: null}, {x: 0.062827225, y: null}, {x: 0.195652174, y: null}, {x: 0.184855234, y: null}, {x: 0.083129584, y: null}, {x: 0.216, y: null}, {x: 0.015981735, y: null}, {x: 0.0546875, y: null}, {x: 0.103535354, y: null}, {x: 0.153482881, y: null}, {x: 0.027237354, y: null}, {x: 0.0, y: null}, {x: 0.046728972, y: null}, {x: 0.155063291, y: null}, {x: 0.01369863, y: null}, {x: 0.084382872, y: null}, {x: 0.020430108, y: null}, {x: 0.041958042, y: null}, {x: 0.11308204, y: null}, {x: 0.588014981, y: null}, {x: 0.009708738, y: null}, {x: 0.0, y: null}, {x: 0.003676471, y: null}, {x: 0.038314176, y: null}, {x: 0.036842105, y: null}, {x: 0.119113573, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054830287, y: null}, {x: 0.0, y: null}, {x: 0.233128834, y: null}, {x: 0.047244094, y: null}, {x: 0.292753623, y: null}, {x: 0.050324675, y: null}, {x: 0.125, y: null}, {x: 0.039761431, y: null}, {x: 0.099644128, y: null}, {x: 0.087248322, y: null}, {x: 0.322807018, y: null}, {x: 0.11496063, y: null}, {x: 0.311764706, y: null}, {x: 0.183150183, y: null}, {x: 0.244117647, y: null}, {x: 0.0, y: null}, {x: 0.192755498, y: null}, {x: 0.082474227, y: null}, {x: 0.100737101, y: null}, {x: 0.055555556, y: null}, {x: 0.0, y: null}, {x: 0.058956916, y: null}, {x: 0.348958333, y: null}, {x: 0.075441413, y: null}, {x: 0.0, y: null}, {x: 0.08477842, y: null}, {x: 0.227138643, y: null}, {x: 0.190789474, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.366438356, y: null}, {x: 0.0, y: null}, {x: 0.140350877, y: null}, {x: 0.0, y: null}, {x: 0.024017467, y: null}, {x: 0.215481172, y: null}, {x: 0.166666667, y: null}, {x: 0.046511628, y: null}, {x: 0.047619048, y: null}, {x: 0.155339806, y: null}, {x: 0.035063114, y: null}, {x: 0.106666667, y: null}, {x: 0.277056277, y: null}, {x: 0.066666667, y: null}, {x: 0.071225071, y: null}, {x: 0.215053763, y: null}, {x: 0.076923077, y: null}, {x: 0.218518519, y: null}, {x: 0.079925651, y: null}, {x: 0.095238095, y: null}, {x: 0.100719425, y: null}, {x: 0.136585366, y: null}, {x: 0.096491228, y: null}, {x: 0.082677165, y: null}, {x: 0.0, y: null}, {x: 0.180914513, y: null}, {x: 0.455882353, y: null}, {x: 0.054958184, y: null}, {x: 0.0, y: null}, {x: 0.524005487, y: null}, {x: 0.12585034, y: null}, {x: 0.044546851, y: null}, {x: 0.12605042, y: null}, {x: 0.200704225, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022058824, y: null}, {x: 0.021321962, y: null}, {x: 0.0, y: null}, {x: 0.04805915, y: null}, {x: 0.0, y: null}, {x: 0.039426523, y: null}, {x: 0.033033033, y: null}, {x: 0.012936611, y: null}, {x: 0.011730205, y: null}, {x: 0.026315789, y: null}, {x: 0.0, y: null}, {x: 0.052917232, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081946223, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.075040783, y: null}, {x: 0.00929368, y: null}, {x: 0.014571949, y: null}, {x: 0.063157895, y: null}, {x: 0.164670659, y: null}, {x: 0.088704089, y: null}, {x: 0.053175775, y: null}, {x: 0.018691589, y: null}, {x: 0.096899225, y: null}, {x: 0.0, y: null}, {x: 0.016304348, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035060976, y: null}, {x: 0.313497823, y: null}, {x: 0.01625, y: null}, {x: 0.055727554, y: 7.2}, {x: 0.0, y: null}, {x: 0.069832402, y: null}, {x: 0.108433735, y: null}, {x: 0.0, y: null}, {x: 0.063670412, y: null}, {x: 0.0, y: null}, {x: 0.045731707, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085164835, y: null}, {x: 0.0, y: null}, {x: 0.087460485, y: null}, {x: 0.029255319, y: 766.04}, {x: 0.014018692, y: 273.784}, {x: 0.039759036, y: null}, {x: 0.215730337, y: null}, {x: 0.174846626, y: null}, {x: 0.012640449, y: 2.5375}, {x: 0.205521472, y: null}, {x: 0.272588055, y: 0.473}, {x: 0.145190563, y: null}, {x: 0.189300412, y: null}, {x: 0.224199288, y: null}, {x: 0.55450237, y: null}, {x: 0.463333333, y: null}, {x: 0.141868512, y: 3.82795}, {x: 0.176706827, y: null}, {x: 0.213136729, y: null}, {x: 0.035353535, y: null}, {x: 0.164821648, y: null}, {x: 0.216, y: null}, {x: 0.0, y: null}, {x: 0.418502203, y: null}, {x: 0.140718563, y: null}, {x: 0.43537415, y: null}, {x: 0.503802281, y: null}, {x: 0.573170732, y: null}, {x: 0.471204189, y: null}, {x: 0.189795918, y: null}, {x: 0.320474777, y: 0.17529}, {x: 0.229281768, y: null}, {x: 0.119469027, y: null}, {x: 0.040100251, y: null}, {x: 0.141369048, y: null}, {x: 0.2933213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.177142857, y: 16.942}, {x: 0.1369606, y: null}, {x: 0.067375887, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052083333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.05108055, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005714286, y: null}, {x: 0.0, y: null}, {x: 0.179425837, y: null}, {x: 0.56884058, y: null}, {x: 0.0, y: null}, {x: 0.060606061, y: null}, {x: 0.0, y: null}, {x: 0.06056338, y: null}, {x: 0.0, y: null}, {x: 0.037800687, y: null}, {x: 0.290657439, y: null}, {x: 0.192411924, y: null}, {x: 0.37615894, y: null}, {x: 0.02530253, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.037795276, y: null}, {x: 0.566757493, y: null}, {x: 0.083860759, y: null}, {x: 0.0, y: null}, {x: 0.076595745, y: null}, {x: 0.050485437, y: null}, {x: 0.0, y: null}, {x: 0.196498055, y: null}, {x: 0.74744898, y: null}, {x: 0.116883117, y: null}, {x: 0.301576873, y: null}, {x: 0.675958188, y: null}, {x: 0.04, y: null}, {x: 0.0, y: null}, {x: 0.171021378, y: null}, {x: 0.100558659, y: null}, {x: 0.210382514, y: null}, {x: 0.019957983, y: 180.08110000000002}, {x: 0.49691358, y: null}, {x: 0.026455026, y: null}, {x: 0.118090452, y: null}, {x: 0.097520661, y: null}, {x: 0.540162122, y: null}, {x: 0.041176471, y: null}, {x: 0.0, y: null}, {x: 0.083823529, y: null}, {x: 0.012687428, y: null}, {x: 0.046511628, y: null}, {x: 0.113748764, y: null}, {x: 0.0, y: null}, {x: 0.466767372, y: null}, {x: 0.171962617, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029929577, y: null}, {x: 0.25, y: null}, {x: 0.04719764, y: null}, {x: 0.044481054, y: null}, {x: 0.161931818, y: null}, {x: 0.0, y: null}, {x: 0.29318542, y: null}, {x: 0.2325, y: null}, {x: 0.142394822, y: null}, {x: 0.131578947, y: null}, {x: 0.086743044, y: null}, {x: 0.011644833, y: null}, {x: 0.331220285, y: null}, {x: 0.059160305, y: null}, {x: 0.233502538, y: null}, {x: 0.255369928, y: null}, {x: 0.144144144, y: null}, {x: 0.104477612, y: null}, {x: 0.236607143, y: null}, {x: 0.131241084, y: null}, {x: 0.043969849, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.340384615, y: null}, {x: 0.386255924, y: null}, {x: 0.163865546, y: null}, {x: 0.206557377, y: null}, {x: 0.131386861, y: null}, {x: 0.126684636, y: null}, {x: 0.249391728, y: null}, {x: 0.175675676, y: null}, {x: 0.158950617, y: null}, {x: 0.229437229, y: null}, {x: 0.541666667, y: null}, {x: 0.378411911, y: null}, {x: 0.285217391, y: null}, {x: 0.323049002, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.140350877, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.094098884, y: null}, {x: 0.116352201, y: null}, {x: 0.289244186, y: null}, {x: 0.0, y: null}, {x: 0.14159292, y: null}, {x: 0.0, y: null}, {x: 0.286956522, y: null}, {x: 0.240150094, y: null}, {x: 0.115671642, y: null}, {x: 0.0, y: null}, {x: 0.18, y: null}, {x: 0.162337662, y: null}, {x: 0.159041394, y: null}, {x: 0.053380783, y: null}, {x: 0.138211382, y: null}, {x: 0.413612565, y: null}, {x: 0.438155136, y: null}, {x: 0.165277778, y: null}, {x: 0.170658683, y: null}, {x: 0.195171026, y: null}, {x: 0.257053292, y: null}, {x: 0.215328467, y: null}, {x: 0.157503715, y: null}, {x: 0.133640553, y: null}, {x: 0.271889401, y: null}, {x: 0.316666667, y: null}, {x: 0.14159292, y: null}, {x: 0.456395349, y: null}, {x: 0.381374723, y: null}, {x: 0.070121951, y: null}, {x: 0.0, y: null}, {x: 0.25389755, y: null}, {x: 0.0, y: null}, {x: 0.193548387, y: null}, {x: 0.236151604, y: null}, {x: 0.355179704, y: null}, {x: 0.0, y: null}, {x: 0.230633803, y: null}, {x: 0.180124224, y: null}, {x: 0.206812652, y: null}, {x: 0.298600311, y: null}, {x: 0.144117647, y: null}, {x: 0.395759717, y: null}, {x: 0.119617225, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.101426307, y: null}, {x: 0.092105263, y: null}, {x: 0.111553785, y: null}, {x: 0.073076923, y: null}, {x: 0.282208589, y: null}, {x: 0.216981132, y: null}, {x: 0.06779661, y: null}, {x: 0.0, y: null}, {x: 0.206278027, y: null}, {x: 0.092140921, y: null}, {x: 0.161564626, y: null}, {x: 0.123827392, y: null}, {x: 0.145631068, y: null}, {x: 0.223988439, y: null}, {x: 0.162561576, y: null}, {x: 0.199329983, y: null}, {x: 0.179104478, y: null}, {x: 0.387387387, y: null}, {x: 0.089668616, y: null}, {x: 0.183391004, y: null}, {x: 0.124401914, y: null}, {x: 0.062937063, y: null}, {x: 0.283950617, y: null}, {x: 0.172680412, y: null}, {x: 0.125, y: null}, {x: 0.108870968, y: null}, {x: 0.11732852, y: null}, {x: 0.180722892, y: null}, {x: 0.214285714, y: null}, {x: 0.091036415, y: null}, {x: 0.0, y: null}, {x: 0.096463023, y: null}, {x: 0.408571429, y: null}, {x: 0.313782991, y: null}, {x: 0.0, y: null}, {x: 0.248366013, y: null}, {x: 0.084269663, y: null}, {x: 0.09556314, y: null}, {x: 0.035019455, y: null}, {x: 0.089506173, y: null}, {x: 0.198275862, y: null}, {x: 0.070987654, y: null}, {x: 0.171717172, y: null}, {x: 0.086206897, y: null}, {x: 0.418604651, y: null}, {x: 0.15625, y: null}, {x: 0.0, y: null}, {x: 0.116045845, y: null}, {x: 0.237639553, y: null}, {x: 0.20295203, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.181578947, y: null}, {x: 0.079584775, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.125412541, y: null}, {x: 0.187203792, y: null}, {x: 0.0, y: null}, {x: 0.071269488, y: null}, {x: 0.051330798, y: null}, {x: 0.0, y: null}, {x: 0.05915493, y: null}, {x: 0.09939759, y: null}, {x: 0.003169572, y: null}, {x: 0.100263852, y: null}, {x: 0.037523452, y: null}, {x: 0.0486618, y: null}, {x: 0.096732026, y: null}, {x: 0.0, y: null}, {x: 0.418972332, y: null}, {x: 0.210526316, y: null}, {x: 0.233905579, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.106765328, y: null}, {x: 0.024, y: null}, {x: 0.02293578, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.097560976, y: null}, {x: 0.0, y: null}, {x: 0.101321586, y: null}, {x: 0.099667774, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.053050398, y: null}, {x: 0.191082803, y: null}, {x: 0.039735099, y: null}, {x: 0.090128755, y: null}, {x: 0.02278481, y: null}, {x: 0.074542897, y: null}, {x: 0.06097561, y: null}, {x: 0.173285199, y: null}, {x: 0.262806236, y: null}, {x: 0.10755814, y: null}, {x: 0.085526316, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065217391, y: null}, {x: 0.007856341, y: null}, {x: 0.034210526, y: null}, {x: 0.02862254, y: null}, {x: 0.104972376, y: null}, {x: 0.284810127, y: null}, {x: 0.111328125, y: null}, {x: 0.0, y: null}, {x: 0.103896104, y: null}, {x: 0.117647059, y: null}, {x: 0.258293839, y: null}, {x: 0.0, y: null}, {x: 0.082089552, y: null}, {x: 0.0, y: null}, {x: 0.133832976, y: null}, {x: 0.099502488, y: null}, {x: 0.078125, y: null}, {x: 0.208613728, y: null}, {x: 0.034139403, y: null}, {x: 0.209302326, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033259424, y: null}, {x: 0.114143921, y: null}, {x: 0.040229885, y: null}, {x: 0.037914692, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071017274, y: null}, {x: 0.247863248, y: null}, {x: 0.007494647, y: null}, {x: 0.045553145, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036474164, y: null}, {x: 0.0, y: null}, {x: 0.016415869, y: null}, {x: 0.051440329, y: null}, {x: 0.040584416, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.112612613, y: null}, {x: 0.112938597, y: null}, {x: 0.037344398, y: null}, {x: 0.076923077, y: null}, {x: 0.089430894, y: null}, {x: 0.179442509, y: null}, {x: 0.04845815, y: null}, {x: 0.0, y: null}, {x: 0.041284404, y: null}, {x: 0.0, y: null}, {x: 0.045034642, y: null}, {x: 0.099354839, y: null}, {x: 0.11550152, y: null}, {x: 0.470588235, y: null}, {x: 0.227848101, y: null}, {x: 0.023148148, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.044155844, y: null}, {x: 0.012797075, y: null}, {x: 0.04199773, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.164516129, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.09939759, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054347826, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.077669903, y: null}, {x: 0.0, y: null}, {x: 0.044354839, y: null}, {x: 0.112200436, y: null}, {x: 0.078373016, y: null}, {x: 0.043715847, y: null}, {x: 0.298208641, y: null}, {x: 0.201336675, y: null}, {x: 0.161764706, y: null}, {x: 0.105263158, y: null}, {x: 0.092764378, y: null}, {x: 0.096256684, y: null}, {x: 0.034632035, y: null}, {x: 0.078104994, y: null}, {x: 0.109057301, y: null}, {x: 0.132867133, y: null}, {x: 0.367412141, y: null}, {x: 0.268792711, y: null}, {x: 0.081632653, y: null}, {x: 0.259414226, y: null}, {x: 0.0, y: null}, {x: 0.089506173, y: null}, {x: 0.056862745, y: null}, {x: 0.203333333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.183673469, y: null}, {x: 0.219512195, y: null}, {x: 0.133333333, y: null}, {x: 0.0, y: null}, {x: 0.181657848, y: null}, {x: 0.49602122, y: null}, {x: 0.128342246, y: null}, {x: 0.0, y: null}, {x: 0.232835821, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.301675978, y: null}, {x: 0.097130243, y: null}, {x: 0.453453454, y: null}, {x: 0.250909091, y: null}, {x: 0.160997732, y: null}, {x: 0.0, y: null}, {x: 0.412742382, y: null}, {x: 0.75088968, y: null}, {x: 0.18852459, y: null}, {x: 0.202898551, y: null}, {x: 0.566395664, y: null}, {x: 0.637873754, y: null}, {x: 0.433198381, y: null}, {x: 0.144200627, y: null}, {x: 0.078616352, y: null}, {x: 0.183229814, y: 0.028}, {x: 0.372307692, y: null}, {x: 0.519685039, y: null}, {x: 0.060362173, y: null}, {x: 0.22737819, y: null}, {x: 0.090019569, y: null}, {x: 0.159574468, y: null}, {x: 0.128125, y: null}, {x: 0.593291405, y: null}, {x: 0.0, y: null}, {x: 0.383900929, y: null}, {x: 0.0, y: 1.660842}, {x: 0.133333333, y: null}, {x: 0.29390681, y: null}, {x: 0.133479212, y: null}, {x: 0.0, y: null}, {x: 0.232857143, y: null}, {x: 0.214776632, y: null}, {x: 0.283333333, y: null}, {x: 0.264344262, y: null}, {x: 0.0, y: null}, {x: 0.216763006, y: null}, {x: 0.589403974, y: null}, {x: 0.093333333, y: null}, {x: 0.208609272, y: null}, {x: 0.114379085, y: null}, {x: 0.072131148, y: null}, {x: 0.199084668, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.215217391, y: null}, {x: 0.007587253, y: null}, {x: 0.114398422, y: null}, {x: 0.231454006, y: null}, {x: 0.094117647, y: null}, {x: 0.0, y: null}, {x: 0.058084772, y: null}, {x: 0.023648649, y: null}, {x: 0.0, y: null}, {x: 0.082429501, y: null}, {x: 0.26443769, y: null}, {x: 0.182795699, y: null}, {x: 0.046391753, y: null}, {x: 0.147001934, y: null}, {x: 0.394495413, y: null}, {x: 0.307086614, y: null}, {x: 0.161228407, y: null}, {x: 0.129844961, y: null}, {x: 0.145721925, y: null}, {x: 0.0, y: null}, {x: 0.053701016, y: null}, {x: 0.220838052, y: null}, {x: 0.028795812, y: null}, {x: 0.252155172, y: null}, {x: 0.075975359, y: null}, {x: 0.109589041, y: null}, {x: 0.178640777, y: null}, {x: 0.04691358, y: null}, {x: 0.194503171, y: null}, {x: 0.224598931, y: null}, {x: 0.229090909, y: null}, {x: 0.190082645, y: null}, {x: 0.351239669, y: null}, {x: 0.378026071, y: null}, {x: 0.271948608, y: null}, {x: 0.175088132, y: null}, {x: 0.175308642, y: null}, {x: 0.112462006, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.106888361, y: null}, {x: 0.051460362, y: null}, {x: 0.0, y: null}, {x: 0.027972028, y: null}, {x: 0.0, y: null}, {x: 0.013452915, y: null}, {x: 0.0, y: null}, {x: 0.029239766, y: null}, {x: 0.034220532, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036977492, y: null}, {x: 0.0, y: null}, {x: 0.03006012, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2.0275}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 123.083}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.444444444, y: 6.4707}, {x: 0.0, y: null}, {x: 0.0, y: 7.7502}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028391167, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014173228, y: null}, {x: 0.020361991, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011375388, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.067641682, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007476636, y: null}, {x: 0.0, y: null}, {x: 0.045897079, y: null}, {x: 0.008547009, y: null}, {x: 0.0, y: null}, {x: 0.049751244, y: null}, {x: 0.019163763, y: null}, {x: 0.027027027, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028795812, y: null}, {x: 0.019347037, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04109589, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029865125, y: null}, {x: 0.039246468, y: null}, {x: 0.0, y: null}, {x: 0.077017115, y: null}, {x: 0.481404959, y: null}, {x: 0.112956811, y: null}, {x: 0.068432671, y: null}, {x: 0.0, y: null}, {x: 0.189269747, y: null}, {x: 0.0, y: null}, {x: 0.591478697, y: null}, {x: 0.038554217, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025666338, y: null}, {x: 0.124567474, y: 626.415468}, {x: 0.112970711, y: null}, {x: 0.120171674, y: null}, {x: 0.145454546, y: null}, {x: 0.084291188, y: null}, {x: 0.064, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010869565, y: null}, {x: 0.026548673, y: null}, {x: 0.086065574, y: null}, {x: 0.0, y: 0.316}, {x: 0.0, y: 13.296268}, {x: 0.0, y: null}, {x: 0.028199566, y: null}, {x: 0.055374593, y: null}, {x: 0.458823529, y: null}, {x: 0.030237581, y: 0.22}, {x: 0.0, y: null}, {x: 0.094435076, y: null}, {x: 0.014040562, y: 0.171}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071258907, y: null}, {x: 0.02134647, y: null}, {x: 0.0, y: null}, {x: 0.194202899, y: null}, {x: 0.0, y: null}, {x: 0.051649928, y: null}, {x: 0.122362869, y: null}, {x: 0.02295082, y: null}, {x: 0.23, y: null}, {x: 0.16, y: 9.505065}, {x: 0.078651685, y: null}, {x: 0.050916497, y: null}, {x: 0.035164835, y: 3.291023}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.105839416, y: null}, {x: 0.03030303, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024413146, y: null}, {x: 0.018595041, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.013513514, y: null}, {x: 0.015209125, y: null}, {x: 0.123809524, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089570552, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019762846, y: null}, {x: 0.0, y: null}, {x: 0.112195122, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024781341, y: null}, {x: 0.0375, y: null}, {x: 0.092857143, y: null}, {x: 0.01578354, y: null}, {x: 0.095918367, y: null}, {x: 0.007627765, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030701754, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.016676}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.003921569, y: null}, {x: 0.0, y: null}, {x: 0.008498584, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008403361, y: null}, {x: 0.006802721, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028135991, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.105173876, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.177777778, y: null}, {x: 0.359307359, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.048231511, y: null}, {x: 0.088807786, y: null}, {x: 0.041450777, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.143835616, y: null}, {x: 0.092457421, y: null}, {x: 0.122235157, y: null}, {x: 0.038918919, y: null}, {x: 0.02425876, y: null}, {x: 0.12244898, y: null}, {x: 0.0, y: null}, {x: 0.253937008, y: null}, {x: 0.029689609, y: null}, {x: 0.059958649, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030712531, y: null}, {x: 0.017021277, y: null}, {x: 0.137542277, y: null}, {x: 0.027863777, y: null}, {x: 0.118811881, y: null}, {x: 0.06932409, y: null}, {x: 0.0, y: null}, {x: 0.150093809, y: null}, {x: 0.075682382, y: null}, {x: 0.0, y: null}, {x: 0.096491228, y: null}, {x: 0.0, y: null}, {x: 0.099018733, y: null}, {x: 0.038116592, y: null}, {x: 0.025020178, y: null}, {x: 0.128400435, y: null}, {x: 0.0, y: null}, {x: 0.53271028, y: null}, {x: 0.0, y: null}, {x: 0.028052805, y: null}, {x: 0.097883598, y: null}, {x: 0.0, y: null}, {x: 0.125899281, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.174220963, y: null}, {x: 0.095238095, y: null}, {x: 0.256670902, y: null}, {x: 0.0, y: null}, {x: 0.105263158, y: null}, {x: 0.101351351, y: null}, {x: 0.141706924, y: null}, {x: 0.323770492, y: null}, {x: 0.346551724, y: null}, {x: 0.194928685, y: null}, {x: 0.445229682, y: null}, {x: 0.081318681, y: null}, {x: 0.046808511, y: null}, {x: 0.118556701, y: null}, {x: 0.185863874, y: null}, {x: 0.196213425, y: null}, {x: 0.02027027, y: null}, {x: 0.258953168, y: null}, {x: 0.169786096, y: null}, {x: 0.126153846, y: null}, {x: 0.070362473, y: null}, {x: 0.315088757, y: null}, {x: 0.0, y: null}, {x: 0.252525253, y: null}, {x: 0.0, y: null}, {x: 0.230263158, y: null}, {x: 0.222531294, y: null}, {x: 0.199170125, y: null}, {x: 0.104761905, y: null}, {x: 0.0, y: null}, {x: 0.316042267, y: null}, {x: 0.327102804, y: null}, {x: 0.411851852, y: null}, {x: 0.172413793, y: null}, {x: 0.48, y: null}, {x: 0.126373626, y: null}, {x: 0.147347741, y: null}, {x: 0.103448276, y: null}, {x: 0.176470588, y: null}, {x: 0.386861314, y: null}, {x: 0.14354067, y: null}, {x: 0.174231332, y: null}, {x: 0.101405623, y: null}, {x: 0.0, y: null}, {x: 0.15719697, y: null}, {x: 0.111757858, y: null}, {x: 0.152119701, y: null}, {x: 0.098928277, y: null}, {x: 0.311708861, y: null}, {x: 0.336426914, y: null}, {x: 0.0, y: null}, {x: 0.169291339, y: null}, {x: 0.041369472, y: null}, {x: 0.120200334, y: null}, {x: 0.21, y: null}, {x: 0.116071429, y: null}, {x: 0.127298444, y: null}, {x: 0.556962025, y: null}, {x: 0.251833741, y: null}, {x: 0.423387097, y: null}, {x: 0.1125, y: null}, {x: 0.106280193, y: 563.320881}, {x: 0.148314607, y: null}, {x: 0.405336722, y: null}, {x: 0.140877598, y: null}, {x: 0.0, y: null}, {x: 0.03125, y: null}, {x: 0.531598513, y: null}, {x: 0.114285714, y: null}, {x: 0.023904382, y: null}, {x: 0.107798165, y: null}, {x: 0.022058824, y: null}, {x: 0.021541011, y: null}, {x: 0.087391594, y: null}, {x: 0.065530799, y: null}, {x: 0.094619666, y: null}, {x: 0.113445378, y: null}, {x: 0.0, y: null}, {x: 0.081245768, y: null}, {x: 0.181818182, y: null}, {x: 0.057591623, y: null}, {x: 0.259656652, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085616438, y: null}, {x: 0.117537313, y: null}, {x: 0.063909774, y: null}, {x: 0.0, y: null}, {x: 0.083094556, y: null}, {x: 0.079925651, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.021398003, y: null}, {x: 0.058823529, y: null}, {x: 0.001589825, y: null}, {x: 0.015021459, y: null}, {x: 0.072829132, y: null}, {x: 0.008278146, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02173913, y: null}, {x: 0.018796992, y: null}, {x: 0.0, y: null}, {x: 0.057208238, y: null}, {x: 0.153658537, y: null}, {x: 0.0, y: null}, {x: 0.067982456, y: 58.2}, {x: 0.011173184, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076923077, y: null}, {x: 0.013651877, y: null}, {x: 0.027472527, y: null}, {x: 0.050505051, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065408805, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018099548, y: null}, {x: 0.0, y: null}, {x: 0.129645635, y: null}, {x: 0.049865229, y: null}, {x: 0.24784217, y: null}, {x: 0.023923445, y: null}, {x: 0.137931035, y: null}, {x: 0.0, y: null}, {x: 0.020190024, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050632911, y: null}, {x: 0.021390374, y: null}, {x: 0.0, y: null}, {x: 0.066458982, y: null}, {x: 0.0, y: null}, {x: 0.008976661, y: null}, {x: 0.0, y: null}, {x: 0.043737575, y: null}, {x: 0.019736842, y: null}, {x: 0.0, y: null}, {x: 0.019157088, y: null}, {x: 0.074367089, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019031142, y: null}, {x: 0.0, y: null}, {x: 0.032258065, y: null}, {x: 0.025510204, y: null}, {x: 0.0, y: null}, {x: 0.024647887, y: null}, {x: 0.095389507, y: null}, {x: 0.030075188, y: null}, {x: 0.016666667, y: null}, {x: 0.031553398, y: null}, {x: 0.094545455, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023255814, y: null}, {x: 0.119815668, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01615074, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01372549, y: null}, {x: 0.108287293, y: null}, {x: 0.0, y: null}, {x: 0.078461538, y: null}, {x: 0.0, y: null}, {x: 0.014005602, y: null}, {x: 0.17826087, y: null}, {x: 0.13961039, y: null}, {x: 0.25058548, y: null}, {x: 0.04375, y: null}, {x: 0.054992764, y: null}, {x: 0.243421053, y: null}, {x: 0.307692308, y: null}, {x: 0.271293375, y: null}, {x: 0.046025105, y: null}, {x: 0.020689655, y: null}, {x: 0.092173913, y: null}, {x: 0.229166667, y: null}, {x: 0.0, y: null}, {x: 0.021238938, y: null}, {x: 0.011477762, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035490605, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026627219, y: null}, {x: 0.0, y: null}, {x: 0.034271726, y: null}, {x: 0.014223195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01124498, y: null}, {x: 0.0, y: null}, {x: 0.018181818, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033628319, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02003643, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040723982, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030241935, y: null}, {x: 0.110444178, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028145695, y: null}, {x: 0.0, y: null}, {x: 0.01590106, y: null}, {x: 0.079399142, y: null}, {x: 0.056451613, y: null}, {x: 0.065075922, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005031447, y: null}, {x: 0.027315914, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043604651, y: null}, {x: 0.044705882, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012578616, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.074786325, y: null}, {x: 0.034205231, y: null}, {x: 0.048214286, y: null}, {x: 0.0, y: null}, {x: 0.218430034, y: null}, {x: 0.22519084, y: null}, {x: 0.066137566, y: null}, {x: 0.1, y: null}, {x: 0.233022637, y: null}, {x: 0.023648649, y: null}, {x: 0.111111111, y: null}, {x: 0.093587522, y: null}, {x: 0.058238636, y: null}, {x: 0.041860465, y: null}, {x: 0.022271715, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022813688, y: null}, {x: 0.0, y: null}, {x: 0.054140127, y: null}, {x: 0.014858841, y: null}, {x: 0.005988024, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039242219, y: null}, {x: 0.150669643, y: null}, {x: 0.082822086, y: null}, {x: 0.04851752, y: null}, {x: 0.0, y: null}, {x: 0.024856597, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}], 'label': 'Individual Census blocks', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.00759173475, y: 53.641597853963276}, {x: 0.04882884825, y: 265.0945389959903}, {x: 0.5412371135, y: 120.00558217145276}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.00759173475, y: -20.45408911471381}, {x: 0.04882884825, y: 75.89659574576098}, {x: 0.5412371135, y: 74.07062372917304}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.00759173475, y: 127.73728482264036}, {x: 0.04882884825, y: 454.29248224621966}, {x: 0.5412371135, y: 165.94054061373248}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.079847909, y: null}, {x: 0.118055556, y: null}, {x: 0.0, y: null}, {x: 0.017647059, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.103585657, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081967213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.093729}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.031034483, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015151515, y: null}, {x: 0.0, y: null}, {x: 0.012211669, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057142857, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030075188, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014534884, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061068702, y: null}, {x: 0.054151625, y: null}, {x: 0.0, y: null}, {x: 0.058091286, y: null}, {x: 0.0, y: null}, {x: 0.02507837, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023210832, y: null}, {x: 0.04610951, y: null}, {x: 0.033530572, y: null}, {x: 0.075471698, y: null}, {x: 0.0, y: null}, {x: 0.067114094, y: null}, {x: 0.060185185, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025706941, y: null}, {x: 0.19544592, y: null}, {x: 0.0, y: null}, {x: 0.046692607, y: null}, {x: 0.029761905, y: null}, {x: 0.0, y: null}, {x: 0.313311688, y: null}, {x: 0.054973822, y: null}, {x: 0.07, y: null}, {x: 0.056057866, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051319648, y: null}, {x: 0.036885246, y: null}, {x: 0.098613251, y: null}, {x: 0.012465374, y: null}, {x: 0.040106952, y: null}, {x: 0.0, y: null}, {x: 0.011363636, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.084684685, y: null}, {x: 0.052083333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.047516199, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042723632, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029673591, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066083576, y: null}, {x: 0.015662651, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055913978, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014634146, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034175334, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024930748, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009638554, y: null}, {x: 0.006882312, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.215231788, y: null}, {x: 0.119047619, y: null}, {x: 0.195348837, y: null}, {x: 0.0, y: null}, {x: 0.03030303, y: null}, {x: 0.03219697, y: null}, {x: 0.016330451, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040425532, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036613272, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04035309, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.064615385, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043902439, y: null}, {x: 0.0, y: null}, {x: 0.050531915, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.087962963, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007670182, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051369863, y: null}, {x: 0.0, y: null}, {x: 0.060301508, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.175}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015957447, y: null}, {x: 0.038076152, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040506329, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015781923, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.006329114, y: null}, {x: 0.0, y: null}, {x: 0.029821074, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029739777, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.003372681, y: null}, {x: 0.010498688, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004830918, y: null}, {x: 0.021680217, y: null}, {x: 0.007894737, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.006289308, y: null}, {x: 0.042056075, y: null}, {x: 0.0, y: null}, {x: 0.022727273, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034662045, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020761246, y: null}, {x: 0.0, y: null}, {x: 0.018549747, y: null}, {x: 0.01270648, y: null}, {x: 0.067919075, y: null}, {x: 0.0, y: null}, {x: 0.020942408, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019512195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095011876, y: null}, {x: 0.061583578, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015974441, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036170213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019345238, y: null}, {x: 0.00908059, y: null}, {x: 0.019047619, y: null}, {x: 0.092257002, y: null}, {x: 0.0, y: null}, {x: 0.199434229, y: null}, {x: 0.108108108, y: null}, {x: 0.141695703, y: null}, {x: 0.139573071, y: null}, {x: 0.0, y: null}, {x: 0.044067797, y: null}, {x: 0.117370892, y: null}, {x: 0.049360146, y: null}, {x: 0.102756892, y: null}, {x: 0.04952381, y: null}, {x: 0.170160296, y: 33.039}, {x: 0.009884679, y: null}, {x: 0.131929047, y: null}, {x: 0.074349442, y: null}, {x: 0.139215686, y: null}, {x: 0.048648649, y: null}, {x: 0.040540541, y: null}, {x: 0.043737575, y: null}, {x: 0.0625, y: null}, {x: 0.018556701, y: null}, {x: 0.020491803, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019900498, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045540797, y: null}, {x: 0.0, y: null}, {x: 0.014111007, y: null}, {x: 0.0, y: null}, {x: 0.01396648, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015437393, y: null}, {x: 0.0, y: null}, {x: 0.097222222, y: null}, {x: 0.032723773, y: null}, {x: 0.042124542, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.03087886, y: null}, {x: 0.0, y: null}, {x: 0.01994302, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095070423, y: null}, {x: 0.027210884, y: null}, {x: 0.108108108, y: null}, {x: 0.081705151, y: null}, {x: 0.0, y: null}, {x: 0.017305315, y: null}, {x: 0.022556391, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050785973, y: null}, {x: 0.066957787, y: null}, {x: 0.136279926, y: null}, {x: 0.010233918, y: null}, {x: 0.013057671, y: null}, {x: 0.0, y: null}, {x: 0.12244898, y: null}, {x: 0.030716724, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059418458, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 999.999999}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038054968, y: null}, {x: 0.027415144, y: null}, {x: 0.013800425, y: null}, {x: 0.082289803, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040816327, y: null}, {x: 0.015576324, y: null}, {x: 0.0, y: null}, {x: 0.128947368, y: null}, {x: 0.188679245, y: null}, {x: 0.28708134, y: null}, {x: 0.030237581, y: null}, {x: 0.120567376, y: null}, {x: 0.152027027, y: null}, {x: 0.083435583, y: null}, {x: 0.347107438, y: null}, {x: 0.192622951, y: null}, {x: 0.147386461, y: null}, {x: 0.128099174, y: 95.803564}, {x: 0.01863354, y: null}, {x: 0.058894231, y: 1904.333217}, {x: 0.231638418, y: null}, {x: 0.212250712, y: null}, {x: 0.097196262, y: 33.812967}, {x: 0.105263158, y: null}, {x: 0.104316547, y: null}, {x: 0.03988604, y: null}, {x: 0.186246418, y: 13.403297}, {x: 0.196940727, y: null}, {x: 0.159192825, y: null}, {x: 0.045553145, y: null}, {x: 0.241473397, y: null}, {x: 0.040540541, y: null}, {x: 0.083333333, y: null}, {x: 0.0, y: null}, {x: 0.097457627, y: null}, {x: 0.204678363, y: null}, {x: 0.135802469, y: null}, {x: 0.027726433, y: null}, {x: 0.0, y: null}, {x: 0.065764023, y: null}, {x: 0.227876106, y: null}, {x: 0.221719457, y: null}, {x: 0.096428571, y: null}, {x: 0.013071895, y: 29.512963}, {x: 0.309692671, y: null}, {x: 0.22979798, y: null}, {x: 0.088607595, y: null}, {x: 0.040229885, y: null}, {x: 0.11976631, y: null}, {x: 0.186813187, y: null}, {x: 0.403669725, y: null}, {x: 0.100719425, y: null}, {x: 0.213793103, y: null}, {x: 0.253144654, y: null}, {x: 0.157389635, y: null}, {x: 0.37755102, y: null}, {x: 0.1, y: null}, {x: 0.210648148, y: null}, {x: 0.22923588, y: null}, {x: 0.0, y: null}, {x: 0.012531328, y: null}, {x: 0.0848, y: null}, {x: 0.089552239, y: null}, {x: 0.085850556, y: null}, {x: 0.103529412, y: null}, {x: 0.102824859, y: null}, {x: 0.0, y: null}, {x: 0.092913386, y: null}, {x: 0.043103448, y: null}, {x: 0.053921569, y: null}, {x: 0.053191489, y: null}, {x: 0.154929578, y: 292.744127}, {x: 0.122651934, y: 194.570504}, {x: 0.05786802, y: 443.440785}, {x: 0.046641791, y: null}, {x: 0.0, y: null}, {x: 0.054373522, y: null}, {x: 0.112798265, y: null}, {x: 0.064606742, y: null}, {x: 0.016627078, y: null}, {x: 0.016091954, y: null}, {x: 0.14739229, y: null}, {x: 0.0, y: null}, {x: 0.004728132, y: null}, {x: 0.103117506, y: null}, {x: 0.067969414, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012300123, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.102362205, y: null}, {x: 0.0, y: null}, {x: 0.02907916, y: null}, {x: 0.0, y: null}, {x: 0.061173533, y: null}, {x: 0.03131524, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039827772, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.139664805, y: null}, {x: 0.076487252, y: null}, {x: 0.024679171, y: null}, {x: 0.017191977, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043814433, y: null}, {x: 0.164242943, y: null}, {x: 0.032490975, y: null}, {x: 0.042414356, y: null}, {x: 0.102244389, y: null}, {x: 0.0, y: null}, {x: 0.017751479, y: null}, {x: 0.145320197, y: null}, {x: 0.061425061, y: null}, {x: 0.050632911, y: null}, {x: 0.0, y: 0.12512}, {x: 0.058394161, y: null}, {x: 0.249283668, y: null}, {x: 0.007936508, y: 5.77926}, {x: 0.030651341, y: null}, {x: 0.048387097, y: null}, {x: 0.100649351, y: null}, {x: 0.161616162, y: null}, {x: 0.114854518, y: null}, {x: 0.144787645, y: null}, {x: 0.177156177, y: null}, {x: 0.368421053, y: null}, {x: 0.0, y: null}, {x: 0.131715771, y: 734.949067}, {x: 0.371937639, y: null}, {x: 0.145631068, y: null}, {x: 0.212707182, y: null}, {x: 0.337209302, y: null}, {x: 0.288416076, y: null}, {x: 0.311111111, y: null}, {x: 0.148, y: null}, {x: 0.080882353, y: null}, {x: 0.058823529, y: null}, {x: 0.026159334, y: null}, {x: 0.0, y: null}, {x: 0.120665742, y: null}, {x: 0.294117647, y: null}, {x: 0.074404762, y: null}, {x: 0.0, y: null}, {x: 0.090707965, y: null}, {x: 0.455555556, y: 11.58294}, {x: 0.226821192, y: null}, {x: 0.123595506, y: 71.329358}, {x: 0.008196721, y: null}, {x: 0.267898383, y: null}, {x: 0.044334975, y: null}, {x: 0.08, y: null}, {x: 0.060240964, y: null}, {x: 0.014423077, y: null}, {x: 0.133333333, y: null}, {x: 0.009208103, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.027027027, y: null}, {x: 0.026258206, y: null}, {x: 0.109028961, y: null}, {x: 0.019642857, y: null}, {x: 0.192810458, y: null}, {x: 0.05974026, y: null}, {x: 0.170068027, y: 148.959479}, {x: 0.306779661, y: null}, {x: 0.035460993, y: null}, {x: 0.204481793, y: null}, {x: 0.052730697, y: null}, {x: 0.018329939, y: null}, {x: 0.198275862, y: null}, {x: 0.158, y: null}, {x: 0.013806706, y: null}, {x: 0.068131868, y: null}, {x: 0.046218487, y: null}, {x: 0.430084746, y: null}, {x: 0.128888889, y: null}, {x: 0.088737201, y: null}, {x: 0.271367521, y: null}, {x: 0.236768802, y: 291.200847}, {x: 0.063366337, y: null}, {x: 0.159857904, y: null}, {x: 0.155778895, y: null}, {x: 0.226832642, y: 123.559491}, {x: 0.078740157, y: null}, {x: 0.387533875, y: 253.998766}, {x: 0.084858569, y: 25.889026}, {x: 0.18556701, y: null}, {x: 0.067961165, y: 32.36738}, {x: 0.025695931, y: 54.925090000000004}, {x: 0.257668712, y: null}, {x: 0.09221902, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.062740077, y: null}, {x: 0.101960784, y: null}, {x: 0.019067797, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02970297, y: null}, {x: 0.058823529, y: null}, {x: 0.103686636, y: null}, {x: 0.009535161, y: null}, {x: 0.0, y: null}, {x: 0.099455041, y: null}, {x: 0.038369305, y: null}, {x: 0.0, y: null}, {x: 0.043956044, y: null}, {x: 0.021615472, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039624609, y: null}, {x: 0.0, y: 40.416186}, {x: 0.009328358, y: null}, {x: 0.0, y: null}, {x: 0.036144578, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019851117, y: null}, {x: 0.174418605, y: null}, {x: 0.010309278, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.013157895, y: null}, {x: 0.0, y: null}, {x: 0.002805049, y: null}, {x: 0.0, y: null}, {x: 0.02259887, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.144021739, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.159793814, y: null}, {x: 0.073412698, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.119533528, y: null}, {x: 0.037783375, y: null}, {x: 0.0, y: null}, {x: 0.033045977, y: null}, {x: 0.0, y: null}, {x: 0.026923077, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 1.80788}, {x: 0.031823745, y: null}, {x: 0.014285714, y: null}, {x: 0.0, y: null}, {x: 0.01650165, y: null}, {x: 0.0, y: null}, {x: 0.113402062, y: null}, {x: 0.080178174, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.175496689, y: null}, {x: 0.287895311, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059952038, y: 1.335464}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.03180212, y: null}, {x: 0.092178771, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034090909, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009210526, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033834586, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.072}, {x: 0.013307985, y: null}, {x: 0.0, y: null}, {x: 0.014925373, y: null}, {x: 0.053221289, y: null}, {x: 0.0, y: null}, {x: 0.036474164, y: null}, {x: 0.046943231, y: null}, {x: 0.02907489, y: null}, {x: 0.0, y: null}, {x: 0.153465347, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.271186441, y: null}, {x: 0.395348837, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.298219585, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011056511, y: null}, {x: 0.043568465, y: null}, {x: 0.073083779, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.044736842, y: null}, {x: 0.110070258, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.345102506, y: null}, {x: 0.040636042, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.098654709, y: null}, {x: 0.08361204, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.174556213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059701493, y: null}, {x: 0.274011299, y: null}, {x: 0.237435009, y: null}, {x: 0.307692308, y: null}, {x: 0.039215686, y: null}, {x: 0.083850932, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.073474471, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046590909, y: null}, {x: 0.214814815, y: null}, {x: 0.120734908, y: null}, {x: 0.138235294, y: null}, {x: 0.063917526, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: 32.512411}, {x: 0.168639053, y: null}, {x: 0.340206186, y: null}, {x: 0.308016878, y: null}, {x: 0.077862595, y: null}, {x: 0.051212938, y: null}, {x: 0.161572052, y: null}, {x: 0.213219616, y: null}, {x: 0.333333333, y: null}, {x: 0.456839309, y: null}, {x: 0.498771499, y: null}, {x: 0.25498008, y: null}, {x: 0.180376611, y: null}, {x: 0.148688047, y: null}, {x: 0.232704403, y: null}, {x: 0.078397213, y: null}, {x: 0.220657277, y: null}, {x: 0.0, y: null}, {x: 0.327536232, y: null}, {x: 0.050847458, y: null}, {x: 0.104081633, y: null}, {x: 0.115566038, y: null}, {x: 0.0, y: null}, {x: 0.415857605, y: null}, {x: 0.029279279, y: null}, {x: 0.024299065, y: null}, {x: 0.046070461, y: null}, {x: 0.142023346, y: null}, {x: 0.176043557, y: null}, {x: 0.159914712, y: null}, {x: 0.095723014, y: null}, {x: 0.389140272, y: null}, {x: 0.286858974, y: null}, {x: 0.40066778, y: null}, {x: 0.26973027, y: null}, {x: 0.54351145, y: null}, {x: 0.066478076, y: null}, {x: 0.203324808, y: 144.338492}, {x: 0.548148148, y: null}, {x: 0.242378049, y: null}, {x: 0.24, y: null}, {x: 0.405867971, y: null}, {x: 0.24173028, y: null}, {x: 0.130630631, y: null}, {x: 0.107936508, y: null}, {x: 0.31147541, y: null}, {x: 0.0, y: null}, {x: 0.063732929, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.058659218, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.07244898, y: null}, {x: 0.0, y: null}, {x: 0.012254902, y: null}, {x: 0.049222798, y: null}, {x: 0.21448468, y: null}, {x: 0.064085447, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020378457, y: null}, {x: 0.0, y: null}, {x: 0.143884892, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02739726, y: null}, {x: 0.0, y: null}, {x: 0.050827423, y: null}, {x: 0.020044543, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012793177, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030241935, y: null}, {x: 0.015358362, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009463722, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033846154, y: null}, {x: 0.035233161, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.077272727, y: null}, {x: 0.031578947, y: null}, {x: 0.045177045, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061251664, y: null}, {x: 0.041666667, y: null}, {x: 0.097201767, y: null}, {x: 0.088669951, y: null}, {x: 0.156316917, y: null}, {x: 0.016556291, y: null}, {x: 0.120111732, y: null}, {x: 0.021806854, y: null}, {x: 0.292479109, y: null}, {x: 0.148648649, y: null}, {x: 0.125454546, y: null}, {x: 0.0, y: null}, {x: 0.129411765, y: null}, {x: 0.011450382, y: null}, {x: 0.0, y: null}, {x: 0.020632737, y: null}, {x: 0.062374245, y: null}, {x: 0.0, y: null}, {x: 0.024608501, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.06779661, y: null}, {x: 0.056798623, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: null}, {x: 0.01547619, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.05794702, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02905569, y: null}, {x: 0.042416452, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02994012, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030188679, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.191964286, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050675676, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025405787, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.093959732, y: null}, {x: 0.097560976, y: null}, {x: 0.111380145, y: null}, {x: 0.051437216, y: null}, {x: 0.0, y: null}, {x: 0.10940919, y: null}, {x: 0.0, y: null}, {x: 0.134790528, y: null}, {x: 0.07173913, y: null}, {x: 0.17679558, y: null}, {x: 0.04551201, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01980198, y: null}, {x: 0.0, y: null}, {x: 0.084168337, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015911873, y: null}, {x: 0.0, y: null}, {x: 0.0215311, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052083333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.89}, {x: 0.0, y: null}, {x: 0.05372617, y: null}, {x: 0.041728763, y: null}, {x: 0.0, y: 0.18}, {x: 0.010158014, y: null}, {x: 0.00872818, y: 0.276}, {x: 0.016997167, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057142857, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045133992, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.03030303, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.393442623, y: 176.54059600000002}, {x: 0.313210849, y: null}, {x: 0.116154873, y: null}, {x: 0.157360406, y: null}, {x: 0.050802139, y: null}, {x: 0.314855876, y: null}, {x: 0.424802111, y: null}, {x: 0.183098592, y: null}, {x: 0.418367347, y: null}, {x: 0.422619048, y: null}, {x: 0.258205689, y: null}, {x: 0.413294798, y: null}, {x: 0.294478528, y: null}, {x: 0.405353729, y: null}, {x: 0.200371058, y: null}, {x: 0.574870912, y: null}, {x: 0.405759162, y: null}, {x: 0.213618158, y: null}, {x: 0.379248658, y: null}, {x: 0.479041916, y: null}, {x: 0.071782178, y: null}, {x: 0.057654076, y: null}, {x: 0.14978903, y: null}, {x: 0.0, y: null}, {x: 0.541052632, y: null}, {x: 0.607709751, y: null}, {x: 0.45026178, y: 6.126247}, {x: 0.252115059, y: null}, {x: 0.497360085, y: null}, {x: 0.120274914, y: null}, {x: 0.521052632, y: null}, {x: 0.500703235, y: null}, {x: 0.526734926, y: null}, {x: 0.18579235, y: null}, {x: 0.296482412, y: null}, {x: 0.357045144, y: null}, {x: 0.080701754, y: null}, {x: 0.212454213, y: null}, {x: 0.069637883, y: null}, {x: 0.317391304, y: null}, {x: 0.255681818, y: null}, {x: 0.154074074, y: null}, {x: 0.0, y: null}, {x: 0.285053929, y: null}, {x: 0.089403974, y: 38.4927}, {x: 0.323453608, y: null}, {x: 0.505555556, y: null}, {x: 0.41509434, y: null}, {x: 0.034696406, y: null}, {x: 0.368852459, y: null}, {x: 0.419161677, y: null}, {x: 0.261029412, y: null}, {x: 0.027075812, y: null}, {x: 0.225531915, y: null}, {x: 0.158995816, y: null}, {x: 0.021505376, y: null}, {x: 0.043478261, y: null}, {x: 0.0, y: null}, {x: 0.04505814, y: null}, {x: 0.031746032, y: null}, {x: 0.0, y: null}, {x: 0.030405405, y: null}, {x: 0.124444444, y: null}, {x: 0.013513514, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.196261682, y: null}, {x: 0.096267191, y: null}, {x: 0.0, y: null}, {x: 0.375930521, y: null}, {x: 0.067209776, y: null}, {x: 0.104417671, y: null}, {x: 0.131294964, y: null}, {x: 0.19851577, y: null}, {x: 0.001146789, y: null}, {x: 0.0, y: null}, {x: 0.037735849, y: null}, {x: 0.007352941, y: null}, {x: 0.021881838, y: null}, {x: 0.018126888, y: null}, {x: 0.132743363, y: null}, {x: 0.140625, y: null}, {x: 0.0, y: null}, {x: 0.057142857, y: null}, {x: 0.01426025, y: null}, {x: 0.0, y: null}, {x: 0.014440433, y: null}, {x: 0.0, y: null}, {x: 0.067857143, y: null}, {x: 0.024203822, y: null}, {x: 0.128787879, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095923261, y: null}, {x: 0.051792829, y: null}, {x: 0.036649215, y: 57.7297}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.068877551, y: null}, {x: 0.0, y: null}, {x: 0.090517241, y: null}, {x: 0.0, y: null}, {x: 0.025, y: null}, {x: 0.018281536, y: null}, {x: 0.041564792, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010752688, y: null}, {x: 0.024793388, y: null}, {x: 0.035714286, y: null}, {x: 0.0, y: null}, {x: 0.025536261, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.049865229, y: null}, {x: 0.076458753, y: null}, {x: 0.0, y: null}, {x: 0.010028653, y: null}, {x: 0.028358209, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.068571429, y: null}, {x: 0.0, y: null}, {x: 0.040966387, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.070921986, y: null}, {x: 0.19005102, y: null}, {x: 0.017797553, y: null}, {x: 0.031088083, y: null}, {x: 0.13452381, y: null}, {x: 0.102848101, y: 26.852272}, {x: 0.179584121, y: 17.432869}, {x: 0.0, y: null}, {x: 0.068759342, y: null}, {x: 0.07135362, y: 2.114101}, {x: 0.041050903, y: null}, {x: 0.03030303, y: 27.576203}, {x: 0.0, y: null}, {x: 0.013227513, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02698145, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022222222, y: null}, {x: 0.080357143, y: null}, {x: 0.029328288, y: 9.574524}, {x: 0.029020556, y: null}, {x: 0.092996556, y: null}, {x: 0.025984252, y: 17.33541}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.060263653, y: null}, {x: 0.041407867, y: null}, {x: 0.02685624, y: 19.605847}, {x: 0.0, y: null}, {x: 0.0, y: 0.363247}, {x: 0.0, y: null}, {x: 0.0, y: 51.7282}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019886364, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035714286, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029216467, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.092417062, y: null}, {x: 0.0, y: null}, {x: 0.029100529, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02238806, y: null}, {x: 0.0, y: null}, {x: 0.034862385, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005813953, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043715847, y: null}, {x: 0.0, y: null}, {x: 0.061349693, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.027855153, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010373444, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.00166113, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004914005, y: null}, {x: 0.015177066, y: null}, {x: 0.00486618, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.751364}, {x: 0.0, y: null}, {x: 0.044280443, y: null}, {x: 0.0, y: null}, {x: 0.020979021, y: null}, {x: 0.0, y: 0.6538919999999999}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01174743, y: null}, {x: 0.051020408, y: null}, {x: 0.056179775, y: null}, {x: 0.037837838, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034050179, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018987342, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033854167, y: null}, {x: 0.082191781, y: null}, {x: 0.056689342, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.056737589, y: null}, {x: 0.132183908, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043478261, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04375, y: null}, {x: 0.068597561, y: null}, {x: 0.038636364, y: null}, {x: 0.028257457, y: null}, {x: 0.029275809, y: null}, {x: 0.194936709, y: 19.621000000000002}, {x: 0.152487962, y: null}, {x: 0.078125, y: null}, {x: 0.0, y: null}, {x: 0.097759674, y: null}, {x: 0.0, y: null}, {x: 0.045584046, y: null}, {x: 0.072056239, y: null}, {x: 0.034068136, y: null}, {x: 0.196946565, y: null}, {x: 0.091445428, y: null}, {x: 0.12, y: null}, {x: 0.194274029, y: null}, {x: 0.387096774, y: null}, {x: 0.0, y: null}, {x: 0.033138402, y: null}, {x: 0.234899329, y: null}, {x: 0.378980892, y: null}, {x: 0.138121547, y: null}, {x: 0.0, y: null}, {x: 0.461038961, y: null}, {x: 0.365296804, y: null}, {x: 0.3866171, y: null}, {x: 0.397333333, y: null}, {x: 0.372657111, y: 37.631}, {x: 0.383193277, y: null}, {x: 0.434782609, y: null}, {x: 0.371034483, y: null}, {x: 0.445409429, y: null}, {x: 0.146907217, y: null}, {x: 0.393715342, y: 739.527068}, {x: 0.111904762, y: null}, {x: 0.666666667, y: null}, {x: 0.288537549, y: null}, {x: 0.259668508, y: null}, {x: 0.053380783, y: null}, {x: 0.340694006, y: null}, {x: 0.288590604, y: null}, {x: 0.145390071, y: null}, {x: 0.0, y: null}, {x: 0.122370937, y: null}, {x: 0.384863124, y: null}, {x: 0.04735376, y: null}, {x: 0.218818381, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065843621, y: null}, {x: 0.056451613, y: null}, {x: 0.031311155, y: null}, {x: 0.0, y: null}, {x: 0.216572505, y: null}, {x: 0.019354839, y: null}, {x: 0.140661939, y: null}, {x: 0.084337349, y: null}, {x: 0.0, y: null}, {x: 0.024390244, y: null}, {x: 0.0, y: null}, {x: 0.008517888, y: null}, {x: 0.072463768, y: null}, {x: 0.05015674, y: null}, {x: 0.040816327, y: null}, {x: 0.0, y: null}, {x: 0.019571295, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.072897196, y: null}, {x: 0.019354839, y: null}, {x: 0.063218391, y: null}, {x: 0.088495575, y: null}, {x: 0.02393617, y: null}, {x: 0.161691542, y: null}, {x: 0.228813559, y: null}, {x: 0.0, y: null}, {x: 0.070680628, y: null}, {x: 0.165441177, y: null}, {x: 0.077647059, y: null}, {x: 0.13986014, y: null}, {x: 0.422360248, y: null}, {x: 0.206422018, y: null}, {x: 0.105571848, y: 27.040660999999997}, {x: 0.188592456, y: 81.680767}, {x: 0.413510747, y: null}, {x: 0.20046083, y: null}, {x: 0.428571429, y: null}, {x: 0.203045685, y: 198.331469}, {x: 0.29924812, y: null}, {x: 0.28, y: null}, {x: 0.186813187, y: null}, {x: 0.081081081, y: null}, {x: 0.02811245, y: null}, {x: 0.11036036, y: null}, {x: 0.144249513, y: null}, {x: 0.0, y: null}, {x: 0.11409396, y: 7.279}, {x: 0.234939759, y: null}, {x: 0.107594937, y: null}, {x: 0.12716763, y: null}, {x: 0.066907776, y: null}, {x: 0.33037037, y: null}, {x: 0.159217877, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.068527919, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005444646, y: null}, {x: 0.0, y: null}, {x: 0.052631579, y: null}, {x: 0.022260274, y: null}, {x: 0.158024691, y: null}, {x: 0.0, y: null}, {x: 0.036666667, y: null}, {x: 0.030998852, y: null}, {x: 0.0, y: null}, {x: 0.072580645, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020151134, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010416667, y: null}, {x: 0.101851852, y: null}, {x: 0.270114943, y: null}, {x: 0.21669627, y: null}, {x: 0.135514019, y: null}, {x: 0.108555658, y: null}, {x: 0.0, y: null}, {x: 0.04107425, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024619841, y: null}, {x: 0.0, y: null}, {x: 0.116357504, y: null}, {x: 0.0, y: null}, {x: 0.026064292, y: null}, {x: 0.0, y: 1.005625}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.206597222, y: null}, {x: 0.016806723, y: 21.590654999999998}, {x: 0.147426982, y: 2.36377}, {x: 0.066964286, y: null}, {x: 0.07518797, y: 69.454067}, {x: 0.096774194, y: null}, {x: 0.084337349, y: null}, {x: 0.0, y: null}, {x: 0.077389985, y: null}, {x: 0.0, y: null}, {x: 0.058103976, y: null}, {x: 0.0, y: null}, {x: 0.029484029, y: null}, {x: 0.037135279, y: 4.023005}, {x: 0.039622642, y: null}, {x: 0.0, y: 15.273601}, {x: 0.0, y: null}, {x: 0.115027829, y: null}, {x: 0.145762712, y: null}, {x: 0.224274406, y: null}, {x: 0.253507014, y: 17.667698}, {x: 0.035816619, y: 130.09780700000002}, {x: 0.034782609, y: null}, {x: 0.020030817, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.08531746, y: null}, {x: 0.0, y: null}, {x: 0.036333609, y: 98.279335}, {x: 0.0, y: 0.465397}, {x: 0.0, y: null}, {x: 0.031141869, y: null}, {x: 0.029166667, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.4325, y: null}, {x: 0.333333333, y: null}, {x: 0.175324675, y: null}, {x: 0.294117647, y: null}, {x: 0.394822007, y: null}, {x: 0.551020408, y: 1.850684}, {x: 0.314049587, y: null}, {x: 0.444210526, y: null}, {x: 0.637288136, y: 211.675397}, {x: 0.362391034, y: null}, {x: 0.043037975, y: null}, {x: 0.225433526, y: null}, {x: 0.055555556, y: null}, {x: 0.0, y: null}, {x: 0.326424871, y: null}, {x: 0.0, y: 106.444359}, {x: 0.051980198, y: 2.454447}, {x: 0.0, y: null}, {x: 0.616045845, y: null}, {x: 0.0, y: null}, {x: 0.317021277, y: null}, {x: 0.0, y: null}, {x: 0.080513419, y: null}, {x: 0.0, y: null}, {x: 0.068877551, y: null}, {x: 0.025, y: null}, {x: 0.027554535, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 617.717181}, {x: 0.152697095, y: 0.620762}, {x: 0.104095563, y: null}, {x: 0.044502618, y: null}, {x: 0.136, y: null}, {x: 0.147663551, y: null}, {x: 0.113128492, y: null}, {x: 0.0, y: null}, {x: 0.092964824, y: null}, {x: 0.104347826, y: null}, {x: 0.048494983, y: null}, {x: 0.0, y: null}, {x: 0.011483254, y: null}, {x: 0.0, y: null}, {x: 0.109808102, y: null}, {x: 0.054580897, y: null}, {x: 0.056390977, y: null}, {x: 0.136729223, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.06405694, y: null}, {x: 0.0, y: null}, {x: 0.041269841, y: null}, {x: 0.065830721, y: null}, {x: 0.028571429, y: null}, {x: 0.098360656, y: null}, {x: 0.0, y: null}, {x: 0.169745958, y: null}, {x: 0.05106383, y: null}, {x: 0.01621074, y: null}, {x: 0.0, y: null}, {x: 0.0975, y: null}, {x: 0.0, y: null}, {x: 0.027687296, y: null}, {x: 0.0, y: null}, {x: 0.079457364, y: null}, {x: 0.0, y: null}, {x: 0.058503401, y: null}, {x: 0.118243243, y: null}, {x: 0.201298701, y: null}, {x: 0.011655012, y: null}, {x: 0.049618321, y: null}, {x: 0.060457516, y: null}, {x: 0.017958412, y: null}, {x: 0.0, y: null}, {x: 0.009198423, y: null}, {x: 0.0, y: null}, {x: 0.095744681, y: null}, {x: 0.092105263, y: null}, {x: 0.008323424, y: null}, {x: 0.009485095, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007207207, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.047277937, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026986507, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.086350975, y: null}, {x: 0.0, y: null}, {x: 0.011695906, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041884817, y: null}, {x: 0.081836327, y: null}, {x: 0.0, y: null}, {x: 0.043363995, y: null}, {x: 0.088039867, y: 385.927118}, {x: 0.0, y: 2.816}, {x: 0.0, y: null}, {x: 0.014880952, y: null}, {x: 0.020737327, y: null}, {x: 0.0, y: null}, {x: 0.028037383, y: null}, {x: 0.007692308, y: null}, {x: 0.008695652, y: null}, {x: 0.007374631, y: null}, {x: 0.063694268, y: null}, {x: 0.0, y: null}, {x: 0.020089286, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046328671, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025562372, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010596026, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018739353, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.031190926, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009208103, y: null}, {x: 0.048582996, y: null}, {x: 0.084291188, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028753994, y: null}, {x: 0.0, y: null}, {x: 0.014371257, y: null}, {x: 0.138592751, y: null}, {x: 0.04587156, y: null}, {x: 0.0, y: null}, {x: 0.030888031, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036423841, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052313883, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007326007, y: null}, {x: 0.089866157, y: null}, {x: 0.057971014, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041860465, y: null}, {x: 0.105263158, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026109661, y: null}, {x: 0.02189781, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032225579, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.45}, {x: 0.005896226, y: null}, {x: 0.071618037, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041499331, y: null}, {x: 0.016393443, y: null}, {x: 0.093706294, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039840637, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.108739837, y: null}, {x: 0.0, y: null}, {x: 0.048635824, y: null}, {x: 0.028391167, y: null}, {x: 0.0, y: null}, {x: 0.046312178, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045454545, y: null}, {x: 0.0, y: null}, {x: 0.023584906, y: 5e-05}, {x: 0.036328872, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017201835, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065306122, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038596491, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022075055, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02173913, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.283557047, y: null}, {x: 0.181008902, y: null}, {x: 0.066528067, y: null}, {x: 0.164930556, y: null}, {x: 0.168814433, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2479.88946}, {x: 0.098404255, y: null}, {x: 0.037931034, y: null}, {x: 0.040723982, y: null}, {x: 0.130091984, y: null}, {x: 0.100574713, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061403509, y: null}, {x: 0.032258065, y: 482.90002}, {x: 0.226337449, y: null}, {x: 0.384615385, y: 67.833}, {x: 0.033587786, y: null}, {x: 0.009708738, y: null}, {x: 0.047453704, y: null}, {x: 0.154175589, y: null}, {x: 0.076142132, y: null}, {x: 0.015513126, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.091286307, y: null}, {x: 0.052469136, y: null}, {x: 0.0, y: 55.29}, {x: 0.221350079, y: null}, {x: 0.09929078, y: null}, {x: 0.12, y: null}, {x: 0.025449102, y: null}, {x: 0.141426784, y: null}, {x: 0.124620061, y: null}, {x: 0.186440678, y: null}, {x: 0.152866242, y: null}, {x: 0.080392157, y: null}, {x: 0.096774194, y: null}, {x: 0.108, y: null}, {x: 0.097027972, y: null}, {x: 0.0, y: null}, {x: 0.177062374, y: null}, {x: 0.094302554, y: null}, {x: 0.097069597, y: null}, {x: 0.083333333, y: null}, {x: 0.02739726, y: null}, {x: 0.0, y: null}, {x: 0.08852459, y: null}, {x: 0.127937337, y: null}, {x: 0.089595376, y: null}, {x: 0.121212121, y: null}, {x: 0.235602094, y: null}, {x: 0.060085837, y: null}, {x: 0.252045827, y: null}, {x: 0.473229706, y: null}, {x: 0.166904422, y: null}, {x: 0.113333333, y: null}, {x: 0.209109731, y: null}, {x: 0.082474227, y: null}, {x: 0.076335878, y: null}, {x: 0.125, y: null}, {x: 0.071343639, y: null}, {x: 0.196202532, y: null}, {x: 0.152866242, y: null}, {x: 0.07204611, y: null}, {x: 0.152597403, y: null}, {x: 0.070826307, y: null}, {x: 0.062034739, y: null}, {x: 0.09375, y: 199.24}, {x: 0.144537815, y: null}, {x: 0.036697248, y: 654.51638}, {x: 0.0, y: null}, {x: 0.056626506, y: null}, {x: 0.02090209, y: null}, {x: 0.138576779, y: null}, {x: 0.0, y: null}, {x: 0.08681672, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054151625, y: null}, {x: 0.073394495, y: null}, {x: 0.0, y: null}, {x: 0.042553191, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039045553, y: null}, {x: 0.0, y: null}, {x: 0.020604396, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030769231, y: null}, {x: 0.01912261, y: null}, {x: 0.142857143, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045908184, y: null}, {x: 0.0, y: null}, {x: 0.009950249, y: null}, {x: 0.021321962, y: null}, {x: 0.037698413, y: null}, {x: 0.0, y: null}, {x: 0.01302682, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023782559, y: null}, {x: 0.028497409, y: null}, {x: 0.014851485, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02303263, y: null}, {x: 0.032335329, y: null}, {x: 0.024305556, y: null}, {x: 0.053030303, y: null}, {x: 0.026845638, y: null}, {x: 0.013774105, y: null}, {x: 0.024875622, y: null}, {x: 0.0, y: null}, {x: 0.016363636, y: null}, {x: 0.0, y: null}, {x: 0.04445919, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055194805, y: null}, {x: 0.0, y: null}, {x: 0.051204819, y: null}, {x: 0.0, y: null}, {x: 0.025280899, y: null}, {x: 0.016081871, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034574468, y: 396.4304}, {x: 0.058035714, y: null}, {x: 0.107189543, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023776224, y: null}, {x: 0.01773399, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.070205479, y: null}, {x: 0.073226545, y: null}, {x: 0.032520325, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0110957, y: null}, {x: 0.0, y: null}, {x: 0.031591738, y: null}, {x: 0.105263158, y: null}, {x: 0.031165312, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02851711, y: null}, {x: 0.02154195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02640264, y: null}, {x: 0.010526316, y: null}, {x: 0.0, y: null}, {x: 0.016472868, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017951426, y: null}, {x: 0.061417323, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051239669, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046483909, y: null}, {x: 0.054464286, y: null}, {x: 0.172032193, y: null}, {x: 0.0, y: null}, {x: 0.085843373, y: null}, {x: 0.045346062, y: null}, {x: 0.06779661, y: null}, {x: 0.215025907, y: null}, {x: 0.0, y: null}, {x: 0.07106599, y: null}, {x: 0.110228401, y: null}, {x: 0.178913738, y: null}, {x: 0.173370319, y: null}, {x: 0.0, y: null}, {x: 0.044267877, y: null}, {x: 0.045555556, y: null}, {x: 0.236588721, y: null}, {x: 0.0, y: null}, {x: 0.012974052, y: null}, {x: 0.107773852, y: null}, {x: 0.0, y: null}, {x: 0.150621118, y: null}, {x: 0.168122271, y: null}, {x: 0.064814815, y: null}, {x: 0.055624227, y: null}, {x: 0.063786008, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.127576055, y: null}, {x: 0.075647668, y: null}, {x: 0.077596996, y: null}, {x: 0.0, y: null}, {x: 0.076358297, y: null}, {x: 0.034343434, y: null}, {x: 0.057057057, y: null}, {x: 0.144927536, y: null}, {x: 0.0, y: null}, {x: 0.033762058, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017507724, y: null}, {x: 0.0, y: null}, {x: 0.070707071, y: null}, {x: 0.018404908, y: null}, {x: 0.003333333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040449438, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029411765, y: null}, {x: 0.0, y: null}, {x: 0.024128686, y: null}, {x: 0.0, y: null}, {x: 0.125748503, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020289855, y: null}, {x: 0.011627907, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040449438, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02006689, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066576087, y: null}, {x: 0.0, y: null}, {x: 0.037313433, y: null}, {x: 0.0, y: null}, {x: 0.041778976, y: null}, {x: 0.0, y: null}, {x: 0.026359143, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011350738, y: null}, {x: 0.0, y: null}, {x: 0.042253521, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040629096, y: null}, {x: 0.0, y: null}, {x: 0.021818182, y: null}, {x: 0.0, y: null}, {x: 0.040451552, y: null}, {x: 0.0, y: null}, {x: 0.039235412, y: null}, {x: 0.0, y: null}, {x: 0.031847134, y: null}, {x: 0.07217695, y: null}, {x: 0.046218487, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033444816, y: null}, {x: 0.0, y: null}, {x: 0.024523161, y: null}, {x: 0.0, y: null}, {x: 0.017348203, y: null}, {x: 0.022749753, y: null}, {x: 0.032432432, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0456621, y: null}, {x: 0.091743119, y: null}, {x: 0.0, y: null}, {x: 0.117546848, y: null}, {x: 0.106854839, y: null}, {x: 0.080445545, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043052838, y: null}, {x: 0.0, y: null}, {x: 0.057522124, y: null}, {x: 0.034482759, y: null}, {x: 0.061983471, y: null}, {x: 0.177014531, y: null}, {x: 0.068846816, y: null}, {x: 0.050824176, y: null}, {x: 0.086007702, y: null}, {x: 0.0, y: null}, {x: 0.022807018, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032653061, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046476762, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052447552, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089403974, y: null}, {x: 0.0, y: null}, {x: 0.081300813, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04954955, y: null}, {x: 0.042168675, y: null}, {x: 0.02266289, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.016528926, y: null}, {x: 0.037878788, y: null}, {x: 0.0, y: null}, {x: 0.036655212, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089576547, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.073684211, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.069767442, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.092819615, y: null}, {x: 0.0, y: null}, {x: 0.102902375, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046218487, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026, y: null}, {x: 0.0, y: null}, {x: 0.126394052, y: null}, {x: 0.035514019, y: null}, {x: 0.0, y: null}, {x: 0.021943574, y: null}, {x: 0.268571429, y: null}, {x: 0.150980392, y: null}, {x: 0.062962963, y: null}, {x: 0.0, y: null}, {x: 0.027240773, y: null}, {x: 0.0, y: null}, {x: 0.041753653, y: null}, {x: 0.010954617, y: null}, {x: 0.0, y: null}, {x: 0.205250597, y: null}, {x: 0.041666667, y: null}, {x: 0.0, y: null}, {x: 0.045375218, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017886179, y: null}, {x: 0.016042781, y: null}, {x: 0.0, y: null}, {x: 0.015765766, y: null}, {x: 0.0, y: null}, {x: 0.012131716, y: null}, {x: 0.070866142, y: null}, {x: 0.0, y: null}, {x: 0.107186358, y: null}, {x: 0.0, y: null}, {x: 0.086378738, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.129120879, y: null}, {x: 0.0, y: null}, {x: 0.013333333, y: null}, {x: 0.066225166, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017716535, y: null}, {x: 0.024615385, y: null}, {x: 0.125490196, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.078703704, y: null}, {x: 0.0, y: null}, {x: 0.030092593, y: null}, {x: 0.023593466, y: null}, {x: 0.0, y: null}, {x: 0.05952381, y: null}, {x: 0.144262295, y: null}, {x: 0.009153318, y: null}, {x: 0.253333333, y: null}, {x: 0.021479714, y: null}, {x: 0.0, y: 68.97}, {x: 0.0, y: null}, {x: 0.06244087, y: null}, {x: 0.041980624, y: null}, {x: 0.141356256, y: null}, {x: 0.261538462, y: null}, {x: 0.0, y: null}, {x: 0.185654008, y: null}, {x: 0.0, y: null}, {x: 0.054054054, y: null}, {x: 0.034, y: null}, {x: 0.0, y: null}, {x: 0.289198606, y: null}, {x: 0.097402597, y: null}, {x: 0.103658537, y: null}, {x: 0.048442907, y: null}, {x: 0.279835391, y: null}, {x: 0.1, y: null}, {x: 0.038888889, y: null}, {x: 0.095823096, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.107526882, y: null}, {x: 0.207627119, y: null}, {x: 0.096618357, y: null}, {x: 0.288359788, y: null}, {x: 0.120262391, y: null}, {x: 0.0, y: null}, {x: 0.169102297, y: null}, {x: 0.567708333, y: null}, {x: 0.107623318, y: null}, {x: 0.119533528, y: null}, {x: 0.339250493, y: null}, {x: 0.14973262, y: null}, {x: 0.199416342, y: null}, {x: 0.108391608, y: null}, {x: 0.242307692, y: null}, {x: 0.234722222, y: null}, {x: 0.134490239, y: null}, {x: 0.302752294, y: null}, {x: 0.326446281, y: null}, {x: 0.209265176, y: null}, {x: 0.131355932, y: null}, {x: 0.145557656, y: null}, {x: 0.056603774, y: null}, {x: 0.35971223, y: null}, {x: 0.125874126, y: null}, {x: 0.206997085, y: null}, {x: 0.329949239, y: null}, {x: 0.0, y: null}, {x: 0.089655172, y: null}, {x: 0.084536082, y: null}, {x: 0.053398058, y: null}, {x: 0.0, y: null}, {x: 0.10989011, y: null}, {x: 0.0, y: null}, {x: 0.128113879, y: null}, {x: 0.281368821, y: null}, {x: 0.206543967, y: null}, {x: 0.143872114, y: null}, {x: 0.338666667, y: null}, {x: 0.041158537, y: null}, {x: 0.219435737, y: null}, {x: 0.533333333, y: null}, {x: 0.415708812, y: null}, {x: 0.33481153, y: null}, {x: 0.082733813, y: null}, {x: 0.082758621, y: null}, {x: 0.043973941, y: null}, {x: 0.168301887, y: null}, {x: 0.061290323, y: null}, {x: 0.059278351, y: null}, {x: 0.13898917, y: null}, {x: 0.0, y: null}, {x: 0.241883117, y: null}, {x: 0.0, y: null}, {x: 0.2375, y: null}, {x: 0.188010899, y: null}, {x: 0.14004914, y: null}, {x: 0.205128205, y: null}, {x: 0.144249513, y: null}, {x: 0.174285714, y: null}, {x: 0.233031674, y: null}, {x: 0.565995526, y: null}, {x: 0.235588972, y: null}, {x: 0.265346535, y: null}, {x: 0.174447174, y: null}, {x: 0.225913621, y: null}, {x: 0.033557047, y: null}, {x: 0.127586207, y: null}, {x: 0.190476191, y: null}, {x: 0.177902622, y: null}, {x: 0.281437126, y: null}, {x: 0.114722753, y: null}, {x: 0.00805153, y: null}, {x: 0.407079646, y: null}, {x: 0.022222222, y: null}, {x: 0.0, y: null}, {x: 0.172222222, y: null}, {x: 0.292134832, y: null}, {x: 0.0, y: null}, {x: 0.297235023, y: null}, {x: 0.044585987, y: null}, {x: 0.227083333, y: null}, {x: 0.064467766, y: null}, {x: 0.0, y: null}, {x: 0.335044929, y: null}, {x: 0.189937107, y: null}, {x: 0.166666667, y: null}, {x: 0.102199224, y: null}, {x: 0.168949772, y: null}, {x: 0.181514477, y: null}, {x: 0.054522924, y: null}, {x: 0.279094828, y: null}, {x: 0.0, y: null}, {x: 0.058479532, y: null}, {x: 0.227891157, y: null}, {x: 0.058585859, y: null}, {x: 0.065810594, y: null}, {x: 0.119587629, y: null}, {x: 0.126470588, y: null}, {x: 0.01399689, y: null}, {x: 0.06744868, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018759019, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042654028, y: null}, {x: 0.0, y: null}, {x: 0.034246575, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046065259, y: null}, {x: 0.063291139, y: null}, {x: 0.070422535, y: null}, {x: 0.206235012, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.091883614, y: null}, {x: 0.0, y: null}, {x: 0.032319392, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.235294118, y: null}, {x: 0.024475524, y: null}, {x: 0.0, y: null}, {x: 0.1, y: null}, {x: 0.06271777, y: null}, {x: 0.11786372, y: null}, {x: 0.0, y: null}, {x: 0.018108652, y: null}, {x: 0.0, y: null}, {x: 0.099576271, y: null}, {x: 0.072115385, y: null}, {x: 0.0, y: null}, {x: 0.092063492, y: null}, {x: 0.0203125, y: null}, {x: 0.0, y: null}, {x: 0.096064815, y: null}, {x: 0.140186916, y: null}, {x: 0.057507987, y: null}, {x: 0.319248826, y: null}, {x: 0.139616056, y: null}, {x: 0.116838488, y: null}, {x: 0.23015873, y: null}, {x: 0.205128205, y: null}, {x: 0.088888889, y: null}, {x: 0.152097902, y: null}, {x: 0.172523962, y: null}, {x: 0.019704434, y: null}, {x: 0.0, y: null}, {x: 0.016203704, y: null}, {x: 0.164300203, y: null}, {x: 0.35483871, y: null}, {x: 0.019047619, y: null}, {x: 0.067385445, y: null}, {x: 0.122147651, y: null}, {x: 0.029374202, y: 2.8}, {x: 0.066066066, y: null}, {x: 0.083160083, y: null}, {x: 0.012987013, y: null}, {x: 0.0, y: null}, {x: 0.118568233, y: null}, {x: 0.119122257, y: null}, {x: 0.001658375, y: null}, {x: 0.01971831, y: null}, {x: 0.060273973, y: null}, {x: 0.013808976, y: null}, {x: 0.030075188, y: null}, {x: 0.268336315, y: null}, {x: 0.075496689, y: null}, {x: 0.0, y: null}, {x: 0.011612903, y: null}, {x: 0.052066116, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.104770017, y: null}, {x: 0.017045455, y: null}, {x: 0.0, y: null}, {x: 1.0, y: null}, {x: 0.0, y: null}, {x: 0.033868093, y: null}, {x: 0.01793722, y: null}, {x: 0.089552239, y: null}, {x: 0.0, y: null}, {x: 0.070818071, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.098880597, y: null}, {x: 0.0, y: null}, {x: 0.17791411, y: null}, {x: 0.123123123, y: null}, {x: 0.085889571, y: null}, {x: 0.04665826, y: null}, {x: 0.074168798, y: null}, {x: 0.090686275, y: null}, {x: 0.050420168, y: null}, {x: 0.067961165, y: null}, {x: 0.0, y: null}, {x: 0.010830325, y: null}, {x: 0.020522388, y: null}, {x: 0.104874446, y: null}, {x: 0.066176471, y: null}, {x: 0.017333333, y: 1.38}, {x: 0.0, y: null}, {x: 0.061269147, y: 3.71}, {x: 0.0, y: null}, {x: 0.061389338, y: null}, {x: 0.03021978, y: null}, {x: 0.022140221, y: null}, {x: 0.0, y: null}, {x: 0.036036036, y: null}, {x: 0.016227181, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.048628429, y: null}, {x: 0.03931848, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.159045726, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.058551618, y: null}, {x: 0.098214286, y: null}, {x: 0.105849582, y: null}, {x: 0.10701107, y: null}, {x: 0.014925373, y: null}, {x: 0.124590164, y: null}, {x: 0.462857143, y: null}, {x: 0.062761506, y: null}, {x: 0.016563147, y: null}, {x: 0.029059829, y: 1.975}, {x: 0.021276596, y: null}, {x: 0.0, y: null}, {x: 0.022788204, y: null}, {x: 0.026578073, y: 45.306}, {x: 0.055319149, y: null}, {x: 0.177747626, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085889571, y: null}, {x: 0.0, y: null}, {x: 0.177446103, y: null}, {x: 0.0, y: null}, {x: 0.150214592, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081850534, y: null}, {x: 0.0, y: null}, {x: 0.030405405, y: null}, {x: 0.07660021, y: null}, {x: 0.0, y: null}, {x: 0.025510204, y: null}, {x: 0.073359073, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055155875, y: null}, {x: 0.181488203, y: null}, {x: 0.010404624, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.149405773, y: 12.033039}, {x: 0.005181347, y: null}, {x: 0.127272727, y: null}, {x: 0.050179211, y: null}, {x: 0.09765625, y: null}, {x: 0.0, y: null}, {x: 0.060869565, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061806656, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095823096, y: null}, {x: 0.015831135, y: null}, {x: 0.035591274, y: null}, {x: 0.0, y: null}, {x: 0.125766871, y: null}, {x: 0.025796662, y: null}, {x: 0.016304348, y: null}, {x: 0.025575448, y: null}, {x: 0.016574586, y: null}, {x: 0.0, y: null}, {x: 0.017605634, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.016835017, y: null}, {x: 0.065217391, y: null}, {x: 0.048913043, y: null}, {x: 0.176211454, y: null}, {x: 0.073015873, y: null}, {x: 0.099236641, y: null}, {x: 0.15727003, y: null}, {x: 0.02739726, y: null}, {x: 0.020881671, y: null}, {x: 0.0, y: null}, {x: 0.068627451, y: null}, {x: 0.108108108, y: null}, {x: 0.051118211, y: null}, {x: 0.0, y: null}, {x: 0.015904573, y: null}, {x: 0.106145251, y: null}, {x: 0.029680365, y: null}, {x: 0.071261682, y: null}, {x: 0.021683673, y: null}, {x: 0.0, y: null}, {x: 0.053511706, y: null}, {x: 0.116483517, y: null}, {x: 0.0, y: null}, {x: 0.041666667, y: null}, {x: 0.0, y: null}, {x: 0.019133938, y: null}, {x: 0.191964286, y: null}, {x: 0.0, y: null}, {x: 0.022088353, y: null}, {x: 0.110552764, y: null}, {x: 0.033898305, y: null}, {x: 0.193415638, y: null}, {x: 0.023809524, y: null}, {x: 0.0, y: null}, {x: 0.009977827, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035532995, y: null}, {x: 0.0, y: null}, {x: 0.032478632, y: null}, {x: 0.0, y: null}, {x: 0.0176, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055610725, y: null}, {x: 0.030144168, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.045364892, y: null}, {x: 0.135635019, y: null}, {x: 0.0, y: null}, {x: 0.018808777, y: null}, {x: 0.0, y: null}, {x: 0.047445255, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066596195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019083969, y: null}, {x: 0.040816327, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042016807, y: null}, {x: 0.0, y: null}, {x: 0.017204301, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.021252796, y: null}, {x: 0.03892944, y: null}, {x: 0.0, y: null}, {x: 0.038043478, y: null}, {x: 0.113960114, y: 0.0117}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.181598063, y: null}, {x: 0.0625, y: null}, {x: 0.121666667, y: null}, {x: 0.032608696, y: null}, {x: 0.027600849, y: null}, {x: 0.053380783, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038709677, y: null}, {x: 0.016949153, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.074410163, y: null}, {x: 0.0, y: null}, {x: 0.056666667, y: null}, {x: 0.038265306, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025878004, y: null}, {x: 0.020262217, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015189873, y: null}, {x: 0.025974026, y: null}, {x: 0.043956044, y: null}, {x: 0.031862745, y: null}, {x: 0.011293635, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.056603774, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071969697, y: null}, {x: 0.111111111, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061046512, y: null}, {x: 0.021505376, y: null}, {x: 0.0, y: null}, {x: 0.040235525, y: null}, {x: 0.05631068, y: null}, {x: 0.017932489, y: null}, {x: 0.085343228, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043026706, y: null}, {x: 0.0, y: null}, {x: 0.054279749, y: null}, {x: 0.192949907, y: null}, {x: 0.0, y: null}, {x: 0.135542169, y: null}, {x: 0.048598131, y: null}, {x: 0.018571429, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.042654028, y: null}, {x: 0.040066778, y: null}, {x: 0.024324324, y: null}, {x: 0.062982005, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.103752759, y: null}, {x: 0.081845238, y: null}, {x: 0.0, y: null}, {x: 0.104056437, y: null}, {x: 0.201818182, y: null}, {x: 0.243291592, y: null}, {x: 0.01641791, y: null}, {x: 0.017944535, y: null}, {x: 0.030864198, y: null}, {x: 0.05399061, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026086957, y: null}, {x: 0.10310559, y: null}, {x: 0.331125828, y: null}, {x: 0.061583578, y: null}, {x: 0.0, y: null}, {x: 0.027027027, y: null}, {x: 0.035066505, y: null}, {x: 0.086633663, y: null}, {x: 0.023722628, y: null}, {x: 0.022900763, y: null}, {x: 0.0, y: null}, {x: 0.025824964, y: null}, {x: 0.0, y: null}, {x: 0.056818182, y: null}, {x: 0.10567297, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057957682, y: null}, {x: 0.083687943, y: null}, {x: 0.011111111, y: null}, {x: 0.012844037, y: null}, {x: 0.014975042, y: null}, {x: 0.0, y: null}, {x: 0.024024024, y: null}, {x: 0.020454545, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025500911, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.276422764, y: null}, {x: 0.152466368, y: null}, {x: 0.0, y: null}, {x: 0.145958987, y: null}, {x: 0.0, y: null}, {x: 0.059090909, y: null}, {x: 0.076502732, y: null}, {x: 0.056089744, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035532995, y: null}, {x: 0.08852459, y: null}, {x: 0.205702648, y: null}, {x: 0.142642643, y: null}, {x: 0.0, y: null}, {x: 0.020771513, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.161001789, y: null}, {x: 0.031100478, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018617021, y: null}, {x: 0.018292683, y: null}, {x: 0.018789144, y: null}, {x: 0.01312336, y: null}, {x: 0.0, y: null}, {x: 0.051580699, y: null}, {x: 0.0, y: null}, {x: 0.021176471, y: null}, {x: 0.0, y: null}, {x: 0.034482759, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055555556, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032894737, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032537961, y: null}, {x: 0.0, y: null}, {x: 0.009287926, y: null}, {x: 0.093959732, y: null}, {x: 0.082512315, y: null}, {x: 0.037105751, y: null}, {x: 0.120840631, y: null}, {x: 0.0, y: null}, {x: 0.034013605, y: null}, {x: 0.072727273, y: null}, {x: 0.043256997, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.07773386, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.049557522, y: null}, {x: 0.058181818, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.041474654, y: null}, {x: 0.020618557, y: null}, {x: 0.0, y: null}, {x: 0.021164021, y: null}, {x: 0.028537455, y: null}, {x: 0.0, y: null}, {x: 0.153164557, y: null}, {x: 0.069767442, y: null}, {x: 0.013133208, y: null}, {x: 0.092631579, y: null}, {x: 0.010309278, y: null}, {x: 0.026392962, y: null}, {x: 0.027950311, y: null}, {x: 0.022988506, y: null}, {x: 0.038095238, y: null}, {x: 0.026200873, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035447761, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040735874, y: null}, {x: 0.046224961, y: null}, {x: 0.0, y: null}, {x: 0.052401747, y: null}, {x: 0.023746702, y: null}, {x: 0.0, y: null}, {x: 0.19126506, y: null}, {x: 0.0, y: null}, {x: 0.135379061, y: null}, {x: 0.203947368, y: null}, {x: 0.028571429, y: null}, {x: 0.198501873, y: null}, {x: 0.052238806, y: null}, {x: 0.065902579, y: null}, {x: 0.099778271, y: null}, {x: 0.019522777, y: null}, {x: 0.276061776, y: null}, {x: 0.452012384, y: null}, {x: 0.480591497, y: null}, {x: 0.325551232, y: null}, {x: 0.177613321, y: null}, {x: 0.243243243, y: null}, {x: 0.156989247, y: null}, {x: 0.149321267, y: null}, {x: 0.03950104, y: null}, {x: 0.440438872, y: null}, {x: 0.0, y: null}, {x: 0.300636943, y: null}, {x: 0.0, y: null}, {x: 0.247552448, y: null}, {x: 0.516778524, y: null}, {x: 0.132764921, y: null}, {x: 0.128484849, y: null}, {x: 0.027227723, y: null}, {x: 0.182149363, y: null}, {x: 0.016620499, y: null}, {x: 0.056338028, y: null}, {x: 0.018018018, y: null}, {x: 0.158227848, y: null}, {x: 0.203791469, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054982818, y: null}, {x: 0.039055404, y: null}, {x: 0.051873199, y: null}, {x: 0.0, y: null}, {x: 0.127596439, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.158730159, y: null}, {x: 0.059196617, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.161048689, y: null}, {x: 0.0, y: null}, {x: 0.145748988, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039792388, y: null}, {x: 0.0, y: null}, {x: 0.027272727, y: null}, {x: 0.059440559, y: null}, {x: 0.0, y: null}, {x: 0.146084337, y: null}, {x: 0.005167959, y: null}, {x: 0.057443366, y: null}, {x: 0.046632124, y: null}, {x: 0.029147982, y: null}, {x: 0.0202977, y: null}, {x: 0.052111411, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081534772, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.079726651, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076595745, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050200803, y: null}, {x: 0.0, y: null}, {x: 0.033126294, y: null}, {x: 0.0, y: null}, {x: 0.015572859, y: 0.0002}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.27458493, y: null}, {x: 0.120224719, y: null}, {x: 0.176100629, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024577573, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029498525, y: null}, {x: 0.0, y: null}, {x: 0.086021505, y: null}, {x: 0.0, y: null}, {x: 0.14861461, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.18839779, y: null}, {x: 0.379174853, y: null}, {x: 0.059067358, y: null}, {x: 0.0, y: null}, {x: 0.067547724, y: null}, {x: 0.103852596, y: null}, {x: 0.069990412, y: null}, {x: 0.052258636, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02688172, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040251572, y: null}, {x: 0.011220196, y: null}, {x: 0.047619048, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.092213115, y: null}, {x: 0.045676998, y: null}, {x: 0.0, y: null}, {x: 0.019202363, y: null}, {x: 0.0, y: null}, {x: 0.078677309, y: null}, {x: 0.26446281, y: null}, {x: 0.086614173, y: null}, {x: 0.329113924, y: null}, {x: 0.012048193, y: null}, {x: 0.049535604, y: null}, {x: 0.036101083, y: null}, {x: 0.10786802, y: null}, {x: 0.029950083, y: null}, {x: 0.0, y: null}, {x: 0.019920319, y: null}, {x: 0.057471264, y: null}, {x: 0.015325671, y: null}, {x: 0.03514377, y: null}, {x: 0.020887728, y: null}, {x: 0.169642857, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.078651685, y: null}, {x: 0.021403092, y: null}, {x: 0.017045455, y: null}, {x: 0.044834308, y: null}, {x: 0.0, y: null}, {x: 0.035087719, y: null}, {x: 0.025330396, y: null}, {x: 0.055162659, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076986755, y: null}, {x: 0.050847458, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012461059, y: null}, {x: 0.0, y: null}, {x: 0.120792079, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.016320475, y: null}, {x: 0.011535049, y: null}, {x: 0.0, y: null}, {x: 0.065934066, y: null}, {x: 0.085981308, y: null}, {x: 0.0, y: null}, {x: 0.024705882, y: null}, {x: 0.0, y: null}, {x: 0.022288262, y: null}, {x: 0.037585421, y: null}, {x: 0.066066066, y: null}, {x: 0.011142061, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.123493976, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076923077, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012787724, y: null}, {x: 0.113402062, y: null}, {x: 0.051212938, y: null}, {x: 0.0, y: null}, {x: 0.096491228, y: null}, {x: 0.0, y: null}, {x: 0.041580042, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033738192, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.013875124, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.222222222, y: null}, {x: 0.0, y: null}, {x: 0.053497942, y: null}, {x: 0.147914033, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.152671756, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051807229, y: null}, {x: 0.046070461, y: null}, {x: 0.0, y: null}, {x: 0.027372263, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.031858407, y: null}, {x: 0.10090703, y: null}, {x: 0.066539924, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004716981, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014705882, y: null}, {x: 0.040268456, y: null}, {x: 0.0, y: null}, {x: 0.031104199, y: null}, {x: 0.055393586, y: null}, {x: 0.011795544, y: null}, {x: 0.0, y: null}, {x: 0.016260163, y: null}, {x: 0.0, y: null}, {x: 0.048920863, y: null}, {x: 0.106598985, y: null}, {x: 0.0, y: null}, {x: 0.030816641, y: null}, {x: 0.0, y: null}, {x: 0.10741688, y: null}, {x: 0.030534351, y: null}, {x: 0.18579235, y: null}, {x: 0.0, y: null}, {x: 0.049360146, y: null}, {x: 0.111111111, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046511628, y: null}, {x: 0.04021164, y: null}, {x: 0.012509773, y: null}, {x: 0.05907173, y: null}, {x: 0.0, y: null}, {x: 0.03442029, y: null}, {x: 0.101449275, y: null}, {x: 0.0, y: null}, {x: 0.023376623, y: null}, {x: 0.095435685, y: null}, {x: 0.080675422, y: null}, {x: 0.084210526, y: null}, {x: 0.220689655, y: null}, {x: 0.348804501, y: null}, {x: 0.042168675, y: null}, {x: 0.0, y: null}, {x: 0.232876712, y: null}, {x: 0.053272451, y: null}, {x: 0.0, y: null}, {x: 0.093896714, y: null}, {x: 0.019296254, y: null}, {x: 0.0, y: null}, {x: 0.043010753, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.095567867, y: null}, {x: 0.023391813, y: null}, {x: 0.0, y: null}, {x: 0.032906764, y: null}, {x: 0.0, y: null}, {x: 0.039130435, y: null}, {x: 0.076205288, y: null}, {x: 0.049327354, y: null}, {x: 0.0, y: null}, {x: 0.117647059, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054901961, y: null}, {x: 0.05615942, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.017467249, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050458716, y: null}, {x: 0.0, y: null}, {x: 0.027444254, y: null}, {x: 0.0, y: null}, {x: 0.022160665, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071428571, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019011407, y: null}, {x: 0.025, y: null}, {x: 0.0, y: null}, {x: 0.166666667, y: null}, {x: 0.144970414, y: null}, {x: 0.045845272, y: null}, {x: 0.098924731, y: null}, {x: 0.108910891, y: null}, {x: 0.114035088, y: null}, {x: 0.051490515, y: null}, {x: 0.326424871, y: null}, {x: 0.294776119, y: null}, {x: 0.149925038, y: null}, {x: 0.081395349, y: null}, {x: 0.067741935, y: null}, {x: 0.112033195, y: null}, {x: 0.218018018, y: null}, {x: 0.067975831, y: null}, {x: 0.0, y: null}, {x: 0.03343949, y: null}, {x: 0.0, y: null}, {x: 0.475195823, y: null}, {x: 0.057086614, y: null}, {x: 0.152027027, y: null}, {x: 0.246753247, y: null}, {x: 0.17384106, y: null}, {x: 0.230476191, y: null}, {x: 0.251162791, y: null}, {x: 0.072635135, y: null}, {x: 0.0, y: null}, {x: 0.031553398, y: null}, {x: 0.341494845, y: null}, {x: 0.270457698, y: null}, {x: 0.0, y: null}, {x: 0.105633803, y: null}, {x: 0.206053551, y: null}, {x: 0.038461538, y: null}, {x: 0.120822622, y: null}, {x: 0.0, y: null}, {x: 0.243107769, y: null}, {x: 0.0, y: null}, {x: 0.12952381, y: null}, {x: 0.064088398, y: null}, {x: 0.07150368, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.079777365, y: null}, {x: 0.0, y: null}, {x: 0.041728763, y: null}, {x: 0.172470978, y: null}, {x: 0.264750378, y: null}, {x: 0.048695652, y: null}, {x: 0.112474438, y: null}, {x: 0.069948187, y: null}, {x: 0.135638298, y: null}, {x: 0.160068847, y: null}, {x: 0.171641791, y: null}, {x: 0.138613861, y: null}, {x: 0.096563011, y: null}, {x: 0.099078341, y: null}, {x: 0.0, y: null}, {x: 0.054151625, y: null}, {x: 0.0, y: null}, {x: 0.132989025, y: null}, {x: 0.048959608, y: null}, {x: 0.036637931, y: null}, {x: 0.1625, y: null}, {x: 0.042139384, y: null}, {x: 0.178194607, y: null}, {x: 0.0, y: null}, {x: 0.053521127, y: null}, {x: 0.155993432, y: null}, {x: 0.031296572, y: null}, {x: 0.048433048, y: null}, {x: 0.088421053, y: null}, {x: 0.117424242, y: null}, {x: 0.023779725, y: null}, {x: 0.116257947, y: null}, {x: 0.115906289, y: null}, {x: 0.012, y: null}, {x: 0.0, y: null}, {x: 0.027355623, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057901086, y: null}, {x: 0.018575851, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.141906874, y: null}, {x: 0.110192838, y: null}, {x: 0.087096774, y: null}, {x: 0.034642032, y: null}, {x: 0.258064516, y: null}, {x: 0.0, y: null}, {x: 0.091234347, y: null}, {x: 0.0, y: null}, {x: 0.030487805, y: null}, {x: 0.04261796, y: null}, {x: 0.038076152, y: null}, {x: 0.035816619, y: null}, {x: 0.036247335, y: null}, {x: 0.044692737, y: null}, {x: 0.010498688, y: null}, {x: 0.0, y: null}, {x: 0.06284658, y: null}, {x: 0.011627907, y: null}, {x: 0.037414966, y: null}, {x: 0.146236559, y: null}, {x: 0.0, y: null}, {x: 0.154716981, y: null}, {x: 0.131113424, y: null}, {x: 0.053003534, y: null}, {x: 0.06505102, y: null}, {x: 0.114886731, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.096952909, y: null}, {x: 0.0, y: null}, {x: 0.075851393, y: null}, {x: 0.100358423, y: null}, {x: 0.0, y: null}, {x: 0.053892216, y: null}, {x: 0.161290323, y: null}, {x: 0.0, y: null}, {x: 0.07375, y: null}, {x: 0.153262519, y: null}, {x: 0.127979925, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022826087, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.057915058, y: null}, {x: 0.278911565, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.118206522, y: null}, {x: 0.106382979, y: null}, {x: 0.0, y: null}, {x: 0.168449198, y: null}, {x: 0.0, y: null}, {x: 0.097222222, y: null}, {x: 0.057361377, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.044345898, y: null}, {x: 0.068807339, y: null}, {x: 0.104100946, y: null}, {x: 0.028894472, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040299906, y: null}, {x: 0.045296167, y: null}, {x: 0.088050314, y: null}, {x: 0.122807018, y: null}, {x: 0.021912351, y: null}, {x: 0.021235521, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.046920821, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.123036649, y: null}, {x: 0.0, y: null}, {x: 0.027480916, y: null}, {x: 0.054054054, y: null}, {x: 0.054794521, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.061403509, y: null}, {x: 0.07037037, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.094117647, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01986755, y: null}, {x: 0.0, y: null}, {x: 0.026649746, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028416779, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076555024, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.084415584, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011574074, y: null}, {x: 0.03601108, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.037558685, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.037887486, y: null}, {x: 0.0, y: null}, {x: 0.049668874, y: null}, {x: 0.123870968, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026687598, y: null}, {x: 0.016977929, y: null}, {x: 0.175690608, y: null}, {x: 0.009400705, y: null}, {x: 0.253048781, y: null}, {x: 0.051136364, y: null}, {x: 0.095814978, y: null}, {x: 0.278873239, y: null}, {x: 0.045375218, y: null}, {x: 0.046768707, y: null}, {x: 0.032745592, y: null}, {x: 0.067375887, y: null}, {x: 0.035087719, y: null}, {x: 0.02994012, y: null}, {x: 0.010327022, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004123711, y: null}, {x: 0.132492114, y: null}, {x: 0.0, y: null}, {x: 0.09255079, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.09447983, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035483871, y: 3617.0713}, {x: 0.0, y: null}, {x: 0.013740458, y: null}, {x: 0.012113055, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019047619, y: null}, {x: 0.0, y: null}, {x: 0.033898305, y: null}, {x: 0.0, y: null}, {x: 0.017897092, y: null}, {x: 0.0, y: null}, {x: 0.024506467, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.05794948, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.116136919, y: null}, {x: 0.0, y: null}, {x: 0.03, y: 21.541675}, {x: 0.060377358, y: null}, {x: 0.0, y: null}, {x: 0.120287253, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066838046, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010650888, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009009009, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011308562, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.021042}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.015625, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008849558, y: null}, {x: 0.013846154, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035874439, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.088291747, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085313175, y: null}, {x: 0.332382311, y: null}, {x: 0.288, y: null}, {x: 0.126984127, y: null}, {x: 0.193298969, y: null}, {x: 0.220338983, y: null}, {x: 0.24137931, y: null}, {x: 0.129554656, y: null}, {x: 0.04519774, y: null}, {x: 0.080174927, y: null}, {x: 0.130237826, y: null}, {x: 0.170426065, y: null}, {x: 0.007556675, y: null}, {x: 0.0, y: null}, {x: 0.300484653, y: null}, {x: 0.215256008, y: null}, {x: 0.238341969, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.047945205, y: null}, {x: 0.266033254, y: null}, {x: 0.289398281, y: null}, {x: 0.0, y: null}, {x: 0.080944351, y: null}, {x: 0.177033493, y: null}, {x: 0.0, y: null}, {x: 0.429012346, y: null}, {x: 0.070840198, y: null}, {x: 0.0, y: null}, {x: 0.060100167, y: null}, {x: 0.422924901, y: null}, {x: 0.212475634, y: null}, {x: 0.117540687, y: null}, {x: 0.269293925, y: null}, {x: 0.048672566, y: null}, {x: 0.019067797, y: null}, {x: 0.0, y: null}, {x: 0.313656388, y: null}, {x: 0.0, y: null}, {x: 0.371323529, y: null}, {x: 0.055797733, y: null}, {x: 0.172248804, y: null}, {x: 0.06035503, y: null}, {x: 0.122340426, y: null}, {x: 0.0, y: null}, {x: 0.063444109, y: null}, {x: 0.106598985, y: null}, {x: 0.0, y: null}, {x: 0.135775862, y: null}, {x: 0.22614841, y: null}, {x: 0.228486647, y: null}, {x: 0.370283019, y: null}, {x: 0.145129225, y: null}, {x: 0.073170732, y: null}, {x: 0.091338583, y: null}, {x: 0.0, y: null}, {x: 0.095528455, y: null}, {x: 0.074148297, y: null}, {x: 0.266452649, y: null}, {x: 0.117647059, y: null}, {x: 0.0, y: null}, {x: 0.038732394, y: null}, {x: 0.0, y: null}, {x: 0.010570825, y: null}, {x: 0.061287028, y: null}, {x: 0.018544936, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050359712, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071593533, y: null}, {x: 0.012962963, y: null}, {x: 0.0, y: null}, {x: 0.010062893, y: null}, {x: 0.012302285, y: null}, {x: 0.03874092, y: null}, {x: 0.0, y: null}, {x: 0.011363636, y: null}, {x: 0.0, y: null}, {x: 0.047318612, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029593095, y: null}, {x: 0.0, y: null}, {x: 0.012121212, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.112258065, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.120071685, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007430998, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.009787928, y: null}, {x: 0.06185567, y: null}, {x: 0.048884166, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.074725275, y: null}, {x: 0.239583333, y: null}, {x: 0.0, y: null}, {x: 0.039156627, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.105747126, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.112781955, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008536585, y: null}, {x: 0.017421603, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040322581, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020440252, y: null}, {x: 0.0, y: null}, {x: 0.005213764, y: null}, {x: 0.00952381, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010230179, y: null}, {x: 0.0, y: null}, {x: 0.043222004, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0609319, y: null}, {x: 0.0, y: null}, {x: 0.009195402, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.032183908, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076759062, y: null}, {x: 0.0, y: null}, {x: 0.027807487, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.021398003, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024817518, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038709677, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.103975535, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.038906414, y: null}, {x: 0.049579046, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.157232704, y: null}, {x: 0.0, y: null}, {x: 0.062827225, y: null}, {x: 0.195652174, y: null}, {x: 0.184855234, y: null}, {x: 0.083129584, y: null}, {x: 0.216, y: null}, {x: 0.015981735, y: null}, {x: 0.0546875, y: null}, {x: 0.103535354, y: null}, {x: 0.153482881, y: null}, {x: 0.027237354, y: null}, {x: 0.0, y: null}, {x: 0.046728972, y: null}, {x: 0.155063291, y: null}, {x: 0.01369863, y: null}, {x: 0.084382872, y: null}, {x: 0.020430108, y: null}, {x: 0.041958042, y: null}, {x: 0.11308204, y: null}, {x: 0.588014981, y: null}, {x: 0.009708738, y: null}, {x: 0.0, y: null}, {x: 0.003676471, y: null}, {x: 0.038314176, y: null}, {x: 0.036842105, y: null}, {x: 0.119113573, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054830287, y: null}, {x: 0.0, y: null}, {x: 0.233128834, y: null}, {x: 0.047244094, y: null}, {x: 0.292753623, y: null}, {x: 0.050324675, y: null}, {x: 0.125, y: null}, {x: 0.039761431, y: null}, {x: 0.099644128, y: null}, {x: 0.087248322, y: null}, {x: 0.322807018, y: null}, {x: 0.11496063, y: null}, {x: 0.311764706, y: null}, {x: 0.183150183, y: null}, {x: 0.244117647, y: null}, {x: 0.0, y: null}, {x: 0.192755498, y: null}, {x: 0.082474227, y: null}, {x: 0.100737101, y: null}, {x: 0.055555556, y: null}, {x: 0.0, y: null}, {x: 0.058956916, y: null}, {x: 0.348958333, y: null}, {x: 0.075441413, y: null}, {x: 0.0, y: null}, {x: 0.08477842, y: null}, {x: 0.227138643, y: null}, {x: 0.190789474, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.366438356, y: null}, {x: 0.0, y: null}, {x: 0.140350877, y: null}, {x: 0.0, y: null}, {x: 0.024017467, y: null}, {x: 0.215481172, y: null}, {x: 0.166666667, y: null}, {x: 0.046511628, y: null}, {x: 0.047619048, y: null}, {x: 0.155339806, y: null}, {x: 0.035063114, y: null}, {x: 0.106666667, y: null}, {x: 0.277056277, y: null}, {x: 0.066666667, y: null}, {x: 0.071225071, y: null}, {x: 0.215053763, y: null}, {x: 0.076923077, y: null}, {x: 0.218518519, y: null}, {x: 0.079925651, y: null}, {x: 0.095238095, y: null}, {x: 0.100719425, y: null}, {x: 0.136585366, y: null}, {x: 0.096491228, y: null}, {x: 0.082677165, y: null}, {x: 0.0, y: null}, {x: 0.180914513, y: null}, {x: 0.455882353, y: null}, {x: 0.054958184, y: null}, {x: 0.0, y: null}, {x: 0.524005487, y: null}, {x: 0.12585034, y: null}, {x: 0.044546851, y: null}, {x: 0.12605042, y: null}, {x: 0.200704225, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022058824, y: null}, {x: 0.021321962, y: null}, {x: 0.0, y: null}, {x: 0.04805915, y: null}, {x: 0.0, y: null}, {x: 0.039426523, y: null}, {x: 0.033033033, y: null}, {x: 0.012936611, y: null}, {x: 0.011730205, y: null}, {x: 0.026315789, y: null}, {x: 0.0, y: null}, {x: 0.052917232, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.081946223, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.075040783, y: null}, {x: 0.00929368, y: null}, {x: 0.014571949, y: null}, {x: 0.063157895, y: null}, {x: 0.164670659, y: null}, {x: 0.088704089, y: null}, {x: 0.053175775, y: null}, {x: 0.018691589, y: null}, {x: 0.096899225, y: null}, {x: 0.0, y: null}, {x: 0.016304348, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035060976, y: null}, {x: 0.313497823, y: null}, {x: 0.01625, y: null}, {x: 0.055727554, y: 7.2}, {x: 0.0, y: null}, {x: 0.069832402, y: null}, {x: 0.108433735, y: null}, {x: 0.0, y: null}, {x: 0.063670412, y: null}, {x: 0.0, y: null}, {x: 0.045731707, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085164835, y: null}, {x: 0.0, y: null}, {x: 0.087460485, y: null}, {x: 0.029255319, y: 766.04}, {x: 0.014018692, y: 273.784}, {x: 0.039759036, y: null}, {x: 0.215730337, y: null}, {x: 0.174846626, y: null}, {x: 0.012640449, y: 2.5375}, {x: 0.205521472, y: null}, {x: 0.272588055, y: 0.473}, {x: 0.145190563, y: null}, {x: 0.189300412, y: null}, {x: 0.224199288, y: null}, {x: 0.55450237, y: null}, {x: 0.463333333, y: null}, {x: 0.141868512, y: 3.82795}, {x: 0.176706827, y: null}, {x: 0.213136729, y: null}, {x: 0.035353535, y: null}, {x: 0.164821648, y: null}, {x: 0.216, y: null}, {x: 0.0, y: null}, {x: 0.418502203, y: null}, {x: 0.140718563, y: null}, {x: 0.43537415, y: null}, {x: 0.503802281, y: null}, {x: 0.573170732, y: null}, {x: 0.471204189, y: null}, {x: 0.189795918, y: null}, {x: 0.320474777, y: 0.17529}, {x: 0.229281768, y: null}, {x: 0.119469027, y: null}, {x: 0.040100251, y: null}, {x: 0.141369048, y: null}, {x: 0.2933213, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.177142857, y: 16.942}, {x: 0.1369606, y: null}, {x: 0.067375887, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.052083333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.05108055, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005714286, y: null}, {x: 0.0, y: null}, {x: 0.179425837, y: null}, {x: 0.56884058, y: null}, {x: 0.0, y: null}, {x: 0.060606061, y: null}, {x: 0.0, y: null}, {x: 0.06056338, y: null}, {x: 0.0, y: null}, {x: 0.037800687, y: null}, {x: 0.290657439, y: null}, {x: 0.192411924, y: null}, {x: 0.37615894, y: null}, {x: 0.02530253, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.037795276, y: null}, {x: 0.566757493, y: null}, {x: 0.083860759, y: null}, {x: 0.0, y: null}, {x: 0.076595745, y: null}, {x: 0.050485437, y: null}, {x: 0.0, y: null}, {x: 0.196498055, y: null}, {x: 0.74744898, y: null}, {x: 0.116883117, y: null}, {x: 0.301576873, y: null}, {x: 0.675958188, y: null}, {x: 0.04, y: null}, {x: 0.0, y: null}, {x: 0.171021378, y: null}, {x: 0.100558659, y: null}, {x: 0.210382514, y: null}, {x: 0.019957983, y: 180.08110000000002}, {x: 0.49691358, y: null}, {x: 0.026455026, y: null}, {x: 0.118090452, y: null}, {x: 0.097520661, y: null}, {x: 0.540162122, y: null}, {x: 0.041176471, y: null}, {x: 0.0, y: null}, {x: 0.083823529, y: null}, {x: 0.012687428, y: null}, {x: 0.046511628, y: null}, {x: 0.113748764, y: null}, {x: 0.0, y: null}, {x: 0.466767372, y: null}, {x: 0.171962617, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029929577, y: null}, {x: 0.25, y: null}, {x: 0.04719764, y: null}, {x: 0.044481054, y: null}, {x: 0.161931818, y: null}, {x: 0.0, y: null}, {x: 0.29318542, y: null}, {x: 0.2325, y: null}, {x: 0.142394822, y: null}, {x: 0.131578947, y: null}, {x: 0.086743044, y: null}, {x: 0.011644833, y: null}, {x: 0.331220285, y: null}, {x: 0.059160305, y: null}, {x: 0.233502538, y: null}, {x: 0.255369928, y: null}, {x: 0.144144144, y: null}, {x: 0.104477612, y: null}, {x: 0.236607143, y: null}, {x: 0.131241084, y: null}, {x: 0.043969849, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.340384615, y: null}, {x: 0.386255924, y: null}, {x: 0.163865546, y: null}, {x: 0.206557377, y: null}, {x: 0.131386861, y: null}, {x: 0.126684636, y: null}, {x: 0.249391728, y: null}, {x: 0.175675676, y: null}, {x: 0.158950617, y: null}, {x: 0.229437229, y: null}, {x: 0.541666667, y: null}, {x: 0.378411911, y: null}, {x: 0.285217391, y: null}, {x: 0.323049002, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.140350877, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.094098884, y: null}, {x: 0.116352201, y: null}, {x: 0.289244186, y: null}, {x: 0.0, y: null}, {x: 0.14159292, y: null}, {x: 0.0, y: null}, {x: 0.286956522, y: null}, {x: 0.240150094, y: null}, {x: 0.115671642, y: null}, {x: 0.0, y: null}, {x: 0.18, y: null}, {x: 0.162337662, y: null}, {x: 0.159041394, y: null}, {x: 0.053380783, y: null}, {x: 0.138211382, y: null}, {x: 0.413612565, y: null}, {x: 0.438155136, y: null}, {x: 0.165277778, y: null}, {x: 0.170658683, y: null}, {x: 0.195171026, y: null}, {x: 0.257053292, y: null}, {x: 0.215328467, y: null}, {x: 0.157503715, y: null}, {x: 0.133640553, y: null}, {x: 0.271889401, y: null}, {x: 0.316666667, y: null}, {x: 0.14159292, y: null}, {x: 0.456395349, y: null}, {x: 0.381374723, y: null}, {x: 0.070121951, y: null}, {x: 0.0, y: null}, {x: 0.25389755, y: null}, {x: 0.0, y: null}, {x: 0.193548387, y: null}, {x: 0.236151604, y: null}, {x: 0.355179704, y: null}, {x: 0.0, y: null}, {x: 0.230633803, y: null}, {x: 0.180124224, y: null}, {x: 0.206812652, y: null}, {x: 0.298600311, y: null}, {x: 0.144117647, y: null}, {x: 0.395759717, y: null}, {x: 0.119617225, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.101426307, y: null}, {x: 0.092105263, y: null}, {x: 0.111553785, y: null}, {x: 0.073076923, y: null}, {x: 0.282208589, y: null}, {x: 0.216981132, y: null}, {x: 0.06779661, y: null}, {x: 0.0, y: null}, {x: 0.206278027, y: null}, {x: 0.092140921, y: null}, {x: 0.161564626, y: null}, {x: 0.123827392, y: null}, {x: 0.145631068, y: null}, {x: 0.223988439, y: null}, {x: 0.162561576, y: null}, {x: 0.199329983, y: null}, {x: 0.179104478, y: null}, {x: 0.387387387, y: null}, {x: 0.089668616, y: null}, {x: 0.183391004, y: null}, {x: 0.124401914, y: null}, {x: 0.062937063, y: null}, {x: 0.283950617, y: null}, {x: 0.172680412, y: null}, {x: 0.125, y: null}, {x: 0.108870968, y: null}, {x: 0.11732852, y: null}, {x: 0.180722892, y: null}, {x: 0.214285714, y: null}, {x: 0.091036415, y: null}, {x: 0.0, y: null}, {x: 0.096463023, y: null}, {x: 0.408571429, y: null}, {x: 0.313782991, y: null}, {x: 0.0, y: null}, {x: 0.248366013, y: null}, {x: 0.084269663, y: null}, {x: 0.09556314, y: null}, {x: 0.035019455, y: null}, {x: 0.089506173, y: null}, {x: 0.198275862, y: null}, {x: 0.070987654, y: null}, {x: 0.171717172, y: null}, {x: 0.086206897, y: null}, {x: 0.418604651, y: null}, {x: 0.15625, y: null}, {x: 0.0, y: null}, {x: 0.116045845, y: null}, {x: 0.237639553, y: null}, {x: 0.20295203, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.181578947, y: null}, {x: 0.079584775, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.125412541, y: null}, {x: 0.187203792, y: null}, {x: 0.0, y: null}, {x: 0.071269488, y: null}, {x: 0.051330798, y: null}, {x: 0.0, y: null}, {x: 0.05915493, y: null}, {x: 0.09939759, y: null}, {x: 0.003169572, y: null}, {x: 0.100263852, y: null}, {x: 0.037523452, y: null}, {x: 0.0486618, y: null}, {x: 0.096732026, y: null}, {x: 0.0, y: null}, {x: 0.418972332, y: null}, {x: 0.210526316, y: null}, {x: 0.233905579, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.106765328, y: null}, {x: 0.024, y: null}, {x: 0.02293578, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.097560976, y: null}, {x: 0.0, y: null}, {x: 0.101321586, y: null}, {x: 0.099667774, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.053050398, y: null}, {x: 0.191082803, y: null}, {x: 0.039735099, y: null}, {x: 0.090128755, y: null}, {x: 0.02278481, y: null}, {x: 0.074542897, y: null}, {x: 0.06097561, y: null}, {x: 0.173285199, y: null}, {x: 0.262806236, y: null}, {x: 0.10755814, y: null}, {x: 0.085526316, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065217391, y: null}, {x: 0.007856341, y: null}, {x: 0.034210526, y: null}, {x: 0.02862254, y: null}, {x: 0.104972376, y: null}, {x: 0.284810127, y: null}, {x: 0.111328125, y: null}, {x: 0.0, y: null}, {x: 0.103896104, y: null}, {x: 0.117647059, y: null}, {x: 0.258293839, y: null}, {x: 0.0, y: null}, {x: 0.082089552, y: null}, {x: 0.0, y: null}, {x: 0.133832976, y: null}, {x: 0.099502488, y: null}, {x: 0.078125, y: null}, {x: 0.208613728, y: null}, {x: 0.034139403, y: null}, {x: 0.209302326, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033259424, y: null}, {x: 0.114143921, y: null}, {x: 0.040229885, y: null}, {x: 0.037914692, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071017274, y: null}, {x: 0.247863248, y: null}, {x: 0.007494647, y: null}, {x: 0.045553145, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036474164, y: null}, {x: 0.0, y: null}, {x: 0.016415869, y: null}, {x: 0.051440329, y: null}, {x: 0.040584416, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.112612613, y: null}, {x: 0.112938597, y: null}, {x: 0.037344398, y: null}, {x: 0.076923077, y: null}, {x: 0.089430894, y: null}, {x: 0.179442509, y: null}, {x: 0.04845815, y: null}, {x: 0.0, y: null}, {x: 0.041284404, y: null}, {x: 0.0, y: null}, {x: 0.045034642, y: null}, {x: 0.099354839, y: null}, {x: 0.11550152, y: null}, {x: 0.470588235, y: null}, {x: 0.227848101, y: null}, {x: 0.023148148, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.044155844, y: null}, {x: 0.012797075, y: null}, {x: 0.04199773, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.164516129, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.09939759, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.054347826, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.077669903, y: null}, {x: 0.0, y: null}, {x: 0.044354839, y: null}, {x: 0.112200436, y: null}, {x: 0.078373016, y: null}, {x: 0.043715847, y: null}, {x: 0.298208641, y: null}, {x: 0.201336675, y: null}, {x: 0.161764706, y: null}, {x: 0.105263158, y: null}, {x: 0.092764378, y: null}, {x: 0.096256684, y: null}, {x: 0.034632035, y: null}, {x: 0.078104994, y: null}, {x: 0.109057301, y: null}, {x: 0.132867133, y: null}, {x: 0.367412141, y: null}, {x: 0.268792711, y: null}, {x: 0.081632653, y: null}, {x: 0.259414226, y: null}, {x: 0.0, y: null}, {x: 0.089506173, y: null}, {x: 0.056862745, y: null}, {x: 0.203333333, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.183673469, y: null}, {x: 0.219512195, y: null}, {x: 0.133333333, y: null}, {x: 0.0, y: null}, {x: 0.181657848, y: null}, {x: 0.49602122, y: null}, {x: 0.128342246, y: null}, {x: 0.0, y: null}, {x: 0.232835821, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.301675978, y: null}, {x: 0.097130243, y: null}, {x: 0.453453454, y: null}, {x: 0.250909091, y: null}, {x: 0.160997732, y: null}, {x: 0.0, y: null}, {x: 0.412742382, y: null}, {x: 0.75088968, y: null}, {x: 0.18852459, y: null}, {x: 0.202898551, y: null}, {x: 0.566395664, y: null}, {x: 0.637873754, y: null}, {x: 0.433198381, y: null}, {x: 0.144200627, y: null}, {x: 0.078616352, y: null}, {x: 0.183229814, y: 0.028}, {x: 0.372307692, y: null}, {x: 0.519685039, y: null}, {x: 0.060362173, y: null}, {x: 0.22737819, y: null}, {x: 0.090019569, y: null}, {x: 0.159574468, y: null}, {x: 0.128125, y: null}, {x: 0.593291405, y: null}, {x: 0.0, y: null}, {x: 0.383900929, y: null}, {x: 0.0, y: 1.660842}, {x: 0.133333333, y: null}, {x: 0.29390681, y: null}, {x: 0.133479212, y: null}, {x: 0.0, y: null}, {x: 0.232857143, y: null}, {x: 0.214776632, y: null}, {x: 0.283333333, y: null}, {x: 0.264344262, y: null}, {x: 0.0, y: null}, {x: 0.216763006, y: null}, {x: 0.589403974, y: null}, {x: 0.093333333, y: null}, {x: 0.208609272, y: null}, {x: 0.114379085, y: null}, {x: 0.072131148, y: null}, {x: 0.199084668, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.215217391, y: null}, {x: 0.007587253, y: null}, {x: 0.114398422, y: null}, {x: 0.231454006, y: null}, {x: 0.094117647, y: null}, {x: 0.0, y: null}, {x: 0.058084772, y: null}, {x: 0.023648649, y: null}, {x: 0.0, y: null}, {x: 0.082429501, y: null}, {x: 0.26443769, y: null}, {x: 0.182795699, y: null}, {x: 0.046391753, y: null}, {x: 0.147001934, y: null}, {x: 0.394495413, y: null}, {x: 0.307086614, y: null}, {x: 0.161228407, y: null}, {x: 0.129844961, y: null}, {x: 0.145721925, y: null}, {x: 0.0, y: null}, {x: 0.053701016, y: null}, {x: 0.220838052, y: null}, {x: 0.028795812, y: null}, {x: 0.252155172, y: null}, {x: 0.075975359, y: null}, {x: 0.109589041, y: null}, {x: 0.178640777, y: null}, {x: 0.04691358, y: null}, {x: 0.194503171, y: null}, {x: 0.224598931, y: null}, {x: 0.229090909, y: null}, {x: 0.190082645, y: null}, {x: 0.351239669, y: null}, {x: 0.378026071, y: null}, {x: 0.271948608, y: null}, {x: 0.175088132, y: null}, {x: 0.175308642, y: null}, {x: 0.112462006, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.106888361, y: null}, {x: 0.051460362, y: null}, {x: 0.0, y: null}, {x: 0.027972028, y: null}, {x: 0.0, y: null}, {x: 0.013452915, y: null}, {x: 0.0, y: null}, {x: 0.029239766, y: null}, {x: 0.034220532, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.036977492, y: null}, {x: 0.0, y: null}, {x: 0.03006012, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2.0275}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 123.083}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.444444444, y: 6.4707}, {x: 0.0, y: null}, {x: 0.0, y: 7.7502}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028391167, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.014173228, y: null}, {x: 0.020361991, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.011375388, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.067641682, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.007476636, y: null}, {x: 0.0, y: null}, {x: 0.045897079, y: null}, {x: 0.008547009, y: null}, {x: 0.0, y: null}, {x: 0.049751244, y: null}, {x: 0.019163763, y: null}, {x: 0.027027027, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028795812, y: null}, {x: 0.019347037, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.04109589, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.029865125, y: null}, {x: 0.039246468, y: null}, {x: 0.0, y: null}, {x: 0.077017115, y: null}, {x: 0.481404959, y: null}, {x: 0.112956811, y: null}, {x: 0.068432671, y: null}, {x: 0.0, y: null}, {x: 0.189269747, y: null}, {x: 0.0, y: null}, {x: 0.591478697, y: null}, {x: 0.038554217, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.025666338, y: null}, {x: 0.124567474, y: 626.415468}, {x: 0.112970711, y: null}, {x: 0.120171674, y: null}, {x: 0.145454546, y: null}, {x: 0.084291188, y: null}, {x: 0.064, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.010869565, y: null}, {x: 0.026548673, y: null}, {x: 0.086065574, y: null}, {x: 0.0, y: 0.316}, {x: 0.0, y: 13.296268}, {x: 0.0, y: null}, {x: 0.028199566, y: null}, {x: 0.055374593, y: null}, {x: 0.458823529, y: null}, {x: 0.030237581, y: 0.22}, {x: 0.0, y: null}, {x: 0.094435076, y: null}, {x: 0.014040562, y: 0.171}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.071258907, y: null}, {x: 0.02134647, y: null}, {x: 0.0, y: null}, {x: 0.194202899, y: null}, {x: 0.0, y: null}, {x: 0.051649928, y: null}, {x: 0.122362869, y: null}, {x: 0.02295082, y: null}, {x: 0.23, y: null}, {x: 0.16, y: 9.505065}, {x: 0.078651685, y: null}, {x: 0.050916497, y: null}, {x: 0.035164835, y: 3.291023}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.105839416, y: null}, {x: 0.03030303, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024413146, y: null}, {x: 0.018595041, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.013513514, y: null}, {x: 0.015209125, y: null}, {x: 0.123809524, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089570552, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019762846, y: null}, {x: 0.0, y: null}, {x: 0.112195122, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.024781341, y: null}, {x: 0.0375, y: null}, {x: 0.092857143, y: null}, {x: 0.01578354, y: null}, {x: 0.095918367, y: null}, {x: 0.007627765, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030701754, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 0.016676}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.003921569, y: null}, {x: 0.0, y: null}, {x: 0.008498584, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.008403361, y: null}, {x: 0.006802721, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028135991, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.105173876, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.177777778, y: null}, {x: 0.359307359, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.048231511, y: null}, {x: 0.088807786, y: null}, {x: 0.041450777, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.143835616, y: null}, {x: 0.092457421, y: null}, {x: 0.122235157, y: null}, {x: 0.038918919, y: null}, {x: 0.02425876, y: null}, {x: 0.12244898, y: null}, {x: 0.0, y: null}, {x: 0.253937008, y: null}, {x: 0.029689609, y: null}, {x: 0.059958649, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030712531, y: null}, {x: 0.017021277, y: null}, {x: 0.137542277, y: null}, {x: 0.027863777, y: null}, {x: 0.118811881, y: null}, {x: 0.06932409, y: null}, {x: 0.0, y: null}, {x: 0.150093809, y: null}, {x: 0.075682382, y: null}, {x: 0.0, y: null}, {x: 0.096491228, y: null}, {x: 0.0, y: null}, {x: 0.099018733, y: null}, {x: 0.038116592, y: null}, {x: 0.025020178, y: null}, {x: 0.128400435, y: null}, {x: 0.0, y: null}, {x: 0.53271028, y: null}, {x: 0.0, y: null}, {x: 0.028052805, y: null}, {x: 0.097883598, y: null}, {x: 0.0, y: null}, {x: 0.125899281, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.174220963, y: null}, {x: 0.095238095, y: null}, {x: 0.256670902, y: null}, {x: 0.0, y: null}, {x: 0.105263158, y: null}, {x: 0.101351351, y: null}, {x: 0.141706924, y: null}, {x: 0.323770492, y: null}, {x: 0.346551724, y: null}, {x: 0.194928685, y: null}, {x: 0.445229682, y: null}, {x: 0.081318681, y: null}, {x: 0.046808511, y: null}, {x: 0.118556701, y: null}, {x: 0.185863874, y: null}, {x: 0.196213425, y: null}, {x: 0.02027027, y: null}, {x: 0.258953168, y: null}, {x: 0.169786096, y: null}, {x: 0.126153846, y: null}, {x: 0.070362473, y: null}, {x: 0.315088757, y: null}, {x: 0.0, y: null}, {x: 0.252525253, y: null}, {x: 0.0, y: null}, {x: 0.230263158, y: null}, {x: 0.222531294, y: null}, {x: 0.199170125, y: null}, {x: 0.104761905, y: null}, {x: 0.0, y: null}, {x: 0.316042267, y: null}, {x: 0.327102804, y: null}, {x: 0.411851852, y: null}, {x: 0.172413793, y: null}, {x: 0.48, y: null}, {x: 0.126373626, y: null}, {x: 0.147347741, y: null}, {x: 0.103448276, y: null}, {x: 0.176470588, y: null}, {x: 0.386861314, y: null}, {x: 0.14354067, y: null}, {x: 0.174231332, y: null}, {x: 0.101405623, y: null}, {x: 0.0, y: null}, {x: 0.15719697, y: null}, {x: 0.111757858, y: null}, {x: 0.152119701, y: null}, {x: 0.098928277, y: null}, {x: 0.311708861, y: null}, {x: 0.336426914, y: null}, {x: 0.0, y: null}, {x: 0.169291339, y: null}, {x: 0.041369472, y: null}, {x: 0.120200334, y: null}, {x: 0.21, y: null}, {x: 0.116071429, y: null}, {x: 0.127298444, y: null}, {x: 0.556962025, y: null}, {x: 0.251833741, y: null}, {x: 0.423387097, y: null}, {x: 0.1125, y: null}, {x: 0.106280193, y: 563.320881}, {x: 0.148314607, y: null}, {x: 0.405336722, y: null}, {x: 0.140877598, y: null}, {x: 0.0, y: null}, {x: 0.03125, y: null}, {x: 0.531598513, y: null}, {x: 0.114285714, y: null}, {x: 0.023904382, y: null}, {x: 0.107798165, y: null}, {x: 0.022058824, y: null}, {x: 0.021541011, y: null}, {x: 0.087391594, y: null}, {x: 0.065530799, y: null}, {x: 0.094619666, y: null}, {x: 0.113445378, y: null}, {x: 0.0, y: null}, {x: 0.081245768, y: null}, {x: 0.181818182, y: null}, {x: 0.057591623, y: null}, {x: 0.259656652, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.085616438, y: null}, {x: 0.117537313, y: null}, {x: 0.063909774, y: null}, {x: 0.0, y: null}, {x: 0.083094556, y: null}, {x: 0.079925651, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.021398003, y: null}, {x: 0.058823529, y: null}, {x: 0.001589825, y: null}, {x: 0.015021459, y: null}, {x: 0.072829132, y: null}, {x: 0.008278146, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02173913, y: null}, {x: 0.018796992, y: null}, {x: 0.0, y: null}, {x: 0.057208238, y: null}, {x: 0.153658537, y: null}, {x: 0.0, y: null}, {x: 0.067982456, y: 58.2}, {x: 0.011173184, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.076923077, y: null}, {x: 0.013651877, y: null}, {x: 0.027472527, y: null}, {x: 0.050505051, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.065408805, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.018099548, y: null}, {x: 0.0, y: null}, {x: 0.129645635, y: null}, {x: 0.049865229, y: null}, {x: 0.24784217, y: null}, {x: 0.023923445, y: null}, {x: 0.137931035, y: null}, {x: 0.0, y: null}, {x: 0.020190024, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050632911, y: null}, {x: 0.021390374, y: null}, {x: 0.0, y: null}, {x: 0.066458982, y: null}, {x: 0.0, y: null}, {x: 0.008976661, y: null}, {x: 0.0, y: null}, {x: 0.043737575, y: null}, {x: 0.019736842, y: null}, {x: 0.0, y: null}, {x: 0.019157088, y: null}, {x: 0.074367089, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.019031142, y: null}, {x: 0.0, y: null}, {x: 0.032258065, y: null}, {x: 0.025510204, y: null}, {x: 0.0, y: null}, {x: 0.024647887, y: null}, {x: 0.095389507, y: null}, {x: 0.030075188, y: null}, {x: 0.016666667, y: null}, {x: 0.031553398, y: null}, {x: 0.094545455, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.023255814, y: null}, {x: 0.119815668, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01615074, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01372549, y: null}, {x: 0.108287293, y: null}, {x: 0.0, y: null}, {x: 0.078461538, y: null}, {x: 0.0, y: null}, {x: 0.014005602, y: null}, {x: 0.17826087, y: null}, {x: 0.13961039, y: null}, {x: 0.25058548, y: null}, {x: 0.04375, y: null}, {x: 0.054992764, y: null}, {x: 0.243421053, y: null}, {x: 0.307692308, y: null}, {x: 0.271293375, y: null}, {x: 0.046025105, y: null}, {x: 0.020689655, y: null}, {x: 0.092173913, y: null}, {x: 0.229166667, y: null}, {x: 0.0, y: null}, {x: 0.021238938, y: null}, {x: 0.011477762, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035490605, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.026627219, y: null}, {x: 0.0, y: null}, {x: 0.034271726, y: null}, {x: 0.014223195, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.01124498, y: null}, {x: 0.0, y: null}, {x: 0.018181818, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.033628319, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.02003643, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.040723982, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030241935, y: null}, {x: 0.110444178, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.028145695, y: null}, {x: 0.0, y: null}, {x: 0.01590106, y: null}, {x: 0.079399142, y: null}, {x: 0.056451613, y: null}, {x: 0.065075922, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.005031447, y: null}, {x: 0.027315914, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.043604651, y: null}, {x: 0.044705882, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.012578616, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.074786325, y: null}, {x: 0.034205231, y: null}, {x: 0.048214286, y: null}, {x: 0.0, y: null}, {x: 0.218430034, y: null}, {x: 0.22519084, y: null}, {x: 0.066137566, y: null}, {x: 0.1, y: null}, {x: 0.233022637, y: null}, {x: 0.023648649, y: null}, {x: 0.111111111, y: null}, {x: 0.093587522, y: null}, {x: 0.058238636, y: null}, {x: 0.041860465, y: null}, {x: 0.022271715, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022813688, y: null}, {x: 0.0, y: null}, {x: 0.054140127, y: null}, {x: 0.014858841, y: null}, {x: 0.005988024, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.039242219, y: null}, {x: 0.150669643, y: null}, {x: 0.082822086, y: null}, {x: 0.04851752, y: null}, {x: 0.0, y: null}, {x: 0.024856597, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}], 'label': 'Individual Census blocks', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.00759173475, y: 52.77690396534008}, {x: 0.04882884825, y: 265.16939834195983}, {x: 0.5412371135, y: 120.69425308898063}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.00759173475, y: -21.093322456671373}, {x: 0.04882884825, y: 79.07830843714063}, {x: 0.5412371135, y: 72.01913996505823}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.00759173475, y: 126.64713038735154}, {x: 0.04882884825, y: 451.260488246779}, {x: 0.5412371135, y: 169.36936621290303}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LOWINCPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LOWINCPCT.html index d89d874..6f336e5 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LOWINCPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_LOWINCPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.225365854, y: null}, {x: 0.157170923, y: null}, {x: 0.292569659, y: null}, {x: 0.355932203, y: null}, {x: 0.331747919, y: null}, {x: 0.195612431, y: null}, {x: 0.421416235, y: null}, {x: 0.087596356, y: null}, {x: 0.246537396, y: null}, {x: 0.090909091, y: null}, {x: 0.233269599, y: null}, {x: 0.139484979, y: null}, {x: 0.086071987, y: null}, {x: 0.066143498, y: null}, {x: 0.247483222, y: null}, {x: 0.205073996, y: null}, {x: 0.118927973, y: null}, {x: 0.180357143, y: null}, {x: 0.40131579, y: null}, {x: 0.452808989, y: null}, {x: 0.060307018, y: null}, {x: 0.151642208, y: null}, {x: 0.037537538, y: 0.093729}, {x: 0.147126437, y: null}, {x: 0.11827957, y: null}, {x: 0.054669704, y: null}, {x: 0.382763975, y: null}, {x: 0.035135135, y: null}, {x: 0.013349515, y: null}, {x: 0.029652352, y: null}, {x: 0.194623656, y: null}, {x: 0.372727273, y: null}, {x: 0.221893491, y: null}, {x: 0.144, y: null}, {x: 0.03452381, y: null}, {x: 0.467171717, y: null}, {x: 0.153678711, y: null}, {x: 0.053731343, y: null}, {x: 0.08716707, y: null}, {x: 0.343377716, y: null}, {x: 0.079958463, y: null}, {x: 0.197693575, y: null}, {x: 0.078787879, y: null}, {x: 0.108029197, y: null}, {x: 0.220935043, y: null}, {x: 0.17695962, y: null}, {x: 0.1484375, y: null}, {x: 0.104990584, y: null}, {x: 0.365819209, y: null}, {x: 0.157706093, y: null}, {x: 0.201189296, y: null}, {x: 0.193396226, y: null}, {x: 0.215859031, y: null}, {x: 0.209302326, y: null}, {x: 0.138307552, y: null}, {x: 0.084931507, y: null}, {x: 0.163904236, y: null}, {x: 0.094619666, y: null}, {x: 0.328301887, y: null}, {x: 0.284076433, y: null}, {x: 0.236363636, y: null}, {x: 0.126789366, y: null}, {x: 0.039622642, y: null}, {x: 0.195773081, y: null}, {x: 0.282835821, y: null}, {x: 0.397154713, y: null}, {x: 0.359016393, y: null}, {x: 0.159090909, y: null}, {x: 0.204285714, y: null}, {x: 0.097014925, y: null}, {x: 0.247560976, y: null}, {x: 0.115187087, y: null}, {x: 0.147157191, y: null}, {x: 0.122807018, y: null}, {x: 0.275761974, y: null}, {x: 0.041497152, y: null}, {x: 0.233900052, y: null}, {x: 0.196217494, y: null}, {x: 0.127208481, y: null}, {x: 0.027994792, y: null}, {x: 0.050189394, y: null}, {x: 0.29454171, y: null}, {x: 0.238773275, y: null}, {x: 0.280051151, y: null}, {x: 0.09030837, y: null}, {x: 0.296663661, y: null}, {x: 0.261219793, y: null}, {x: 0.401098901, y: null}, {x: 0.088806661, y: null}, {x: 0.472783826, y: null}, {x: 0.123818526, y: null}, {x: 0.492088608, y: null}, {x: 0.13091922, y: null}, {x: 0.040025016, y: null}, {x: 0.010574018, y: null}, {x: 0.093610698, y: null}, {x: 0.0, y: null}, {x: 0.022082019, y: null}, {x: 0.594444444, y: null}, {x: 0.163619744, y: null}, {x: 0.426900585, y: null}, {x: 0.230932203, y: null}, {x: 0.159406858, y: null}, {x: 0.271081221, y: null}, {x: 0.510526316, y: null}, {x: 0.184037559, y: null}, {x: 0.406756757, y: null}, {x: 0.178927681, y: null}, {x: 0.11741683, y: null}, {x: 0.03526971, y: null}, {x: 0.099724897, y: null}, {x: 0.114718615, y: null}, {x: 0.115099715, y: null}, {x: 0.128979144, y: null}, {x: 0.13, y: null}, {x: 0.125295508, y: null}, {x: 0.100821168, y: null}, {x: 0.175257732, y: null}, {x: 0.191208791, y: null}, {x: 0.089236431, y: null}, {x: 0.053469852, y: null}, {x: 0.097664544, y: null}, {x: 0.232054691, y: null}, {x: 0.082802548, y: null}, {x: 0.01540957, y: null}, {x: 0.172268908, y: null}, {x: 0.069911163, y: null}, {x: 0.074749316, y: null}, {x: 0.204968944, y: null}, {x: 0.096666667, y: null}, {x: 0.147651007, y: null}, {x: 0.14691358, y: null}, {x: 0.084097859, y: null}, {x: 0.08173913, y: null}, {x: 0.301909308, y: null}, {x: 0.045045045, y: null}, {x: 0.132592593, y: null}, {x: 0.061993517, y: null}, {x: 0.073134328, y: null}, {x: 0.227629513, y: null}, {x: 0.125977411, y: null}, {x: 0.0, y: null}, {x: 0.193959732, y: null}, {x: 0.120923913, y: null}, {x: 0.190682557, y: null}, {x: 0.089411765, y: null}, {x: 0.11621455, y: null}, {x: 0.192153723, y: null}, {x: 0.087619048, y: null}, {x: 0.260299626, y: null}, {x: 0.261904762, y: null}, {x: 0.113636364, y: null}, {x: 0.212952799, y: null}, {x: 0.05985267, y: null}, {x: 0.138266797, y: null}, {x: 0.279229711, y: null}, {x: 0.246469833, y: null}, {x: 0.505128205, y: null}, {x: 0.067010309, y: null}, {x: 0.122282609, y: null}, {x: 0.198312236, y: null}, {x: 0.041726619, y: null}, {x: 0.021920668, y: null}, {x: 0.121571838, y: null}, {x: 0.06147968, y: null}, {x: 0.199362042, y: null}, {x: 0.042465753, y: null}, {x: 0.142639787, y: null}, {x: 0.407854985, y: null}, {x: 0.239823982, y: null}, {x: 0.317391304, y: null}, {x: 0.1872, y: null}, {x: 0.076923077, y: null}, {x: 0.141566265, y: null}, {x: 0.285367825, y: null}, {x: 0.203596288, y: null}, {x: 0.442902882, y: null}, {x: 0.136732329, y: null}, {x: 0.451802179, y: null}, {x: 0.25140713, y: null}, {x: 0.063268893, y: null}, {x: 0.078085642, y: null}, {x: 0.185135135, y: null}, {x: 0.10451505, y: null}, {x: 0.209565217, y: null}, {x: 0.100446429, y: null}, {x: 0.308504035, y: null}, {x: 0.308474576, y: null}, {x: 0.189907039, y: null}, {x: 0.150778816, y: null}, {x: 0.105535055, y: null}, {x: 0.122593718, y: null}, {x: 0.449620802, y: null}, {x: 0.49765747, y: null}, {x: 0.372031662, y: null}, {x: 0.0, y: null}, {x: 0.738191633, y: null}, {x: 0.471971067, y: null}, {x: 0.579825835, y: null}, {x: 0.747445256, y: null}, {x: 0.251798561, y: null}, {x: 0.481848185, y: null}, {x: 0.631306598, y: null}, {x: 0.440744368, y: null}, {x: 0.373697917, y: null}, {x: 0.323797139, y: null}, {x: 0.170967742, y: null}, {x: 0.331770223, y: null}, {x: 0.283076923, y: null}, {x: 0.583864119, y: null}, {x: 0.048957389, y: null}, {x: 0.188175461, y: null}, {x: 0.097744361, y: null}, {x: 0.178166838, y: null}, {x: 0.149159664, y: null}, {x: 0.602666667, y: null}, {x: 0.645833333, y: null}, {x: 0.679802956, y: null}, {x: 0.493530499, y: null}, {x: 0.539249147, y: null}, {x: 0.085648148, y: null}, {x: 0.245960503, y: null}, {x: 0.092699884, y: null}, {x: 0.029388403, y: null}, {x: 0.101694915, y: null}, {x: 0.108744395, y: null}, {x: 0.185616438, y: null}, {x: 0.0, y: null}, {x: 0.3125, y: null}, {x: 0.626851852, y: null}, {x: 0.405633803, y: null}, {x: 0.086572438, y: null}, {x: 0.178030303, y: null}, {x: 0.080765143, y: null}, {x: 0.103703704, y: null}, {x: 0.40327294, y: null}, {x: 0.158713693, y: null}, {x: 0.194915254, y: null}, {x: 0.237885463, y: null}, {x: 0.181443299, y: null}, {x: 0.170940171, y: null}, {x: 0.454320988, y: null}, {x: 0.214015152, y: null}, {x: 0.0546875, y: null}, {x: 0.242740134, y: null}, {x: 0.055469954, y: null}, {x: 0.153707052, y: null}, {x: 0.162576687, y: null}, {x: 0.134762634, y: null}, {x: 0.212301587, y: null}, {x: 0.167852063, y: null}, {x: 0.303030303, y: null}, {x: 0.019690577, y: 0.175}, {x: 0.06601467, y: null}, {x: 0.150295858, y: null}, {x: 0.385103011, y: null}, {x: 0.055828221, y: null}, {x: 0.180851064, y: null}, {x: 0.524421594, y: null}, {x: 0.123439667, y: null}, {x: 0.134693878, y: null}, {x: 0.174712644, y: null}, {x: 0.099078341, y: null}, {x: 0.066597294, y: null}, {x: 0.247953216, y: null}, {x: 0.20527307, y: null}, {x: 0.459850107, y: null}, {x: 0.484200744, y: null}, {x: 0.575488455, y: null}, {x: 0.187830688, y: null}, {x: 0.208279431, y: null}, {x: 0.296466974, y: null}, {x: 0.086743044, y: null}, {x: 0.52919708, y: null}, {x: 0.397333333, y: null}, {x: 0.390563565, y: null}, {x: 0.386637459, y: null}, {x: 0.341246291, y: null}, {x: 0.357712766, y: null}, {x: 0.184601925, y: null}, {x: 0.132368149, y: null}, {x: 0.127481714, y: null}, {x: 0.13570887, y: null}, {x: 0.177257525, y: null}, {x: 0.527486911, y: null}, {x: 0.153652393, y: null}, {x: 0.204365079, y: null}, {x: 0.130850048, y: null}, {x: 0.144062297, y: null}, {x: 0.170068027, y: null}, {x: 0.189591078, y: null}, {x: 0.361147327, y: null}, {x: 0.241765943, y: null}, {x: 0.151111111, y: null}, {x: 0.236786469, y: null}, {x: 0.120124805, y: null}, {x: 0.067915691, y: null}, {x: 0.204896907, y: null}, {x: 0.155991736, y: null}, {x: 0.19140625, y: null}, {x: 0.263908702, y: null}, {x: 0.108739837, y: null}, {x: 0.102564103, y: null}, {x: 0.147704591, y: null}, {x: 0.252559727, y: null}, {x: 0.18877551, y: null}, {x: 0.298319328, y: null}, {x: 0.271223022, y: null}, {x: 0.197781885, y: null}, {x: 0.132408575, y: null}, {x: 0.284571429, y: null}, {x: 0.226586103, y: null}, {x: 0.145098039, y: null}, {x: 0.129360465, y: null}, {x: 0.197867299, y: null}, {x: 0.154308617, y: null}, {x: 0.219548872, y: null}, {x: 0.243010753, y: null}, {x: 0.211058264, y: null}, {x: 0.179372197, y: null}, {x: 0.150867824, y: null}, {x: 0.193627451, y: null}, {x: 0.102760736, y: null}, {x: 0.24948025, y: null}, {x: 0.078291815, y: null}, {x: 0.306818182, y: null}, {x: 0.040133779, y: null}, {x: 0.095512083, y: null}, {x: 0.210982659, y: null}, {x: 0.211701309, y: null}, {x: 0.423970433, y: null}, {x: 0.080788177, y: null}, {x: 0.147515528, y: null}, {x: 0.100522193, y: null}, {x: 0.195862069, y: null}, {x: 0.141674333, y: null}, {x: 0.009746589, y: null}, {x: 0.025450689, y: null}, {x: 0.244771495, y: null}, {x: 0.034269663, y: null}, {x: 0.038180797, y: null}, {x: 0.046370968, y: null}, {x: 0.199263933, y: null}, {x: 0.163456533, y: null}, {x: 0.215189873, y: null}, {x: 0.126600985, y: null}, {x: 0.042480884, y: null}, {x: 0.112525117, y: null}, {x: 0.137198068, y: null}, {x: 0.009929078, y: null}, {x: 0.028089888, y: null}, {x: 0.00998004, y: null}, {x: 0.0, y: null}, {x: 0.023186238, y: null}, {x: 0.037634409, y: null}, {x: 0.097676874, y: null}, {x: 0.336879433, y: null}, {x: 0.135643298, y: null}, {x: 0.116852613, y: null}, {x: 0.23342416, y: null}, {x: 0.173665792, y: null}, {x: 0.035449299, y: null}, {x: 0.121384005, y: null}, {x: 0.070338421, y: null}, {x: 0.134317343, y: null}, {x: 0.057983943, y: null}, {x: 0.094017094, y: null}, {x: 0.134107286, y: null}, {x: 0.166007905, y: null}, {x: 0.295497781, y: null}, {x: 0.168582376, y: null}, {x: 0.127955494, y: null}, {x: 0.043971144, y: null}, {x: 0.150645624, y: null}, {x: 0.347122302, y: null}, {x: 0.253016086, y: null}, {x: 0.323897659, y: null}, {x: 0.133274493, y: null}, {x: 0.175303197, y: null}, {x: 0.033878505, y: null}, {x: 0.031158715, y: null}, {x: 0.277942046, y: null}, {x: 0.154488518, y: null}, {x: 0.431518152, y: null}, {x: 0.538291605, y: null}, {x: 0.261939219, y: null}, {x: 0.52178771, y: null}, {x: 0.213937622, y: null}, {x: 0.334791059, y: null}, {x: 0.543255132, y: null}, {x: 0.321678322, y: null}, {x: 0.434724092, y: null}, {x: 0.535338346, y: null}, {x: 0.152142857, y: null}, {x: 0.553892216, y: null}, {x: 0.145070423, y: null}, {x: 0.212456052, y: 33.039}, {x: 0.146570397, y: null}, {x: 0.495114007, y: null}, {x: 0.385745775, y: null}, {x: 0.551626591, y: null}, {x: 0.325, y: null}, {x: 0.526470588, y: null}, {x: 0.179633144, y: null}, {x: 0.122650376, y: null}, {x: 0.154534364, y: null}, {x: 0.345938375, y: null}, {x: 0.115569823, y: null}, {x: 0.193078324, y: null}, {x: 0.108669834, y: null}, {x: 0.14622057, y: null}, {x: 0.061983471, y: null}, {x: 0.117103236, y: null}, {x: 0.270594109, y: null}, {x: 0.107970784, y: null}, {x: 0.023195876, y: null}, {x: 0.142276423, y: null}, {x: 0.0995, y: null}, {x: 0.0, y: null}, {x: 0.105387803, y: null}, {x: 0.149651497, y: null}, {x: 0.110300081, y: null}, {x: 0.428510457, y: null}, {x: 0.303482587, y: null}, {x: 0.261183261, y: null}, {x: 0.125142857, y: null}, {x: 0.184031159, y: null}, {x: 0.106420405, y: null}, {x: 0.056272586, y: null}, {x: 0.093579978, y: null}, {x: 0.380517504, y: null}, {x: 0.03803132, y: null}, {x: 0.071298654, y: null}, {x: 0.041522491, y: null}, {x: 0.248221344, y: null}, {x: 0.131021195, y: null}, {x: 0.136246787, y: null}, {x: 0.038970588, y: null}, {x: 0.0, y: null}, {x: 0.033909149, y: null}, {x: 0.184305627, y: null}, {x: 0.148854962, y: null}, {x: 0.089928058, y: null}, {x: 0.332777778, y: null}, {x: 0.077930175, y: null}, {x: 0.300761421, y: null}, {x: 0.142760487, y: null}, {x: 0.074525745, y: null}, {x: 0.117110266, y: null}, {x: 0.188489209, y: null}, {x: 0.17903365, y: null}, {x: 0.03006012, y: null}, {x: 0.099131323, y: null}, {x: 0.081081081, y: null}, {x: 0.030331754, y: null}, {x: 0.311679337, y: null}, {x: 0.556321839, y: null}, {x: 0.537262873, y: null}, {x: 0.385205232, y: null}, {x: 0.367763905, y: null}, {x: 0.473902728, y: null}, {x: 0.183923706, y: null}, {x: 0.313021703, y: null}, {x: 0.093062606, y: null}, {x: 0.283836417, y: null}, {x: 0.142016807, y: null}, {x: 0.144469526, y: null}, {x: 0.183785343, y: null}, {x: 0.0, y: null}, {x: 0.215488216, y: null}, {x: 0.358087487, y: null}, {x: 0.088235294, y: null}, {x: 0.209141274, y: null}, {x: 0.135629709, y: 999.999999}, {x: 0.036441586, y: null}, {x: 0.089395267, y: null}, {x: 0.079268293, y: null}, {x: 0.178104575, y: null}, {x: 0.200087758, y: null}, {x: 0.035839161, y: null}, {x: 0.035991531, y: null}, {x: 0.28002414, y: null}, {x: 0.211298606, y: null}, {x: 0.105501618, y: null}, {x: 0.120287253, y: null}, {x: 0.050678087, y: null}, {x: 0.140625, y: null}, {x: 0.148466717, y: null}, {x: 0.093869732, y: null}, {x: 0.356367226, y: null}, {x: 0.686293436, y: null}, {x: 0.059957173, y: null}, {x: 0.205405405, y: null}, {x: 0.224552745, y: null}, {x: 0.434892541, y: null}, {x: 0.624816805, y: null}, {x: 0.6700611, y: null}, {x: 0.741833509, y: null}, {x: 0.379722621, y: null}, {x: 0.550424128, y: 95.803564}, {x: 0.177818515, y: null}, {x: 0.442614771, y: 1904.333217}, {x: 0.605597964, y: null}, {x: 0.788187373, y: null}, {x: 0.161825726, y: 33.812967}, {x: 0.594850949, y: null}, {x: 0.367713005, y: null}, {x: 0.541341654, y: null}, {x: 0.234375, y: 13.403297}, {x: 0.276821192, y: null}, {x: 0.639917696, y: null}, {x: 0.499451153, y: null}, {x: 0.533745492, y: null}, {x: 0.48988764, y: null}, {x: 0.218035825, y: null}, {x: 0.232484076, y: null}, {x: 0.205567452, y: null}, {x: 0.322404372, y: null}, {x: 0.433115824, y: null}, {x: 0.222574509, y: null}, {x: 0.748043819, y: null}, {x: 0.355035605, y: null}, {x: 0.48280943, y: null}, {x: 0.375722543, y: null}, {x: 0.1, y: null}, {x: 0.600938967, y: 29.512963}, {x: 0.389929742, y: null}, {x: 0.414154653, y: null}, {x: 0.660397074, y: null}, {x: 0.875912409, y: null}, {x: 0.516514127, y: null}, {x: 0.707711443, y: null}, {x: 0.547239264, y: null}, {x: 0.43877551, y: null}, {x: 0.747628084, y: null}, {x: 0.57496977, y: null}, {x: 0.624087591, y: null}, {x: 0.399719495, y: null}, {x: 0.76477146, y: null}, {x: 0.562366358, y: null}, {x: 0.443811075, y: null}, {x: 0.347487615, y: null}, {x: 0.438639125, y: null}, {x: 0.433465086, y: null}, {x: 0.097334878, y: null}, {x: 0.295546559, y: null}, {x: 0.27631579, y: null}, {x: 0.198875615, y: null}, {x: 0.513611615, y: null}, {x: 0.253521127, y: null}, {x: 0.467727675, y: null}, {x: 0.314814815, y: null}, {x: 0.275147929, y: null}, {x: 0.419631902, y: 292.744127}, {x: 0.655295316, y: 194.570504}, {x: 0.243040212, y: 443.440785}, {x: 0.674610449, y: null}, {x: 0.498817967, y: null}, {x: 0.323834197, y: null}, {x: 0.602385686, y: null}, {x: 0.352468427, y: null}, {x: 0.163748713, y: null}, {x: 0.042495479, y: null}, {x: 0.449458484, y: null}, {x: 0.109938435, y: null}, {x: 0.212871287, y: null}, {x: 0.083380925, y: null}, {x: 0.103698583, y: null}, {x: 0.053333333, y: null}, {x: 0.036954915, y: null}, {x: 0.099589322, y: null}, {x: 0.172568355, y: null}, {x: 0.180991736, y: null}, {x: 0.070634921, y: null}, {x: 0.106923077, y: null}, {x: 0.102112676, y: null}, {x: 0.091269841, y: null}, {x: 0.075156576, y: null}, {x: 0.072243346, y: null}, {x: 0.273972603, y: null}, {x: 0.174870466, y: null}, {x: 0.29314888, y: null}, {x: 0.050717703, y: null}, {x: 0.242591316, y: null}, {x: 0.133825944, y: null}, {x: 0.123239437, y: null}, {x: 0.216426193, y: null}, {x: 0.061816653, y: null}, {x: 0.054067219, y: null}, {x: 0.122442134, y: null}, {x: 0.022556391, y: null}, {x: 0.150758252, y: null}, {x: 0.172043011, y: null}, {x: 0.295297372, y: null}, {x: 0.238056013, y: null}, {x: 0.118386817, y: null}, {x: 0.138788427, y: null}, {x: 0.069073783, y: null}, {x: 0.211398964, y: null}, {x: 0.115089514, y: null}, {x: 0.066132265, y: null}, {x: 0.112410656, y: null}, {x: 0.07956778, y: null}, {x: 0.26761062, y: null}, {x: 0.485549133, y: null}, {x: 0.192277384, y: null}, {x: 0.259505703, y: null}, {x: 0.12866242, y: null}, {x: 0.224691358, y: null}, {x: 0.25716385, y: null}, {x: 0.204951857, y: null}, {x: 0.110807114, y: null}, {x: 0.410476191, y: 0.12512}, {x: 0.397526502, y: null}, {x: 0.076559546, y: null}, {x: 0.314787701, y: 5.77926}, {x: 0.421862348, y: null}, {x: 0.228301887, y: null}, {x: 0.095679012, y: null}, {x: 0.10554951, y: null}, {x: 0.375905797, y: null}, {x: 0.500721501, y: null}, {x: 0.451692308, y: null}, {x: 0.647188534, y: null}, {x: 0.377745242, y: null}, {x: 0.554154303, y: 734.949067}, {x: 0.651245552, y: null}, {x: 0.408196721, y: null}, {x: 0.677804296, y: null}, {x: 0.662087912, y: null}, {x: 0.67641129, y: null}, {x: 0.44057971, y: null}, {x: 0.41962775, y: null}, {x: 0.853675946, y: null}, {x: 0.206762029, y: null}, {x: 0.333333333, y: null}, {x: 0.108066184, y: null}, {x: 0.36872869, y: null}, {x: 0.625707357, y: null}, {x: 0.51184346, y: null}, {x: 0.206841687, y: null}, {x: 0.490566038, y: null}, {x: 0.628571429, y: 11.58294}, {x: 0.554341227, y: null}, {x: 0.512588117, y: 71.329358}, {x: 0.529080675, y: null}, {x: 0.509892086, y: null}, {x: 0.243816254, y: null}, {x: 0.561360875, y: null}, {x: 0.611918605, y: null}, {x: 0.221719457, y: null}, {x: 0.44375963, y: null}, {x: 0.159322034, y: null}, {x: 0.540511727, y: null}, {x: 0.211457456, y: null}, {x: 0.182598039, y: null}, {x: 0.619293078, y: null}, {x: 0.743551953, y: null}, {x: 0.310638298, y: null}, {x: 0.808792743, y: null}, {x: 0.663247863, y: null}, {x: 0.668859649, y: 148.959479}, {x: 0.720666667, y: null}, {x: 0.308189655, y: null}, {x: 0.6398641, y: null}, {x: 0.441485069, y: null}, {x: 0.315717227, y: null}, {x: 0.15008726, y: null}, {x: 0.263295554, y: null}, {x: 0.239147593, y: null}, {x: 0.325227964, y: null}, {x: 0.233396584, y: null}, {x: 0.781619654, y: null}, {x: 0.546171171, y: null}, {x: 0.250716332, y: null}, {x: 0.468686869, y: null}, {x: 0.435022026, y: 291.200847}, {x: 0.506972929, y: null}, {x: 0.461800819, y: null}, {x: 0.451120163, y: null}, {x: 0.723966119, y: 123.559491}, {x: 0.549773756, y: null}, {x: 0.366477273, y: 253.998766}, {x: 0.602469136, y: 25.889026}, {x: 0.335632184, y: null}, {x: 0.205188679, y: 32.36738}, {x: 0.094179894, y: 54.925090000000004}, {x: 0.152727273, y: null}, {x: 0.352447552, y: null}, {x: 0.078866769, y: null}, {x: 0.290153746, y: null}, {x: 0.126039667, y: null}, {x: 0.065929566, y: null}, {x: 0.094517958, y: null}, {x: 0.143900657, y: null}, {x: 0.156312625, y: null}, {x: 0.335219236, y: null}, {x: 0.330745342, y: null}, {x: 0.235877863, y: null}, {x: 0.184981685, y: null}, {x: 0.105099778, y: null}, {x: 0.03986711, y: null}, {x: 0.350682594, y: null}, {x: 0.046391753, y: null}, {x: 0.015042118, y: null}, {x: 0.066847335, y: null}, {x: 0.04549675, y: null}, {x: 0.104890605, y: null}, {x: 0.121355179, y: null}, {x: 0.214150048, y: null}, {x: 0.14379085, y: 40.416186}, {x: 0.440842788, y: null}, {x: 0.232837934, y: null}, {x: 0.081192189, y: null}, {x: 0.081823495, y: null}, {x: 0.197049526, y: null}, {x: 0.264011799, y: null}, {x: 0.602634468, y: null}, {x: 0.46895893, y: null}, {x: 0.129657228, y: null}, {x: 0.233810498, y: null}, {x: 0.221570926, y: null}, {x: 0.351077313, y: null}, {x: 0.08591674, y: null}, {x: 0.08753568, y: null}, {x: 0.101920236, y: null}, {x: 0.196679438, y: null}, {x: 0.077414773, y: null}, {x: 0.0, y: null}, {x: 0.065301605, y: null}, {x: 0.256315007, y: null}, {x: 0.175238095, y: null}, {x: 0.0, y: null}, {x: 0.406471183, y: null}, {x: 0.160388821, y: null}, {x: 0.110381078, y: null}, {x: 0.442328042, y: null}, {x: 0.284974093, y: null}, {x: 0.137784091, y: null}, {x: 0.261538462, y: null}, {x: 0.167650531, y: null}, {x: 0.50991832, y: null}, {x: 0.167852906, y: null}, {x: 0.200668896, y: null}, {x: 0.046357616, y: null}, {x: 0.24876115, y: null}, {x: 0.25142474, y: null}, {x: 0.0, y: null}, {x: 0.165856294, y: null}, {x: 0.261694058, y: null}, {x: 0.066869301, y: null}, {x: 0.066570188, y: null}, {x: 0.105263158, y: null}, {x: 0.0, y: null}, {x: 0.068891281, y: 1.80788}, {x: 0.233796296, y: null}, {x: 0.053456221, y: null}, {x: 0.154160982, y: null}, {x: 0.049940547, y: null}, {x: 0.183856502, y: null}, {x: 0.231845436, y: null}, {x: 0.12295082, y: null}, {x: 0.115600449, y: null}, {x: 0.020338983, y: null}, {x: 0.1875, y: null}, {x: 0.378303965, y: null}, {x: 0.04609475, y: null}, {x: 0.060844667, y: null}, {x: 0.038028169, y: null}, {x: 0.03894081, y: 1.335464}, {x: 0.0, y: null}, {x: 0.088560886, y: null}, {x: 0.0, y: null}, {x: 0.15542522, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059508409, y: null}, {x: 0.07254623, y: null}, {x: 0.0, y: null}, {x: 0.241678727, y: null}, {x: 0.0, y: null}, {x: 0.024134313, y: null}, {x: 0.17519305, y: null}, {x: 0.0, y: null}, {x: 0.330745342, y: null}, {x: 0.06624954, y: null}, {x: 0.388235294, y: null}, {x: 0.228197674, y: null}, {x: 0.122205663, y: null}, {x: 0.119383825, y: 0.072}, {x: 0.122574956, y: null}, {x: 0.011473963, y: null}, {x: 0.277742142, y: null}, {x: 0.348501665, y: null}, {x: 0.241352806, y: null}, {x: 0.331890332, y: null}, {x: 0.139247312, y: null}, {x: 0.286061588, y: null}, {x: 0.5, y: null}, {x: 0.477040816, y: null}, {x: 0.139833711, y: null}, {x: 0.260096931, y: null}, {x: 0.076660988, y: null}, {x: 0.28003003, y: null}, {x: 0.728533095, y: null}, {x: 0.468387097, y: null}, {x: 0.128997868, y: null}, {x: 0.087064677, y: null}, {x: 0.382847038, y: null}, {x: 0.088541667, y: null}, {x: 0.099383667, y: null}, {x: 0.258237548, y: null}, {x: 0.204038257, y: null}, {x: 0.30781759, y: null}, {x: 0.171601615, y: null}, {x: 0.354124749, y: null}, {x: 0.240371846, y: null}, {x: 0.191685912, y: null}, {x: 0.064888248, y: null}, {x: 0.265880218, y: null}, {x: 0.352604465, y: null}, {x: 0.239694008, y: null}, {x: 0.51790393, y: null}, {x: 0.290291262, y: null}, {x: 0.605022831, y: null}, {x: 0.191755725, y: null}, {x: 0.223675155, y: null}, {x: 0.291296625, y: null}, {x: 0.208872458, y: null}, {x: 0.102511881, y: null}, {x: 0.170873786, y: null}, {x: 0.28280543, y: null}, {x: 0.365260901, y: null}, {x: 0.513715711, y: null}, {x: 0.236525048, y: null}, {x: 0.121835443, y: null}, {x: 0.150914634, y: null}, {x: 0.098342541, y: null}, {x: 0.084821429, y: null}, {x: 0.284444444, y: null}, {x: 0.30106486, y: null}, {x: 0.027835052, y: null}, {x: 0.061639344, y: null}, {x: 0.354000693, y: null}, {x: 0.450224215, y: null}, {x: 0.759481961, y: null}, {x: 0.438571429, y: null}, {x: 0.126286249, y: null}, {x: 0.193333333, y: null}, {x: 0.208655332, y: null}, {x: 0.099694812, y: null}, {x: 0.322732627, y: null}, {x: 0.355742297, y: null}, {x: 0.042606516, y: 32.512411}, {x: 0.595081967, y: null}, {x: 0.190427699, y: null}, {x: 0.422920303, y: null}, {x: 0.247802428, y: null}, {x: 0.255568582, y: null}, {x: 0.427750411, y: null}, {x: 0.248835662, y: null}, {x: 0.336622807, y: null}, {x: 0.584225352, y: null}, {x: 0.419381788, y: null}, {x: 0.266603416, y: null}, {x: 0.28957265, y: null}, {x: 0.341797662, y: null}, {x: 0.424284717, y: null}, {x: 0.291300878, y: null}, {x: 0.452495974, y: null}, {x: 0.036617262, y: null}, {x: 0.310410095, y: null}, {x: 0.183041723, y: null}, {x: 0.131538462, y: null}, {x: 0.418300654, y: null}, {x: 0.240700219, y: null}, {x: 0.331983806, y: null}, {x: 0.671366594, y: null}, {x: 0.210191083, y: null}, {x: 0.248730965, y: null}, {x: 0.273449921, y: null}, {x: 0.319639842, y: null}, {x: 0.357723577, y: null}, {x: 0.235572375, y: null}, {x: 0.028384279, y: null}, {x: 0.49232159, y: null}, {x: 0.56680932, y: null}, {x: 0.728173667, y: null}, {x: 0.853629977, y: null}, {x: 0.566576819, y: null}, {x: 0.553406224, y: 144.338492}, {x: 0.558408216, y: null}, {x: 0.577137547, y: null}, {x: 0.595535128, y: null}, {x: 0.52321297, y: null}, {x: 0.453304598, y: null}, {x: 0.285923754, y: null}, {x: 0.139382601, y: null}, {x: 0.488148623, y: null}, {x: 0.189354276, y: null}, {x: 0.283494105, y: null}, {x: 0.069550467, y: null}, {x: 0.115625, y: null}, {x: 0.173913044, y: null}, {x: 0.05707196, y: null}, {x: 0.054794521, y: null}, {x: 0.047890536, y: null}, {x: 0.0, y: null}, {x: 0.038501561, y: null}, {x: 0.3282881, y: null}, {x: 0.372767857, y: null}, {x: 0.364224138, y: null}, {x: 0.03909465, y: null}, {x: 0.250643777, y: null}, {x: 0.137000519, y: null}, {x: 0.107705407, y: null}, {x: 0.242424242, y: null}, {x: 0.20891905, y: null}, {x: 0.004942339, y: null}, {x: 0.242105263, y: null}, {x: 0.008240141, y: null}, {x: 0.073412698, y: null}, {x: 0.128055879, y: null}, {x: 0.010791367, y: null}, {x: 0.374384237, y: null}, {x: 0.055157593, y: null}, {x: 0.078301261, y: null}, {x: 0.081294964, y: null}, {x: 0.006237006, y: null}, {x: 0.123500353, y: null}, {x: 0.126582279, y: null}, {x: 0.059669686, y: null}, {x: 0.0, y: null}, {x: 0.208034433, y: null}, {x: 0.126498801, y: null}, {x: 0.065919862, y: null}, {x: 0.12458138, y: null}, {x: 0.272670808, y: null}, {x: 0.142638037, y: null}, {x: 0.166266218, y: null}, {x: 0.0, y: null}, {x: 0.24361949, y: null}, {x: 0.276685393, y: null}, {x: 0.125834128, y: null}, {x: 0.226351351, y: null}, {x: 0.030082988, y: null}, {x: 0.21174206, y: null}, {x: 0.064173592, y: null}, {x: 0.089564174, y: null}, {x: 0.226962457, y: null}, {x: 0.237799043, y: null}, {x: 0.225, y: null}, {x: 0.21668533, y: null}, {x: 0.506993007, y: null}, {x: 0.575586095, y: null}, {x: 0.147880041, y: null}, {x: 0.031620553, y: null}, {x: 0.250886525, y: null}, {x: 0.250726744, y: null}, {x: 0.415909091, y: null}, {x: 0.180678466, y: null}, {x: 0.17312253, y: null}, {x: 0.197667281, y: null}, {x: 0.26823135, y: null}, {x: 0.13174404, y: null}, {x: 0.204637097, y: null}, {x: 0.073013601, y: null}, {x: 0.071913161, y: null}, {x: 0.179347826, y: null}, {x: 0.192756292, y: null}, {x: 0.05982906, y: null}, {x: 0.151818182, y: null}, {x: 0.059722886, y: null}, {x: 0.0, y: null}, {x: 0.225106182, y: null}, {x: 0.102136182, y: null}, {x: 0.205702648, y: null}, {x: 0.031867431, y: null}, {x: 0.124734607, y: null}, {x: 0.123523622, y: null}, {x: 0.0075, y: null}, {x: 0.073198847, y: null}, {x: 0.109530583, y: null}, {x: 0.025334272, y: null}, {x: 0.093762108, y: null}, {x: 0.148533586, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034431138, y: null}, {x: 0.147837043, y: null}, {x: 0.087900724, y: null}, {x: 0.139561707, y: null}, {x: 0.081692913, y: null}, {x: 0.077028886, y: null}, {x: 0.097605893, y: null}, {x: 0.118259224, y: null}, {x: 0.0, y: null}, {x: 0.400275103, y: null}, {x: 0.097457627, y: null}, {x: 0.029874214, y: null}, {x: 0.099903007, y: null}, {x: 0.250535332, y: null}, {x: 0.072360617, y: null}, {x: 0.053750738, y: null}, {x: 0.095398429, y: null}, {x: 0.062588905, y: null}, {x: 0.34470377, y: null}, {x: 0.189873418, y: null}, {x: 0.121803812, y: null}, {x: 0.042997543, y: null}, {x: 0.134656489, y: null}, {x: 0.151436031, y: null}, {x: 0.099447514, y: null}, {x: 0.047482014, y: null}, {x: 0.104932735, y: null}, {x: 0.449386503, y: null}, {x: 0.340096618, y: null}, {x: 0.281512605, y: null}, {x: 0.213530655, y: null}, {x: 0.187751813, y: null}, {x: 0.131736527, y: null}, {x: 0.707762557, y: null}, {x: 0.238145416, y: null}, {x: 0.535496957, y: null}, {x: 0.440976934, y: null}, {x: 0.062064156, y: null}, {x: 0.039069767, y: null}, {x: 0.345594525, y: null}, {x: 0.046544429, y: null}, {x: 0.282194849, y: null}, {x: 0.203883495, y: null}, {x: 0.080932203, y: null}, {x: 0.236886633, y: null}, {x: 0.170178282, y: null}, {x: 0.119824341, y: null}, {x: 0.05875576, y: null}, {x: 0.0, y: null}, {x: 0.070175439, y: null}, {x: 0.108490566, y: null}, {x: 0.043960924, y: null}, {x: 0.063049853, y: null}, {x: 0.08925144, y: null}, {x: 0.246666667, y: null}, {x: 0.080424886, y: null}, {x: 0.119806763, y: null}, {x: 0.236170213, y: null}, {x: 0.134193548, y: null}, {x: 0.053747161, y: null}, {x: 0.244140625, y: null}, {x: 0.023822128, y: null}, {x: 0.105835806, y: 0.89}, {x: 0.125886525, y: null}, {x: 0.305578011, y: null}, {x: 0.366630077, y: null}, {x: 0.493297587, y: 0.18}, {x: 0.361190613, y: null}, {x: 0.231748158, y: 0.276}, {x: 0.313868613, y: null}, {x: 0.466990291, y: null}, {x: 0.396423249, y: null}, {x: 0.507042254, y: null}, {x: 0.185768604, y: null}, {x: 0.095192308, y: null}, {x: 0.129746835, y: null}, {x: 0.143474503, y: null}, {x: 0.011997177, y: null}, {x: 0.049760766, y: null}, {x: 0.147965475, y: null}, {x: 0.067164179, y: null}, {x: 0.121348315, y: null}, {x: 0.164165103, y: null}, {x: 0.154113557, y: null}, {x: 0.219512195, y: null}, {x: 0.182285714, y: null}, {x: 0.223905724, y: null}, {x: 0.110701107, y: null}, {x: 0.108206246, y: null}, {x: 0.260482846, y: null}, {x: 0.202933985, y: null}, {x: 0.13836478, y: null}, {x: 0.056629093, y: null}, {x: 0.170833333, y: null}, {x: 0.701098901, y: 176.54059600000002}, {x: 0.514604151, y: null}, {x: 0.267631774, y: null}, {x: 0.440956652, y: null}, {x: 0.259455371, y: null}, {x: 0.475813544, y: null}, {x: 0.484114977, y: null}, {x: 0.498961578, y: null}, {x: 0.575031526, y: null}, {x: 0.844114528, y: null}, {x: 0.678059537, y: null}, {x: 0.697875688, y: null}, {x: 0.483846732, y: null}, {x: 0.156104069, y: null}, {x: 0.39964943, y: null}, {x: 0.653104925, y: null}, {x: 0.223904383, y: null}, {x: 0.534025375, y: null}, {x: 0.449973531, y: null}, {x: 0.241695304, y: null}, {x: 0.430475087, y: null}, {x: 0.379116466, y: null}, {x: 0.531739812, y: null}, {x: 0.430260047, y: null}, {x: 0.59377494, y: null}, {x: 0.702757229, y: null}, {x: 0.842821782, y: 6.126247}, {x: 0.587531172, y: null}, {x: 0.694528875, y: null}, {x: 0.583429229, y: null}, {x: 0.223314607, y: null}, {x: 0.663216011, y: null}, {x: 0.699239544, y: null}, {x: 0.600928074, y: null}, {x: 0.453580902, y: null}, {x: 0.642537056, y: null}, {x: 0.30043384, y: null}, {x: 0.442571128, y: null}, {x: 0.385982231, y: null}, {x: 0.361809045, y: null}, {x: 0.599766628, y: null}, {x: 0.564878496, y: null}, {x: 0.37716263, y: null}, {x: 0.437322745, y: null}, {x: 0.403703704, y: 38.4927}, {x: 0.460820896, y: null}, {x: 0.408071749, y: null}, {x: 0.542607429, y: null}, {x: 0.191560244, y: null}, {x: 0.72091131, y: null}, {x: 0.446225785, y: null}, {x: 0.326041667, y: null}, {x: 0.45392022, y: null}, {x: 0.431778929, y: null}, {x: 0.181268012, y: null}, {x: 0.246018671, y: null}, {x: 0.323624596, y: null}, {x: 0.395196507, y: null}, {x: 0.369465649, y: null}, {x: 0.039898132, y: null}, {x: 0.01253012, y: null}, {x: 0.110054348, y: null}, {x: 0.351037344, y: null}, {x: 0.294650561, y: null}, {x: 0.141031493, y: null}, {x: 0.030372058, y: null}, {x: 0.151339609, y: null}, {x: 0.571428571, y: null}, {x: 0.191186441, y: null}, {x: 0.109243698, y: null}, {x: 0.519886364, y: null}, {x: 0.107263514, y: null}, {x: 0.422110553, y: null}, {x: 0.389270977, y: null}, {x: 0.443122677, y: null}, {x: 0.1172771, y: null}, {x: 0.472616633, y: null}, {x: 0.327967807, y: null}, {x: 0.279646018, y: null}, {x: 0.272084806, y: null}, {x: 0.183970856, y: null}, {x: 0.557692308, y: null}, {x: 0.142857143, y: null}, {x: 0.102181401, y: null}, {x: 0.261257607, y: null}, {x: 0.114620939, y: null}, {x: 0.079096045, y: null}, {x: 0.075413223, y: null}, {x: 0.025963808, y: null}, {x: 0.0, y: null}, {x: 0.108818011, y: null}, {x: 0.247819767, y: null}, {x: 0.170141785, y: null}, {x: 0.042908224, y: null}, {x: 0.260135135, y: null}, {x: 0.213114754, y: null}, {x: 0.087719298, y: 57.7297}, {x: 0.146325879, y: null}, {x: 0.06626506, y: null}, {x: 0.143484627, y: null}, {x: 0.210211408, y: null}, {x: 0.321296296, y: null}, {x: 0.284165699, y: null}, {x: 0.217503218, y: null}, {x: 0.037260826, y: null}, {x: 0.081818182, y: null}, {x: 0.036929057, y: null}, {x: 0.103345725, y: null}, {x: 0.0659945, y: null}, {x: 0.00551655, y: null}, {x: 0.00818148, y: null}, {x: 0.0, y: null}, {x: 0.121928166, y: null}, {x: 0.020486556, y: null}, {x: 0.09212963, y: null}, {x: 0.099863201, y: null}, {x: 0.002478315, y: null}, {x: 0.231884058, y: null}, {x: 0.203328509, y: null}, {x: 0.124282983, y: null}, {x: 0.072265625, y: null}, {x: 0.131716595, y: null}, {x: 0.032950574, y: null}, {x: 0.020357143, y: null}, {x: 0.036649215, y: null}, {x: 0.146734521, y: null}, {x: 0.119365609, y: null}, {x: 0.048291233, y: null}, {x: 0.07898773, y: null}, {x: 0.156801662, y: null}, {x: 0.054852321, y: null}, {x: 0.043158411, y: null}, {x: 0.044487427, y: null}, {x: 0.0, y: null}, {x: 0.455776173, y: null}, {x: 0.767064846, y: 26.852272}, {x: 0.769824561, y: 17.432869}, {x: 0.377962085, y: null}, {x: 0.455019557, y: null}, {x: 0.481481482, y: 2.114101}, {x: 0.082802548, y: null}, {x: 0.291005291, y: 27.576203}, {x: 0.081259151, y: null}, {x: 0.018018018, y: null}, {x: 0.067116927, y: null}, {x: 0.106221548, y: null}, {x: 0.06993007, y: null}, {x: 0.049368542, y: null}, {x: 0.293002916, y: null}, {x: 0.022937063, y: null}, {x: 0.134020619, y: null}, {x: 0.370629371, y: null}, {x: 0.099415205, y: null}, {x: 0.027114267, y: null}, {x: 0.083705357, y: null}, {x: 0.171150972, y: null}, {x: 0.0625, y: null}, {x: 0.344385833, y: null}, {x: 0.274220963, y: null}, {x: 0.432973316, y: 9.574524}, {x: 0.280686318, y: null}, {x: 0.575692042, y: null}, {x: 0.477936607, y: 17.33541}, {x: 0.101402373, y: null}, {x: 0.225555556, y: null}, {x: 0.735171262, y: null}, {x: 0.276973377, y: null}, {x: 0.222515391, y: null}, {x: 0.097749196, y: 19.605847}, {x: 0.193612775, y: null}, {x: 0.242599743, y: 0.363247}, {x: 0.231019523, y: null}, {x: 0.09132948, y: 51.7282}, {x: 0.336648814, y: null}, {x: 0.073515551, y: null}, {x: 0.443119266, y: null}, {x: 0.064880568, y: null}, {x: 0.171759747, y: null}, {x: 0.152, y: null}, {x: 0.130620985, y: null}, {x: 0.073843416, y: null}, {x: 0.040244524, y: null}, {x: 0.052049747, y: null}, {x: 0.062203791, y: null}, {x: 0.074652778, y: null}, {x: 0.206225681, y: null}, {x: 0.137598598, y: null}, {x: 0.034639927, y: null}, {x: 0.064876957, y: null}, {x: 0.027135678, y: null}, {x: 0.080921053, y: null}, {x: 0.01179941, y: null}, {x: 0.083467095, y: null}, {x: 0.09602649, y: null}, {x: 0.089690722, y: null}, {x: 0.144578313, y: null}, {x: 0.179343475, y: null}, {x: 0.154447115, y: null}, {x: 0.193387159, y: null}, {x: 0.058727569, y: null}, {x: 0.253367543, y: null}, {x: 0.110105581, y: null}, {x: 0.238904627, y: null}, {x: 0.396039604, y: null}, {x: 0.313856427, y: null}, {x: 0.050810811, y: null}, {x: 0.078746177, y: null}, {x: 0.217809868, y: null}, {x: 0.18401487, y: null}, {x: 0.050649351, y: null}, {x: 0.153535354, y: null}, {x: 0.094250707, y: null}, {x: 0.115471358, y: null}, {x: 0.042207792, y: null}, {x: 0.076076555, y: null}, {x: 0.049311927, y: null}, {x: 0.042461005, y: null}, {x: 0.260626398, y: null}, {x: 0.0, y: null}, {x: 0.114527629, y: null}, {x: 0.425222312, y: null}, {x: 0.058897243, y: null}, {x: 0.071672355, y: null}, {x: 0.029213483, y: null}, {x: 0.133333333, y: null}, {x: 0.057350565, y: null}, {x: 0.125, y: null}, {x: 0.061702128, y: null}, {x: 0.098441345, y: null}, {x: 0.220138203, y: null}, {x: 0.104651163, y: null}, {x: 0.048260382, y: null}, {x: 0.030064913, y: null}, {x: 0.172235023, y: null}, {x: 0.060266293, y: null}, {x: 0.0, y: null}, {x: 0.284313726, y: null}, {x: 0.188615123, y: null}, {x: 0.202603743, y: null}, {x: 0.293163384, y: null}, {x: 0.168717048, y: null}, {x: 0.271302645, y: null}, {x: 0.203170875, y: null}, {x: 0.265473527, y: null}, {x: 0.136422977, y: null}, {x: 0.196226415, y: null}, {x: 0.265129683, y: null}, {x: 0.271834061, y: null}, {x: 0.216467464, y: null}, {x: 0.305578011, y: null}, {x: 0.161137441, y: null}, {x: 0.43122102, y: null}, {x: 0.384773663, y: null}, {x: 0.242376857, y: null}, {x: 0.546369518, y: null}, {x: 0.25950783, y: null}, {x: 0.139261745, y: null}, {x: 0.211753731, y: null}, {x: 0.204545455, y: 0.751364}, {x: 0.575102881, y: null}, {x: 0.202949438, y: null}, {x: 0.358823529, y: null}, {x: 0.139931741, y: null}, {x: 0.210769231, y: 0.6538919999999999}, {x: 0.269709544, y: null}, {x: 0.094867807, y: null}, {x: 0.242771084, y: null}, {x: 0.516574586, y: null}, {x: 0.185160867, y: null}, {x: 0.305657605, y: null}, {x: 0.096399535, y: null}, {x: 0.132275132, y: null}, {x: 0.210355987, y: null}, {x: 0.130882353, y: null}, {x: 0.277289837, y: null}, {x: 0.444444444, y: null}, {x: 0.145325203, y: null}, {x: 0.133266533, y: null}, {x: 0.103599649, y: null}, {x: 0.09502924, y: null}, {x: 0.527831094, y: null}, {x: 0.28021555, y: null}, {x: 0.320848939, y: null}, {x: 0.353012048, y: null}, {x: 0.452502554, y: null}, {x: 0.261658031, y: null}, {x: 0.463980464, y: null}, {x: 0.487743026, y: null}, {x: 0.317254174, y: null}, {x: 0.552440291, y: null}, {x: 0.390855457, y: null}, {x: 0.188787185, y: null}, {x: 0.213510253, y: null}, {x: 0.131593559, y: null}, {x: 0.122399021, y: null}, {x: 0.096134787, y: null}, {x: 0.336466165, y: null}, {x: 0.267213115, y: null}, {x: 0.575104728, y: null}, {x: 0.536531365, y: null}, {x: 0.28406633, y: null}, {x: 0.304469274, y: null}, {x: 0.588888889, y: 19.621000000000002}, {x: 0.522004062, y: null}, {x: 0.591706539, y: null}, {x: 0.200867052, y: null}, {x: 0.520090978, y: null}, {x: 0.296116505, y: null}, {x: 0.332026144, y: null}, {x: 0.44895288, y: null}, {x: 0.32325414, y: null}, {x: 0.566037736, y: null}, {x: 0.57354618, y: null}, {x: 0.371962617, y: null}, {x: 0.490015361, y: null}, {x: 0.551122195, y: null}, {x: 0.069345942, y: null}, {x: 0.269148175, y: null}, {x: 0.576488706, y: null}, {x: 0.615754083, y: null}, {x: 0.387298748, y: null}, {x: 0.077970297, y: null}, {x: 0.764534884, y: null}, {x: 0.828220859, y: null}, {x: 0.818820225, y: null}, {x: 0.746081505, y: null}, {x: 0.793846154, y: 37.631}, {x: 0.830141549, y: null}, {x: 0.856720827, y: null}, {x: 0.802768166, y: null}, {x: 0.71741573, y: null}, {x: 0.668956044, y: null}, {x: 0.743458839, y: 739.527068}, {x: 0.403005465, y: null}, {x: 0.408921933, y: null}, {x: 0.84516129, y: null}, {x: 0.932765152, y: null}, {x: 0.47826087, y: null}, {x: 0.626996805, y: null}, {x: 0.643668122, y: null}, {x: 0.527979275, y: null}, {x: 0.328125, y: null}, {x: 0.713407134, y: null}, {x: 0.429123001, y: null}, {x: 0.492917847, y: null}, {x: 0.45534407, y: null}, {x: 0.366808109, y: null}, {x: 0.246478873, y: null}, {x: 0.151224707, y: null}, {x: 0.227979275, y: null}, {x: 0.753797468, y: null}, {x: 0.525612472, y: null}, {x: 0.629826898, y: null}, {x: 0.478316327, y: null}, {x: 0.552777778, y: null}, {x: 0.303106633, y: null}, {x: 0.152724482, y: null}, {x: 0.2092257, y: null}, {x: 0.272527473, y: null}, {x: 0.328458257, y: null}, {x: 0.509739067, y: null}, {x: 0.093291405, y: null}, {x: 0.068743287, y: null}, {x: 0.171389081, y: null}, {x: 0.250231696, y: null}, {x: 0.09556314, y: null}, {x: 0.253754941, y: null}, {x: 0.626960193, y: null}, {x: 0.150627615, y: null}, {x: 0.135106383, y: null}, {x: 0.422184007, y: null}, {x: 0.722543353, y: null}, {x: 0.625109745, y: null}, {x: 0.810502283, y: null}, {x: 0.188405797, y: null}, {x: 0.525821596, y: null}, {x: 0.864829396, y: null}, {x: 0.648395722, y: null}, {x: 0.590804598, y: null}, {x: 0.59139785, y: null}, {x: 0.629148629, y: null}, {x: 0.887456038, y: 27.040660999999997}, {x: 0.830671989, y: 81.680767}, {x: 0.607107601, y: null}, {x: 0.568047337, y: null}, {x: 0.760493827, y: null}, {x: 0.758784426, y: 198.331469}, {x: 0.744067797, y: null}, {x: 0.775330397, y: null}, {x: 0.282229965, y: null}, {x: 0.401709402, y: null}, {x: 0.308243728, y: null}, {x: 0.188108108, y: null}, {x: 0.550344828, y: null}, {x: 0.518703242, y: null}, {x: 0.595276873, y: 7.279}, {x: 0.657028112, y: null}, {x: 0.904255319, y: null}, {x: 0.494623656, y: null}, {x: 0.55884025, y: null}, {x: 0.62118019, y: null}, {x: 0.758812616, y: null}, {x: 0.571428571, y: null}, {x: 0.013079667, y: null}, {x: 0.096311475, y: null}, {x: 0.161959654, y: null}, {x: 0.414634146, y: null}, {x: 0.181139122, y: null}, {x: 0.115853659, y: null}, {x: 0.149874055, y: null}, {x: 0.006256517, y: null}, {x: 0.319655857, y: null}, {x: 0.30418251, y: null}, {x: 0.231316726, y: null}, {x: 0.182841069, y: null}, {x: 0.61958457, y: null}, {x: 0.599858857, y: null}, {x: 0.250772082, y: null}, {x: 0.471014493, y: null}, {x: 0.286542923, y: null}, {x: 0.159032613, y: null}, {x: 0.124767225, y: null}, {x: 0.338235294, y: null}, {x: 0.4717477, y: null}, {x: 0.24742268, y: null}, {x: 0.372901679, y: null}, {x: 0.269512195, y: null}, {x: 0.378735233, y: null}, {x: 0.124608968, y: null}, {x: 0.270440252, y: null}, {x: 0.293838863, y: null}, {x: 0.27100271, y: null}, {x: 0.186179326, y: null}, {x: 0.25160188, y: null}, {x: 0.065934066, y: null}, {x: 0.212643678, y: null}, {x: 0.130984043, y: null}, {x: 0.143646409, y: null}, {x: 0.132661183, y: null}, {x: 0.405769231, y: null}, {x: 0.477355073, y: null}, {x: 0.133263379, y: null}, {x: 0.173192771, y: null}, {x: 0.15261959, y: 1.005625}, {x: 0.039344262, y: null}, {x: 0.447310243, y: null}, {x: 0.24972973, y: null}, {x: 0.540861813, y: null}, {x: 0.38902148, y: 21.590654999999998}, {x: 0.551764706, y: 2.36377}, {x: 0.240875912, y: null}, {x: 0.590372389, y: 69.454067}, {x: 0.582191781, y: null}, {x: 0.156033287, y: null}, {x: 0.238568589, y: null}, {x: 0.425517702, y: null}, {x: 0.518569464, y: null}, {x: 0.243243243, y: null}, {x: 0.126702997, y: null}, {x: 0.283415842, y: null}, {x: 0.084016393, y: 4.023005}, {x: 0.058216654, y: null}, {x: 0.742090125, y: 15.273601}, {x: 0.503474904, y: null}, {x: 0.130693069, y: null}, {x: 0.463446475, y: null}, {x: 0.213302752, y: null}, {x: 0.408510638, y: 17.667698}, {x: 0.080453842, y: 130.09780700000002}, {x: 0.443373494, y: null}, {x: 0.172034564, y: null}, {x: 0.329143755, y: null}, {x: 0.222767419, y: null}, {x: 0.16568915, y: null}, {x: 0.233438486, y: null}, {x: 0.429588608, y: null}, {x: 0.152290076, y: 98.279335}, {x: 0.615189873, y: 0.465397}, {x: 0.0, y: null}, {x: 0.391818182, y: null}, {x: 0.343976778, y: null}, {x: 0.182981928, y: null}, {x: 0.182816538, y: null}, {x: 0.772769953, y: null}, {x: 0.612454213, y: null}, {x: 0.769387755, y: null}, {x: 0.925742574, y: null}, {x: 0.610204082, y: null}, {x: 0.81275441, y: 1.850684}, {x: 0.344902386, y: null}, {x: 0.870431894, y: null}, {x: 0.921259843, y: 211.675397}, {x: 0.581546459, y: null}, {x: 0.808118081, y: null}, {x: 0.67816092, y: null}, {x: 0.554759468, y: null}, {x: 0.107055961, y: null}, {x: 0.256445048, y: null}, {x: 0.176374077, y: 106.444359}, {x: 0.195470799, y: 2.454447}, {x: 0.064238411, y: null}, {x: 0.817941953, y: null}, {x: 0.805376344, y: null}, {x: 0.49871134, y: null}, {x: 0.133802817, y: null}, {x: 0.579635684, y: null}, {x: 0.077654517, y: null}, {x: 0.406214039, y: null}, {x: 0.207774799, y: null}, {x: 0.208432023, y: null}, {x: 0.186495177, y: null}, {x: 0.227573751, y: null}, {x: 0.404160476, y: 617.717181}, {x: 0.51648773, y: 0.620762}, {x: 0.614415675, y: null}, {x: 0.392712551, y: null}, {x: 0.392907801, y: null}, {x: 0.191472245, y: null}, {x: 0.388538682, y: null}, {x: 0.628257888, y: null}, {x: 0.291610284, y: null}, {x: 0.354231975, y: null}, {x: 0.363251482, y: null}, {x: 0.466850829, y: null}, {x: 0.292708888, y: null}, {x: 0.616052061, y: null}, {x: 0.43753015, y: null}, {x: 0.719957082, y: null}, {x: 0.239208633, y: null}, {x: 0.28988764, y: null}, {x: 0.140200286, y: null}, {x: 0.113428944, y: null}, {x: 0.006214689, y: null}, {x: 0.071482318, y: null}, {x: 0.143026005, y: null}, {x: 0.474967062, y: null}, {x: 0.123188406, y: null}, {x: 0.114958449, y: null}, {x: 0.186068702, y: null}, {x: 0.060692271, y: null}, {x: 0.017900732, y: null}, {x: 0.142712551, y: null}, {x: 0.622906292, y: null}, {x: 0.536585366, y: null}, {x: 0.135753176, y: null}, {x: 0.042706965, y: null}, {x: 0.188905547, y: null}, {x: 0.117304493, y: null}, {x: 0.047355474, y: null}, {x: 0.346038114, y: null}, {x: 0.67498582, y: null}, {x: 0.401002506, y: null}, {x: 0.203161593, y: null}, {x: 0.200686106, y: null}, {x: 0.524515393, y: null}, {x: 0.407225965, y: null}, {x: 0.502504174, y: null}, {x: 0.109704641, y: null}, {x: 0.197188309, y: null}, {x: 0.050936768, y: null}, {x: 0.192681532, y: null}, {x: 0.024029575, y: null}, {x: 0.377916019, y: null}, {x: 0.317327766, y: null}, {x: 0.104707435, y: null}, {x: 0.05929063, y: null}, {x: 0.0, y: null}, {x: 0.195714286, y: null}, {x: 0.159755269, y: null}, {x: 0.094654788, y: null}, {x: 0.126545455, y: null}, {x: 0.166768479, y: null}, {x: 0.269230769, y: null}, {x: 0.16741501, y: null}, {x: 0.087077351, y: null}, {x: 0.192893401, y: null}, {x: 0.099638616, y: null}, {x: 0.006319115, y: null}, {x: 0.091381872, y: null}, {x: 0.121767241, y: null}, {x: 0.201141227, y: null}, {x: 0.047643183, y: null}, {x: 0.234803922, y: null}, {x: 0.10952381, y: null}, {x: 0.24623803, y: null}, {x: 0.195972115, y: null}, {x: 0.178913738, y: null}, {x: 0.08, y: null}, {x: 0.168395062, y: null}, {x: 0.073867163, y: null}, {x: 0.438853131, y: null}, {x: 0.142307692, y: 385.927118}, {x: 0.172337278, y: 2.816}, {x: 0.150650441, y: null}, {x: 0.086673889, y: null}, {x: 0.054512139, y: null}, {x: 0.007142857, y: null}, {x: 0.218031279, y: null}, {x: 0.089412811, y: null}, {x: 0.097799511, y: null}, {x: 0.065399665, y: null}, {x: 0.020733652, y: null}, {x: 0.019163763, y: null}, {x: 0.092819615, y: null}, {x: 0.237449118, y: null}, {x: 0.338966203, y: null}, {x: 0.141304348, y: null}, {x: 0.096727796, y: null}, {x: 0.313445378, y: null}, {x: 0.202038104, y: null}, {x: 0.179930796, y: null}, {x: 0.031832298, y: null}, {x: 0.092133239, y: null}, {x: 0.089820359, y: null}, {x: 0.094003241, y: null}, {x: 0.092709984, y: null}, {x: 0.064261556, y: null}, {x: 0.217230008, y: null}, {x: 0.176865046, y: null}, {x: 0.089154412, y: null}, {x: 0.184771033, y: null}, {x: 0.02188392, y: null}, {x: 0.075613276, y: null}, {x: 0.039819005, y: null}, {x: 0.170632618, y: null}, {x: 0.242459397, y: null}, {x: 0.212140175, y: null}, {x: 0.218994413, y: null}, {x: 0.126482213, y: null}, {x: 0.176139273, y: null}, {x: 0.167036216, y: null}, {x: 0.227786753, y: null}, {x: 0.194784026, y: null}, {x: 0.209767814, y: null}, {x: 0.148795649, y: null}, {x: 0.119930475, y: null}, {x: 0.281481482, y: null}, {x: 0.245859873, y: null}, {x: 0.056631893, y: null}, {x: 0.547680412, y: null}, {x: 0.62985782, y: null}, {x: 0.056737589, y: null}, {x: 0.14129625, y: null}, {x: 0.186666667, y: null}, {x: 0.063291139, y: null}, {x: 0.217636023, y: null}, {x: 0.142926829, y: null}, {x: 0.099309612, y: null}, {x: 0.192756292, y: null}, {x: 0.086353123, y: null}, {x: 0.236290682, y: null}, {x: 0.692188708, y: null}, {x: 0.693947144, y: null}, {x: 0.461373391, y: null}, {x: 0.410230692, y: null}, {x: 0.134615385, y: null}, {x: 0.451674037, y: null}, {x: 0.466422466, y: null}, {x: 0.664900662, y: null}, {x: 0.843210803, y: null}, {x: 0.371597633, y: null}, {x: 0.60106383, y: null}, {x: 0.296181631, y: null}, {x: 0.604166667, y: null}, {x: 0.535080956, y: null}, {x: 0.422025724, y: null}, {x: 0.007656968, y: null}, {x: 0.119390347, y: null}, {x: 0.107080164, y: null}, {x: 0.452788515, y: null}, {x: 0.346938776, y: null}, {x: 0.0, y: null}, {x: 0.114676486, y: null}, {x: 0.124465812, y: null}, {x: 0.162243151, y: null}, {x: 0.203240059, y: null}, {x: 0.149584488, y: null}, {x: 0.194214876, y: null}, {x: 0.165613718, y: null}, {x: 0.224386724, y: null}, {x: 0.308252427, y: null}, {x: 0.131256563, y: null}, {x: 0.226162333, y: null}, {x: 0.0, y: null}, {x: 0.230593607, y: null}, {x: 0.103011094, y: null}, {x: 0.186766275, y: null}, {x: 0.335589942, y: null}, {x: 0.0, y: null}, {x: 0.047265361, y: 0.45}, {x: 0.209090909, y: null}, {x: 0.139902676, y: null}, {x: 0.058823529, y: null}, {x: 0.145431945, y: null}, {x: 0.167484997, y: null}, {x: 0.332688588, y: null}, {x: 0.175675676, y: null}, {x: 0.357366771, y: null}, {x: 0.222222222, y: null}, {x: 0.31292876, y: null}, {x: 0.045454545, y: null}, {x: 0.896153846, y: null}, {x: 0.165371809, y: null}, {x: 0.206546796, y: null}, {x: 0.16856492, y: null}, {x: 0.456357759, y: null}, {x: 0.0, y: null}, {x: 0.344452502, y: null}, {x: 0.105373343, y: null}, {x: 0.32618683, y: null}, {x: 0.317860747, y: null}, {x: 0.239130435, y: null}, {x: 0.190134529, y: null}, {x: 0.334490741, y: null}, {x: 0.187900356, y: null}, {x: 0.214686385, y: 5e-05}, {x: 0.295597484, y: null}, {x: 0.288693743, y: null}, {x: 0.335766423, y: null}, {x: 0.069602273, y: null}, {x: 0.042776999, y: null}, {x: 0.094623656, y: null}, {x: 0.119918699, y: null}, {x: 0.294010889, y: null}, {x: 0.216639209, y: null}, {x: 0.143867925, y: null}, {x: 0.600825878, y: null}, {x: 0.440881764, y: null}, {x: 0.131931166, y: null}, {x: 0.067490494, y: null}, {x: 0.090606262, y: null}, {x: 0.109448819, y: null}, {x: 0.270613108, y: null}, {x: 0.320610687, y: null}, {x: 0.098654709, y: null}, {x: 0.096551724, y: null}, {x: 0.216936251, y: null}, {x: 0.139312977, y: null}, {x: 0.111520737, y: null}, {x: 0.298219585, y: null}, {x: 0.25948718, y: null}, {x: 0.156905278, y: null}, {x: 0.169597277, y: null}, {x: 0.075660243, y: null}, {x: 0.090005233, y: null}, {x: 0.063157895, y: null}, {x: 0.255225523, y: null}, {x: 0.125, y: null}, {x: 0.106425703, y: null}, {x: 0.158339198, y: null}, {x: 0.372469636, y: null}, {x: 0.613154961, y: null}, {x: 0.334821429, y: null}, {x: 0.517326733, y: null}, {x: 0.44867855, y: null}, {x: 0.031698113, y: null}, {x: 0.1796875, y: null}, {x: 0.288334556, y: 2479.88946}, {x: 0.680131004, y: null}, {x: 0.377899045, y: null}, {x: 0.224024328, y: null}, {x: 0.569614069, y: null}, {x: 0.332887701, y: null}, {x: 0.256934307, y: null}, {x: 0.175418994, y: null}, {x: 0.710470086, y: null}, {x: 0.433684211, y: 482.90002}, {x: 0.566246057, y: null}, {x: 0.479349187, y: 67.833}, {x: 0.478670013, y: null}, {x: 0.317446809, y: null}, {x: 0.348593228, y: null}, {x: 0.147346072, y: null}, {x: 0.252354049, y: null}, {x: 0.09593777, y: null}, {x: 0.420918367, y: null}, {x: 0.228438228, y: null}, {x: 0.244226732, y: null}, {x: 0.48549884, y: null}, {x: 0.486111111, y: 55.29}, {x: 0.378483835, y: null}, {x: 0.520729685, y: null}, {x: 0.336483932, y: null}, {x: 0.646521434, y: null}, {x: 0.407643312, y: null}, {x: 0.432835821, y: null}, {x: 0.186453023, y: null}, {x: 0.346908734, y: null}, {x: 0.049135578, y: null}, {x: 0.025723473, y: null}, {x: 0.35114079, y: null}, {x: 0.242244224, y: null}, {x: 0.19873817, y: null}, {x: 0.187434002, y: null}, {x: 0.229894395, y: null}, {x: 0.04886562, y: null}, {x: 0.435246318, y: null}, {x: 0.065433855, y: null}, {x: 0.42882405, y: null}, {x: 0.165986395, y: null}, {x: 0.171401515, y: null}, {x: 0.181990521, y: null}, {x: 0.677419355, y: null}, {x: 0.276346604, y: null}, {x: 0.462096243, y: null}, {x: 0.506582412, y: null}, {x: 0.487410072, y: null}, {x: 0.651711027, y: null}, {x: 0.467996675, y: null}, {x: 0.465584779, y: null}, {x: 0.481886535, y: null}, {x: 0.174825175, y: null}, {x: 0.540901503, y: null}, {x: 0.191395961, y: null}, {x: 0.343832021, y: null}, {x: 0.293144208, y: null}, {x: 0.348008386, y: null}, {x: 0.175074184, y: null}, {x: 0.124301676, y: null}, {x: 0.111923253, y: null}, {x: 0.788161994, y: 199.24}, {x: 0.40459364, y: null}, {x: 0.160842294, y: 654.51638}, {x: 0.091078067, y: null}, {x: 0.335769981, y: null}, {x: 0.265109193, y: null}, {x: 0.0, y: null}, {x: 0.07016129, y: null}, {x: 0.208350223, y: null}, {x: 0.048558897, y: null}, {x: 0.044928523, y: null}, {x: 0.095512083, y: null}, {x: 0.1201373, y: null}, {x: 0.137418756, y: null}, {x: 0.013313609, y: null}, {x: 0.072332731, y: null}, {x: 0.186107965, y: null}, {x: 0.185592619, y: null}, {x: 0.311759344, y: null}, {x: 0.163699024, y: null}, {x: 0.200447094, y: null}, {x: 0.053875756, y: null}, {x: 0.214727723, y: null}, {x: 0.262099777, y: null}, {x: 0.077572965, y: null}, {x: 0.215111478, y: null}, {x: 0.115982242, y: null}, {x: 0.138235294, y: null}, {x: 0.016422548, y: null}, {x: 0.155236908, y: null}, {x: 0.292901716, y: null}, {x: 0.048076923, y: null}, {x: 0.048710602, y: null}, {x: 0.066005472, y: null}, {x: 0.041421947, y: null}, {x: 0.218197499, y: null}, {x: 0.103708791, y: null}, {x: 0.082482993, y: null}, {x: 0.060178655, y: null}, {x: 0.08688172, y: null}, {x: 0.327169275, y: null}, {x: 0.008540925, y: null}, {x: 0.034736842, y: null}, {x: 0.079427083, y: null}, {x: 0.141935484, y: null}, {x: 0.017988553, y: null}, {x: 0.070175439, y: null}, {x: 0.050531915, y: null}, {x: 0.014973958, y: null}, {x: 0.070038911, y: null}, {x: 0.051712559, y: null}, {x: 0.071076707, y: null}, {x: 0.113802817, y: null}, {x: 0.054874489, y: null}, {x: 0.011641444, y: null}, {x: 0.036539896, y: null}, {x: 0.171572146, y: null}, {x: 0.017011834, y: null}, {x: 0.048372093, y: null}, {x: 0.01187447, y: null}, {x: 0.089381207, y: null}, {x: 0.082481254, y: null}, {x: 0.06993865, y: null}, {x: 0.214519294, y: null}, {x: 0.071005917, y: null}, {x: 0.268896321, y: null}, {x: 0.089883112, y: null}, {x: 0.044703596, y: null}, {x: 0.060674157, y: null}, {x: 0.05190678, y: null}, {x: 0.025806452, y: null}, {x: 0.051771117, y: null}, {x: 0.078457447, y: null}, {x: 0.0, y: null}, {x: 0.237670514, y: 396.4304}, {x: 0.135699374, y: null}, {x: 0.039623909, y: null}, {x: 0.564759036, y: null}, {x: 0.176814012, y: null}, {x: 0.0, y: null}, {x: 0.214733542, y: null}, {x: 0.097073519, y: null}, {x: 0.05943331, y: null}, {x: 0.083663086, y: null}, {x: 0.17235637, y: null}, {x: 0.054300817, y: null}, {x: 0.082160945, y: null}, {x: 0.124620061, y: null}, {x: 0.076555024, y: null}, {x: 0.039936102, y: null}, {x: 0.101486749, y: null}, {x: 0.035288012, y: null}, {x: 0.01529052, y: null}, {x: 0.032444959, y: null}, {x: 0.11208893, y: null}, {x: 0.109375, y: null}, {x: 0.147945206, y: null}, {x: 0.037681159, y: null}, {x: 0.124303233, y: null}, {x: 0.256038647, y: null}, {x: 0.0, y: null}, {x: 0.120833333, y: null}, {x: 0.140155729, y: null}, {x: 0.146167558, y: null}, {x: 0.094582975, y: null}, {x: 0.0, y: null}, {x: 0.041934582, y: null}, {x: 0.117152104, y: null}, {x: 0.0, y: null}, {x: 0.043557833, y: null}, {x: 0.0, y: null}, {x: 0.092467851, y: null}, {x: 0.03052422, y: null}, {x: 0.195945946, y: null}, {x: 0.01038961, y: null}, {x: 0.151055409, y: null}, {x: 0.068666667, y: null}, {x: 0.0, y: null}, {x: 0.061793215, y: null}, {x: 0.137690095, y: null}, {x: 0.031413613, y: null}, {x: 0.096164854, y: null}, {x: 0.062413315, y: null}, {x: 0.0, y: null}, {x: 0.083769634, y: null}, {x: 0.305785124, y: null}, {x: 0.36154289, y: null}, {x: 0.017492711, y: null}, {x: 0.023110556, y: null}, {x: 0.299554114, y: null}, {x: 0.225231911, y: null}, {x: 0.566835871, y: null}, {x: 0.113970588, y: null}, {x: 0.449060336, y: null}, {x: 0.443462075, y: null}, {x: 0.36322532, y: null}, {x: 0.150716332, y: null}, {x: 0.033933162, y: null}, {x: 0.174543753, y: null}, {x: 0.163619744, y: null}, {x: 0.315756824, y: null}, {x: 0.103532278, y: null}, {x: 0.236973948, y: null}, {x: 0.146926537, y: null}, {x: 0.093931837, y: null}, {x: 0.112177565, y: null}, {x: 0.058638743, y: null}, {x: 0.122053872, y: null}, {x: 0.136310223, y: null}, {x: 0.034285714, y: null}, {x: 0.073654391, y: null}, {x: 0.066193853, y: null}, {x: 0.128362798, y: null}, {x: 0.177130045, y: null}, {x: 0.085947572, y: null}, {x: 0.34814364, y: null}, {x: 0.155061019, y: null}, {x: 0.285795455, y: null}, {x: 0.250814332, y: null}, {x: 0.085766423, y: null}, {x: 0.105163728, y: null}, {x: 0.035366932, y: null}, {x: 0.084161696, y: null}, {x: 0.015397776, y: null}, {x: 0.286223278, y: null}, {x: 0.0, y: null}, {x: 0.032552827, y: null}, {x: 0.039562924, y: null}, {x: 0.150084317, y: null}, {x: 0.188761593, y: null}, {x: 0.0, y: null}, {x: 0.103028194, y: null}, {x: 0.320325203, y: null}, {x: 0.069166667, y: null}, {x: 0.042932629, y: null}, {x: 0.042553191, y: null}, {x: 0.096153846, y: null}, {x: 0.184210526, y: null}, {x: 0.124748491, y: null}, {x: 0.168241966, y: null}, {x: 0.037848606, y: null}, {x: 0.011158798, y: null}, {x: 0.074758135, y: null}, {x: 0.109271523, y: null}, {x: 0.021060276, y: null}, {x: 0.280726257, y: null}, {x: 0.098263027, y: null}, {x: 0.044251627, y: null}, {x: 0.065446478, y: null}, {x: 0.158808933, y: null}, {x: 0.159280668, y: null}, {x: 0.189856066, y: null}, {x: 0.098351336, y: null}, {x: 0.347411444, y: null}, {x: 0.136861314, y: null}, {x: 0.04068078, y: null}, {x: 0.072327044, y: null}, {x: 0.084288604, y: null}, {x: 0.042704626, y: null}, {x: 0.024280911, y: null}, {x: 0.035844916, y: null}, {x: 0.193867458, y: null}, {x: 0.017760058, y: null}, {x: 0.068499759, y: null}, {x: 0.205967276, y: null}, {x: 0.141923436, y: null}, {x: 0.016100179, y: null}, {x: 0.088701685, y: null}, {x: 0.01684002, y: null}, {x: 0.038173142, y: null}, {x: 0.035057717, y: null}, {x: 0.063985375, y: null}, {x: 0.071885585, y: null}, {x: 0.028510335, y: null}, {x: 0.055236729, y: null}, {x: 0.265200518, y: null}, {x: 0.13353566, y: null}, {x: 0.046861565, y: null}, {x: 0.0, y: null}, {x: 0.023393984, y: null}, {x: 0.049939099, y: null}, {x: 0.106945298, y: null}, {x: 0.083561644, y: null}, {x: 0.112337406, y: null}, {x: 0.139705882, y: null}, {x: 0.252894859, y: null}, {x: 0.164410058, y: null}, {x: 0.012004175, y: null}, {x: 0.171943712, y: null}, {x: 0.132789318, y: null}, {x: 0.143104443, y: null}, {x: 0.0, y: null}, {x: 0.157161515, y: null}, {x: 0.094700261, y: null}, {x: 0.241590214, y: null}, {x: 0.286516854, y: null}, {x: 0.169590643, y: null}, {x: 0.004437273, y: null}, {x: 0.1014772, y: null}, {x: 0.188346884, y: null}, {x: 0.061985472, y: null}, {x: 0.059380379, y: null}, {x: 0.34973262, y: null}, {x: 0.13239645, y: null}, {x: 0.144636015, y: null}, {x: 0.249277457, y: null}, {x: 0.165124555, y: null}, {x: 0.159560724, y: null}, {x: 0.039032006, y: null}, {x: 0.072839506, y: null}, {x: 0.217518248, y: null}, {x: 0.030758226, y: null}, {x: 0.073813708, y: null}, {x: 0.120250686, y: null}, {x: 0.272456576, y: null}, {x: 0.211159211, y: null}, {x: 0.133167907, y: null}, {x: 0.218879056, y: null}, {x: 0.296296296, y: null}, {x: 0.059376837, y: null}, {x: 0.047474133, y: null}, {x: 0.176684882, y: null}, {x: 0.124452235, y: null}, {x: 0.069010417, y: null}, {x: 0.036553525, y: null}, {x: 0.086799277, y: null}, {x: 0.111235955, y: null}, {x: 0.105882353, y: null}, {x: 0.037931034, y: null}, {x: 0.266666667, y: null}, {x: 0.0978957, y: null}, {x: 0.019764706, y: null}, {x: 0.04842615, y: null}, {x: 0.100762527, y: null}, {x: 0.060553633, y: null}, {x: 0.0, y: null}, {x: 0.077837838, y: null}, {x: 0.169364882, y: null}, {x: 0.072586588, y: null}, {x: 0.067017083, y: null}, {x: 0.11722488, y: null}, {x: 0.022646851, y: null}, {x: 0.02853067, y: null}, {x: 0.058122206, y: null}, {x: 0.3089701, y: null}, {x: 0.024883359, y: null}, {x: 0.10755814, y: null}, {x: 0.101822079, y: null}, {x: 0.314445331, y: null}, {x: 0.084803256, y: null}, {x: 0.195767196, y: null}, {x: 0.12605042, y: null}, {x: 0.097028502, y: null}, {x: 0.099518459, y: null}, {x: 0.169680111, y: null}, {x: 0.179425837, y: null}, {x: 0.065920398, y: null}, {x: 0.06924254, y: null}, {x: 0.05941704, y: null}, {x: 0.073232323, y: null}, {x: 0.078976035, y: null}, {x: 0.199346405, y: null}, {x: 0.169164882, y: null}, {x: 0.088582677, y: null}, {x: 0.072837633, y: null}, {x: 0.110384895, y: null}, {x: 0.154066986, y: null}, {x: 0.215460526, y: null}, {x: 0.013986014, y: null}, {x: 0.012393493, y: null}, {x: 0.135429262, y: null}, {x: 0.039334342, y: null}, {x: 0.098265896, y: null}, {x: 0.04856787, y: null}, {x: 0.0, y: null}, {x: 0.050579557, y: null}, {x: 0.20630861, y: null}, {x: 0.150159744, y: null}, {x: 0.0, y: null}, {x: 0.035573123, y: null}, {x: 0.084383562, y: null}, {x: 0.213011543, y: null}, {x: 0.196338384, y: null}, {x: 0.052927928, y: null}, {x: 0.235344828, y: null}, {x: 0.180887372, y: null}, {x: 0.028873239, y: null}, {x: 0.029678483, y: null}, {x: 0.188034188, y: null}, {x: 0.043365696, y: null}, {x: 0.125471972, y: null}, {x: 0.255681818, y: null}, {x: 0.205063291, y: null}, {x: 0.04587156, y: null}, {x: 0.21971831, y: null}, {x: 0.012488849, y: null}, {x: 0.152046784, y: null}, {x: 0.039962388, y: null}, {x: 0.248784441, y: null}, {x: 0.067865904, y: null}, {x: 0.086419753, y: null}, {x: 0.098591549, y: null}, {x: 0.11284869, y: null}, {x: 0.177944862, y: null}, {x: 0.014126394, y: null}, {x: 0.051237766, y: null}, {x: 0.066489362, y: null}, {x: 0.289877301, y: null}, {x: 0.027602524, y: null}, {x: 0.0, y: null}, {x: 0.165260197, y: null}, {x: 0.156378601, y: null}, {x: 0.056112224, y: null}, {x: 0.071163825, y: null}, {x: 0.0, y: null}, {x: 0.044663573, y: null}, {x: 0.012202954, y: null}, {x: 0.050034746, y: null}, {x: 0.010972933, y: null}, {x: 0.282968854, y: null}, {x: 0.214654283, y: null}, {x: 0.009409752, y: null}, {x: 0.422590068, y: null}, {x: 0.200450451, y: null}, {x: 0.062365591, y: null}, {x: 0.032436709, y: null}, {x: 0.037037037, y: null}, {x: 0.118990385, y: null}, {x: 0.092137592, y: null}, {x: 0.057080132, y: null}, {x: 0.050874404, y: null}, {x: 0.046431642, y: null}, {x: 0.410755149, y: null}, {x: 0.073604061, y: null}, {x: 0.257575758, y: null}, {x: 0.135167464, y: null}, {x: 0.26074896, y: null}, {x: 0.130530974, y: null}, {x: 0.549778761, y: null}, {x: 0.100609756, y: null}, {x: 0.345813479, y: null}, {x: 0.109311741, y: null}, {x: 0.07133758, y: null}, {x: 0.426791277, y: null}, {x: 0.31678487, y: null}, {x: 0.20610687, y: null}, {x: 0.233018868, y: null}, {x: 0.085732984, y: null}, {x: 0.125, y: null}, {x: 0.285276074, y: null}, {x: 0.340678976, y: null}, {x: 0.361038961, y: null}, {x: 0.355791962, y: null}, {x: 0.0, y: null}, {x: 0.058962264, y: 68.97}, {x: 0.079710145, y: null}, {x: 0.279891304, y: null}, {x: 0.154255319, y: null}, {x: 0.259044863, y: null}, {x: 0.0, y: null}, {x: 0.023121387, y: null}, {x: 0.047530289, y: null}, {x: 0.148854962, y: null}, {x: 0.376888218, y: null}, {x: 0.310756972, y: null}, {x: 0.235543018, y: null}, {x: 0.103947368, y: null}, {x: 0.366492147, y: null}, {x: 0.131386861, y: null}, {x: 0.016248154, y: null}, {x: 0.03442029, y: null}, {x: 0.022192334, y: null}, {x: 0.249895529, y: null}, {x: 0.10626186, y: null}, {x: 0.057943925, y: null}, {x: 0.232352941, y: null}, {x: 0.222172553, y: null}, {x: 0.390946502, y: null}, {x: 0.030192132, y: null}, {x: 0.430502975, y: null}, {x: 0.288270378, y: null}, {x: 0.096774194, y: null}, {x: 0.395579268, y: null}, {x: 0.476152623, y: null}, {x: 0.051526718, y: null}, {x: 0.152051488, y: null}, {x: 0.09478022, y: null}, {x: 0.499222395, y: null}, {x: 0.355847688, y: null}, {x: 0.517611026, y: null}, {x: 0.492407809, y: null}, {x: 0.229799852, y: null}, {x: 0.233050848, y: null}, {x: 0.581833061, y: null}, {x: 0.353284672, y: null}, {x: 0.310491493, y: null}, {x: 0.422346369, y: null}, {x: 0.457024793, y: null}, {x: 0.298837209, y: null}, {x: 0.096813725, y: null}, {x: 0.198748044, y: null}, {x: 0.351602024, y: null}, {x: 0.457702582, y: null}, {x: 0.417251755, y: null}, {x: 0.140414041, y: null}, {x: 0.224631396, y: null}, {x: 0.275332651, y: null}, {x: 0.422459893, y: null}, {x: 0.279020979, y: null}, {x: 0.0, y: null}, {x: 0.291012839, y: null}, {x: 0.650949574, y: null}, {x: 0.272113943, y: null}, {x: 0.104105572, y: null}, {x: 0.303286385, y: null}, {x: 0.299932751, y: null}, {x: 0.441834452, y: null}, {x: 0.389489954, y: null}, {x: 0.70591614, y: null}, {x: 0.528669725, y: null}, {x: 0.2, y: null}, {x: 0.214854111, y: null}, {x: 0.292115712, y: null}, {x: 0.215087719, y: null}, {x: 0.136595311, y: null}, {x: 0.414210129, y: null}, {x: 0.532400589, y: null}, {x: 0.258293839, y: null}, {x: 0.448903157, y: null}, {x: 0.09164149, y: null}, {x: 0.589052997, y: null}, {x: 0.284609979, y: null}, {x: 0.14197052, y: null}, {x: 0.307692308, y: null}, {x: 0.464686998, y: null}, {x: 0.229411765, y: null}, {x: 0.239242685, y: null}, {x: 0.513846154, y: null}, {x: 0.284114053, y: null}, {x: 0.24434942, y: null}, {x: 0.3388735, y: null}, {x: 0.180787192, y: null}, {x: 0.41037037, y: null}, {x: 0.555045872, y: null}, {x: 0.385957447, y: null}, {x: 0.251644737, y: null}, {x: 0.343949045, y: null}, {x: 0.319240196, y: null}, {x: 0.102721088, y: null}, {x: 0.682885906, y: null}, {x: 0.144089733, y: null}, {x: 0.386214442, y: null}, {x: 0.543369475, y: null}, {x: 0.881203008, y: null}, {x: 0.0, y: null}, {x: 0.295935648, y: null}, {x: 0.373917473, y: null}, {x: 0.138236828, y: null}, {x: 0.502119927, y: null}, {x: 0.12755102, y: null}, {x: 0.30420712, y: null}, {x: 0.133250311, y: null}, {x: 0.203099511, y: null}, {x: 0.086341118, y: null}, {x: 0.090977444, y: null}, {x: 0.538135593, y: null}, {x: 0.095179988, y: null}, {x: 0.219117051, y: null}, {x: 0.225886233, y: null}, {x: 0.08997955, y: null}, {x: 0.029850746, y: null}, {x: 0.098765432, y: null}, {x: 0.117998913, y: null}, {x: 0.095194923, y: null}, {x: 0.205791107, y: null}, {x: 0.127790608, y: null}, {x: 0.040909091, y: null}, {x: 0.202422145, y: null}, {x: 0.038376384, y: null}, {x: 0.194357367, y: null}, {x: 0.360132159, y: null}, {x: 0.150326797, y: null}, {x: 0.162921348, y: null}, {x: 0.136363636, y: null}, {x: 0.0, y: null}, {x: 0.261682243, y: null}, {x: 0.484992101, y: null}, {x: 0.105263158, y: null}, {x: 0.045929019, y: null}, {x: 0.256126482, y: null}, {x: 0.088764045, y: null}, {x: 0.272727273, y: null}, {x: 0.565180824, y: null}, {x: 0.758920801, y: null}, {x: 0.171249018, y: null}, {x: 0.047029703, y: null}, {x: 0.12364946, y: null}, {x: 0.200736648, y: null}, {x: 0.0514198, y: null}, {x: 0.18784972, y: null}, {x: 0.089861751, y: null}, {x: 0.076363636, y: null}, {x: 0.068148148, y: null}, {x: 0.181021898, y: null}, {x: 0.209677419, y: null}, {x: 0.172205438, y: null}, {x: 0.218660969, y: null}, {x: 0.165700083, y: null}, {x: 0.126609442, y: null}, {x: 0.066852368, y: null}, {x: 0.173633441, y: null}, {x: 0.185148515, y: null}, {x: 0.170008718, y: null}, {x: 0.121142857, y: null}, {x: 0.281847134, y: null}, {x: 0.113562622, y: null}, {x: 0.155193993, y: null}, {x: 0.18997107, y: null}, {x: 0.473941368, y: null}, {x: 0.097812098, y: null}, {x: 0.201520913, y: null}, {x: 0.097959184, y: null}, {x: 0.355411955, y: null}, {x: 0.37145749, y: null}, {x: 0.329359165, y: null}, {x: 0.165422886, y: null}, {x: 0.548944338, y: null}, {x: 0.262813522, y: null}, {x: 0.227533461, y: null}, {x: 0.208955224, y: null}, {x: 0.119318182, y: null}, {x: 0.291841884, y: null}, {x: 0.754601227, y: null}, {x: 0.127245509, y: null}, {x: 0.280445969, y: null}, {x: 0.158119658, y: null}, {x: 0.111111111, y: 2.8}, {x: 0.159513133, y: null}, {x: 0.359756098, y: null}, {x: 0.215625, y: null}, {x: 0.12875121, y: null}, {x: 0.082208589, y: null}, {x: 0.425660793, y: null}, {x: 0.233282675, y: null}, {x: 0.087452471, y: null}, {x: 0.067776457, y: null}, {x: 0.311388755, y: null}, {x: 0.434116445, y: null}, {x: 0.432872254, y: null}, {x: 0.11827957, y: null}, {x: 0.180433039, y: null}, {x: 0.069421488, y: null}, {x: 0.175474814, y: null}, {x: 0.351669941, y: null}, {x: 0.450753187, y: null}, {x: 0.241203704, y: null}, {x: 0.259615385, y: null}, {x: 0.0, y: null}, {x: 1.0, y: null}, {x: 0.184190902, y: null}, {x: 0.37899918, y: null}, {x: 0.041082164, y: null}, {x: 0.131004367, y: null}, {x: 0.131100479, y: null}, {x: 0.182320442, y: null}, {x: 0.08910162, y: null}, {x: 0.175876727, y: null}, {x: 0.355685131, y: null}, {x: 0.083606557, y: null}, {x: 0.065263158, y: null}, {x: 0.183634634, y: null}, {x: 0.0, y: null}, {x: 0.269141531, y: null}, {x: 0.249578415, y: null}, {x: 0.19035744, y: null}, {x: 0.240200167, y: null}, {x: 0.071535022, y: null}, {x: 0.0945758, y: null}, {x: 0.399122807, y: null}, {x: 0.385391924, y: null}, {x: 0.666666667, y: null}, {x: 0.072519084, y: null}, {x: 0.346875, y: null}, {x: 0.419450631, y: null}, {x: 0.116094987, y: null}, {x: 0.035558781, y: 1.38}, {x: 0.004302926, y: null}, {x: 0.041910331, y: 3.71}, {x: 0.087529976, y: null}, {x: 0.207612457, y: null}, {x: 0.0653789, y: null}, {x: 0.103906899, y: null}, {x: 0.119777159, y: null}, {x: 0.03666997, y: null}, {x: 0.186423506, y: null}, {x: 0.024564184, y: null}, {x: 0.0, y: null}, {x: 0.099805574, y: null}, {x: 0.153669725, y: null}, {x: 0.038123167, y: null}, {x: 0.193960511, y: null}, {x: 0.083261058, y: null}, {x: 0.102013423, y: null}, {x: 0.180658874, y: null}, {x: 0.093772894, y: null}, {x: 0.0, y: null}, {x: 0.153473344, y: null}, {x: 0.152453271, y: null}, {x: 0.1544, y: null}, {x: 0.184054283, y: null}, {x: 0.682846371, y: null}, {x: 0.304635762, y: null}, {x: 0.210261569, y: null}, {x: 0.128410915, y: 1.975}, {x: 0.137285491, y: null}, {x: 0.070357555, y: null}, {x: 0.120289107, y: null}, {x: 0.01174743, y: 45.306}, {x: 0.134897361, y: null}, {x: 0.146017699, y: null}, {x: 0.026455026, y: null}, {x: 0.028528529, y: null}, {x: 0.087824351, y: null}, {x: 0.12605042, y: null}, {x: 0.059541985, y: null}, {x: 0.209051724, y: null}, {x: 0.011152416, y: null}, {x: 0.070773263, y: null}, {x: 0.03030303, y: null}, {x: 0.053941909, y: null}, {x: 0.021212121, y: null}, {x: 0.061271676, y: null}, {x: 0.0, y: null}, {x: 0.045107564, y: null}, {x: 0.307652799, y: null}, {x: 0.012578616, y: null}, {x: 0.081132075, y: null}, {x: 0.156886228, y: null}, {x: 0.07037037, y: null}, {x: 0.103202847, y: null}, {x: 0.00619195, y: null}, {x: 0.141618497, y: null}, {x: 0.167250438, y: null}, {x: 0.11352657, y: null}, {x: 0.257471264, y: null}, {x: 0.034907598, y: null}, {x: 0.005420054, y: null}, {x: 0.20573108, y: 12.033039}, {x: 0.09609375, y: null}, {x: 0.114934114, y: null}, {x: 0.472627737, y: null}, {x: 0.192743764, y: null}, {x: 0.032321254, y: null}, {x: 0.223445239, y: null}, {x: 0.0, y: null}, {x: 0.017316017, y: null}, {x: 0.050623053, y: null}, {x: 0.011483254, y: null}, {x: 0.019630485, y: null}, {x: 0.207908163, y: null}, {x: 0.036238981, y: null}, {x: 0.104538501, y: null}, {x: 0.051960784, y: null}, {x: 0.012074643, y: null}, {x: 0.044698545, y: null}, {x: 0.040328093, y: null}, {x: 0.0, y: null}, {x: 0.237944664, y: null}, {x: 0.107142857, y: null}, {x: 0.087142857, y: null}, {x: 0.072354212, y: null}, {x: 0.072902338, y: null}, {x: 0.045618247, y: null}, {x: 0.153061225, y: null}, {x: 0.128964059, y: null}, {x: 0.07087959, y: null}, {x: 0.070737606, y: null}, {x: 0.158986175, y: null}, {x: 0.17877095, y: null}, {x: 0.155731225, y: null}, {x: 0.138794084, y: null}, {x: 0.05618964, y: null}, {x: 0.198645598, y: null}, {x: 0.034943474, y: null}, {x: 0.191176471, y: null}, {x: 0.048370137, y: null}, {x: 0.033561644, y: null}, {x: 0.012101911, y: null}, {x: 0.123809524, y: null}, {x: 0.147751606, y: null}, {x: 0.007115948, y: null}, {x: 0.053266332, y: null}, {x: 0.279792746, y: null}, {x: 0.205009276, y: null}, {x: 0.087719298, y: null}, {x: 0.090163934, y: null}, {x: 0.036697248, y: null}, {x: 0.022516083, y: null}, {x: 0.089385475, y: null}, {x: 0.018402342, y: null}, {x: 0.144827586, y: null}, {x: 0.062626263, y: null}, {x: 0.023116438, y: null}, {x: 0.13452381, y: null}, {x: 0.020833333, y: null}, {x: 0.01981982, y: null}, {x: 0.026666667, y: null}, {x: 0.014492754, y: null}, {x: 0.034183397, y: null}, {x: 0.102868447, y: null}, {x: 0.033722438, y: null}, {x: 0.084241104, y: null}, {x: 0.0, y: null}, {x: 0.202939514, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.075630252, y: null}, {x: 0.067515924, y: null}, {x: 0.038393175, y: null}, {x: 0.08200213, y: null}, {x: 0.06202209, y: null}, {x: 0.0, y: null}, {x: 0.20886501, y: null}, {x: 0.218677494, y: null}, {x: 0.218516675, y: null}, {x: 0.33029382, y: null}, {x: 0.168469861, y: null}, {x: 0.096880131, y: null}, {x: 0.002998501, y: null}, {x: 0.03898917, y: null}, {x: 0.219183845, y: null}, {x: 0.231752797, y: null}, {x: 0.038461538, y: null}, {x: 0.024309392, y: null}, {x: 0.082075472, y: null}, {x: 0.036119711, y: null}, {x: 0.001144165, y: null}, {x: 0.114229444, y: null}, {x: 0.04735062, y: null}, {x: 0.0, y: null}, {x: 0.259927798, y: null}, {x: 0.029292107, y: null}, {x: 0.033242877, y: null}, {x: 0.057170543, y: null}, {x: 0.067164179, y: null}, {x: 0.047220107, y: null}, {x: 0.238165681, y: null}, {x: 0.050544323, y: null}, {x: 0.062787136, y: null}, {x: 0.101962662, y: null}, {x: 0.0, y: null}, {x: 0.102057959, y: null}, {x: 0.050765512, y: null}, {x: 0.032311978, y: 0.0117}, {x: 0.101750547, y: null}, {x: 0.405918728, y: null}, {x: 0.086978637, y: null}, {x: 0.130858186, y: null}, {x: 0.239146992, y: null}, {x: 0.151730257, y: null}, {x: 0.0, y: null}, {x: 0.166890983, y: null}, {x: 0.102122016, y: null}, {x: 0.0, y: null}, {x: 0.031300594, y: null}, {x: 0.125842697, y: null}, {x: 0.262761506, y: null}, {x: 0.070028011, y: null}, {x: 0.146699267, y: null}, {x: 0.060298103, y: null}, {x: 0.077654517, y: null}, {x: 0.04567079, y: null}, {x: 0.024219591, y: null}, {x: 0.054298643, y: null}, {x: 0.01669627, y: null}, {x: 0.080801105, y: null}, {x: 0.020438499, y: null}, {x: 0.033070866, y: null}, {x: 0.016289593, y: null}, {x: 0.0, y: null}, {x: 0.070053257, y: null}, {x: 0.016736402, y: null}, {x: 0.07063197, y: null}, {x: 0.011594203, y: null}, {x: 0.008591065, y: null}, {x: 0.091247672, y: null}, {x: 0.197934596, y: null}, {x: 0.109926169, y: null}, {x: 0.037513025, y: null}, {x: 0.08190709, y: null}, {x: 0.047421731, y: null}, {x: 0.010978957, y: null}, {x: 0.042944785, y: null}, {x: 0.077790304, y: null}, {x: 0.163052209, y: null}, {x: 0.149558124, y: null}, {x: 0.259504132, y: null}, {x: 0.058685446, y: null}, {x: 0.115890084, y: null}, {x: 0.200308166, y: null}, {x: 0.050587634, y: null}, {x: 0.0, y: null}, {x: 0.185185185, y: null}, {x: 0.07424072, y: null}, {x: 0.071071627, y: null}, {x: 0.170469799, y: null}, {x: 0.353585657, y: null}, {x: 0.136046938, y: null}, {x: 0.144318182, y: null}, {x: 0.223736969, y: null}, {x: 0.080962801, y: null}, {x: 0.045840407, y: null}, {x: 0.281629116, y: null}, {x: 0.300666032, y: null}, {x: 0.3, y: null}, {x: 0.392881128, y: null}, {x: 0.358374384, y: null}, {x: 0.471659919, y: null}, {x: 0.07267645, y: null}, {x: 0.020357804, y: null}, {x: 0.25528914, y: null}, {x: 0.0, y: null}, {x: 0.154545455, y: null}, {x: 0.28022493, y: null}, {x: 0.190993789, y: null}, {x: 0.328571429, y: null}, {x: 0.032707029, y: null}, {x: 0.017647059, y: null}, {x: 0.336538462, y: null}, {x: 0.202264151, y: null}, {x: 0.058786346, y: null}, {x: 0.290436006, y: null}, {x: 0.32120743, y: null}, {x: 0.4527897, y: null}, {x: 0.154236061, y: null}, {x: 0.044985251, y: null}, {x: 0.164921466, y: null}, {x: 0.145723337, y: null}, {x: 0.212713936, y: null}, {x: 0.020028612, y: null}, {x: 0.02292769, y: null}, {x: 0.290849673, y: null}, {x: 0.230008244, y: null}, {x: 0.249724973, y: null}, {x: 0.352762071, y: null}, {x: 0.295748614, y: null}, {x: 0.244698206, y: null}, {x: 0.72, y: null}, {x: 0.167177914, y: null}, {x: 0.014972777, y: null}, {x: 0.037401575, y: null}, {x: 0.247142857, y: null}, {x: 0.099932019, y: null}, {x: 0.049056604, y: null}, {x: 0.062819203, y: null}, {x: 0.2652124, y: null}, {x: 0.197160883, y: null}, {x: 0.26609658, y: null}, {x: 0.173333333, y: null}, {x: 0.094155844, y: null}, {x: 0.103706625, y: null}, {x: 0.045324154, y: null}, {x: 0.065217391, y: null}, {x: 0.109531773, y: null}, {x: 0.019496855, y: null}, {x: 0.174386921, y: null}, {x: 0.054773083, y: null}, {x: 0.020127119, y: null}, {x: 0.15779982, y: null}, {x: 0.359060403, y: null}, {x: 0.094174757, y: null}, {x: 0.124896609, y: null}, {x: 0.085714286, y: null}, {x: 0.180790961, y: null}, {x: 0.333333333, y: null}, {x: 0.184490306, y: null}, {x: 0.315476191, y: null}, {x: 0.104961832, y: null}, {x: 0.320375335, y: null}, {x: 0.247572816, y: null}, {x: 0.270476191, y: null}, {x: 0.120788303, y: null}, {x: 0.037209302, y: null}, {x: 0.042444822, y: null}, {x: 0.166467066, y: null}, {x: 0.06373117, y: null}, {x: 0.057992565, y: null}, {x: 0.186788155, y: null}, {x: 0.046470063, y: null}, {x: 0.084057971, y: null}, {x: 0.155451226, y: null}, {x: 0.121212121, y: null}, {x: 0.198133525, y: null}, {x: 0.015740741, y: null}, {x: 0.091420534, y: null}, {x: 0.168968318, y: null}, {x: 0.042328042, y: null}, {x: 0.068696331, y: null}, {x: 0.087413856, y: null}, {x: 0.087354409, y: null}, {x: 1.0, y: null}, {x: 0.146989374, y: null}, {x: 0.078674948, y: null}, {x: 0.033033033, y: null}, {x: 0.061157025, y: null}, {x: 0.02425107, y: null}, {x: 0.062926062, y: null}, {x: 0.067114094, y: null}, {x: 0.033764368, y: null}, {x: 0.028612303, y: null}, {x: 0.0, y: null}, {x: 0.195233731, y: null}, {x: 0.330120482, y: null}, {x: 0.037895928, y: null}, {x: 0.066797642, y: null}, {x: 0.21442623, y: null}, {x: 0.111188325, y: null}, {x: 0.070546737, y: null}, {x: 0.109013686, y: null}, {x: 0.073518915, y: null}, {x: 0.12630118, y: null}, {x: 0.010622155, y: null}, {x: 0.093869732, y: null}, {x: 0.013788099, y: null}, {x: 0.046468401, y: null}, {x: 0.020298507, y: null}, {x: 0.031213873, y: null}, {x: 0.041260315, y: null}, {x: 0.0, y: null}, {x: 0.100424328, y: null}, {x: 0.190302398, y: null}, {x: 0.0, y: null}, {x: 0.063829787, y: null}, {x: 0.156100886, y: null}, {x: 0.074766355, y: null}, {x: 0.237333333, y: null}, {x: 0.018018018, y: null}, {x: 0.010905642, y: null}, {x: 0.033281734, y: null}, {x: 0.098579041, y: null}, {x: 0.050299401, y: null}, {x: 0.112725451, y: null}, {x: 0.131414268, y: null}, {x: 0.208482371, y: null}, {x: 0.151515152, y: null}, {x: 0.083388484, y: null}, {x: 0.178507993, y: null}, {x: 0.016260163, y: null}, {x: 0.084337349, y: null}, {x: 0.009546539, y: null}, {x: 0.03626943, y: null}, {x: 0.080407701, y: null}, {x: 0.094430993, y: null}, {x: 0.056603774, y: null}, {x: 0.097067745, y: null}, {x: 0.056534508, y: null}, {x: 0.068230277, y: null}, {x: 0.037328909, y: null}, {x: 0.0, y: null}, {x: 0.106305367, y: null}, {x: 0.216711957, y: null}, {x: 0.018880647, y: null}, {x: 0.09974587, y: null}, {x: 0.246803069, y: null}, {x: 0.157845868, y: null}, {x: 0.164616286, y: null}, {x: 0.03862069, y: null}, {x: 0.161439114, y: null}, {x: 0.383116883, y: null}, {x: 0.0, y: null}, {x: 0.138536585, y: null}, {x: 0.088310038, y: null}, {x: 0.075428571, y: null}, {x: 0.312082574, y: null}, {x: 0.129401409, y: null}, {x: 0.060156931, y: null}, {x: 0.431334623, y: null}, {x: 0.379493223, y: null}, {x: 0.532424812, y: null}, {x: 0.613664987, y: null}, {x: 0.546052632, y: null}, {x: 0.226487524, y: null}, {x: 0.223476298, y: null}, {x: 0.076806084, y: null}, {x: 0.269230769, y: null}, {x: 0.088218554, y: null}, {x: 0.419339842, y: null}, {x: 0.090909091, y: null}, {x: 0.258830342, y: null}, {x: 0.370352251, y: null}, {x: 0.377083333, y: null}, {x: 0.588050315, y: null}, {x: 0.081730769, y: null}, {x: 0.185540627, y: null}, {x: 0.042626728, y: null}, {x: 0.232736573, y: null}, {x: 0.044630404, y: null}, {x: 0.460416667, y: null}, {x: 0.162745098, y: null}, {x: 0.080198723, y: null}, {x: 0.221582734, y: null}, {x: 0.026490066, y: null}, {x: 0.121537396, y: null}, {x: 0.105326877, y: null}, {x: 0.004132231, y: null}, {x: 0.172236504, y: null}, {x: 0.106007067, y: null}, {x: 0.092366902, y: null}, {x: 0.04985889, y: null}, {x: 0.041278834, y: null}, {x: 0.1253406, y: null}, {x: 0.060784314, y: null}, {x: 0.08428246, y: null}, {x: 0.0, y: null}, {x: 0.02293578, y: null}, {x: 0.0, y: null}, {x: 0.059672762, y: null}, {x: 0.171998146, y: null}, {x: 0.0, y: null}, {x: 0.093600764, y: null}, {x: 0.223797781, y: null}, {x: 0.057677903, y: null}, {x: 0.109499637, y: null}, {x: 0.085811966, y: null}, {x: 0.2, y: null}, {x: 0.34620887, y: null}, {x: 0.053123672, y: null}, {x: 0.080193957, y: null}, {x: 0.113268608, y: null}, {x: 0.05888651, y: null}, {x: 0.14829932, y: null}, {x: 0.102339181, y: null}, {x: 0.045673077, y: null}, {x: 0.037362637, y: null}, {x: 0.027713626, y: null}, {x: 0.132121212, y: null}, {x: 0.076180258, y: null}, {x: 0.067599068, y: null}, {x: 0.306865178, y: null}, {x: 0.040816327, y: null}, {x: 0.245704467, y: null}, {x: 0.007203667, y: null}, {x: 0.073689673, y: null}, {x: 0.100893997, y: null}, {x: 0.0, y: null}, {x: 0.042674253, y: null}, {x: 0.050750221, y: null}, {x: 0.098617176, y: null}, {x: 0.049409237, y: null}, {x: 0.213704994, y: null}, {x: 0.214181287, y: null}, {x: 0.183775664, y: 0.0002}, {x: 0.206951027, y: null}, {x: 0.152905199, y: null}, {x: 0.883963494, y: null}, {x: 0.587874659, y: null}, {x: 0.711637487, y: null}, {x: 0.0, y: null}, {x: 0.226415094, y: null}, {x: 0.09394572, y: null}, {x: 0.11577522, y: null}, {x: 0.090062112, y: null}, {x: 0.287859008, y: null}, {x: 0.04732254, y: null}, {x: 0.132924335, y: null}, {x: 0.35235378, y: null}, {x: 0.094637224, y: null}, {x: 0.130541872, y: null}, {x: 0.093366093, y: null}, {x: 0.0, y: null}, {x: 0.492160279, y: null}, {x: 0.112966601, y: null}, {x: 0.059564719, y: null}, {x: 0.443037975, y: null}, {x: 0.211176471, y: null}, {x: 0.152876038, y: null}, {x: 0.749723145, y: null}, {x: 0.425517241, y: null}, {x: 0.124, y: null}, {x: 0.142663962, y: null}, {x: 0.082969432, y: null}, {x: 0.150102459, y: null}, {x: 0.189581554, y: null}, {x: 0.118159204, y: null}, {x: 0.0, y: null}, {x: 0.177738928, y: null}, {x: 0.190880989, y: null}, {x: 0.0, y: null}, {x: 0.182167563, y: null}, {x: 0.129716981, y: null}, {x: 0.0, y: null}, {x: 0.080326753, y: null}, {x: 0.014802632, y: null}, {x: 0.13627451, y: null}, {x: 0.138633377, y: null}, {x: 0.101973684, y: null}, {x: 0.201810437, y: null}, {x: 0.236469609, y: null}, {x: 0.094017094, y: null}, {x: 0.298780488, y: null}, {x: 0.219209915, y: null}, {x: 0.668181818, y: null}, {x: 0.196313364, y: null}, {x: 0.093933464, y: null}, {x: 0.033690659, y: null}, {x: 0.280363831, y: null}, {x: 0.08668942, y: null}, {x: 0.063330727, y: null}, {x: 0.086060606, y: null}, {x: 0.25046729, y: null}, {x: 0.048419637, y: null}, {x: 0.046923879, y: null}, {x: 0.067961165, y: null}, {x: 0.095658572, y: null}, {x: 0.11622807, y: null}, {x: 0.100942127, y: null}, {x: 0.123679304, y: null}, {x: 0.309090909, y: null}, {x: 0.414570685, y: null}, {x: 0.207396302, y: null}, {x: 0.174016687, y: null}, {x: 0.076923077, y: null}, {x: 0.074534161, y: null}, {x: 0.083921016, y: null}, {x: 0.04592721, y: null}, {x: 0.229969419, y: null}, {x: 0.023636364, y: null}, {x: 0.021164021, y: null}, {x: 0.160166604, y: null}, {x: 0.080745342, y: null}, {x: 0.123042506, y: null}, {x: 0.023062731, y: null}, {x: 0.211988304, y: null}, {x: 0.028213166, y: null}, {x: 0.023900574, y: null}, {x: 0.037190083, y: null}, {x: 0.056831923, y: null}, {x: 0.03030303, y: null}, {x: 0.049744898, y: null}, {x: 0.095709571, y: null}, {x: 0.0, y: null}, {x: 0.052213394, y: null}, {x: 0.0, y: null}, {x: 0.020689655, y: null}, {x: 0.167291312, y: null}, {x: 0.104875805, y: null}, {x: 0.021582734, y: null}, {x: 0.082179931, y: null}, {x: 0.051764706, y: null}, {x: 0.094997473, y: null}, {x: 0.067567568, y: null}, {x: 0.210305572, y: null}, {x: 0.035020936, y: null}, {x: 0.165474975, y: null}, {x: 0.091651543, y: null}, {x: 0.022146508, y: null}, {x: 0.047930283, y: null}, {x: 0.029919448, y: null}, {x: 0.098017621, y: null}, {x: 0.14973262, y: null}, {x: 0.034650456, y: null}, {x: 0.101278269, y: null}, {x: 0.0, y: null}, {x: 0.028257457, y: null}, {x: 0.047450425, y: null}, {x: 0.0, y: null}, {x: 0.069802731, y: null}, {x: 0.021949078, y: null}, {x: 0.097122302, y: null}, {x: 0.076965066, y: null}, {x: 0.0, y: null}, {x: 0.030025021, y: null}, {x: 0.188588008, y: null}, {x: 0.186584426, y: null}, {x: 0.006224066, y: null}, {x: 0.0, y: null}, {x: 0.032563025, y: null}, {x: 0.032900433, y: null}, {x: 0.032497679, y: null}, {x: 0.019271949, y: null}, {x: 0.006402049, y: null}, {x: 0.133363069, y: null}, {x: 0.011144449, y: null}, {x: 0.046875, y: null}, {x: 0.0823219, y: null}, {x: 0.092278719, y: null}, {x: 0.058413252, y: null}, {x: 0.09210004, y: null}, {x: 0.029126214, y: null}, {x: 0.181265207, y: null}, {x: 0.14274571, y: null}, {x: 0.120698254, y: null}, {x: 0.125707814, y: null}, {x: 0.045277127, y: null}, {x: 0.142576205, y: null}, {x: 0.299007444, y: null}, {x: 0.170212766, y: null}, {x: 0.157000586, y: null}, {x: 0.027066216, y: null}, {x: 0.01754386, y: null}, {x: 0.060702875, y: null}, {x: 0.039123631, y: null}, {x: 0.013298855, y: null}, {x: 0.086834734, y: null}, {x: 0.0, y: null}, {x: 0.03030303, y: null}, {x: 0.039500202, y: null}, {x: 0.037804435, y: null}, {x: 0.267401392, y: null}, {x: 0.220166513, y: null}, {x: 0.011228534, y: null}, {x: 0.0, y: null}, {x: 0.150422535, y: null}, {x: 0.0, y: null}, {x: 0.304878049, y: null}, {x: 0.106789717, y: null}, {x: 0.056280587, y: null}, {x: 0.150065531, y: null}, {x: 0.115853659, y: null}, {x: 0.337142857, y: null}, {x: 0.10259301, y: null}, {x: 0.184615385, y: null}, {x: 0.018297237, y: null}, {x: 0.054405677, y: null}, {x: 0.122971286, y: null}, {x: 0.012399708, y: null}, {x: 0.038372985, y: null}, {x: 0.27161894, y: null}, {x: 0.0, y: null}, {x: 0.079526227, y: null}, {x: 0.080479953, y: null}, {x: 0.01501251, y: null}, {x: 0.043522267, y: null}, {x: 0.0, y: null}, {x: 0.216349542, y: null}, {x: 0.197278912, y: null}, {x: 0.115218731, y: null}, {x: 0.142099057, y: null}, {x: 0.091974752, y: null}, {x: 0.038776389, y: null}, {x: 0.0, y: null}, {x: 0.065751858, y: null}, {x: 0.03978907, y: null}, {x: 0.105875832, y: null}, {x: 0.018276762, y: null}, {x: 0.071559633, y: null}, {x: 0.065749235, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035146444, y: null}, {x: 0.160971223, y: null}, {x: 0.0, y: null}, {x: 0.194786387, y: null}, {x: 0.309343434, y: null}, {x: 0.19538835, y: null}, {x: 0.236316247, y: null}, {x: 0.396019496, y: null}, {x: 0.118527043, y: null}, {x: 0.067320704, y: null}, {x: 0.084677419, y: null}, {x: 0.062948207, y: null}, {x: 0.092592593, y: null}, {x: 0.092065868, y: null}, {x: 0.11732852, y: null}, {x: 0.189245088, y: null}, {x: 0.065173116, y: null}, {x: 0.060016221, y: null}, {x: 0.097799511, y: null}, {x: 0.314457029, y: null}, {x: 0.503213368, y: null}, {x: 0.021934197, y: null}, {x: 0.02, y: null}, {x: 0.037628278, y: null}, {x: 0.052132701, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.027796383, y: null}, {x: 0.054054054, y: null}, {x: 0.0, y: null}, {x: 0.095744681, y: null}, {x: 0.059792028, y: null}, {x: 0.025945946, y: null}, {x: 0.089242054, y: null}, {x: 0.018331226, y: null}, {x: 0.164281626, y: null}, {x: 0.028423773, y: null}, {x: 0.042918455, y: null}, {x: 0.046122449, y: null}, {x: 0.212914485, y: null}, {x: 0.03815844, y: null}, {x: 0.110869565, y: null}, {x: 0.088809035, y: null}, {x: 0.112979153, y: null}, {x: 0.111278196, y: null}, {x: 0.015306122, y: null}, {x: 0.065473925, y: null}, {x: 0.046066619, y: null}, {x: 0.091017964, y: null}, {x: 0.064041995, y: null}, {x: 0.119047619, y: null}, {x: 0.161263508, y: null}, {x: 0.051794639, y: null}, {x: 0.038461538, y: null}, {x: 0.421978022, y: null}, {x: 0.025679758, y: null}, {x: 0.074144487, y: null}, {x: 0.37, y: null}, {x: 0.092352092, y: null}, {x: 0.034090909, y: null}, {x: 0.366819747, y: null}, {x: 0.069785884, y: null}, {x: 0.134234234, y: null}, {x: 0.008368201, y: null}, {x: 0.034343434, y: null}, {x: 0.296446701, y: null}, {x: 0.148106904, y: null}, {x: 0.038363171, y: null}, {x: 0.150596878, y: null}, {x: 0.149797571, y: null}, {x: 0.066666667, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.251308901, y: null}, {x: 0.055276382, y: null}, {x: 0.033946252, y: null}, {x: 0.202775636, y: null}, {x: 0.20516129, y: null}, {x: 0.137757948, y: null}, {x: 0.328648649, y: null}, {x: 0.166921899, y: null}, {x: 0.232832618, y: null}, {x: 0.282501757, y: null}, {x: 0.53539823, y: null}, {x: 0.116178067, y: null}, {x: 0.143933685, y: null}, {x: 0.123681687, y: null}, {x: 0.138029059, y: null}, {x: 0.030693069, y: null}, {x: 0.122841966, y: null}, {x: 0.17816092, y: null}, {x: 0.130067568, y: null}, {x: 0.183757743, y: null}, {x: 0.333138516, y: null}, {x: 0.28049952, y: null}, {x: 0.337325349, y: null}, {x: 0.317662861, y: null}, {x: 0.414583333, y: null}, {x: 0.204545455, y: null}, {x: 0.073529412, y: null}, {x: 0.032258065, y: null}, {x: 0.478995654, y: null}, {x: 0.304951691, y: null}, {x: 0.151179941, y: null}, {x: 0.279259663, y: null}, {x: 0.421420256, y: null}, {x: 0.12864494, y: null}, {x: 0.460285132, y: null}, {x: 0.118672199, y: null}, {x: 0.758037225, y: null}, {x: 0.270609319, y: null}, {x: 0.311428571, y: null}, {x: 0.055952381, y: null}, {x: 0.156995052, y: null}, {x: 0.189326557, y: null}, {x: 0.0, y: null}, {x: 0.032206119, y: null}, {x: 0.030685921, y: null}, {x: 0.180958013, y: null}, {x: 0.399301513, y: null}, {x: 0.763809524, y: null}, {x: 0.301276596, y: null}, {x: 0.409141583, y: null}, {x: 0.435582822, y: null}, {x: 0.314685315, y: null}, {x: 0.26982012, y: null}, {x: 0.146877749, y: null}, {x: 0.207492795, y: null}, {x: 0.367272727, y: null}, {x: 0.161939616, y: null}, {x: 0.09703504, y: null}, {x: 0.287692308, y: null}, {x: 0.210185934, y: null}, {x: 0.215801887, y: null}, {x: 0.280946602, y: null}, {x: 0.128497409, y: null}, {x: 0.529963899, y: null}, {x: 0.191881919, y: null}, {x: 0.259142212, y: null}, {x: 0.094492441, y: null}, {x: 0.18767507, y: null}, {x: 0.396480331, y: null}, {x: 0.116883117, y: null}, {x: 0.118780096, y: null}, {x: 0.260273973, y: null}, {x: 0.262370541, y: null}, {x: 0.557233317, y: null}, {x: 0.187552921, y: null}, {x: 0.073234984, y: null}, {x: 0.132596685, y: null}, {x: 0.0, y: null}, {x: 0.077565632, y: null}, {x: 0.057627119, y: null}, {x: 0.090775988, y: null}, {x: 0.193681319, y: null}, {x: 0.122368421, y: null}, {x: 0.01, y: null}, {x: 0.179289026, y: null}, {x: 0.220543807, y: null}, {x: 0.254048583, y: null}, {x: 0.223684211, y: null}, {x: 0.056853583, y: null}, {x: 0.014242116, y: null}, {x: 0.145336226, y: null}, {x: 0.241541353, y: null}, {x: 0.048834628, y: null}, {x: 0.027912621, y: null}, {x: 0.095522388, y: null}, {x: 0.166777852, y: null}, {x: 0.057078652, y: null}, {x: 0.100645161, y: null}, {x: 0.080961417, y: null}, {x: 0.134481495, y: null}, {x: 0.135396518, y: null}, {x: 0.421357616, y: null}, {x: 0.05068836, y: null}, {x: 0.162844037, y: null}, {x: 0.189566116, y: null}, {x: 0.23923445, y: null}, {x: 0.290086494, y: null}, {x: 0.199749269, y: null}, {x: 0.026696329, y: null}, {x: 0.265240642, y: null}, {x: 0.313575526, y: null}, {x: 0.282180717, y: null}, {x: 0.149102623, y: null}, {x: 0.0, y: null}, {x: 0.080589255, y: null}, {x: 0.249742002, y: null}, {x: 0.049832295, y: null}, {x: 0.413069909, y: null}, {x: 0.220733427, y: null}, {x: 0.100917431, y: null}, {x: 0.104424779, y: null}, {x: 0.482122261, y: null}, {x: 0.221273292, y: null}, {x: 0.267625899, y: null}, {x: 0.244877561, y: null}, {x: 0.034391534, y: null}, {x: 0.223984143, y: null}, {x: 0.144946237, y: null}, {x: 0.182076814, y: null}, {x: 0.0, y: null}, {x: 0.069331158, y: null}, {x: 0.067472306, y: null}, {x: 0.149544864, y: null}, {x: 0.107113655, y: null}, {x: 0.101718213, y: null}, {x: 0.132591562, y: null}, {x: 0.149797571, y: null}, {x: 0.052064632, y: null}, {x: 0.077085533, y: null}, {x: 0.07309322, y: null}, {x: 0.083844581, y: null}, {x: 0.380784175, y: null}, {x: 0.128016086, y: null}, {x: 0.02739726, y: null}, {x: 0.109820486, y: null}, {x: 0.060491493, y: null}, {x: 0.038961039, y: null}, {x: 0.337303478, y: null}, {x: 0.142279164, y: null}, {x: 0.257053292, y: null}, {x: 0.010899183, y: null}, {x: 0.0, y: null}, {x: 0.389261745, y: null}, {x: 0.203265766, y: null}, {x: 0.048128342, y: null}, {x: 0.428822496, y: null}, {x: 0.125187406, y: null}, {x: 0.183699871, y: null}, {x: 0.365217391, y: null}, {x: 0.083011583, y: null}, {x: 0.131350682, y: null}, {x: 0.599037691, y: null}, {x: 0.198624905, y: null}, {x: 0.248782647, y: null}, {x: 0.183242507, y: null}, {x: 0.163619744, y: null}, {x: 0.362244898, y: null}, {x: 0.081490105, y: null}, {x: 0.012942779, y: null}, {x: 0.132118451, y: null}, {x: 0.146109052, y: null}, {x: 0.191205863, y: null}, {x: 0.140916808, y: null}, {x: 0.115023474, y: null}, {x: 0.090116279, y: null}, {x: 0.204252577, y: null}, {x: 0.013812155, y: null}, {x: 0.171396141, y: null}, {x: 0.106180666, y: null}, {x: 0.133086876, y: null}, {x: 0.059069212, y: null}, {x: 0.229813665, y: null}, {x: 0.065367693, y: null}, {x: 0.053472222, y: null}, {x: 0.057856273, y: null}, {x: 0.230278885, y: null}, {x: 0.127682026, y: null}, {x: 0.196399345, y: null}, {x: 0.032742888, y: null}, {x: 0.070848708, y: null}, {x: 0.073899899, y: null}, {x: 0.055962118, y: null}, {x: 0.163974152, y: null}, {x: 0.059655325, y: null}, {x: 0.091600529, y: null}, {x: 0.057534247, y: null}, {x: 0.018867925, y: null}, {x: 0.094405594, y: null}, {x: 0.222772277, y: null}, {x: 0.016427105, y: null}, {x: 0.078571429, y: null}, {x: 0.092896175, y: null}, {x: 0.157858614, y: null}, {x: 0.094854586, y: null}, {x: 0.05721393, y: null}, {x: 0.151815182, y: null}, {x: 0.098010674, y: null}, {x: 0.140700483, y: null}, {x: 0.017673654, y: null}, {x: 0.056179775, y: null}, {x: 0.222329628, y: null}, {x: 0.144329897, y: null}, {x: 0.061135371, y: null}, {x: 0.177370031, y: null}, {x: 0.059467919, y: null}, {x: 0.21601686, y: null}, {x: 0.176588294, y: null}, {x: 0.165243382, y: null}, {x: 0.054862843, y: null}, {x: 0.006674082, y: null}, {x: 0.232044199, y: null}, {x: 0.07326284, y: null}, {x: 0.269820972, y: null}, {x: 0.04854679, y: null}, {x: 0.108832808, y: null}, {x: 0.010847107, y: null}, {x: 0.249889037, y: null}, {x: 0.098278986, y: null}, {x: 0.271370421, y: null}, {x: 0.116586539, y: null}, {x: 0.058870645, y: null}, {x: 0.365825688, y: null}, {x: 0.206165703, y: null}, {x: 0.158762887, y: null}, {x: 0.229464286, y: null}, {x: 0.394827586, y: null}, {x: 0.261016949, y: null}, {x: 0.112864078, y: null}, {x: 0.070998797, y: null}, {x: 0.076038904, y: null}, {x: 0.172992057, y: null}, {x: 0.019904165, y: null}, {x: 0.115294118, y: null}, {x: 0.122736419, y: null}, {x: 0.123193916, y: null}, {x: 0.11066879, y: null}, {x: 0.092962641, y: null}, {x: 0.055805581, y: null}, {x: 0.0, y: null}, {x: 0.054852321, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089249493, y: 3617.0713}, {x: 0.067729084, y: null}, {x: 0.146468402, y: null}, {x: 0.118075802, y: null}, {x: 0.041336851, y: null}, {x: 0.078431373, y: null}, {x: 0.109090909, y: null}, {x: 0.144591612, y: null}, {x: 0.127659575, y: null}, {x: 0.139534884, y: null}, {x: 0.035260931, y: null}, {x: 0.105376344, y: null}, {x: 0.046659597, y: null}, {x: 0.12414734, y: null}, {x: 0.048164044, y: null}, {x: 0.107481215, y: null}, {x: 0.051752922, y: null}, {x: 0.020718679, y: null}, {x: 0.17755857, y: null}, {x: 0.080387685, y: null}, {x: 0.036144578, y: null}, {x: 0.063706564, y: null}, {x: 0.249818972, y: null}, {x: 0.122030238, y: null}, {x: 0.088418431, y: null}, {x: 0.400872818, y: null}, {x: 0.151394422, y: null}, {x: 0.039280644, y: null}, {x: 0.270774449, y: 21.541675}, {x: 0.322362869, y: null}, {x: 0.094758065, y: null}, {x: 0.189655172, y: null}, {x: 0.263915547, y: null}, {x: 0.034696406, y: null}, {x: 0.153397249, y: null}, {x: 0.011520737, y: null}, {x: 0.101969873, y: null}, {x: 0.044488712, y: null}, {x: 0.126760563, y: null}, {x: 0.019083969, y: null}, {x: 0.038872692, y: null}, {x: 0.237241379, y: null}, {x: 0.117843711, y: null}, {x: 0.033540373, y: null}, {x: 0.102209945, y: null}, {x: 0.149551346, y: null}, {x: 0.027206771, y: null}, {x: 0.0, y: null}, {x: 0.043303122, y: null}, {x: 0.029739777, y: null}, {x: 0.023255814, y: null}, {x: 0.142011834, y: null}, {x: 0.072378139, y: null}, {x: 0.032032032, y: null}, {x: 0.012672811, y: null}, {x: 0.085040348, y: null}, {x: 0.06805708, y: null}, {x: 0.020866774, y: null}, {x: 0.203373494, y: null}, {x: 0.0, y: null}, {x: 0.108897742, y: null}, {x: 0.0, y: null}, {x: 0.082939987, y: null}, {x: 0.047332832, y: null}, {x: 0.31887456, y: 0.021042}, {x: 0.050544323, y: null}, {x: 0.034053156, y: null}, {x: 0.115384615, y: null}, {x: 0.14994233, y: null}, {x: 0.529921943, y: null}, {x: 0.050147493, y: null}, {x: 0.272055628, y: null}, {x: 0.013659238, y: null}, {x: 0.048918823, y: null}, {x: 0.080353852, y: null}, {x: 0.18960594, y: null}, {x: 0.188690476, y: null}, {x: 0.093849658, y: null}, {x: 0.011942175, y: null}, {x: 0.262019231, y: null}, {x: 0.447311828, y: null}, {x: 0.131868132, y: null}, {x: 0.196, y: null}, {x: 0.086409396, y: null}, {x: 0.159124088, y: null}, {x: 0.100618325, y: null}, {x: 0.022764228, y: null}, {x: 0.048118985, y: null}, {x: 0.051807229, y: null}, {x: 0.054563492, y: null}, {x: 0.05986317, y: null}, {x: 0.099241902, y: null}, {x: 0.092880979, y: null}, {x: 0.038251366, y: null}, {x: 0.091295117, y: null}, {x: 0.038562092, y: null}, {x: 0.170873786, y: null}, {x: 0.03733149, y: null}, {x: 0.039647577, y: null}, {x: 0.16287304, y: null}, {x: 0.151221996, y: null}, {x: 0.073384447, y: null}, {x: 0.059597523, y: null}, {x: 0.094968108, y: null}, {x: 0.073699422, y: null}, {x: 0.158590308, y: null}, {x: 0.067057837, y: null}, {x: 0.076846307, y: null}, {x: 0.071045023, y: null}, {x: 0.098387993, y: null}, {x: 0.051512674, y: null}, {x: 0.076923077, y: null}, {x: 0.093241243, y: null}, {x: 0.098124098, y: null}, {x: 0.168787108, y: null}, {x: 0.181117534, y: null}, {x: 0.406278855, y: null}, {x: 0.194546794, y: null}, {x: 0.112351191, y: null}, {x: 0.035878565, y: null}, {x: 0.5, y: null}, {x: 0.255488267, y: null}, {x: 0.344432314, y: null}, {x: 0.343211578, y: null}, {x: 0.433145009, y: null}, {x: 0.639034628, y: null}, {x: 0.417266187, y: null}, {x: 0.267303103, y: null}, {x: 0.615835777, y: null}, {x: 0.331649832, y: null}, {x: 0.156886967, y: null}, {x: 0.441272812, y: null}, {x: 0.270967742, y: null}, {x: 0.286939943, y: null}, {x: 0.378757515, y: null}, {x: 0.349242424, y: null}, {x: 0.239508266, y: null}, {x: 0.465573771, y: null}, {x: 0.05620155, y: null}, {x: 0.036904762, y: null}, {x: 0.140243902, y: null}, {x: 0.314814815, y: null}, {x: 0.185796862, y: null}, {x: 0.687707641, y: null}, {x: 0.046722907, y: null}, {x: 0.095709571, y: null}, {x: 0.260791367, y: null}, {x: 0.598701299, y: null}, {x: 0.553299492, y: null}, {x: 0.498269896, y: null}, {x: 0.634680135, y: null}, {x: 0.46558527, y: null}, {x: 0.76848091, y: null}, {x: 0.72, y: null}, {x: 0.456996149, y: null}, {x: 0.587811271, y: null}, {x: 0.193051576, y: null}, {x: 0.172546012, y: null}, {x: 0.114702155, y: null}, {x: 0.311498754, y: null}, {x: 0.245917387, y: null}, {x: 0.531537048, y: null}, {x: 0.171641791, y: null}, {x: 0.346092504, y: null}, {x: 0.246049661, y: null}, {x: 0.052738337, y: null}, {x: 0.444564047, y: null}, {x: 0.207803595, y: null}, {x: 0.371939736, y: null}, {x: 0.562998405, y: null}, {x: 0.49867374, y: null}, {x: 0.299544419, y: null}, {x: 0.395575221, y: null}, {x: 0.337116155, y: null}, {x: 0.134394905, y: null}, {x: 0.571684588, y: null}, {x: 0.18220339, y: null}, {x: 0.45508982, y: null}, {x: 0.228740936, y: null}, {x: 0.11484375, y: null}, {x: 0.354814815, y: null}, {x: 0.050492611, y: null}, {x: 0.143243243, y: null}, {x: 0.320530726, y: null}, {x: 0.0, y: null}, {x: 0.021998743, y: null}, {x: 0.085201794, y: null}, {x: 0.125623583, y: null}, {x: 0.06385696, y: null}, {x: 0.095840131, y: null}, {x: 0.050493326, y: null}, {x: 0.274853801, y: null}, {x: 0.117236025, y: null}, {x: 0.127566895, y: null}, {x: 0.405083829, y: null}, {x: 0.022737023, y: null}, {x: 0.194879833, y: null}, {x: 0.051413882, y: null}, {x: 0.060509554, y: null}, {x: 0.146912351, y: null}, {x: 0.2594372, y: null}, {x: 0.123771224, y: null}, {x: 0.169964029, y: null}, {x: 0.115328467, y: null}, {x: 0.069962687, y: null}, {x: 0.053691275, y: null}, {x: 0.080982236, y: null}, {x: 0.050410317, y: null}, {x: 0.051724138, y: null}, {x: 0.133958104, y: null}, {x: 0.099099099, y: null}, {x: 0.075170843, y: null}, {x: 0.041021672, y: null}, {x: 0.241608119, y: null}, {x: 0.098522167, y: null}, {x: 0.152463382, y: null}, {x: 0.113876789, y: null}, {x: 0.096864112, y: null}, {x: 0.078065499, y: null}, {x: 0.288864981, y: null}, {x: 0.299629434, y: null}, {x: 0.080841639, y: null}, {x: 0.094538779, y: null}, {x: 0.15695682, y: null}, {x: 0.069782752, y: null}, {x: 0.087632509, y: null}, {x: 0.167878788, y: null}, {x: 0.166666667, y: null}, {x: 0.439655172, y: null}, {x: 0.031754875, y: null}, {x: 0.022538553, y: null}, {x: 0.072277546, y: null}, {x: 0.151598174, y: null}, {x: 0.038167939, y: null}, {x: 0.025412088, y: null}, {x: 0.07721459, y: null}, {x: 0.103146853, y: null}, {x: 0.157622739, y: null}, {x: 0.210144928, y: null}, {x: 0.013738551, y: null}, {x: 0.096124031, y: null}, {x: 0.276904474, y: null}, {x: 0.398917855, y: null}, {x: 0.24331672, y: null}, {x: 0.13739546, y: null}, {x: 0.181243414, y: null}, {x: 0.216818642, y: null}, {x: 0.348327566, y: null}, {x: 0.135714286, y: null}, {x: 0.020277481, y: null}, {x: 0.111538462, y: null}, {x: 0.029232643, y: null}, {x: 0.134110787, y: null}, {x: 0.397402597, y: null}, {x: 0.357370095, y: null}, {x: 0.21474359, y: null}, {x: 0.23681592, y: null}, {x: 0.01894452, y: null}, {x: 0.01605288, y: null}, {x: 0.107072692, y: null}, {x: 0.08198838, y: null}, {x: 0.052361396, y: null}, {x: 0.087186262, y: null}, {x: 0.143643644, y: null}, {x: 0.080068143, y: null}, {x: 0.106830123, y: null}, {x: 0.205600307, y: null}, {x: 0.181957187, y: null}, {x: 0.087020649, y: null}, {x: 0.075545171, y: null}, {x: 0.041818182, y: null}, {x: 0.06441048, y: null}, {x: 0.03091832, y: null}, {x: 0.045263649, y: null}, {x: 0.159038014, y: null}, {x: 0.158657829, y: null}, {x: 0.06133829, y: null}, {x: 0.144467641, y: null}, {x: 0.066115702, y: null}, {x: 0.177230047, y: null}, {x: 0.19245283, y: null}, {x: 0.243195266, y: null}, {x: 0.094651789, y: null}, {x: 0.047911548, y: null}, {x: 0.025206233, y: null}, {x: 0.029659141, y: null}, {x: 0.113884555, y: null}, {x: 0.039509537, y: null}, {x: 0.088382435, y: null}, {x: 0.181962528, y: null}, {x: 0.041338583, y: null}, {x: 0.205696203, y: null}, {x: 0.147486498, y: null}, {x: 0.146529563, y: null}, {x: 0.127981651, y: null}, {x: 0.073548387, y: null}, {x: 0.302480339, y: null}, {x: 0.28654005, y: null}, {x: 0.327586207, y: null}, {x: 0.50249584, y: null}, {x: 0.254677755, y: null}, {x: 0.346294938, y: null}, {x: 0.157733015, y: null}, {x: 0.255494506, y: null}, {x: 0.285456731, y: null}, {x: 0.182890856, y: null}, {x: 0.34245283, y: null}, {x: 0.244099021, y: null}, {x: 0.20649652, y: null}, {x: 0.27159309, y: null}, {x: 0.175251256, y: null}, {x: 0.339534884, y: null}, {x: 0.218929254, y: null}, {x: 0.080025608, y: null}, {x: 0.333030853, y: null}, {x: 0.031301483, y: null}, {x: 0.212090164, y: null}, {x: 0.193330111, y: null}, {x: 0.388686131, y: null}, {x: 0.312829526, y: null}, {x: 0.415384615, y: null}, {x: 0.027444254, y: null}, {x: 0.200343938, y: null}, {x: 0.061962134, y: null}, {x: 0.118226601, y: null}, {x: 0.188218391, y: null}, {x: 0.355905512, y: null}, {x: 0.530266344, y: null}, {x: 0.072205737, y: null}, {x: 0.276661515, y: null}, {x: 0.020356234, y: null}, {x: 0.051511758, y: null}, {x: 0.049261084, y: null}, {x: 0.052754982, y: null}, {x: 0.067285383, y: null}, {x: 0.10625, y: null}, {x: 0.117270789, y: null}, {x: 0.193846154, y: null}, {x: 0.155155155, y: null}, {x: 0.161396885, y: null}, {x: 0.20831618, y: null}, {x: 0.026587888, y: null}, {x: 0.325757576, y: null}, {x: 0.831460674, y: null}, {x: 0.0, y: null}, {x: 0.389156627, y: null}, {x: 0.181451613, y: null}, {x: 0.109170306, y: null}, {x: 0.319016009, y: null}, {x: 0.353518822, y: null}, {x: 0.190293742, y: null}, {x: 0.424535316, y: null}, {x: 0.226077813, y: null}, {x: 0.132901135, y: null}, {x: 0.154013015, y: null}, {x: 0.409001957, y: null}, {x: 0.129432624, y: null}, {x: 0.211666667, y: null}, {x: 0.116363636, y: null}, {x: 0.294520548, y: null}, {x: 0.204169662, y: null}, {x: 0.17875383, y: null}, {x: 0.173681091, y: null}, {x: 0.169338677, y: null}, {x: 0.224008575, y: null}, {x: 0.479535398, y: null}, {x: 0.343939394, y: null}, {x: 0.390243902, y: null}, {x: 0.141613465, y: null}, {x: 0.194128788, y: null}, {x: 0.325914149, y: null}, {x: 0.480639731, y: null}, {x: 0.0, y: null}, {x: 0.227212682, y: null}, {x: 0.25873606, y: null}, {x: 0.149275362, y: null}, {x: 0.595724907, y: null}, {x: 0.274787535, y: null}, {x: 0.450538688, y: null}, {x: 0.174461767, y: null}, {x: 0.454445664, y: null}, {x: 0.138433516, y: null}, {x: 0.120866591, y: null}, {x: 0.190366973, y: null}, {x: 0.688848921, y: null}, {x: 0.56212223, y: null}, {x: 0.344512195, y: null}, {x: 0.42582897, y: null}, {x: 0.494290375, y: null}, {x: 0.288093769, y: null}, {x: 0.359631821, y: null}, {x: 0.566131026, y: null}, {x: 0.548997773, y: null}, {x: 0.355486862, y: null}, {x: 0.294513956, y: null}, {x: 0.336260979, y: null}, {x: 0.443830571, y: null}, {x: 0.401285047, y: null}, {x: 0.272621133, y: null}, {x: 0.468921389, y: null}, {x: 0.598331347, y: null}, {x: 0.377068558, y: null}, {x: 0.0, y: null}, {x: 0.425795053, y: null}, {x: 0.0, y: null}, {x: 0.816326531, y: null}, {x: 0.27520436, y: null}, {x: 0.016393443, y: null}, {x: 0.895522388, y: null}, {x: 0.305607477, y: null}, {x: 0.31122449, y: null}, {x: 0.596368715, y: null}, {x: 0.541176471, y: null}, {x: 0.397988506, y: null}, {x: 0.478436658, y: null}, {x: 0.44344473, y: null}, {x: 0.164583333, y: null}, {x: 0.405923345, y: null}, {x: 0.605032823, y: null}, {x: 0.235488127, y: null}, {x: 0.692160612, y: null}, {x: 0.684563758, y: null}, {x: 0.134328358, y: null}, {x: 0.593564776, y: null}, {x: 0.713631157, y: null}, {x: 0.235887097, y: null}, {x: 0.448148148, y: null}, {x: 0.676923077, y: null}, {x: 0.724735322, y: null}, {x: 0.758566978, y: null}, {x: 0.896907217, y: null}, {x: 0.800488599, y: null}, {x: 0.778067885, y: null}, {x: 0.354074074, y: null}, {x: 0.488859764, y: null}, {x: 0.465158371, y: null}, {x: 0.26715462, y: null}, {x: 0.186598813, y: null}, {x: 0.241071429, y: null}, {x: 0.273712737, y: null}, {x: 0.140770252, y: null}, {x: 0.066473988, y: null}, {x: 0.072727273, y: null}, {x: 0.051006711, y: null}, {x: 0.090425532, y: null}, {x: 0.187992126, y: null}, {x: 0.105633803, y: null}, {x: 0.135135135, y: null}, {x: 0.174974568, y: null}, {x: 0.066666667, y: null}, {x: 0.146139706, y: null}, {x: 0.109737249, y: null}, {x: 0.0, y: null}, {x: 0.097385032, y: null}, {x: 0.123737374, y: null}, {x: 0.043037975, y: null}, {x: 0.254562044, y: null}, {x: 0.136363636, y: null}, {x: 0.092053501, y: null}, {x: 0.201665125, y: null}, {x: 0.128964059, y: null}, {x: 0.171821306, y: null}, {x: 0.270348837, y: null}, {x: 0.203732504, y: null}, {x: 0.142196532, y: null}, {x: 0.291184328, y: null}, {x: 0.226950355, y: null}, {x: 0.071428571, y: null}, {x: 0.112285337, y: null}, {x: 0.11577424, y: null}, {x: 0.067073171, y: null}, {x: 0.351351351, y: null}, {x: 0.0, y: null}, {x: 0.114119923, y: null}, {x: 0.122105263, y: null}, {x: 0.154598826, y: null}, {x: 0.188552189, y: 7.2}, {x: 0.116618076, y: null}, {x: 0.150337838, y: null}, {x: 0.200892857, y: null}, {x: 0.076081007, y: null}, {x: 0.687810945, y: null}, {x: 0.049010368, y: null}, {x: 0.524475525, y: null}, {x: 0.007918552, y: null}, {x: 0.031767956, y: null}, {x: 0.017045455, y: null}, {x: 0.012484395, y: null}, {x: 0.239120879, y: null}, {x: 0.041968162, y: 766.04}, {x: 0.111761264, y: 273.784}, {x: 0.06127451, y: null}, {x: 0.904428904, y: null}, {x: 0.73870682, y: null}, {x: 0.064956558, y: 2.5375}, {x: 0.322447447, y: null}, {x: 0.842781557, y: 0.473}, {x: 0.139076923, y: null}, {x: 0.437900641, y: null}, {x: 0.408608491, y: null}, {x: 0.460496614, y: null}, {x: 0.416666667, y: null}, {x: 0.24757953, y: 3.82795}, {x: 0.606349206, y: null}, {x: 0.520798669, y: null}, {x: 0.32388664, y: null}, {x: 0.31160221, y: null}, {x: 0.300348736, y: null}, {x: 0.0, y: null}, {x: 0.245294118, y: null}, {x: 0.416449086, y: null}, {x: 0.442989635, y: null}, {x: 0.354477612, y: null}, {x: 0.425998875, y: null}, {x: 0.326586937, y: null}, {x: 0.169918699, y: null}, {x: 0.548543689, y: 0.17529}, {x: 0.401254954, y: null}, {x: 0.487778959, y: null}, {x: 0.022330097, y: null}, {x: 0.137521222, y: null}, {x: 0.661381654, y: null}, {x: 0.198319328, y: null}, {x: 0.02875817, y: null}, {x: 0.113945578, y: 16.942}, {x: 0.330501931, y: null}, {x: 0.139748954, y: null}, {x: 0.038878843, y: null}, {x: 0.0, y: null}, {x: 0.09221902, y: null}, {x: 0.055882353, y: null}, {x: 0.249093108, y: null}, {x: 0.076991943, y: null}, {x: 0.166110184, y: null}, {x: 0.235136941, y: null}, {x: 0.16349481, y: null}, {x: 0.097631012, y: null}, {x: 0.003933137, y: null}, {x: 0.0, y: null}, {x: 0.03022339, y: null}, {x: 0.0, y: null}, {x: 0.131355932, y: null}, {x: 0.116465864, y: null}, {x: 0.0, y: null}, {x: 0.153994225, y: null}, {x: 0.029761905, y: null}, {x: 0.134235759, y: null}, {x: 0.131652661, y: null}, {x: 0.018450185, y: null}, {x: 0.081481481, y: null}, {x: 0.037076271, y: null}, {x: 0.571920758, y: null}, {x: 0.777462121, y: null}, {x: 0.0, y: null}, {x: 0.036605657, y: null}, {x: 0.118689105, y: null}, {x: 0.202036022, y: null}, {x: 0.105577689, y: null}, {x: 0.724522293, y: null}, {x: 0.822995461, y: null}, {x: 0.543385491, y: null}, {x: 0.820846906, y: null}, {x: 0.358778626, y: null}, {x: 0.0, y: null}, {x: 0.070057582, y: null}, {x: 0.018763797, y: null}, {x: 0.728275862, y: null}, {x: 0.212621359, y: null}, {x: 0.0, y: null}, {x: 0.384732824, y: null}, {x: 0.13312369, y: null}, {x: 0.181818182, y: null}, {x: 0.373303167, y: null}, {x: 0.790880503, y: null}, {x: 0.149897331, y: null}, {x: 0.3981026, y: null}, {x: 0.801204819, y: null}, {x: 0.202254642, y: null}, {x: 0.031731641, y: null}, {x: 0.088452088, y: null}, {x: 0.178151261, y: null}, {x: 0.41563786, y: null}, {x: 0.168336673, y: 180.08110000000002}, {x: 0.748675246, y: null}, {x: 0.061491935, y: null}, {x: 0.429326288, y: null}, {x: 0.088946459, y: null}, {x: 0.791830322, y: null}, {x: 0.177983539, y: null}, {x: 0.017738359, y: null}, {x: 0.471451876, y: null}, {x: 0.083727211, y: null}, {x: 0.324817518, y: null}, {x: 0.337236534, y: null}, {x: 0.128983308, y: null}, {x: 0.545931759, y: null}, {x: 0.335671343, y: null}, {x: 0.238836968, y: null}, {x: 0.266832918, y: null}, {x: 0.253475936, y: null}, {x: 0.412725709, y: null}, {x: 0.111324376, y: null}, {x: 0.073280722, y: null}, {x: 0.631192661, y: null}, {x: 0.0, y: null}, {x: 0.755005889, y: null}, {x: 0.544339623, y: null}, {x: 0.582938389, y: null}, {x: 0.619815668, y: null}, {x: 0.413043478, y: null}, {x: 0.588033012, y: null}, {x: 0.706018519, y: null}, {x: 0.311246731, y: null}, {x: 0.475839476, y: null}, {x: 0.647157191, y: null}, {x: 0.476973684, y: null}, {x: 0.865203762, y: null}, {x: 0.783703704, y: null}, {x: 0.501856436, y: null}, {x: 0.298107256, y: null}, {x: 0.532069971, y: null}, {x: 0.518126888, y: null}, {x: 0.250463822, y: null}, {x: 0.746835443, y: null}, {x: 0.509328358, y: null}, {x: 0.689300412, y: null}, {x: 0.495412844, y: null}, {x: 0.31641791, y: null}, {x: 0.200236967, y: null}, {x: 0.506738545, y: null}, {x: 0.345687332, y: null}, {x: 0.37861525, y: null}, {x: 0.595591543, y: null}, {x: 0.976987448, y: null}, {x: 0.844481605, y: null}, {x: 0.643523316, y: null}, {x: 0.58462867, y: null}, {x: 0.758663366, y: null}, {x: 0.460101868, y: null}, {x: 0.151724138, y: null}, {x: 0.39053729, y: null}, {x: 0.692493947, y: null}, {x: 0.514705882, y: null}, {x: 0.487639061, y: null}, {x: 0.603576751, y: null}, {x: 0.586666667, y: null}, {x: 0.615778689, y: null}, {x: 0.325141777, y: null}, {x: 0.694992413, y: null}, {x: 0.51303681, y: null}, {x: 0.318300087, y: null}, {x: 0.504288165, y: null}, {x: 0.346153846, y: null}, {x: 0.22853688, y: null}, {x: 0.419287212, y: null}, {x: 0.371482176, y: null}, {x: 0.244755245, y: null}, {x: 0.290966387, y: null}, {x: 0.602777778, y: null}, {x: 0.773447016, y: null}, {x: 0.382406563, y: null}, {x: 0.514721919, y: null}, {x: 0.747261346, y: null}, {x: 0.241803279, y: null}, {x: 0.461661342, y: null}, {x: 0.490429043, y: null}, {x: 0.592909536, y: null}, {x: 0.643564356, y: null}, {x: 0.517699115, y: null}, {x: 0.314576872, y: null}, {x: 0.546134663, y: null}, {x: 0.549786629, y: null}, {x: 0.83531746, y: null}, {x: 0.314041746, y: null}, {x: 0.53203125, y: null}, {x: 0.361679225, y: null}, {x: 0.451010887, y: null}, {x: 0.412081985, y: null}, {x: 0.460171165, y: null}, {x: 0.219753086, y: null}, {x: 0.116191904, y: null}, {x: 0.466945607, y: null}, {x: 0.335989376, y: null}, {x: 0.545343137, y: null}, {x: 0.640953717, y: null}, {x: 0.627856366, y: null}, {x: 0.209643606, y: null}, {x: 0.064144737, y: null}, {x: 0.214920071, y: null}, {x: 0.102333932, y: null}, {x: 0.224826389, y: null}, {x: 0.285928144, y: null}, {x: 0.273134328, y: null}, {x: 0.204395604, y: null}, {x: 0.362878788, y: null}, {x: 0.359875098, y: null}, {x: 0.445807771, y: null}, {x: 0.503327787, y: null}, {x: 0.597998332, y: null}, {x: 0.41677763, y: null}, {x: 0.53214049, y: null}, {x: 0.448220065, y: null}, {x: 0.367015099, y: null}, {x: 0.394822007, y: null}, {x: 0.250138351, y: null}, {x: 0.569444444, y: null}, {x: 0.423197492, y: null}, {x: 0.339401057, y: null}, {x: 0.491944146, y: null}, {x: 0.572649573, y: null}, {x: 0.567407407, y: null}, {x: 0.538541667, y: null}, {x: 0.486540379, y: null}, {x: 0.600529101, y: null}, {x: 0.643023256, y: null}, {x: 0.395259939, y: null}, {x: 0.301717089, y: null}, {x: 0.461081794, y: null}, {x: 0.173303167, y: null}, {x: 0.103938731, y: null}, {x: 0.510615711, y: null}, {x: 0.518372703, y: null}, {x: 0.503766478, y: null}, {x: 0.166389351, y: null}, {x: 0.733954451, y: null}, {x: 0.317395264, y: null}, {x: 0.09688196, y: null}, {x: 0.110144928, y: null}, {x: 0.226229508, y: null}, {x: 0.453525641, y: null}, {x: 0.156937799, y: null}, {x: 0.318333333, y: null}, {x: 0.47479776, y: null}, {x: 0.364111498, y: null}, {x: 0.481392557, y: null}, {x: 0.612654321, y: null}, {x: 0.45637229, y: null}, {x: 0.430563003, y: null}, {x: 0.425363276, y: null}, {x: 0.682602922, y: null}, {x: 0.874673629, y: null}, {x: 0.429323308, y: null}, {x: 0.424603175, y: null}, {x: 0.71483376, y: null}, {x: 0.799259945, y: null}, {x: 0.326677316, y: null}, {x: 0.459736457, y: null}, {x: 0.613037448, y: null}, {x: 0.397482014, y: null}, {x: 0.40111034, y: null}, {x: 0.193442623, y: null}, {x: 0.504368547, y: null}, {x: 0.372201493, y: null}, {x: 0.666666667, y: null}, {x: 0.301826847, y: null}, {x: 0.272094642, y: null}, {x: 0.181669394, y: null}, {x: 0.45488959, y: null}, {x: 0.10806175, y: null}, {x: 0.237348539, y: null}, {x: 0.478473581, y: null}, {x: 0.507357269, y: null}, {x: 0.06384743, y: null}, {x: 0.481380563, y: null}, {x: 0.182926829, y: null}, {x: 0.286193873, y: null}, {x: 0.079150579, y: null}, {x: 0.072124756, y: null}, {x: 0.062569832, y: null}, {x: 0.30511316, y: null}, {x: 0.014373717, y: null}, {x: 0.027659574, y: null}, {x: 0.090014065, y: null}, {x: 0.093506494, y: null}, {x: 0.110336818, y: null}, {x: 0.171532847, y: null}, {x: 0.18190128, y: null}, {x: 0.222772277, y: null}, {x: 0.357142857, y: null}, {x: 0.28902439, y: null}, {x: 0.25631769, y: null}, {x: 0.209302326, y: null}, {x: 0.046603032, y: null}, {x: 0.136363636, y: null}, {x: 0.529411765, y: null}, {x: 0.513539652, y: null}, {x: 0.694136292, y: null}, {x: 0.320615385, y: null}, {x: 0.187062937, y: null}, {x: 0.440113395, y: null}, {x: 0.3252149, y: null}, {x: 0.223073241, y: null}, {x: 0.348987854, y: null}, {x: 0.203846154, y: null}, {x: 0.485776805, y: null}, {x: 0.195416164, y: null}, {x: 0.303915839, y: null}, {x: 0.519595449, y: null}, {x: 0.446142093, y: null}, {x: 0.708469055, y: null}, {x: 0.87366167, y: null}, {x: 0.122489169, y: null}, {x: 0.103693182, y: null}, {x: 0.104, y: null}, {x: 0.285394098, y: null}, {x: 0.048181818, y: null}, {x: 0.134287662, y: null}, {x: 0.377033493, y: null}, {x: 0.173563218, y: null}, {x: 0.413541667, y: null}, {x: 0.100830368, y: null}, {x: 0.155143339, y: null}, {x: 0.124713083, y: null}, {x: 0.069981584, y: null}, {x: 0.187894073, y: null}, {x: 0.076839237, y: null}, {x: 0.080745342, y: null}, {x: 0.233638283, y: null}, {x: 0.171955403, y: null}, {x: 0.138888889, y: null}, {x: 0.035115304, y: null}, {x: 0.063522618, y: null}, {x: 0.043445693, y: null}, {x: 0.029270889, y: null}, {x: 0.088034718, y: null}, {x: 0.056213018, y: null}, {x: 0.041929925, y: null}, {x: 0.028436019, y: null}, {x: 0.219020173, y: null}, {x: 0.181372549, y: null}, {x: 0.136986301, y: null}, {x: 0.05465587, y: null}, {x: 0.222865412, y: null}, {x: 0.311187103, y: null}, {x: 0.133010883, y: null}, {x: 0.092172641, y: null}, {x: 0.20082531, y: null}, {x: 0.336290323, y: null}, {x: 0.151573539, y: null}, {x: 0.088737201, y: null}, {x: 0.021978022, y: null}, {x: 0.107039537, y: null}, {x: 0.1169464, y: null}, {x: 0.23463357, y: null}, {x: 0.280542986, y: null}, {x: 0.252886836, y: null}, {x: 0.379912664, y: null}, {x: 0.051851852, y: null}, {x: 0.178365938, y: null}, {x: 0.049338147, y: null}, {x: 0.218590398, y: null}, {x: 0.065404475, y: null}, {x: 0.176470588, y: null}, {x: 0.023722628, y: null}, {x: 0.053662074, y: null}, {x: 0.06424581, y: null}, {x: 0.118571429, y: null}, {x: 0.039665971, y: null}, {x: 0.179028133, y: null}, {x: 0.085801839, y: null}, {x: 0.073529412, y: null}, {x: 0.0, y: null}, {x: 0.083003953, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030425963, y: null}, {x: 0.140306122, y: null}, {x: 0.124223603, y: null}, {x: 0.100084104, y: null}, {x: 0.050578035, y: null}, {x: 0.023547881, y: null}, {x: 0.383681399, y: null}, {x: 0.219669118, y: null}, {x: 0.0995086, y: null}, {x: 0.429591837, y: null}, {x: 0.410125589, y: null}, {x: 0.199186992, y: null}, {x: 0.209136331, y: null}, {x: 0.317192983, y: null}, {x: 0.023696682, y: null}, {x: 0.03686934, y: null}, {x: 0.179156328, y: null}, {x: 0.356875334, y: null}, {x: 0.346666667, y: null}, {x: 0.678520626, y: null}, {x: 0.170376712, y: null}, {x: 0.13840399, y: null}, {x: 0.216666667, y: null}, {x: 0.274330042, y: null}, {x: 0.104882459, y: null}, {x: 0.421267894, y: null}, {x: 0.237215909, y: null}, {x: 0.05558066, y: null}, {x: 0.0, y: null}, {x: 0.397889977, y: null}, {x: 0.0, y: null}, {x: 0.445823928, y: null}, {x: 0.375609756, y: null}, {x: 0.260377359, y: null}, {x: 0.311534968, y: null}, {x: 0.712948518, y: null}, {x: 0.017329256, y: null}, {x: 0.381169324, y: null}, {x: 0.449019608, y: null}, {x: 0.421667966, y: null}, {x: 0.230405672, y: null}, {x: 0.207586207, y: null}, {x: 0.593484419, y: null}, {x: 0.405577689, y: null}, {x: 0.184075968, y: null}, {x: 0.953974895, y: null}, {x: 0.346986542, y: null}, {x: 0.646840149, y: null}, {x: 0.596830986, y: null}, {x: 0.440894569, y: null}, {x: 0.652017291, y: null}, {x: 0.535934292, y: null}, {x: 0.561151079, y: null}, {x: 0.50658858, y: null}, {x: 0.357833656, y: null}, {x: 0.333772219, y: 0.028}, {x: 0.289719626, y: null}, {x: 0.58984375, y: null}, {x: 0.131681877, y: null}, {x: 0.784313726, y: null}, {x: 0.203204047, y: null}, {x: 0.409610984, y: null}, {x: 0.199856219, y: null}, {x: 0.7265625, y: null}, {x: 0.327086883, y: null}, {x: 0.614224138, y: null}, {x: 0.0, y: 1.660842}, {x: 0.629213483, y: null}, {x: 0.622093023, y: null}, {x: 0.183846154, y: null}, {x: 0.954098361, y: null}, {x: 0.315033784, y: null}, {x: 0.229651163, y: null}, {x: 0.179271709, y: null}, {x: 0.195809249, y: null}, {x: 0.414746544, y: null}, {x: 0.408737864, y: null}, {x: 0.84139785, y: null}, {x: 0.367078825, y: null}, {x: 0.360212202, y: null}, {x: 0.20239521, y: null}, {x: 0.302828619, y: null}, {x: 0.183716075, y: null}, {x: 0.128787879, y: null}, {x: 0.014957265, y: null}, {x: 0.638455828, y: null}, {x: 0.611774065, y: null}, {x: 0.470467033, y: null}, {x: 0.541012216, y: null}, {x: 0.395325203, y: null}, {x: 0.131528046, y: null}, {x: 0.153016184, y: null}, {x: 0.208333333, y: null}, {x: 0.139296188, y: null}, {x: 0.068167605, y: null}, {x: 0.450508788, y: null}, {x: 0.33502907, y: null}, {x: 0.077464789, y: null}, {x: 0.43372549, y: null}, {x: 0.580346821, y: null}, {x: 0.545454546, y: null}, {x: 0.224074074, y: null}, {x: 0.293424318, y: null}, {x: 0.46031746, y: null}, {x: 0.587436333, y: null}, {x: 0.384101536, y: null}, {x: 0.163851351, y: null}, {x: 0.159649123, y: null}, {x: 0.343042071, y: null}, {x: 0.161805173, y: null}, {x: 0.184895833, y: null}, {x: 0.46461825, y: null}, {x: 0.3375, y: null}, {x: 0.237637363, y: null}, {x: 0.853658537, y: null}, {x: 0.401469606, y: null}, {x: 0.323802164, y: null}, {x: 0.296678967, y: null}, {x: 0.761218837, y: null}, {x: 0.352797203, y: null}, {x: 0.291713326, y: null}, {x: 0.376220053, y: null}, {x: 0.363836825, y: null}, {x: 0.189987163, y: null}, {x: 0.099157485, y: null}, {x: 0.373590982, y: null}, {x: 0.243617482, y: null}, {x: 0.109602816, y: null}, {x: 0.278382582, y: null}, {x: 0.249575552, y: null}, {x: 0.131124914, y: null}, {x: 0.185950413, y: null}, {x: 0.123209169, y: null}, {x: 0.063945578, y: null}, {x: 0.061007958, y: null}, {x: 0.153296267, y: null}, {x: 0.159895151, y: null}, {x: 0.257075472, y: null}, {x: 0.09310987, y: null}, {x: 0.144190871, y: null}, {x: 0.06038821, y: null}, {x: 0.958083832, y: null}, {x: 0.913043478, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2.0275}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 123.083}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 6.4707}, {x: 0.0, y: null}, {x: 0.0, y: 7.7502}, {x: 0.149098474, y: null}, {x: 0.13559322, y: null}, {x: 0.326656395, y: null}, {x: 0.038977913, y: null}, {x: 0.054365733, y: null}, {x: 0.229545455, y: null}, {x: 0.161816065, y: null}, {x: 0.16, y: null}, {x: 0.188829787, y: null}, {x: 0.455266955, y: null}, {x: 0.205666317, y: null}, {x: 0.109977324, y: null}, {x: 0.266155531, y: null}, {x: 0.17522245, y: null}, {x: 0.240979381, y: null}, {x: 0.4, y: null}, {x: 0.441267388, y: null}, {x: 0.190615836, y: null}, {x: 0.37191358, y: null}, {x: 0.120643432, y: null}, {x: 0.188461539, y: null}, {x: 0.4471387, y: null}, {x: 0.078555046, y: null}, {x: 0.15007736, y: null}, {x: 0.191780822, y: null}, {x: 0.046620047, y: null}, {x: 0.131648936, y: null}, {x: 0.062095731, y: null}, {x: 0.664122137, y: null}, {x: 0.150833333, y: null}, {x: 0.136498516, y: null}, {x: 0.304627249, y: null}, {x: 0.103459973, y: null}, {x: 0.157195572, y: null}, {x: 0.462550029, y: null}, {x: 0.382110092, y: null}, {x: 0.53765324, y: null}, {x: 0.545701358, y: null}, {x: 0.47224927, y: null}, {x: 0.447461629, y: null}, {x: 0.415821501, y: null}, {x: 0.146792316, y: null}, {x: 0.236842105, y: null}, {x: 0.14893617, y: null}, {x: 0.22516167, y: null}, {x: 0.138370952, y: null}, {x: 0.248789932, y: null}, {x: 0.03446419, y: null}, {x: 0.110766847, y: null}, {x: 0.129775281, y: null}, {x: 0.100196464, y: null}, {x: 0.200575816, y: null}, {x: 0.055768412, y: null}, {x: 0.201557936, y: null}, {x: 0.224975223, y: null}, {x: 0.087788131, y: null}, {x: 0.4125, y: null}, {x: 0.245819398, y: null}, {x: 0.186023622, y: null}, {x: 0.087850467, y: null}, {x: 0.296296296, y: null}, {x: 0.171052632, y: null}, {x: 0.109227872, y: null}, {x: 0.583036351, y: null}, {x: 0.136543015, y: null}, {x: 0.262032086, y: null}, {x: 0.443850267, y: null}, {x: 0.425793245, y: null}, {x: 0.106078665, y: null}, {x: 0.351926978, y: null}, {x: 0.146537842, y: null}, {x: 0.166141378, y: null}, {x: 0.720245399, y: 626.415468}, {x: 0.37398374, y: null}, {x: 0.393744988, y: null}, {x: 0.360836084, y: null}, {x: 0.016277424, y: null}, {x: 0.155405405, y: null}, {x: 0.107358263, y: null}, {x: 0.157471264, y: null}, {x: 0.21826484, y: null}, {x: 0.434280639, y: null}, {x: 0.135859519, y: null}, {x: 0.504424779, y: 0.316}, {x: 0.331439394, y: 13.296268}, {x: 0.1925, y: null}, {x: 0.70642978, y: null}, {x: 0.413407821, y: null}, {x: 0.226785714, y: null}, {x: 0.39912759, y: 0.22}, {x: 0.038442084, y: null}, {x: 0.086372361, y: null}, {x: 0.264116576, y: 0.171}, {x: 0.191969197, y: null}, {x: 0.298534799, y: null}, {x: 0.346153846, y: null}, {x: 0.609081935, y: null}, {x: 0.507186858, y: null}, {x: 0.37306317, y: null}, {x: 0.292442497, y: null}, {x: 0.335607094, y: null}, {x: 0.779331307, y: null}, {x: 0.15970696, y: null}, {x: 0.171193936, y: null}, {x: 0.612021858, y: null}, {x: 0.703883495, y: 9.505065}, {x: 0.457281553, y: null}, {x: 0.562557924, y: null}, {x: 0.501336898, y: 3.291023}, {x: 0.337520938, y: null}, {x: 0.25, y: null}, {x: 0.407685098, y: null}, {x: 0.606765328, y: null}, {x: 0.080645161, y: null}, {x: 0.079228243, y: null}, {x: 0.104516129, y: null}, {x: 0.077892325, y: null}, {x: 0.367364747, y: null}, {x: 0.068111455, y: null}, {x: 0.108819658, y: null}, {x: 0.11015583, y: null}, {x: 0.172651934, y: null}, {x: 0.111111111, y: null}, {x: 0.060164084, y: null}, {x: 0.070151307, y: null}, {x: 0.123994922, y: null}, {x: 0.038129496, y: null}, {x: 0.053426875, y: null}, {x: 0.086317723, y: null}, {x: 0.043972707, y: null}, {x: 0.465462274, y: null}, {x: 0.23566879, y: null}, {x: 0.264705882, y: null}, {x: 0.049122807, y: null}, {x: 0.269614836, y: null}, {x: 0.213986014, y: null}, {x: 0.355283308, y: null}, {x: 0.142217802, y: null}, {x: 0.323320158, y: null}, {x: 0.142641737, y: null}, {x: 0.076765309, y: null}, {x: 0.129266521, y: null}, {x: 0.05380117, y: null}, {x: 0.174522293, y: null}, {x: 0.129558541, y: null}, {x: 0.12732688, y: null}, {x: 0.120177384, y: null}, {x: 0.101956746, y: null}, {x: 0.044871795, y: null}, {x: 0.115360888, y: null}, {x: 0.242375602, y: null}, {x: 0.013727811, y: null}, {x: 0.108982827, y: null}, {x: 0.119537921, y: null}, {x: 0.13562387, y: null}, {x: 0.17057903, y: null}, {x: 0.243936567, y: 0.016676}, {x: 0.220125786, y: null}, {x: 0.196088523, y: null}, {x: 0.402489627, y: null}, {x: 0.199237369, y: null}, {x: 0.206236712, y: null}, {x: 0.407784986, y: null}, {x: 0.263336156, y: null}, {x: 0.026652452, y: null}, {x: 0.204599524, y: null}, {x: 0.187368421, y: null}, {x: 0.165945166, y: null}, {x: 0.143786127, y: null}, {x: 0.105773283, y: null}, {x: 0.068292683, y: null}, {x: 0.085781434, y: null}, {x: 0.016412661, y: null}, {x: 0.199815838, y: null}, {x: 0.200620476, y: null}, {x: 0.302513465, y: null}, {x: 0.103148024, y: null}, {x: 0.544925125, y: null}, {x: 0.021215596, y: null}, {x: 0.0664322, y: null}, {x: 0.096162528, y: null}, {x: 0.133923919, y: null}, {x: 0.095753539, y: null}, {x: 0.226061204, y: null}, {x: 0.060784314, y: null}, {x: 0.167766258, y: null}, {x: 0.05978975, y: null}, {x: 0.070167064, y: null}, {x: 0.036215817, y: null}, {x: 0.053117783, y: null}, {x: 0.131707317, y: null}, {x: 0.107004964, y: null}, {x: 0.27893368, y: null}, {x: 0.078893019, y: null}, {x: 0.10998308, y: null}, {x: 0.161182642, y: null}, {x: 0.172489083, y: null}, {x: 0.117892977, y: null}, {x: 0.175297702, y: null}, {x: 0.119463087, y: null}, {x: 0.156806843, y: null}, {x: 0.337853774, y: null}, {x: 0.518857143, y: null}, {x: 0.091755319, y: null}, {x: 0.361861862, y: null}, {x: 0.186346864, y: null}, {x: 0.288183092, y: null}, {x: 0.136073707, y: null}, {x: 0.271484375, y: null}, {x: 0.082119205, y: null}, {x: 0.054570259, y: null}, {x: 0.080757727, y: null}, {x: 0.459704881, y: null}, {x: 0.714870396, y: null}, {x: 0.249322493, y: null}, {x: 0.496815287, y: null}, {x: 0.442922374, y: null}, {x: 0.388395904, y: null}, {x: 0.424956872, y: null}, {x: 0.049279161, y: null}, {x: 0.446127946, y: null}, {x: 0.064091308, y: null}, {x: 0.098901099, y: null}, {x: 0.174726989, y: null}, {x: 0.140720598, y: null}, {x: 0.057061341, y: null}, {x: 0.541926542, y: null}, {x: 0.185299296, y: null}, {x: 0.14417435, y: null}, {x: 0.134857676, y: null}, {x: 0.027742749, y: null}, {x: 0.084090909, y: null}, {x: 0.101941748, y: null}, {x: 0.281602003, y: null}, {x: 0.290262172, y: null}, {x: 0.146823278, y: null}, {x: 0.283924843, y: null}, {x: 0.449640288, y: null}, {x: 0.159751037, y: null}, {x: 0.154223624, y: null}, {x: 0.42283105, y: null}, {x: 0.405538695, y: null}, {x: 0.332888889, y: null}, {x: 0.13303438, y: null}, {x: 0.602739726, y: null}, {x: 0.308855292, y: null}, {x: 0.25756187, y: null}, {x: 0.336330935, y: null}, {x: 0.238187078, y: null}, {x: 0.387447699, y: null}, {x: 0.293074324, y: null}, {x: 0.0, y: null}, {x: 0.704724409, y: null}, {x: 0.489795918, y: null}, {x: 0.692726373, y: null}, {x: 0.509162304, y: null}, {x: 0.524203822, y: null}, {x: 0.511111111, y: null}, {x: 0.575713241, y: null}, {x: 0.659748428, y: null}, {x: 0.570722668, y: null}, {x: 0.800833333, y: null}, {x: 0.712883436, y: null}, {x: 0.362930078, y: null}, {x: 0.702479339, y: null}, {x: 0.39157373, y: null}, {x: 0.461309524, y: null}, {x: 0.838216561, y: null}, {x: 0.330357143, y: null}, {x: 0.713744076, y: null}, {x: 0.590368609, y: null}, {x: 0.691620879, y: null}, {x: 0.400885936, y: null}, {x: 0.426078029, y: null}, {x: 0.61774744, y: null}, {x: 0.846666667, y: null}, {x: 0.0, y: null}, {x: 0.914919852, y: null}, {x: 0.631612492, y: null}, {x: 0.765822785, y: null}, {x: 0.408058608, y: null}, {x: 0.376654633, y: null}, {x: 0.759137769, y: null}, {x: 0.460877863, y: null}, {x: 0.962820513, y: null}, {x: 0.246535376, y: null}, {x: 0.494708995, y: null}, {x: 0.54665493, y: null}, {x: 0.35234657, y: null}, {x: 0.529850746, y: null}, {x: 0.703867403, y: null}, {x: 0.939643347, y: null}, {x: 0.762730834, y: null}, {x: 0.320601852, y: null}, {x: 0.268222963, y: null}, {x: 0.234782609, y: null}, {x: 0.374434389, y: null}, {x: 0.24598678, y: null}, {x: 0.352293578, y: null}, {x: 0.213042102, y: null}, {x: 0.334760885, y: null}, {x: 0.171677983, y: null}, {x: 0.349802372, y: null}, {x: 0.4289746, y: null}, {x: 0.175397094, y: null}, {x: 0.499491353, y: null}, {x: 0.15256876, y: null}, {x: 0.526505404, y: null}, {x: 0.373093682, y: null}, {x: 0.689587426, y: null}, {x: 0.535564854, y: null}, {x: 0.419400856, y: null}, {x: 0.282937365, y: null}, {x: 0.505960265, y: 563.320881}, {x: 0.512396694, y: null}, {x: 0.55448718, y: null}, {x: 0.400758534, y: null}, {x: 0.351351351, y: null}, {x: 0.551984877, y: null}, {x: 0.676271186, y: null}, {x: 0.65462754, y: null}, {x: 0.193480547, y: null}, {x: 0.349487419, y: null}, {x: 0.369491525, y: null}, {x: 0.091752577, y: null}, {x: 0.143213729, y: null}, {x: 0.197945845, y: null}, {x: 0.344911147, y: null}, {x: 0.472275335, y: null}, {x: 0.369195923, y: null}, {x: 0.301724138, y: null}, {x: 0.423828125, y: null}, {x: 0.26713948, y: null}, {x: 0.786836935, y: null}, {x: 0.0, y: null}, {x: 0.647144949, y: null}, {x: 0.370813397, y: null}, {x: 0.779329609, y: null}, {x: 0.392805755, y: null}, {x: 0.250976018, y: null}, {x: 0.391691395, y: null}, {x: 0.171388102, y: null}, {x: 0.293124246, y: null}, {x: 0.03257329, y: null}, {x: 0.105769231, y: null}, {x: 0.2324897, y: null}, {x: 0.110019646, y: null}, {x: 0.187331536, y: null}, {x: 0.232886905, y: null}, {x: 0.05028463, y: null}, {x: 0.041509434, y: null}, {x: 0.11147541, y: null}, {x: 0.200284091, y: null}, {x: 0.104834329, y: null}, {x: 0.326230713, y: null}, {x: 0.212830957, y: null}, {x: 0.229892337, y: null}, {x: 0.253539254, y: null}, {x: 0.093315685, y: null}, {x: 0.171334432, y: null}, {x: 0.017035775, y: null}, {x: 0.180933852, y: null}, {x: 0.103669725, y: null}, {x: 0.082381729, y: null}, {x: 0.05710207, y: null}, {x: 0.212732919, y: null}, {x: 0.136794396, y: 58.2}, {x: 0.23046875, y: null}, {x: 0.388836329, y: null}, {x: 0.079754601, y: null}, {x: 0.064220183, y: null}, {x: 0.065891473, y: null}, {x: 0.089265537, y: null}, {x: 0.098484848, y: null}, {x: 0.121412804, y: null}, {x: 0.071636012, y: null}, {x: 0.028651015, y: null}, {x: 0.099415205, y: null}, {x: 0.277081798, y: null}, {x: 0.032173913, y: null}, {x: 0.059291683, y: null}, {x: 0.030828516, y: null}, {x: 0.19376392, y: null}, {x: 0.042689838, y: null}, {x: 0.086629002, y: null}, {x: 0.08554674, y: null}, {x: 0.148779103, y: null}, {x: 0.225012072, y: null}, {x: 0.085658663, y: null}, {x: 0.123092574, y: null}, {x: 0.101036269, y: null}, {x: 0.088686754, y: null}, {x: 0.089260313, y: null}, {x: 0.066808059, y: null}, {x: 0.200704225, y: null}, {x: 0.254804712, y: null}, {x: 0.125153374, y: null}, {x: 0.125041024, y: null}, {x: 0.059336824, y: null}, {x: 0.048309179, y: null}, {x: 0.023809524, y: null}, {x: 0.021861777, y: null}, {x: 0.164478231, y: null}, {x: 0.159452055, y: null}, {x: 0.051624388, y: null}, {x: 0.079594017, y: null}, {x: 0.189922481, y: null}, {x: 0.062966916, y: null}, {x: 0.033414833, y: null}, {x: 0.07121058, y: null}, {x: 0.043062201, y: null}, {x: 0.013370474, y: null}, {x: 0.049490539, y: null}, {x: 0.291770574, y: null}, {x: 0.128503437, y: null}, {x: 0.091035441, y: null}, {x: 0.072281167, y: null}, {x: 0.378029079, y: null}, {x: 0.057640751, y: null}, {x: 0.064824655, y: null}, {x: 0.047761194, y: null}, {x: 0.282958199, y: null}, {x: 0.110778443, y: null}, {x: 0.0, y: null}, {x: 0.049710425, y: null}, {x: 0.205309735, y: null}, {x: 0.022093635, y: null}, {x: 0.109957239, y: null}, {x: 0.055788455, y: null}, {x: 0.099258414, y: null}, {x: 0.164835165, y: null}, {x: 0.011349306, y: null}, {x: 0.181008902, y: null}, {x: 0.039004707, y: null}, {x: 0.116424116, y: null}, {x: 0.065818998, y: null}, {x: 0.214585519, y: null}, {x: 0.008237232, y: null}, {x: 0.110149942, y: null}, {x: 0.11430527, y: null}, {x: 0.125459318, y: null}, {x: 0.014858841, y: null}, {x: 0.022026432, y: null}, {x: 0.365714286, y: null}, {x: 0.047191011, y: null}, {x: 0.102651258, y: null}, {x: 0.442716858, y: null}, {x: 0.389589905, y: null}, {x: 0.214454976, y: null}, {x: 0.417814509, y: null}, {x: 0.119771863, y: null}, {x: 0.301587302, y: null}, {x: 0.568487728, y: null}, {x: 0.076479076, y: null}, {x: 0.184641933, y: null}, {x: 0.103092784, y: null}, {x: 0.162983425, y: null}, {x: 0.027469316, y: null}, {x: 0.08627451, y: null}, {x: 0.019984013, y: null}, {x: 0.104316547, y: null}, {x: 0.174560217, y: null}, {x: 0.193661972, y: null}, {x: 0.066378845, y: null}, {x: 0.211389522, y: null}, {x: 0.198927933, y: null}, {x: 0.154576271, y: null}, {x: 0.100294985, y: null}, {x: 0.054894434, y: null}, {x: 0.11574328, y: null}, {x: 0.053484603, y: null}, {x: 0.117572291, y: null}, {x: 0.193040597, y: null}, {x: 0.07118451, y: null}, {x: 0.253968254, y: null}, {x: 0.166277129, y: null}, {x: 0.231752797, y: null}, {x: 0.210729448, y: null}, {x: 0.029944838, y: null}, {x: 0.035576638, y: null}, {x: 0.173707067, y: null}, {x: 0.0, y: null}, {x: 0.182065217, y: null}, {x: 0.208086785, y: null}, {x: 0.175537359, y: null}, {x: 0.062116041, y: null}, {x: 0.053342817, y: null}, {x: 0.050961863, y: null}, {x: 0.08186929, y: null}, {x: 0.174231332, y: null}, {x: 0.084575111, y: null}, {x: 0.141538462, y: null}, {x: 0.090909091, y: null}, {x: 0.041027766, y: null}, {x: 0.116177389, y: null}, {x: 0.08148592, y: null}, {x: 0.150557621, y: null}, {x: 0.312891114, y: null}, {x: 0.2375, y: null}, {x: 0.068212824, y: null}, {x: 0.067519545, y: null}, {x: 0.121150934, y: null}, {x: 0.012322859, y: null}, {x: 0.103762136, y: null}, {x: 0.281499203, y: null}, {x: 0.531353135, y: null}, {x: 0.531192661, y: null}, {x: 0.411413969, y: null}, {x: 0.42962963, y: null}, {x: 0.332378224, y: null}, {x: 0.259229535, y: null}, {x: 0.116621984, y: null}, {x: 0.396162528, y: null}, {x: 0.443053817, y: null}, {x: 0.216348774, y: null}, {x: 0.439892545, y: null}, {x: 0.125984252, y: null}, {x: 0.068193131, y: null}, {x: 0.358549223, y: null}, {x: 0.066871637, y: null}, {x: 0.137670197, y: null}, {x: 0.235857267, y: null}, {x: 0.198325253, y: null}, {x: 0.067734887, y: null}, {x: 0.139903515, y: null}, {x: 0.034343434, y: null}, {x: 0.072511266, y: null}, {x: 0.24797048, y: null}, {x: 0.193658955, y: null}, {x: 0.215316315, y: null}, {x: 0.381229236, y: null}, {x: 0.232831916, y: null}, {x: 0.705114255, y: null}, {x: 0.447403462, y: null}, {x: 0.860294118, y: null}, {x: 0.573271889, y: null}, {x: 0.535159141, y: null}, {x: 0.754663652, y: null}, {x: 0.271039604, y: null}, {x: 0.117948718, y: null}, {x: 0.327064595, y: null}, {x: 0.404243119, y: null}, {x: 0.317155756, y: null}, {x: 0.057017544, y: null}, {x: 0.079575597, y: null}, {x: 0.175498576, y: null}, {x: 0.042253521, y: null}, {x: 0.31218089, y: null}, {x: 0.275208914, y: null}, {x: 0.0, y: null}, {x: 0.087354918, y: null}, {x: 0.173439049, y: null}, {x: 0.2734375, y: null}, {x: 0.117002882, y: null}, {x: 0.241293532, y: null}, {x: 0.266666667, y: null}, {x: 0.12326228, y: null}, {x: 0.302752294, y: null}, {x: 0.118620038, y: null}, {x: 0.1223272, y: null}, {x: 0.356719818, y: null}, {x: 0.152706553, y: null}, {x: 0.374374374, y: null}, {x: 0.215839861, y: null}, {x: 0.116863905, y: null}, {x: 0.116147309, y: null}, {x: 0.006660324, y: null}, {x: 0.078276165, y: null}, {x: 0.096501809, y: null}, {x: 0.026209677, y: null}, {x: 0.034934498, y: null}], 'label': 'Individual Census blocks', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.0402013485, y: 44.25526846192295}, {x: 0.12383678599999999, y: 315.44136904566795}, {x: 0.2423858485, y: 155.1622247679142}, {x: 0.658750411, y: 156.86954737924398}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.0402013485, y: -15.171506999243164}, {x: 0.12383678599999999, y: 37.13396789985188}, {x: 0.2423858485, y: 0.10890724673529917}, {x: 0.658750411, y: 68.66824628408706}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.0402013485, y: 103.68204392308907}, {x: 0.12383678599999999, y: 593.748770191484}, {x: 0.2423858485, y: 310.21554228909315}, {x: 0.658750411, y: 245.07084847440092}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.225365854, y: null}, {x: 0.157170923, y: null}, {x: 0.292569659, y: null}, {x: 0.355932203, y: null}, {x: 0.331747919, y: null}, {x: 0.195612431, y: null}, {x: 0.421416235, y: null}, {x: 0.087596356, y: null}, {x: 0.246537396, y: null}, {x: 0.090909091, y: null}, {x: 0.233269599, y: null}, {x: 0.139484979, y: null}, {x: 0.086071987, y: null}, {x: 0.066143498, y: null}, {x: 0.247483222, y: null}, {x: 0.205073996, y: null}, {x: 0.118927973, y: null}, {x: 0.180357143, y: null}, {x: 0.40131579, y: null}, {x: 0.452808989, y: null}, {x: 0.060307018, y: null}, {x: 0.151642208, y: null}, {x: 0.037537538, y: 0.093729}, {x: 0.147126437, y: null}, {x: 0.11827957, y: null}, {x: 0.054669704, y: null}, {x: 0.382763975, y: null}, {x: 0.035135135, y: null}, {x: 0.013349515, y: null}, {x: 0.029652352, y: null}, {x: 0.194623656, y: null}, {x: 0.372727273, y: null}, {x: 0.221893491, y: null}, {x: 0.144, y: null}, {x: 0.03452381, y: null}, {x: 0.467171717, y: null}, {x: 0.153678711, y: null}, {x: 0.053731343, y: null}, {x: 0.08716707, y: null}, {x: 0.343377716, y: null}, {x: 0.079958463, y: null}, {x: 0.197693575, y: null}, {x: 0.078787879, y: null}, {x: 0.108029197, y: null}, {x: 0.220935043, y: null}, {x: 0.17695962, y: null}, {x: 0.1484375, y: null}, {x: 0.104990584, y: null}, {x: 0.365819209, y: null}, {x: 0.157706093, y: null}, {x: 0.201189296, y: null}, {x: 0.193396226, y: null}, {x: 0.215859031, y: null}, {x: 0.209302326, y: null}, {x: 0.138307552, y: null}, {x: 0.084931507, y: null}, {x: 0.163904236, y: null}, {x: 0.094619666, y: null}, {x: 0.328301887, y: null}, {x: 0.284076433, y: null}, {x: 0.236363636, y: null}, {x: 0.126789366, y: null}, {x: 0.039622642, y: null}, {x: 0.195773081, y: null}, {x: 0.282835821, y: null}, {x: 0.397154713, y: null}, {x: 0.359016393, y: null}, {x: 0.159090909, y: null}, {x: 0.204285714, y: null}, {x: 0.097014925, y: null}, {x: 0.247560976, y: null}, {x: 0.115187087, y: null}, {x: 0.147157191, y: null}, {x: 0.122807018, y: null}, {x: 0.275761974, y: null}, {x: 0.041497152, y: null}, {x: 0.233900052, y: null}, {x: 0.196217494, y: null}, {x: 0.127208481, y: null}, {x: 0.027994792, y: null}, {x: 0.050189394, y: null}, {x: 0.29454171, y: null}, {x: 0.238773275, y: null}, {x: 0.280051151, y: null}, {x: 0.09030837, y: null}, {x: 0.296663661, y: null}, {x: 0.261219793, y: null}, {x: 0.401098901, y: null}, {x: 0.088806661, y: null}, {x: 0.472783826, y: null}, {x: 0.123818526, y: null}, {x: 0.492088608, y: null}, {x: 0.13091922, y: null}, {x: 0.040025016, y: null}, {x: 0.010574018, y: null}, {x: 0.093610698, y: null}, {x: 0.0, y: null}, {x: 0.022082019, y: null}, {x: 0.594444444, y: null}, {x: 0.163619744, y: null}, {x: 0.426900585, y: null}, {x: 0.230932203, y: null}, {x: 0.159406858, y: null}, {x: 0.271081221, y: null}, {x: 0.510526316, y: null}, {x: 0.184037559, y: null}, {x: 0.406756757, y: null}, {x: 0.178927681, y: null}, {x: 0.11741683, y: null}, {x: 0.03526971, y: null}, {x: 0.099724897, y: null}, {x: 0.114718615, y: null}, {x: 0.115099715, y: null}, {x: 0.128979144, y: null}, {x: 0.13, y: null}, {x: 0.125295508, y: null}, {x: 0.100821168, y: null}, {x: 0.175257732, y: null}, {x: 0.191208791, y: null}, {x: 0.089236431, y: null}, {x: 0.053469852, y: null}, {x: 0.097664544, y: null}, {x: 0.232054691, y: null}, {x: 0.082802548, y: null}, {x: 0.01540957, y: null}, {x: 0.172268908, y: null}, {x: 0.069911163, y: null}, {x: 0.074749316, y: null}, {x: 0.204968944, y: null}, {x: 0.096666667, y: null}, {x: 0.147651007, y: null}, {x: 0.14691358, y: null}, {x: 0.084097859, y: null}, {x: 0.08173913, y: null}, {x: 0.301909308, y: null}, {x: 0.045045045, y: null}, {x: 0.132592593, y: null}, {x: 0.061993517, y: null}, {x: 0.073134328, y: null}, {x: 0.227629513, y: null}, {x: 0.125977411, y: null}, {x: 0.0, y: null}, {x: 0.193959732, y: null}, {x: 0.120923913, y: null}, {x: 0.190682557, y: null}, {x: 0.089411765, y: null}, {x: 0.11621455, y: null}, {x: 0.192153723, y: null}, {x: 0.087619048, y: null}, {x: 0.260299626, y: null}, {x: 0.261904762, y: null}, {x: 0.113636364, y: null}, {x: 0.212952799, y: null}, {x: 0.05985267, y: null}, {x: 0.138266797, y: null}, {x: 0.279229711, y: null}, {x: 0.246469833, y: null}, {x: 0.505128205, y: null}, {x: 0.067010309, y: null}, {x: 0.122282609, y: null}, {x: 0.198312236, y: null}, {x: 0.041726619, y: null}, {x: 0.021920668, y: null}, {x: 0.121571838, y: null}, {x: 0.06147968, y: null}, {x: 0.199362042, y: null}, {x: 0.042465753, y: null}, {x: 0.142639787, y: null}, {x: 0.407854985, y: null}, {x: 0.239823982, y: null}, {x: 0.317391304, y: null}, {x: 0.1872, y: null}, {x: 0.076923077, y: null}, {x: 0.141566265, y: null}, {x: 0.285367825, y: null}, {x: 0.203596288, y: null}, {x: 0.442902882, y: null}, {x: 0.136732329, y: null}, {x: 0.451802179, y: null}, {x: 0.25140713, y: null}, {x: 0.063268893, y: null}, {x: 0.078085642, y: null}, {x: 0.185135135, y: null}, {x: 0.10451505, y: null}, {x: 0.209565217, y: null}, {x: 0.100446429, y: null}, {x: 0.308504035, y: null}, {x: 0.308474576, y: null}, {x: 0.189907039, y: null}, {x: 0.150778816, y: null}, {x: 0.105535055, y: null}, {x: 0.122593718, y: null}, {x: 0.449620802, y: null}, {x: 0.49765747, y: null}, {x: 0.372031662, y: null}, {x: 0.0, y: null}, {x: 0.738191633, y: null}, {x: 0.471971067, y: null}, {x: 0.579825835, y: null}, {x: 0.747445256, y: null}, {x: 0.251798561, y: null}, {x: 0.481848185, y: null}, {x: 0.631306598, y: null}, {x: 0.440744368, y: null}, {x: 0.373697917, y: null}, {x: 0.323797139, y: null}, {x: 0.170967742, y: null}, {x: 0.331770223, y: null}, {x: 0.283076923, y: null}, {x: 0.583864119, y: null}, {x: 0.048957389, y: null}, {x: 0.188175461, y: null}, {x: 0.097744361, y: null}, {x: 0.178166838, y: null}, {x: 0.149159664, y: null}, {x: 0.602666667, y: null}, {x: 0.645833333, y: null}, {x: 0.679802956, y: null}, {x: 0.493530499, y: null}, {x: 0.539249147, y: null}, {x: 0.085648148, y: null}, {x: 0.245960503, y: null}, {x: 0.092699884, y: null}, {x: 0.029388403, y: null}, {x: 0.101694915, y: null}, {x: 0.108744395, y: null}, {x: 0.185616438, y: null}, {x: 0.0, y: null}, {x: 0.3125, y: null}, {x: 0.626851852, y: null}, {x: 0.405633803, y: null}, {x: 0.086572438, y: null}, {x: 0.178030303, y: null}, {x: 0.080765143, y: null}, {x: 0.103703704, y: null}, {x: 0.40327294, y: null}, {x: 0.158713693, y: null}, {x: 0.194915254, y: null}, {x: 0.237885463, y: null}, {x: 0.181443299, y: null}, {x: 0.170940171, y: null}, {x: 0.454320988, y: null}, {x: 0.214015152, y: null}, {x: 0.0546875, y: null}, {x: 0.242740134, y: null}, {x: 0.055469954, y: null}, {x: 0.153707052, y: null}, {x: 0.162576687, y: null}, {x: 0.134762634, y: null}, {x: 0.212301587, y: null}, {x: 0.167852063, y: null}, {x: 0.303030303, y: null}, {x: 0.019690577, y: 0.175}, {x: 0.06601467, y: null}, {x: 0.150295858, y: null}, {x: 0.385103011, y: null}, {x: 0.055828221, y: null}, {x: 0.180851064, y: null}, {x: 0.524421594, y: null}, {x: 0.123439667, y: null}, {x: 0.134693878, y: null}, {x: 0.174712644, y: null}, {x: 0.099078341, y: null}, {x: 0.066597294, y: null}, {x: 0.247953216, y: null}, {x: 0.20527307, y: null}, {x: 0.459850107, y: null}, {x: 0.484200744, y: null}, {x: 0.575488455, y: null}, {x: 0.187830688, y: null}, {x: 0.208279431, y: null}, {x: 0.296466974, y: null}, {x: 0.086743044, y: null}, {x: 0.52919708, y: null}, {x: 0.397333333, y: null}, {x: 0.390563565, y: null}, {x: 0.386637459, y: null}, {x: 0.341246291, y: null}, {x: 0.357712766, y: null}, {x: 0.184601925, y: null}, {x: 0.132368149, y: null}, {x: 0.127481714, y: null}, {x: 0.13570887, y: null}, {x: 0.177257525, y: null}, {x: 0.527486911, y: null}, {x: 0.153652393, y: null}, {x: 0.204365079, y: null}, {x: 0.130850048, y: null}, {x: 0.144062297, y: null}, {x: 0.170068027, y: null}, {x: 0.189591078, y: null}, {x: 0.361147327, y: null}, {x: 0.241765943, y: null}, {x: 0.151111111, y: null}, {x: 0.236786469, y: null}, {x: 0.120124805, y: null}, {x: 0.067915691, y: null}, {x: 0.204896907, y: null}, {x: 0.155991736, y: null}, {x: 0.19140625, y: null}, {x: 0.263908702, y: null}, {x: 0.108739837, y: null}, {x: 0.102564103, y: null}, {x: 0.147704591, y: null}, {x: 0.252559727, y: null}, {x: 0.18877551, y: null}, {x: 0.298319328, y: null}, {x: 0.271223022, y: null}, {x: 0.197781885, y: null}, {x: 0.132408575, y: null}, {x: 0.284571429, y: null}, {x: 0.226586103, y: null}, {x: 0.145098039, y: null}, {x: 0.129360465, y: null}, {x: 0.197867299, y: null}, {x: 0.154308617, y: null}, {x: 0.219548872, y: null}, {x: 0.243010753, y: null}, {x: 0.211058264, y: null}, {x: 0.179372197, y: null}, {x: 0.150867824, y: null}, {x: 0.193627451, y: null}, {x: 0.102760736, y: null}, {x: 0.24948025, y: null}, {x: 0.078291815, y: null}, {x: 0.306818182, y: null}, {x: 0.040133779, y: null}, {x: 0.095512083, y: null}, {x: 0.210982659, y: null}, {x: 0.211701309, y: null}, {x: 0.423970433, y: null}, {x: 0.080788177, y: null}, {x: 0.147515528, y: null}, {x: 0.100522193, y: null}, {x: 0.195862069, y: null}, {x: 0.141674333, y: null}, {x: 0.009746589, y: null}, {x: 0.025450689, y: null}, {x: 0.244771495, y: null}, {x: 0.034269663, y: null}, {x: 0.038180797, y: null}, {x: 0.046370968, y: null}, {x: 0.199263933, y: null}, {x: 0.163456533, y: null}, {x: 0.215189873, y: null}, {x: 0.126600985, y: null}, {x: 0.042480884, y: null}, {x: 0.112525117, y: null}, {x: 0.137198068, y: null}, {x: 0.009929078, y: null}, {x: 0.028089888, y: null}, {x: 0.00998004, y: null}, {x: 0.0, y: null}, {x: 0.023186238, y: null}, {x: 0.037634409, y: null}, {x: 0.097676874, y: null}, {x: 0.336879433, y: null}, {x: 0.135643298, y: null}, {x: 0.116852613, y: null}, {x: 0.23342416, y: null}, {x: 0.173665792, y: null}, {x: 0.035449299, y: null}, {x: 0.121384005, y: null}, {x: 0.070338421, y: null}, {x: 0.134317343, y: null}, {x: 0.057983943, y: null}, {x: 0.094017094, y: null}, {x: 0.134107286, y: null}, {x: 0.166007905, y: null}, {x: 0.295497781, y: null}, {x: 0.168582376, y: null}, {x: 0.127955494, y: null}, {x: 0.043971144, y: null}, {x: 0.150645624, y: null}, {x: 0.347122302, y: null}, {x: 0.253016086, y: null}, {x: 0.323897659, y: null}, {x: 0.133274493, y: null}, {x: 0.175303197, y: null}, {x: 0.033878505, y: null}, {x: 0.031158715, y: null}, {x: 0.277942046, y: null}, {x: 0.154488518, y: null}, {x: 0.431518152, y: null}, {x: 0.538291605, y: null}, {x: 0.261939219, y: null}, {x: 0.52178771, y: null}, {x: 0.213937622, y: null}, {x: 0.334791059, y: null}, {x: 0.543255132, y: null}, {x: 0.321678322, y: null}, {x: 0.434724092, y: null}, {x: 0.535338346, y: null}, {x: 0.152142857, y: null}, {x: 0.553892216, y: null}, {x: 0.145070423, y: null}, {x: 0.212456052, y: 33.039}, {x: 0.146570397, y: null}, {x: 0.495114007, y: null}, {x: 0.385745775, y: null}, {x: 0.551626591, y: null}, {x: 0.325, y: null}, {x: 0.526470588, y: null}, {x: 0.179633144, y: null}, {x: 0.122650376, y: null}, {x: 0.154534364, y: null}, {x: 0.345938375, y: null}, {x: 0.115569823, y: null}, {x: 0.193078324, y: null}, {x: 0.108669834, y: null}, {x: 0.14622057, y: null}, {x: 0.061983471, y: null}, {x: 0.117103236, y: null}, {x: 0.270594109, y: null}, {x: 0.107970784, y: null}, {x: 0.023195876, y: null}, {x: 0.142276423, y: null}, {x: 0.0995, y: null}, {x: 0.0, y: null}, {x: 0.105387803, y: null}, {x: 0.149651497, y: null}, {x: 0.110300081, y: null}, {x: 0.428510457, y: null}, {x: 0.303482587, y: null}, {x: 0.261183261, y: null}, {x: 0.125142857, y: null}, {x: 0.184031159, y: null}, {x: 0.106420405, y: null}, {x: 0.056272586, y: null}, {x: 0.093579978, y: null}, {x: 0.380517504, y: null}, {x: 0.03803132, y: null}, {x: 0.071298654, y: null}, {x: 0.041522491, y: null}, {x: 0.248221344, y: null}, {x: 0.131021195, y: null}, {x: 0.136246787, y: null}, {x: 0.038970588, y: null}, {x: 0.0, y: null}, {x: 0.033909149, y: null}, {x: 0.184305627, y: null}, {x: 0.148854962, y: null}, {x: 0.089928058, y: null}, {x: 0.332777778, y: null}, {x: 0.077930175, y: null}, {x: 0.300761421, y: null}, {x: 0.142760487, y: null}, {x: 0.074525745, y: null}, {x: 0.117110266, y: null}, {x: 0.188489209, y: null}, {x: 0.17903365, y: null}, {x: 0.03006012, y: null}, {x: 0.099131323, y: null}, {x: 0.081081081, y: null}, {x: 0.030331754, y: null}, {x: 0.311679337, y: null}, {x: 0.556321839, y: null}, {x: 0.537262873, y: null}, {x: 0.385205232, y: null}, {x: 0.367763905, y: null}, {x: 0.473902728, y: null}, {x: 0.183923706, y: null}, {x: 0.313021703, y: null}, {x: 0.093062606, y: null}, {x: 0.283836417, y: null}, {x: 0.142016807, y: null}, {x: 0.144469526, y: null}, {x: 0.183785343, y: null}, {x: 0.0, y: null}, {x: 0.215488216, y: null}, {x: 0.358087487, y: null}, {x: 0.088235294, y: null}, {x: 0.209141274, y: null}, {x: 0.135629709, y: 999.999999}, {x: 0.036441586, y: null}, {x: 0.089395267, y: null}, {x: 0.079268293, y: null}, {x: 0.178104575, y: null}, {x: 0.200087758, y: null}, {x: 0.035839161, y: null}, {x: 0.035991531, y: null}, {x: 0.28002414, y: null}, {x: 0.211298606, y: null}, {x: 0.105501618, y: null}, {x: 0.120287253, y: null}, {x: 0.050678087, y: null}, {x: 0.140625, y: null}, {x: 0.148466717, y: null}, {x: 0.093869732, y: null}, {x: 0.356367226, y: null}, {x: 0.686293436, y: null}, {x: 0.059957173, y: null}, {x: 0.205405405, y: null}, {x: 0.224552745, y: null}, {x: 0.434892541, y: null}, {x: 0.624816805, y: null}, {x: 0.6700611, y: null}, {x: 0.741833509, y: null}, {x: 0.379722621, y: null}, {x: 0.550424128, y: 95.803564}, {x: 0.177818515, y: null}, {x: 0.442614771, y: 1904.333217}, {x: 0.605597964, y: null}, {x: 0.788187373, y: null}, {x: 0.161825726, y: 33.812967}, {x: 0.594850949, y: null}, {x: 0.367713005, y: null}, {x: 0.541341654, y: null}, {x: 0.234375, y: 13.403297}, {x: 0.276821192, y: null}, {x: 0.639917696, y: null}, {x: 0.499451153, y: null}, {x: 0.533745492, y: null}, {x: 0.48988764, y: null}, {x: 0.218035825, y: null}, {x: 0.232484076, y: null}, {x: 0.205567452, y: null}, {x: 0.322404372, y: null}, {x: 0.433115824, y: null}, {x: 0.222574509, y: null}, {x: 0.748043819, y: null}, {x: 0.355035605, y: null}, {x: 0.48280943, y: null}, {x: 0.375722543, y: null}, {x: 0.1, y: null}, {x: 0.600938967, y: 29.512963}, {x: 0.389929742, y: null}, {x: 0.414154653, y: null}, {x: 0.660397074, y: null}, {x: 0.875912409, y: null}, {x: 0.516514127, y: null}, {x: 0.707711443, y: null}, {x: 0.547239264, y: null}, {x: 0.43877551, y: null}, {x: 0.747628084, y: null}, {x: 0.57496977, y: null}, {x: 0.624087591, y: null}, {x: 0.399719495, y: null}, {x: 0.76477146, y: null}, {x: 0.562366358, y: null}, {x: 0.443811075, y: null}, {x: 0.347487615, y: null}, {x: 0.438639125, y: null}, {x: 0.433465086, y: null}, {x: 0.097334878, y: null}, {x: 0.295546559, y: null}, {x: 0.27631579, y: null}, {x: 0.198875615, y: null}, {x: 0.513611615, y: null}, {x: 0.253521127, y: null}, {x: 0.467727675, y: null}, {x: 0.314814815, y: null}, {x: 0.275147929, y: null}, {x: 0.419631902, y: 292.744127}, {x: 0.655295316, y: 194.570504}, {x: 0.243040212, y: 443.440785}, {x: 0.674610449, y: null}, {x: 0.498817967, y: null}, {x: 0.323834197, y: null}, {x: 0.602385686, y: null}, {x: 0.352468427, y: null}, {x: 0.163748713, y: null}, {x: 0.042495479, y: null}, {x: 0.449458484, y: null}, {x: 0.109938435, y: null}, {x: 0.212871287, y: null}, {x: 0.083380925, y: null}, {x: 0.103698583, y: null}, {x: 0.053333333, y: null}, {x: 0.036954915, y: null}, {x: 0.099589322, y: null}, {x: 0.172568355, y: null}, {x: 0.180991736, y: null}, {x: 0.070634921, y: null}, {x: 0.106923077, y: null}, {x: 0.102112676, y: null}, {x: 0.091269841, y: null}, {x: 0.075156576, y: null}, {x: 0.072243346, y: null}, {x: 0.273972603, y: null}, {x: 0.174870466, y: null}, {x: 0.29314888, y: null}, {x: 0.050717703, y: null}, {x: 0.242591316, y: null}, {x: 0.133825944, y: null}, {x: 0.123239437, y: null}, {x: 0.216426193, y: null}, {x: 0.061816653, y: null}, {x: 0.054067219, y: null}, {x: 0.122442134, y: null}, {x: 0.022556391, y: null}, {x: 0.150758252, y: null}, {x: 0.172043011, y: null}, {x: 0.295297372, y: null}, {x: 0.238056013, y: null}, {x: 0.118386817, y: null}, {x: 0.138788427, y: null}, {x: 0.069073783, y: null}, {x: 0.211398964, y: null}, {x: 0.115089514, y: null}, {x: 0.066132265, y: null}, {x: 0.112410656, y: null}, {x: 0.07956778, y: null}, {x: 0.26761062, y: null}, {x: 0.485549133, y: null}, {x: 0.192277384, y: null}, {x: 0.259505703, y: null}, {x: 0.12866242, y: null}, {x: 0.224691358, y: null}, {x: 0.25716385, y: null}, {x: 0.204951857, y: null}, {x: 0.110807114, y: null}, {x: 0.410476191, y: 0.12512}, {x: 0.397526502, y: null}, {x: 0.076559546, y: null}, {x: 0.314787701, y: 5.77926}, {x: 0.421862348, y: null}, {x: 0.228301887, y: null}, {x: 0.095679012, y: null}, {x: 0.10554951, y: null}, {x: 0.375905797, y: null}, {x: 0.500721501, y: null}, {x: 0.451692308, y: null}, {x: 0.647188534, y: null}, {x: 0.377745242, y: null}, {x: 0.554154303, y: 734.949067}, {x: 0.651245552, y: null}, {x: 0.408196721, y: null}, {x: 0.677804296, y: null}, {x: 0.662087912, y: null}, {x: 0.67641129, y: null}, {x: 0.44057971, y: null}, {x: 0.41962775, y: null}, {x: 0.853675946, y: null}, {x: 0.206762029, y: null}, {x: 0.333333333, y: null}, {x: 0.108066184, y: null}, {x: 0.36872869, y: null}, {x: 0.625707357, y: null}, {x: 0.51184346, y: null}, {x: 0.206841687, y: null}, {x: 0.490566038, y: null}, {x: 0.628571429, y: 11.58294}, {x: 0.554341227, y: null}, {x: 0.512588117, y: 71.329358}, {x: 0.529080675, y: null}, {x: 0.509892086, y: null}, {x: 0.243816254, y: null}, {x: 0.561360875, y: null}, {x: 0.611918605, y: null}, {x: 0.221719457, y: null}, {x: 0.44375963, y: null}, {x: 0.159322034, y: null}, {x: 0.540511727, y: null}, {x: 0.211457456, y: null}, {x: 0.182598039, y: null}, {x: 0.619293078, y: null}, {x: 0.743551953, y: null}, {x: 0.310638298, y: null}, {x: 0.808792743, y: null}, {x: 0.663247863, y: null}, {x: 0.668859649, y: 148.959479}, {x: 0.720666667, y: null}, {x: 0.308189655, y: null}, {x: 0.6398641, y: null}, {x: 0.441485069, y: null}, {x: 0.315717227, y: null}, {x: 0.15008726, y: null}, {x: 0.263295554, y: null}, {x: 0.239147593, y: null}, {x: 0.325227964, y: null}, {x: 0.233396584, y: null}, {x: 0.781619654, y: null}, {x: 0.546171171, y: null}, {x: 0.250716332, y: null}, {x: 0.468686869, y: null}, {x: 0.435022026, y: 291.200847}, {x: 0.506972929, y: null}, {x: 0.461800819, y: null}, {x: 0.451120163, y: null}, {x: 0.723966119, y: 123.559491}, {x: 0.549773756, y: null}, {x: 0.366477273, y: 253.998766}, {x: 0.602469136, y: 25.889026}, {x: 0.335632184, y: null}, {x: 0.205188679, y: 32.36738}, {x: 0.094179894, y: 54.925090000000004}, {x: 0.152727273, y: null}, {x: 0.352447552, y: null}, {x: 0.078866769, y: null}, {x: 0.290153746, y: null}, {x: 0.126039667, y: null}, {x: 0.065929566, y: null}, {x: 0.094517958, y: null}, {x: 0.143900657, y: null}, {x: 0.156312625, y: null}, {x: 0.335219236, y: null}, {x: 0.330745342, y: null}, {x: 0.235877863, y: null}, {x: 0.184981685, y: null}, {x: 0.105099778, y: null}, {x: 0.03986711, y: null}, {x: 0.350682594, y: null}, {x: 0.046391753, y: null}, {x: 0.015042118, y: null}, {x: 0.066847335, y: null}, {x: 0.04549675, y: null}, {x: 0.104890605, y: null}, {x: 0.121355179, y: null}, {x: 0.214150048, y: null}, {x: 0.14379085, y: 40.416186}, {x: 0.440842788, y: null}, {x: 0.232837934, y: null}, {x: 0.081192189, y: null}, {x: 0.081823495, y: null}, {x: 0.197049526, y: null}, {x: 0.264011799, y: null}, {x: 0.602634468, y: null}, {x: 0.46895893, y: null}, {x: 0.129657228, y: null}, {x: 0.233810498, y: null}, {x: 0.221570926, y: null}, {x: 0.351077313, y: null}, {x: 0.08591674, y: null}, {x: 0.08753568, y: null}, {x: 0.101920236, y: null}, {x: 0.196679438, y: null}, {x: 0.077414773, y: null}, {x: 0.0, y: null}, {x: 0.065301605, y: null}, {x: 0.256315007, y: null}, {x: 0.175238095, y: null}, {x: 0.0, y: null}, {x: 0.406471183, y: null}, {x: 0.160388821, y: null}, {x: 0.110381078, y: null}, {x: 0.442328042, y: null}, {x: 0.284974093, y: null}, {x: 0.137784091, y: null}, {x: 0.261538462, y: null}, {x: 0.167650531, y: null}, {x: 0.50991832, y: null}, {x: 0.167852906, y: null}, {x: 0.200668896, y: null}, {x: 0.046357616, y: null}, {x: 0.24876115, y: null}, {x: 0.25142474, y: null}, {x: 0.0, y: null}, {x: 0.165856294, y: null}, {x: 0.261694058, y: null}, {x: 0.066869301, y: null}, {x: 0.066570188, y: null}, {x: 0.105263158, y: null}, {x: 0.0, y: null}, {x: 0.068891281, y: 1.80788}, {x: 0.233796296, y: null}, {x: 0.053456221, y: null}, {x: 0.154160982, y: null}, {x: 0.049940547, y: null}, {x: 0.183856502, y: null}, {x: 0.231845436, y: null}, {x: 0.12295082, y: null}, {x: 0.115600449, y: null}, {x: 0.020338983, y: null}, {x: 0.1875, y: null}, {x: 0.378303965, y: null}, {x: 0.04609475, y: null}, {x: 0.060844667, y: null}, {x: 0.038028169, y: null}, {x: 0.03894081, y: 1.335464}, {x: 0.0, y: null}, {x: 0.088560886, y: null}, {x: 0.0, y: null}, {x: 0.15542522, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.059508409, y: null}, {x: 0.07254623, y: null}, {x: 0.0, y: null}, {x: 0.241678727, y: null}, {x: 0.0, y: null}, {x: 0.024134313, y: null}, {x: 0.17519305, y: null}, {x: 0.0, y: null}, {x: 0.330745342, y: null}, {x: 0.06624954, y: null}, {x: 0.388235294, y: null}, {x: 0.228197674, y: null}, {x: 0.122205663, y: null}, {x: 0.119383825, y: 0.072}, {x: 0.122574956, y: null}, {x: 0.011473963, y: null}, {x: 0.277742142, y: null}, {x: 0.348501665, y: null}, {x: 0.241352806, y: null}, {x: 0.331890332, y: null}, {x: 0.139247312, y: null}, {x: 0.286061588, y: null}, {x: 0.5, y: null}, {x: 0.477040816, y: null}, {x: 0.139833711, y: null}, {x: 0.260096931, y: null}, {x: 0.076660988, y: null}, {x: 0.28003003, y: null}, {x: 0.728533095, y: null}, {x: 0.468387097, y: null}, {x: 0.128997868, y: null}, {x: 0.087064677, y: null}, {x: 0.382847038, y: null}, {x: 0.088541667, y: null}, {x: 0.099383667, y: null}, {x: 0.258237548, y: null}, {x: 0.204038257, y: null}, {x: 0.30781759, y: null}, {x: 0.171601615, y: null}, {x: 0.354124749, y: null}, {x: 0.240371846, y: null}, {x: 0.191685912, y: null}, {x: 0.064888248, y: null}, {x: 0.265880218, y: null}, {x: 0.352604465, y: null}, {x: 0.239694008, y: null}, {x: 0.51790393, y: null}, {x: 0.290291262, y: null}, {x: 0.605022831, y: null}, {x: 0.191755725, y: null}, {x: 0.223675155, y: null}, {x: 0.291296625, y: null}, {x: 0.208872458, y: null}, {x: 0.102511881, y: null}, {x: 0.170873786, y: null}, {x: 0.28280543, y: null}, {x: 0.365260901, y: null}, {x: 0.513715711, y: null}, {x: 0.236525048, y: null}, {x: 0.121835443, y: null}, {x: 0.150914634, y: null}, {x: 0.098342541, y: null}, {x: 0.084821429, y: null}, {x: 0.284444444, y: null}, {x: 0.30106486, y: null}, {x: 0.027835052, y: null}, {x: 0.061639344, y: null}, {x: 0.354000693, y: null}, {x: 0.450224215, y: null}, {x: 0.759481961, y: null}, {x: 0.438571429, y: null}, {x: 0.126286249, y: null}, {x: 0.193333333, y: null}, {x: 0.208655332, y: null}, {x: 0.099694812, y: null}, {x: 0.322732627, y: null}, {x: 0.355742297, y: null}, {x: 0.042606516, y: 32.512411}, {x: 0.595081967, y: null}, {x: 0.190427699, y: null}, {x: 0.422920303, y: null}, {x: 0.247802428, y: null}, {x: 0.255568582, y: null}, {x: 0.427750411, y: null}, {x: 0.248835662, y: null}, {x: 0.336622807, y: null}, {x: 0.584225352, y: null}, {x: 0.419381788, y: null}, {x: 0.266603416, y: null}, {x: 0.28957265, y: null}, {x: 0.341797662, y: null}, {x: 0.424284717, y: null}, {x: 0.291300878, y: null}, {x: 0.452495974, y: null}, {x: 0.036617262, y: null}, {x: 0.310410095, y: null}, {x: 0.183041723, y: null}, {x: 0.131538462, y: null}, {x: 0.418300654, y: null}, {x: 0.240700219, y: null}, {x: 0.331983806, y: null}, {x: 0.671366594, y: null}, {x: 0.210191083, y: null}, {x: 0.248730965, y: null}, {x: 0.273449921, y: null}, {x: 0.319639842, y: null}, {x: 0.357723577, y: null}, {x: 0.235572375, y: null}, {x: 0.028384279, y: null}, {x: 0.49232159, y: null}, {x: 0.56680932, y: null}, {x: 0.728173667, y: null}, {x: 0.853629977, y: null}, {x: 0.566576819, y: null}, {x: 0.553406224, y: 144.338492}, {x: 0.558408216, y: null}, {x: 0.577137547, y: null}, {x: 0.595535128, y: null}, {x: 0.52321297, y: null}, {x: 0.453304598, y: null}, {x: 0.285923754, y: null}, {x: 0.139382601, y: null}, {x: 0.488148623, y: null}, {x: 0.189354276, y: null}, {x: 0.283494105, y: null}, {x: 0.069550467, y: null}, {x: 0.115625, y: null}, {x: 0.173913044, y: null}, {x: 0.05707196, y: null}, {x: 0.054794521, y: null}, {x: 0.047890536, y: null}, {x: 0.0, y: null}, {x: 0.038501561, y: null}, {x: 0.3282881, y: null}, {x: 0.372767857, y: null}, {x: 0.364224138, y: null}, {x: 0.03909465, y: null}, {x: 0.250643777, y: null}, {x: 0.137000519, y: null}, {x: 0.107705407, y: null}, {x: 0.242424242, y: null}, {x: 0.20891905, y: null}, {x: 0.004942339, y: null}, {x: 0.242105263, y: null}, {x: 0.008240141, y: null}, {x: 0.073412698, y: null}, {x: 0.128055879, y: null}, {x: 0.010791367, y: null}, {x: 0.374384237, y: null}, {x: 0.055157593, y: null}, {x: 0.078301261, y: null}, {x: 0.081294964, y: null}, {x: 0.006237006, y: null}, {x: 0.123500353, y: null}, {x: 0.126582279, y: null}, {x: 0.059669686, y: null}, {x: 0.0, y: null}, {x: 0.208034433, y: null}, {x: 0.126498801, y: null}, {x: 0.065919862, y: null}, {x: 0.12458138, y: null}, {x: 0.272670808, y: null}, {x: 0.142638037, y: null}, {x: 0.166266218, y: null}, {x: 0.0, y: null}, {x: 0.24361949, y: null}, {x: 0.276685393, y: null}, {x: 0.125834128, y: null}, {x: 0.226351351, y: null}, {x: 0.030082988, y: null}, {x: 0.21174206, y: null}, {x: 0.064173592, y: null}, {x: 0.089564174, y: null}, {x: 0.226962457, y: null}, {x: 0.237799043, y: null}, {x: 0.225, y: null}, {x: 0.21668533, y: null}, {x: 0.506993007, y: null}, {x: 0.575586095, y: null}, {x: 0.147880041, y: null}, {x: 0.031620553, y: null}, {x: 0.250886525, y: null}, {x: 0.250726744, y: null}, {x: 0.415909091, y: null}, {x: 0.180678466, y: null}, {x: 0.17312253, y: null}, {x: 0.197667281, y: null}, {x: 0.26823135, y: null}, {x: 0.13174404, y: null}, {x: 0.204637097, y: null}, {x: 0.073013601, y: null}, {x: 0.071913161, y: null}, {x: 0.179347826, y: null}, {x: 0.192756292, y: null}, {x: 0.05982906, y: null}, {x: 0.151818182, y: null}, {x: 0.059722886, y: null}, {x: 0.0, y: null}, {x: 0.225106182, y: null}, {x: 0.102136182, y: null}, {x: 0.205702648, y: null}, {x: 0.031867431, y: null}, {x: 0.124734607, y: null}, {x: 0.123523622, y: null}, {x: 0.0075, y: null}, {x: 0.073198847, y: null}, {x: 0.109530583, y: null}, {x: 0.025334272, y: null}, {x: 0.093762108, y: null}, {x: 0.148533586, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.034431138, y: null}, {x: 0.147837043, y: null}, {x: 0.087900724, y: null}, {x: 0.139561707, y: null}, {x: 0.081692913, y: null}, {x: 0.077028886, y: null}, {x: 0.097605893, y: null}, {x: 0.118259224, y: null}, {x: 0.0, y: null}, {x: 0.400275103, y: null}, {x: 0.097457627, y: null}, {x: 0.029874214, y: null}, {x: 0.099903007, y: null}, {x: 0.250535332, y: null}, {x: 0.072360617, y: null}, {x: 0.053750738, y: null}, {x: 0.095398429, y: null}, {x: 0.062588905, y: null}, {x: 0.34470377, y: null}, {x: 0.189873418, y: null}, {x: 0.121803812, y: null}, {x: 0.042997543, y: null}, {x: 0.134656489, y: null}, {x: 0.151436031, y: null}, {x: 0.099447514, y: null}, {x: 0.047482014, y: null}, {x: 0.104932735, y: null}, {x: 0.449386503, y: null}, {x: 0.340096618, y: null}, {x: 0.281512605, y: null}, {x: 0.213530655, y: null}, {x: 0.187751813, y: null}, {x: 0.131736527, y: null}, {x: 0.707762557, y: null}, {x: 0.238145416, y: null}, {x: 0.535496957, y: null}, {x: 0.440976934, y: null}, {x: 0.062064156, y: null}, {x: 0.039069767, y: null}, {x: 0.345594525, y: null}, {x: 0.046544429, y: null}, {x: 0.282194849, y: null}, {x: 0.203883495, y: null}, {x: 0.080932203, y: null}, {x: 0.236886633, y: null}, {x: 0.170178282, y: null}, {x: 0.119824341, y: null}, {x: 0.05875576, y: null}, {x: 0.0, y: null}, {x: 0.070175439, y: null}, {x: 0.108490566, y: null}, {x: 0.043960924, y: null}, {x: 0.063049853, y: null}, {x: 0.08925144, y: null}, {x: 0.246666667, y: null}, {x: 0.080424886, y: null}, {x: 0.119806763, y: null}, {x: 0.236170213, y: null}, {x: 0.134193548, y: null}, {x: 0.053747161, y: null}, {x: 0.244140625, y: null}, {x: 0.023822128, y: null}, {x: 0.105835806, y: 0.89}, {x: 0.125886525, y: null}, {x: 0.305578011, y: null}, {x: 0.366630077, y: null}, {x: 0.493297587, y: 0.18}, {x: 0.361190613, y: null}, {x: 0.231748158, y: 0.276}, {x: 0.313868613, y: null}, {x: 0.466990291, y: null}, {x: 0.396423249, y: null}, {x: 0.507042254, y: null}, {x: 0.185768604, y: null}, {x: 0.095192308, y: null}, {x: 0.129746835, y: null}, {x: 0.143474503, y: null}, {x: 0.011997177, y: null}, {x: 0.049760766, y: null}, {x: 0.147965475, y: null}, {x: 0.067164179, y: null}, {x: 0.121348315, y: null}, {x: 0.164165103, y: null}, {x: 0.154113557, y: null}, {x: 0.219512195, y: null}, {x: 0.182285714, y: null}, {x: 0.223905724, y: null}, {x: 0.110701107, y: null}, {x: 0.108206246, y: null}, {x: 0.260482846, y: null}, {x: 0.202933985, y: null}, {x: 0.13836478, y: null}, {x: 0.056629093, y: null}, {x: 0.170833333, y: null}, {x: 0.701098901, y: 176.54059600000002}, {x: 0.514604151, y: null}, {x: 0.267631774, y: null}, {x: 0.440956652, y: null}, {x: 0.259455371, y: null}, {x: 0.475813544, y: null}, {x: 0.484114977, y: null}, {x: 0.498961578, y: null}, {x: 0.575031526, y: null}, {x: 0.844114528, y: null}, {x: 0.678059537, y: null}, {x: 0.697875688, y: null}, {x: 0.483846732, y: null}, {x: 0.156104069, y: null}, {x: 0.39964943, y: null}, {x: 0.653104925, y: null}, {x: 0.223904383, y: null}, {x: 0.534025375, y: null}, {x: 0.449973531, y: null}, {x: 0.241695304, y: null}, {x: 0.430475087, y: null}, {x: 0.379116466, y: null}, {x: 0.531739812, y: null}, {x: 0.430260047, y: null}, {x: 0.59377494, y: null}, {x: 0.702757229, y: null}, {x: 0.842821782, y: 6.126247}, {x: 0.587531172, y: null}, {x: 0.694528875, y: null}, {x: 0.583429229, y: null}, {x: 0.223314607, y: null}, {x: 0.663216011, y: null}, {x: 0.699239544, y: null}, {x: 0.600928074, y: null}, {x: 0.453580902, y: null}, {x: 0.642537056, y: null}, {x: 0.30043384, y: null}, {x: 0.442571128, y: null}, {x: 0.385982231, y: null}, {x: 0.361809045, y: null}, {x: 0.599766628, y: null}, {x: 0.564878496, y: null}, {x: 0.37716263, y: null}, {x: 0.437322745, y: null}, {x: 0.403703704, y: 38.4927}, {x: 0.460820896, y: null}, {x: 0.408071749, y: null}, {x: 0.542607429, y: null}, {x: 0.191560244, y: null}, {x: 0.72091131, y: null}, {x: 0.446225785, y: null}, {x: 0.326041667, y: null}, {x: 0.45392022, y: null}, {x: 0.431778929, y: null}, {x: 0.181268012, y: null}, {x: 0.246018671, y: null}, {x: 0.323624596, y: null}, {x: 0.395196507, y: null}, {x: 0.369465649, y: null}, {x: 0.039898132, y: null}, {x: 0.01253012, y: null}, {x: 0.110054348, y: null}, {x: 0.351037344, y: null}, {x: 0.294650561, y: null}, {x: 0.141031493, y: null}, {x: 0.030372058, y: null}, {x: 0.151339609, y: null}, {x: 0.571428571, y: null}, {x: 0.191186441, y: null}, {x: 0.109243698, y: null}, {x: 0.519886364, y: null}, {x: 0.107263514, y: null}, {x: 0.422110553, y: null}, {x: 0.389270977, y: null}, {x: 0.443122677, y: null}, {x: 0.1172771, y: null}, {x: 0.472616633, y: null}, {x: 0.327967807, y: null}, {x: 0.279646018, y: null}, {x: 0.272084806, y: null}, {x: 0.183970856, y: null}, {x: 0.557692308, y: null}, {x: 0.142857143, y: null}, {x: 0.102181401, y: null}, {x: 0.261257607, y: null}, {x: 0.114620939, y: null}, {x: 0.079096045, y: null}, {x: 0.075413223, y: null}, {x: 0.025963808, y: null}, {x: 0.0, y: null}, {x: 0.108818011, y: null}, {x: 0.247819767, y: null}, {x: 0.170141785, y: null}, {x: 0.042908224, y: null}, {x: 0.260135135, y: null}, {x: 0.213114754, y: null}, {x: 0.087719298, y: 57.7297}, {x: 0.146325879, y: null}, {x: 0.06626506, y: null}, {x: 0.143484627, y: null}, {x: 0.210211408, y: null}, {x: 0.321296296, y: null}, {x: 0.284165699, y: null}, {x: 0.217503218, y: null}, {x: 0.037260826, y: null}, {x: 0.081818182, y: null}, {x: 0.036929057, y: null}, {x: 0.103345725, y: null}, {x: 0.0659945, y: null}, {x: 0.00551655, y: null}, {x: 0.00818148, y: null}, {x: 0.0, y: null}, {x: 0.121928166, y: null}, {x: 0.020486556, y: null}, {x: 0.09212963, y: null}, {x: 0.099863201, y: null}, {x: 0.002478315, y: null}, {x: 0.231884058, y: null}, {x: 0.203328509, y: null}, {x: 0.124282983, y: null}, {x: 0.072265625, y: null}, {x: 0.131716595, y: null}, {x: 0.032950574, y: null}, {x: 0.020357143, y: null}, {x: 0.036649215, y: null}, {x: 0.146734521, y: null}, {x: 0.119365609, y: null}, {x: 0.048291233, y: null}, {x: 0.07898773, y: null}, {x: 0.156801662, y: null}, {x: 0.054852321, y: null}, {x: 0.043158411, y: null}, {x: 0.044487427, y: null}, {x: 0.0, y: null}, {x: 0.455776173, y: null}, {x: 0.767064846, y: 26.852272}, {x: 0.769824561, y: 17.432869}, {x: 0.377962085, y: null}, {x: 0.455019557, y: null}, {x: 0.481481482, y: 2.114101}, {x: 0.082802548, y: null}, {x: 0.291005291, y: 27.576203}, {x: 0.081259151, y: null}, {x: 0.018018018, y: null}, {x: 0.067116927, y: null}, {x: 0.106221548, y: null}, {x: 0.06993007, y: null}, {x: 0.049368542, y: null}, {x: 0.293002916, y: null}, {x: 0.022937063, y: null}, {x: 0.134020619, y: null}, {x: 0.370629371, y: null}, {x: 0.099415205, y: null}, {x: 0.027114267, y: null}, {x: 0.083705357, y: null}, {x: 0.171150972, y: null}, {x: 0.0625, y: null}, {x: 0.344385833, y: null}, {x: 0.274220963, y: null}, {x: 0.432973316, y: 9.574524}, {x: 0.280686318, y: null}, {x: 0.575692042, y: null}, {x: 0.477936607, y: 17.33541}, {x: 0.101402373, y: null}, {x: 0.225555556, y: null}, {x: 0.735171262, y: null}, {x: 0.276973377, y: null}, {x: 0.222515391, y: null}, {x: 0.097749196, y: 19.605847}, {x: 0.193612775, y: null}, {x: 0.242599743, y: 0.363247}, {x: 0.231019523, y: null}, {x: 0.09132948, y: 51.7282}, {x: 0.336648814, y: null}, {x: 0.073515551, y: null}, {x: 0.443119266, y: null}, {x: 0.064880568, y: null}, {x: 0.171759747, y: null}, {x: 0.152, y: null}, {x: 0.130620985, y: null}, {x: 0.073843416, y: null}, {x: 0.040244524, y: null}, {x: 0.052049747, y: null}, {x: 0.062203791, y: null}, {x: 0.074652778, y: null}, {x: 0.206225681, y: null}, {x: 0.137598598, y: null}, {x: 0.034639927, y: null}, {x: 0.064876957, y: null}, {x: 0.027135678, y: null}, {x: 0.080921053, y: null}, {x: 0.01179941, y: null}, {x: 0.083467095, y: null}, {x: 0.09602649, y: null}, {x: 0.089690722, y: null}, {x: 0.144578313, y: null}, {x: 0.179343475, y: null}, {x: 0.154447115, y: null}, {x: 0.193387159, y: null}, {x: 0.058727569, y: null}, {x: 0.253367543, y: null}, {x: 0.110105581, y: null}, {x: 0.238904627, y: null}, {x: 0.396039604, y: null}, {x: 0.313856427, y: null}, {x: 0.050810811, y: null}, {x: 0.078746177, y: null}, {x: 0.217809868, y: null}, {x: 0.18401487, y: null}, {x: 0.050649351, y: null}, {x: 0.153535354, y: null}, {x: 0.094250707, y: null}, {x: 0.115471358, y: null}, {x: 0.042207792, y: null}, {x: 0.076076555, y: null}, {x: 0.049311927, y: null}, {x: 0.042461005, y: null}, {x: 0.260626398, y: null}, {x: 0.0, y: null}, {x: 0.114527629, y: null}, {x: 0.425222312, y: null}, {x: 0.058897243, y: null}, {x: 0.071672355, y: null}, {x: 0.029213483, y: null}, {x: 0.133333333, y: null}, {x: 0.057350565, y: null}, {x: 0.125, y: null}, {x: 0.061702128, y: null}, {x: 0.098441345, y: null}, {x: 0.220138203, y: null}, {x: 0.104651163, y: null}, {x: 0.048260382, y: null}, {x: 0.030064913, y: null}, {x: 0.172235023, y: null}, {x: 0.060266293, y: null}, {x: 0.0, y: null}, {x: 0.284313726, y: null}, {x: 0.188615123, y: null}, {x: 0.202603743, y: null}, {x: 0.293163384, y: null}, {x: 0.168717048, y: null}, {x: 0.271302645, y: null}, {x: 0.203170875, y: null}, {x: 0.265473527, y: null}, {x: 0.136422977, y: null}, {x: 0.196226415, y: null}, {x: 0.265129683, y: null}, {x: 0.271834061, y: null}, {x: 0.216467464, y: null}, {x: 0.305578011, y: null}, {x: 0.161137441, y: null}, {x: 0.43122102, y: null}, {x: 0.384773663, y: null}, {x: 0.242376857, y: null}, {x: 0.546369518, y: null}, {x: 0.25950783, y: null}, {x: 0.139261745, y: null}, {x: 0.211753731, y: null}, {x: 0.204545455, y: 0.751364}, {x: 0.575102881, y: null}, {x: 0.202949438, y: null}, {x: 0.358823529, y: null}, {x: 0.139931741, y: null}, {x: 0.210769231, y: 0.6538919999999999}, {x: 0.269709544, y: null}, {x: 0.094867807, y: null}, {x: 0.242771084, y: null}, {x: 0.516574586, y: null}, {x: 0.185160867, y: null}, {x: 0.305657605, y: null}, {x: 0.096399535, y: null}, {x: 0.132275132, y: null}, {x: 0.210355987, y: null}, {x: 0.130882353, y: null}, {x: 0.277289837, y: null}, {x: 0.444444444, y: null}, {x: 0.145325203, y: null}, {x: 0.133266533, y: null}, {x: 0.103599649, y: null}, {x: 0.09502924, y: null}, {x: 0.527831094, y: null}, {x: 0.28021555, y: null}, {x: 0.320848939, y: null}, {x: 0.353012048, y: null}, {x: 0.452502554, y: null}, {x: 0.261658031, y: null}, {x: 0.463980464, y: null}, {x: 0.487743026, y: null}, {x: 0.317254174, y: null}, {x: 0.552440291, y: null}, {x: 0.390855457, y: null}, {x: 0.188787185, y: null}, {x: 0.213510253, y: null}, {x: 0.131593559, y: null}, {x: 0.122399021, y: null}, {x: 0.096134787, y: null}, {x: 0.336466165, y: null}, {x: 0.267213115, y: null}, {x: 0.575104728, y: null}, {x: 0.536531365, y: null}, {x: 0.28406633, y: null}, {x: 0.304469274, y: null}, {x: 0.588888889, y: 19.621000000000002}, {x: 0.522004062, y: null}, {x: 0.591706539, y: null}, {x: 0.200867052, y: null}, {x: 0.520090978, y: null}, {x: 0.296116505, y: null}, {x: 0.332026144, y: null}, {x: 0.44895288, y: null}, {x: 0.32325414, y: null}, {x: 0.566037736, y: null}, {x: 0.57354618, y: null}, {x: 0.371962617, y: null}, {x: 0.490015361, y: null}, {x: 0.551122195, y: null}, {x: 0.069345942, y: null}, {x: 0.269148175, y: null}, {x: 0.576488706, y: null}, {x: 0.615754083, y: null}, {x: 0.387298748, y: null}, {x: 0.077970297, y: null}, {x: 0.764534884, y: null}, {x: 0.828220859, y: null}, {x: 0.818820225, y: null}, {x: 0.746081505, y: null}, {x: 0.793846154, y: 37.631}, {x: 0.830141549, y: null}, {x: 0.856720827, y: null}, {x: 0.802768166, y: null}, {x: 0.71741573, y: null}, {x: 0.668956044, y: null}, {x: 0.743458839, y: 739.527068}, {x: 0.403005465, y: null}, {x: 0.408921933, y: null}, {x: 0.84516129, y: null}, {x: 0.932765152, y: null}, {x: 0.47826087, y: null}, {x: 0.626996805, y: null}, {x: 0.643668122, y: null}, {x: 0.527979275, y: null}, {x: 0.328125, y: null}, {x: 0.713407134, y: null}, {x: 0.429123001, y: null}, {x: 0.492917847, y: null}, {x: 0.45534407, y: null}, {x: 0.366808109, y: null}, {x: 0.246478873, y: null}, {x: 0.151224707, y: null}, {x: 0.227979275, y: null}, {x: 0.753797468, y: null}, {x: 0.525612472, y: null}, {x: 0.629826898, y: null}, {x: 0.478316327, y: null}, {x: 0.552777778, y: null}, {x: 0.303106633, y: null}, {x: 0.152724482, y: null}, {x: 0.2092257, y: null}, {x: 0.272527473, y: null}, {x: 0.328458257, y: null}, {x: 0.509739067, y: null}, {x: 0.093291405, y: null}, {x: 0.068743287, y: null}, {x: 0.171389081, y: null}, {x: 0.250231696, y: null}, {x: 0.09556314, y: null}, {x: 0.253754941, y: null}, {x: 0.626960193, y: null}, {x: 0.150627615, y: null}, {x: 0.135106383, y: null}, {x: 0.422184007, y: null}, {x: 0.722543353, y: null}, {x: 0.625109745, y: null}, {x: 0.810502283, y: null}, {x: 0.188405797, y: null}, {x: 0.525821596, y: null}, {x: 0.864829396, y: null}, {x: 0.648395722, y: null}, {x: 0.590804598, y: null}, {x: 0.59139785, y: null}, {x: 0.629148629, y: null}, {x: 0.887456038, y: 27.040660999999997}, {x: 0.830671989, y: 81.680767}, {x: 0.607107601, y: null}, {x: 0.568047337, y: null}, {x: 0.760493827, y: null}, {x: 0.758784426, y: 198.331469}, {x: 0.744067797, y: null}, {x: 0.775330397, y: null}, {x: 0.282229965, y: null}, {x: 0.401709402, y: null}, {x: 0.308243728, y: null}, {x: 0.188108108, y: null}, {x: 0.550344828, y: null}, {x: 0.518703242, y: null}, {x: 0.595276873, y: 7.279}, {x: 0.657028112, y: null}, {x: 0.904255319, y: null}, {x: 0.494623656, y: null}, {x: 0.55884025, y: null}, {x: 0.62118019, y: null}, {x: 0.758812616, y: null}, {x: 0.571428571, y: null}, {x: 0.013079667, y: null}, {x: 0.096311475, y: null}, {x: 0.161959654, y: null}, {x: 0.414634146, y: null}, {x: 0.181139122, y: null}, {x: 0.115853659, y: null}, {x: 0.149874055, y: null}, {x: 0.006256517, y: null}, {x: 0.319655857, y: null}, {x: 0.30418251, y: null}, {x: 0.231316726, y: null}, {x: 0.182841069, y: null}, {x: 0.61958457, y: null}, {x: 0.599858857, y: null}, {x: 0.250772082, y: null}, {x: 0.471014493, y: null}, {x: 0.286542923, y: null}, {x: 0.159032613, y: null}, {x: 0.124767225, y: null}, {x: 0.338235294, y: null}, {x: 0.4717477, y: null}, {x: 0.24742268, y: null}, {x: 0.372901679, y: null}, {x: 0.269512195, y: null}, {x: 0.378735233, y: null}, {x: 0.124608968, y: null}, {x: 0.270440252, y: null}, {x: 0.293838863, y: null}, {x: 0.27100271, y: null}, {x: 0.186179326, y: null}, {x: 0.25160188, y: null}, {x: 0.065934066, y: null}, {x: 0.212643678, y: null}, {x: 0.130984043, y: null}, {x: 0.143646409, y: null}, {x: 0.132661183, y: null}, {x: 0.405769231, y: null}, {x: 0.477355073, y: null}, {x: 0.133263379, y: null}, {x: 0.173192771, y: null}, {x: 0.15261959, y: 1.005625}, {x: 0.039344262, y: null}, {x: 0.447310243, y: null}, {x: 0.24972973, y: null}, {x: 0.540861813, y: null}, {x: 0.38902148, y: 21.590654999999998}, {x: 0.551764706, y: 2.36377}, {x: 0.240875912, y: null}, {x: 0.590372389, y: 69.454067}, {x: 0.582191781, y: null}, {x: 0.156033287, y: null}, {x: 0.238568589, y: null}, {x: 0.425517702, y: null}, {x: 0.518569464, y: null}, {x: 0.243243243, y: null}, {x: 0.126702997, y: null}, {x: 0.283415842, y: null}, {x: 0.084016393, y: 4.023005}, {x: 0.058216654, y: null}, {x: 0.742090125, y: 15.273601}, {x: 0.503474904, y: null}, {x: 0.130693069, y: null}, {x: 0.463446475, y: null}, {x: 0.213302752, y: null}, {x: 0.408510638, y: 17.667698}, {x: 0.080453842, y: 130.09780700000002}, {x: 0.443373494, y: null}, {x: 0.172034564, y: null}, {x: 0.329143755, y: null}, {x: 0.222767419, y: null}, {x: 0.16568915, y: null}, {x: 0.233438486, y: null}, {x: 0.429588608, y: null}, {x: 0.152290076, y: 98.279335}, {x: 0.615189873, y: 0.465397}, {x: 0.0, y: null}, {x: 0.391818182, y: null}, {x: 0.343976778, y: null}, {x: 0.182981928, y: null}, {x: 0.182816538, y: null}, {x: 0.772769953, y: null}, {x: 0.612454213, y: null}, {x: 0.769387755, y: null}, {x: 0.925742574, y: null}, {x: 0.610204082, y: null}, {x: 0.81275441, y: 1.850684}, {x: 0.344902386, y: null}, {x: 0.870431894, y: null}, {x: 0.921259843, y: 211.675397}, {x: 0.581546459, y: null}, {x: 0.808118081, y: null}, {x: 0.67816092, y: null}, {x: 0.554759468, y: null}, {x: 0.107055961, y: null}, {x: 0.256445048, y: null}, {x: 0.176374077, y: 106.444359}, {x: 0.195470799, y: 2.454447}, {x: 0.064238411, y: null}, {x: 0.817941953, y: null}, {x: 0.805376344, y: null}, {x: 0.49871134, y: null}, {x: 0.133802817, y: null}, {x: 0.579635684, y: null}, {x: 0.077654517, y: null}, {x: 0.406214039, y: null}, {x: 0.207774799, y: null}, {x: 0.208432023, y: null}, {x: 0.186495177, y: null}, {x: 0.227573751, y: null}, {x: 0.404160476, y: 617.717181}, {x: 0.51648773, y: 0.620762}, {x: 0.614415675, y: null}, {x: 0.392712551, y: null}, {x: 0.392907801, y: null}, {x: 0.191472245, y: null}, {x: 0.388538682, y: null}, {x: 0.628257888, y: null}, {x: 0.291610284, y: null}, {x: 0.354231975, y: null}, {x: 0.363251482, y: null}, {x: 0.466850829, y: null}, {x: 0.292708888, y: null}, {x: 0.616052061, y: null}, {x: 0.43753015, y: null}, {x: 0.719957082, y: null}, {x: 0.239208633, y: null}, {x: 0.28988764, y: null}, {x: 0.140200286, y: null}, {x: 0.113428944, y: null}, {x: 0.006214689, y: null}, {x: 0.071482318, y: null}, {x: 0.143026005, y: null}, {x: 0.474967062, y: null}, {x: 0.123188406, y: null}, {x: 0.114958449, y: null}, {x: 0.186068702, y: null}, {x: 0.060692271, y: null}, {x: 0.017900732, y: null}, {x: 0.142712551, y: null}, {x: 0.622906292, y: null}, {x: 0.536585366, y: null}, {x: 0.135753176, y: null}, {x: 0.042706965, y: null}, {x: 0.188905547, y: null}, {x: 0.117304493, y: null}, {x: 0.047355474, y: null}, {x: 0.346038114, y: null}, {x: 0.67498582, y: null}, {x: 0.401002506, y: null}, {x: 0.203161593, y: null}, {x: 0.200686106, y: null}, {x: 0.524515393, y: null}, {x: 0.407225965, y: null}, {x: 0.502504174, y: null}, {x: 0.109704641, y: null}, {x: 0.197188309, y: null}, {x: 0.050936768, y: null}, {x: 0.192681532, y: null}, {x: 0.024029575, y: null}, {x: 0.377916019, y: null}, {x: 0.317327766, y: null}, {x: 0.104707435, y: null}, {x: 0.05929063, y: null}, {x: 0.0, y: null}, {x: 0.195714286, y: null}, {x: 0.159755269, y: null}, {x: 0.094654788, y: null}, {x: 0.126545455, y: null}, {x: 0.166768479, y: null}, {x: 0.269230769, y: null}, {x: 0.16741501, y: null}, {x: 0.087077351, y: null}, {x: 0.192893401, y: null}, {x: 0.099638616, y: null}, {x: 0.006319115, y: null}, {x: 0.091381872, y: null}, {x: 0.121767241, y: null}, {x: 0.201141227, y: null}, {x: 0.047643183, y: null}, {x: 0.234803922, y: null}, {x: 0.10952381, y: null}, {x: 0.24623803, y: null}, {x: 0.195972115, y: null}, {x: 0.178913738, y: null}, {x: 0.08, y: null}, {x: 0.168395062, y: null}, {x: 0.073867163, y: null}, {x: 0.438853131, y: null}, {x: 0.142307692, y: 385.927118}, {x: 0.172337278, y: 2.816}, {x: 0.150650441, y: null}, {x: 0.086673889, y: null}, {x: 0.054512139, y: null}, {x: 0.007142857, y: null}, {x: 0.218031279, y: null}, {x: 0.089412811, y: null}, {x: 0.097799511, y: null}, {x: 0.065399665, y: null}, {x: 0.020733652, y: null}, {x: 0.019163763, y: null}, {x: 0.092819615, y: null}, {x: 0.237449118, y: null}, {x: 0.338966203, y: null}, {x: 0.141304348, y: null}, {x: 0.096727796, y: null}, {x: 0.313445378, y: null}, {x: 0.202038104, y: null}, {x: 0.179930796, y: null}, {x: 0.031832298, y: null}, {x: 0.092133239, y: null}, {x: 0.089820359, y: null}, {x: 0.094003241, y: null}, {x: 0.092709984, y: null}, {x: 0.064261556, y: null}, {x: 0.217230008, y: null}, {x: 0.176865046, y: null}, {x: 0.089154412, y: null}, {x: 0.184771033, y: null}, {x: 0.02188392, y: null}, {x: 0.075613276, y: null}, {x: 0.039819005, y: null}, {x: 0.170632618, y: null}, {x: 0.242459397, y: null}, {x: 0.212140175, y: null}, {x: 0.218994413, y: null}, {x: 0.126482213, y: null}, {x: 0.176139273, y: null}, {x: 0.167036216, y: null}, {x: 0.227786753, y: null}, {x: 0.194784026, y: null}, {x: 0.209767814, y: null}, {x: 0.148795649, y: null}, {x: 0.119930475, y: null}, {x: 0.281481482, y: null}, {x: 0.245859873, y: null}, {x: 0.056631893, y: null}, {x: 0.547680412, y: null}, {x: 0.62985782, y: null}, {x: 0.056737589, y: null}, {x: 0.14129625, y: null}, {x: 0.186666667, y: null}, {x: 0.063291139, y: null}, {x: 0.217636023, y: null}, {x: 0.142926829, y: null}, {x: 0.099309612, y: null}, {x: 0.192756292, y: null}, {x: 0.086353123, y: null}, {x: 0.236290682, y: null}, {x: 0.692188708, y: null}, {x: 0.693947144, y: null}, {x: 0.461373391, y: null}, {x: 0.410230692, y: null}, {x: 0.134615385, y: null}, {x: 0.451674037, y: null}, {x: 0.466422466, y: null}, {x: 0.664900662, y: null}, {x: 0.843210803, y: null}, {x: 0.371597633, y: null}, {x: 0.60106383, y: null}, {x: 0.296181631, y: null}, {x: 0.604166667, y: null}, {x: 0.535080956, y: null}, {x: 0.422025724, y: null}, {x: 0.007656968, y: null}, {x: 0.119390347, y: null}, {x: 0.107080164, y: null}, {x: 0.452788515, y: null}, {x: 0.346938776, y: null}, {x: 0.0, y: null}, {x: 0.114676486, y: null}, {x: 0.124465812, y: null}, {x: 0.162243151, y: null}, {x: 0.203240059, y: null}, {x: 0.149584488, y: null}, {x: 0.194214876, y: null}, {x: 0.165613718, y: null}, {x: 0.224386724, y: null}, {x: 0.308252427, y: null}, {x: 0.131256563, y: null}, {x: 0.226162333, y: null}, {x: 0.0, y: null}, {x: 0.230593607, y: null}, {x: 0.103011094, y: null}, {x: 0.186766275, y: null}, {x: 0.335589942, y: null}, {x: 0.0, y: null}, {x: 0.047265361, y: 0.45}, {x: 0.209090909, y: null}, {x: 0.139902676, y: null}, {x: 0.058823529, y: null}, {x: 0.145431945, y: null}, {x: 0.167484997, y: null}, {x: 0.332688588, y: null}, {x: 0.175675676, y: null}, {x: 0.357366771, y: null}, {x: 0.222222222, y: null}, {x: 0.31292876, y: null}, {x: 0.045454545, y: null}, {x: 0.896153846, y: null}, {x: 0.165371809, y: null}, {x: 0.206546796, y: null}, {x: 0.16856492, y: null}, {x: 0.456357759, y: null}, {x: 0.0, y: null}, {x: 0.344452502, y: null}, {x: 0.105373343, y: null}, {x: 0.32618683, y: null}, {x: 0.317860747, y: null}, {x: 0.239130435, y: null}, {x: 0.190134529, y: null}, {x: 0.334490741, y: null}, {x: 0.187900356, y: null}, {x: 0.214686385, y: 5e-05}, {x: 0.295597484, y: null}, {x: 0.288693743, y: null}, {x: 0.335766423, y: null}, {x: 0.069602273, y: null}, {x: 0.042776999, y: null}, {x: 0.094623656, y: null}, {x: 0.119918699, y: null}, {x: 0.294010889, y: null}, {x: 0.216639209, y: null}, {x: 0.143867925, y: null}, {x: 0.600825878, y: null}, {x: 0.440881764, y: null}, {x: 0.131931166, y: null}, {x: 0.067490494, y: null}, {x: 0.090606262, y: null}, {x: 0.109448819, y: null}, {x: 0.270613108, y: null}, {x: 0.320610687, y: null}, {x: 0.098654709, y: null}, {x: 0.096551724, y: null}, {x: 0.216936251, y: null}, {x: 0.139312977, y: null}, {x: 0.111520737, y: null}, {x: 0.298219585, y: null}, {x: 0.25948718, y: null}, {x: 0.156905278, y: null}, {x: 0.169597277, y: null}, {x: 0.075660243, y: null}, {x: 0.090005233, y: null}, {x: 0.063157895, y: null}, {x: 0.255225523, y: null}, {x: 0.125, y: null}, {x: 0.106425703, y: null}, {x: 0.158339198, y: null}, {x: 0.372469636, y: null}, {x: 0.613154961, y: null}, {x: 0.334821429, y: null}, {x: 0.517326733, y: null}, {x: 0.44867855, y: null}, {x: 0.031698113, y: null}, {x: 0.1796875, y: null}, {x: 0.288334556, y: 2479.88946}, {x: 0.680131004, y: null}, {x: 0.377899045, y: null}, {x: 0.224024328, y: null}, {x: 0.569614069, y: null}, {x: 0.332887701, y: null}, {x: 0.256934307, y: null}, {x: 0.175418994, y: null}, {x: 0.710470086, y: null}, {x: 0.433684211, y: 482.90002}, {x: 0.566246057, y: null}, {x: 0.479349187, y: 67.833}, {x: 0.478670013, y: null}, {x: 0.317446809, y: null}, {x: 0.348593228, y: null}, {x: 0.147346072, y: null}, {x: 0.252354049, y: null}, {x: 0.09593777, y: null}, {x: 0.420918367, y: null}, {x: 0.228438228, y: null}, {x: 0.244226732, y: null}, {x: 0.48549884, y: null}, {x: 0.486111111, y: 55.29}, {x: 0.378483835, y: null}, {x: 0.520729685, y: null}, {x: 0.336483932, y: null}, {x: 0.646521434, y: null}, {x: 0.407643312, y: null}, {x: 0.432835821, y: null}, {x: 0.186453023, y: null}, {x: 0.346908734, y: null}, {x: 0.049135578, y: null}, {x: 0.025723473, y: null}, {x: 0.35114079, y: null}, {x: 0.242244224, y: null}, {x: 0.19873817, y: null}, {x: 0.187434002, y: null}, {x: 0.229894395, y: null}, {x: 0.04886562, y: null}, {x: 0.435246318, y: null}, {x: 0.065433855, y: null}, {x: 0.42882405, y: null}, {x: 0.165986395, y: null}, {x: 0.171401515, y: null}, {x: 0.181990521, y: null}, {x: 0.677419355, y: null}, {x: 0.276346604, y: null}, {x: 0.462096243, y: null}, {x: 0.506582412, y: null}, {x: 0.487410072, y: null}, {x: 0.651711027, y: null}, {x: 0.467996675, y: null}, {x: 0.465584779, y: null}, {x: 0.481886535, y: null}, {x: 0.174825175, y: null}, {x: 0.540901503, y: null}, {x: 0.191395961, y: null}, {x: 0.343832021, y: null}, {x: 0.293144208, y: null}, {x: 0.348008386, y: null}, {x: 0.175074184, y: null}, {x: 0.124301676, y: null}, {x: 0.111923253, y: null}, {x: 0.788161994, y: 199.24}, {x: 0.40459364, y: null}, {x: 0.160842294, y: 654.51638}, {x: 0.091078067, y: null}, {x: 0.335769981, y: null}, {x: 0.265109193, y: null}, {x: 0.0, y: null}, {x: 0.07016129, y: null}, {x: 0.208350223, y: null}, {x: 0.048558897, y: null}, {x: 0.044928523, y: null}, {x: 0.095512083, y: null}, {x: 0.1201373, y: null}, {x: 0.137418756, y: null}, {x: 0.013313609, y: null}, {x: 0.072332731, y: null}, {x: 0.186107965, y: null}, {x: 0.185592619, y: null}, {x: 0.311759344, y: null}, {x: 0.163699024, y: null}, {x: 0.200447094, y: null}, {x: 0.053875756, y: null}, {x: 0.214727723, y: null}, {x: 0.262099777, y: null}, {x: 0.077572965, y: null}, {x: 0.215111478, y: null}, {x: 0.115982242, y: null}, {x: 0.138235294, y: null}, {x: 0.016422548, y: null}, {x: 0.155236908, y: null}, {x: 0.292901716, y: null}, {x: 0.048076923, y: null}, {x: 0.048710602, y: null}, {x: 0.066005472, y: null}, {x: 0.041421947, y: null}, {x: 0.218197499, y: null}, {x: 0.103708791, y: null}, {x: 0.082482993, y: null}, {x: 0.060178655, y: null}, {x: 0.08688172, y: null}, {x: 0.327169275, y: null}, {x: 0.008540925, y: null}, {x: 0.034736842, y: null}, {x: 0.079427083, y: null}, {x: 0.141935484, y: null}, {x: 0.017988553, y: null}, {x: 0.070175439, y: null}, {x: 0.050531915, y: null}, {x: 0.014973958, y: null}, {x: 0.070038911, y: null}, {x: 0.051712559, y: null}, {x: 0.071076707, y: null}, {x: 0.113802817, y: null}, {x: 0.054874489, y: null}, {x: 0.011641444, y: null}, {x: 0.036539896, y: null}, {x: 0.171572146, y: null}, {x: 0.017011834, y: null}, {x: 0.048372093, y: null}, {x: 0.01187447, y: null}, {x: 0.089381207, y: null}, {x: 0.082481254, y: null}, {x: 0.06993865, y: null}, {x: 0.214519294, y: null}, {x: 0.071005917, y: null}, {x: 0.268896321, y: null}, {x: 0.089883112, y: null}, {x: 0.044703596, y: null}, {x: 0.060674157, y: null}, {x: 0.05190678, y: null}, {x: 0.025806452, y: null}, {x: 0.051771117, y: null}, {x: 0.078457447, y: null}, {x: 0.0, y: null}, {x: 0.237670514, y: 396.4304}, {x: 0.135699374, y: null}, {x: 0.039623909, y: null}, {x: 0.564759036, y: null}, {x: 0.176814012, y: null}, {x: 0.0, y: null}, {x: 0.214733542, y: null}, {x: 0.097073519, y: null}, {x: 0.05943331, y: null}, {x: 0.083663086, y: null}, {x: 0.17235637, y: null}, {x: 0.054300817, y: null}, {x: 0.082160945, y: null}, {x: 0.124620061, y: null}, {x: 0.076555024, y: null}, {x: 0.039936102, y: null}, {x: 0.101486749, y: null}, {x: 0.035288012, y: null}, {x: 0.01529052, y: null}, {x: 0.032444959, y: null}, {x: 0.11208893, y: null}, {x: 0.109375, y: null}, {x: 0.147945206, y: null}, {x: 0.037681159, y: null}, {x: 0.124303233, y: null}, {x: 0.256038647, y: null}, {x: 0.0, y: null}, {x: 0.120833333, y: null}, {x: 0.140155729, y: null}, {x: 0.146167558, y: null}, {x: 0.094582975, y: null}, {x: 0.0, y: null}, {x: 0.041934582, y: null}, {x: 0.117152104, y: null}, {x: 0.0, y: null}, {x: 0.043557833, y: null}, {x: 0.0, y: null}, {x: 0.092467851, y: null}, {x: 0.03052422, y: null}, {x: 0.195945946, y: null}, {x: 0.01038961, y: null}, {x: 0.151055409, y: null}, {x: 0.068666667, y: null}, {x: 0.0, y: null}, {x: 0.061793215, y: null}, {x: 0.137690095, y: null}, {x: 0.031413613, y: null}, {x: 0.096164854, y: null}, {x: 0.062413315, y: null}, {x: 0.0, y: null}, {x: 0.083769634, y: null}, {x: 0.305785124, y: null}, {x: 0.36154289, y: null}, {x: 0.017492711, y: null}, {x: 0.023110556, y: null}, {x: 0.299554114, y: null}, {x: 0.225231911, y: null}, {x: 0.566835871, y: null}, {x: 0.113970588, y: null}, {x: 0.449060336, y: null}, {x: 0.443462075, y: null}, {x: 0.36322532, y: null}, {x: 0.150716332, y: null}, {x: 0.033933162, y: null}, {x: 0.174543753, y: null}, {x: 0.163619744, y: null}, {x: 0.315756824, y: null}, {x: 0.103532278, y: null}, {x: 0.236973948, y: null}, {x: 0.146926537, y: null}, {x: 0.093931837, y: null}, {x: 0.112177565, y: null}, {x: 0.058638743, y: null}, {x: 0.122053872, y: null}, {x: 0.136310223, y: null}, {x: 0.034285714, y: null}, {x: 0.073654391, y: null}, {x: 0.066193853, y: null}, {x: 0.128362798, y: null}, {x: 0.177130045, y: null}, {x: 0.085947572, y: null}, {x: 0.34814364, y: null}, {x: 0.155061019, y: null}, {x: 0.285795455, y: null}, {x: 0.250814332, y: null}, {x: 0.085766423, y: null}, {x: 0.105163728, y: null}, {x: 0.035366932, y: null}, {x: 0.084161696, y: null}, {x: 0.015397776, y: null}, {x: 0.286223278, y: null}, {x: 0.0, y: null}, {x: 0.032552827, y: null}, {x: 0.039562924, y: null}, {x: 0.150084317, y: null}, {x: 0.188761593, y: null}, {x: 0.0, y: null}, {x: 0.103028194, y: null}, {x: 0.320325203, y: null}, {x: 0.069166667, y: null}, {x: 0.042932629, y: null}, {x: 0.042553191, y: null}, {x: 0.096153846, y: null}, {x: 0.184210526, y: null}, {x: 0.124748491, y: null}, {x: 0.168241966, y: null}, {x: 0.037848606, y: null}, {x: 0.011158798, y: null}, {x: 0.074758135, y: null}, {x: 0.109271523, y: null}, {x: 0.021060276, y: null}, {x: 0.280726257, y: null}, {x: 0.098263027, y: null}, {x: 0.044251627, y: null}, {x: 0.065446478, y: null}, {x: 0.158808933, y: null}, {x: 0.159280668, y: null}, {x: 0.189856066, y: null}, {x: 0.098351336, y: null}, {x: 0.347411444, y: null}, {x: 0.136861314, y: null}, {x: 0.04068078, y: null}, {x: 0.072327044, y: null}, {x: 0.084288604, y: null}, {x: 0.042704626, y: null}, {x: 0.024280911, y: null}, {x: 0.035844916, y: null}, {x: 0.193867458, y: null}, {x: 0.017760058, y: null}, {x: 0.068499759, y: null}, {x: 0.205967276, y: null}, {x: 0.141923436, y: null}, {x: 0.016100179, y: null}, {x: 0.088701685, y: null}, {x: 0.01684002, y: null}, {x: 0.038173142, y: null}, {x: 0.035057717, y: null}, {x: 0.063985375, y: null}, {x: 0.071885585, y: null}, {x: 0.028510335, y: null}, {x: 0.055236729, y: null}, {x: 0.265200518, y: null}, {x: 0.13353566, y: null}, {x: 0.046861565, y: null}, {x: 0.0, y: null}, {x: 0.023393984, y: null}, {x: 0.049939099, y: null}, {x: 0.106945298, y: null}, {x: 0.083561644, y: null}, {x: 0.112337406, y: null}, {x: 0.139705882, y: null}, {x: 0.252894859, y: null}, {x: 0.164410058, y: null}, {x: 0.012004175, y: null}, {x: 0.171943712, y: null}, {x: 0.132789318, y: null}, {x: 0.143104443, y: null}, {x: 0.0, y: null}, {x: 0.157161515, y: null}, {x: 0.094700261, y: null}, {x: 0.241590214, y: null}, {x: 0.286516854, y: null}, {x: 0.169590643, y: null}, {x: 0.004437273, y: null}, {x: 0.1014772, y: null}, {x: 0.188346884, y: null}, {x: 0.061985472, y: null}, {x: 0.059380379, y: null}, {x: 0.34973262, y: null}, {x: 0.13239645, y: null}, {x: 0.144636015, y: null}, {x: 0.249277457, y: null}, {x: 0.165124555, y: null}, {x: 0.159560724, y: null}, {x: 0.039032006, y: null}, {x: 0.072839506, y: null}, {x: 0.217518248, y: null}, {x: 0.030758226, y: null}, {x: 0.073813708, y: null}, {x: 0.120250686, y: null}, {x: 0.272456576, y: null}, {x: 0.211159211, y: null}, {x: 0.133167907, y: null}, {x: 0.218879056, y: null}, {x: 0.296296296, y: null}, {x: 0.059376837, y: null}, {x: 0.047474133, y: null}, {x: 0.176684882, y: null}, {x: 0.124452235, y: null}, {x: 0.069010417, y: null}, {x: 0.036553525, y: null}, {x: 0.086799277, y: null}, {x: 0.111235955, y: null}, {x: 0.105882353, y: null}, {x: 0.037931034, y: null}, {x: 0.266666667, y: null}, {x: 0.0978957, y: null}, {x: 0.019764706, y: null}, {x: 0.04842615, y: null}, {x: 0.100762527, y: null}, {x: 0.060553633, y: null}, {x: 0.0, y: null}, {x: 0.077837838, y: null}, {x: 0.169364882, y: null}, {x: 0.072586588, y: null}, {x: 0.067017083, y: null}, {x: 0.11722488, y: null}, {x: 0.022646851, y: null}, {x: 0.02853067, y: null}, {x: 0.058122206, y: null}, {x: 0.3089701, y: null}, {x: 0.024883359, y: null}, {x: 0.10755814, y: null}, {x: 0.101822079, y: null}, {x: 0.314445331, y: null}, {x: 0.084803256, y: null}, {x: 0.195767196, y: null}, {x: 0.12605042, y: null}, {x: 0.097028502, y: null}, {x: 0.099518459, y: null}, {x: 0.169680111, y: null}, {x: 0.179425837, y: null}, {x: 0.065920398, y: null}, {x: 0.06924254, y: null}, {x: 0.05941704, y: null}, {x: 0.073232323, y: null}, {x: 0.078976035, y: null}, {x: 0.199346405, y: null}, {x: 0.169164882, y: null}, {x: 0.088582677, y: null}, {x: 0.072837633, y: null}, {x: 0.110384895, y: null}, {x: 0.154066986, y: null}, {x: 0.215460526, y: null}, {x: 0.013986014, y: null}, {x: 0.012393493, y: null}, {x: 0.135429262, y: null}, {x: 0.039334342, y: null}, {x: 0.098265896, y: null}, {x: 0.04856787, y: null}, {x: 0.0, y: null}, {x: 0.050579557, y: null}, {x: 0.20630861, y: null}, {x: 0.150159744, y: null}, {x: 0.0, y: null}, {x: 0.035573123, y: null}, {x: 0.084383562, y: null}, {x: 0.213011543, y: null}, {x: 0.196338384, y: null}, {x: 0.052927928, y: null}, {x: 0.235344828, y: null}, {x: 0.180887372, y: null}, {x: 0.028873239, y: null}, {x: 0.029678483, y: null}, {x: 0.188034188, y: null}, {x: 0.043365696, y: null}, {x: 0.125471972, y: null}, {x: 0.255681818, y: null}, {x: 0.205063291, y: null}, {x: 0.04587156, y: null}, {x: 0.21971831, y: null}, {x: 0.012488849, y: null}, {x: 0.152046784, y: null}, {x: 0.039962388, y: null}, {x: 0.248784441, y: null}, {x: 0.067865904, y: null}, {x: 0.086419753, y: null}, {x: 0.098591549, y: null}, {x: 0.11284869, y: null}, {x: 0.177944862, y: null}, {x: 0.014126394, y: null}, {x: 0.051237766, y: null}, {x: 0.066489362, y: null}, {x: 0.289877301, y: null}, {x: 0.027602524, y: null}, {x: 0.0, y: null}, {x: 0.165260197, y: null}, {x: 0.156378601, y: null}, {x: 0.056112224, y: null}, {x: 0.071163825, y: null}, {x: 0.0, y: null}, {x: 0.044663573, y: null}, {x: 0.012202954, y: null}, {x: 0.050034746, y: null}, {x: 0.010972933, y: null}, {x: 0.282968854, y: null}, {x: 0.214654283, y: null}, {x: 0.009409752, y: null}, {x: 0.422590068, y: null}, {x: 0.200450451, y: null}, {x: 0.062365591, y: null}, {x: 0.032436709, y: null}, {x: 0.037037037, y: null}, {x: 0.118990385, y: null}, {x: 0.092137592, y: null}, {x: 0.057080132, y: null}, {x: 0.050874404, y: null}, {x: 0.046431642, y: null}, {x: 0.410755149, y: null}, {x: 0.073604061, y: null}, {x: 0.257575758, y: null}, {x: 0.135167464, y: null}, {x: 0.26074896, y: null}, {x: 0.130530974, y: null}, {x: 0.549778761, y: null}, {x: 0.100609756, y: null}, {x: 0.345813479, y: null}, {x: 0.109311741, y: null}, {x: 0.07133758, y: null}, {x: 0.426791277, y: null}, {x: 0.31678487, y: null}, {x: 0.20610687, y: null}, {x: 0.233018868, y: null}, {x: 0.085732984, y: null}, {x: 0.125, y: null}, {x: 0.285276074, y: null}, {x: 0.340678976, y: null}, {x: 0.361038961, y: null}, {x: 0.355791962, y: null}, {x: 0.0, y: null}, {x: 0.058962264, y: 68.97}, {x: 0.079710145, y: null}, {x: 0.279891304, y: null}, {x: 0.154255319, y: null}, {x: 0.259044863, y: null}, {x: 0.0, y: null}, {x: 0.023121387, y: null}, {x: 0.047530289, y: null}, {x: 0.148854962, y: null}, {x: 0.376888218, y: null}, {x: 0.310756972, y: null}, {x: 0.235543018, y: null}, {x: 0.103947368, y: null}, {x: 0.366492147, y: null}, {x: 0.131386861, y: null}, {x: 0.016248154, y: null}, {x: 0.03442029, y: null}, {x: 0.022192334, y: null}, {x: 0.249895529, y: null}, {x: 0.10626186, y: null}, {x: 0.057943925, y: null}, {x: 0.232352941, y: null}, {x: 0.222172553, y: null}, {x: 0.390946502, y: null}, {x: 0.030192132, y: null}, {x: 0.430502975, y: null}, {x: 0.288270378, y: null}, {x: 0.096774194, y: null}, {x: 0.395579268, y: null}, {x: 0.476152623, y: null}, {x: 0.051526718, y: null}, {x: 0.152051488, y: null}, {x: 0.09478022, y: null}, {x: 0.499222395, y: null}, {x: 0.355847688, y: null}, {x: 0.517611026, y: null}, {x: 0.492407809, y: null}, {x: 0.229799852, y: null}, {x: 0.233050848, y: null}, {x: 0.581833061, y: null}, {x: 0.353284672, y: null}, {x: 0.310491493, y: null}, {x: 0.422346369, y: null}, {x: 0.457024793, y: null}, {x: 0.298837209, y: null}, {x: 0.096813725, y: null}, {x: 0.198748044, y: null}, {x: 0.351602024, y: null}, {x: 0.457702582, y: null}, {x: 0.417251755, y: null}, {x: 0.140414041, y: null}, {x: 0.224631396, y: null}, {x: 0.275332651, y: null}, {x: 0.422459893, y: null}, {x: 0.279020979, y: null}, {x: 0.0, y: null}, {x: 0.291012839, y: null}, {x: 0.650949574, y: null}, {x: 0.272113943, y: null}, {x: 0.104105572, y: null}, {x: 0.303286385, y: null}, {x: 0.299932751, y: null}, {x: 0.441834452, y: null}, {x: 0.389489954, y: null}, {x: 0.70591614, y: null}, {x: 0.528669725, y: null}, {x: 0.2, y: null}, {x: 0.214854111, y: null}, {x: 0.292115712, y: null}, {x: 0.215087719, y: null}, {x: 0.136595311, y: null}, {x: 0.414210129, y: null}, {x: 0.532400589, y: null}, {x: 0.258293839, y: null}, {x: 0.448903157, y: null}, {x: 0.09164149, y: null}, {x: 0.589052997, y: null}, {x: 0.284609979, y: null}, {x: 0.14197052, y: null}, {x: 0.307692308, y: null}, {x: 0.464686998, y: null}, {x: 0.229411765, y: null}, {x: 0.239242685, y: null}, {x: 0.513846154, y: null}, {x: 0.284114053, y: null}, {x: 0.24434942, y: null}, {x: 0.3388735, y: null}, {x: 0.180787192, y: null}, {x: 0.41037037, y: null}, {x: 0.555045872, y: null}, {x: 0.385957447, y: null}, {x: 0.251644737, y: null}, {x: 0.343949045, y: null}, {x: 0.319240196, y: null}, {x: 0.102721088, y: null}, {x: 0.682885906, y: null}, {x: 0.144089733, y: null}, {x: 0.386214442, y: null}, {x: 0.543369475, y: null}, {x: 0.881203008, y: null}, {x: 0.0, y: null}, {x: 0.295935648, y: null}, {x: 0.373917473, y: null}, {x: 0.138236828, y: null}, {x: 0.502119927, y: null}, {x: 0.12755102, y: null}, {x: 0.30420712, y: null}, {x: 0.133250311, y: null}, {x: 0.203099511, y: null}, {x: 0.086341118, y: null}, {x: 0.090977444, y: null}, {x: 0.538135593, y: null}, {x: 0.095179988, y: null}, {x: 0.219117051, y: null}, {x: 0.225886233, y: null}, {x: 0.08997955, y: null}, {x: 0.029850746, y: null}, {x: 0.098765432, y: null}, {x: 0.117998913, y: null}, {x: 0.095194923, y: null}, {x: 0.205791107, y: null}, {x: 0.127790608, y: null}, {x: 0.040909091, y: null}, {x: 0.202422145, y: null}, {x: 0.038376384, y: null}, {x: 0.194357367, y: null}, {x: 0.360132159, y: null}, {x: 0.150326797, y: null}, {x: 0.162921348, y: null}, {x: 0.136363636, y: null}, {x: 0.0, y: null}, {x: 0.261682243, y: null}, {x: 0.484992101, y: null}, {x: 0.105263158, y: null}, {x: 0.045929019, y: null}, {x: 0.256126482, y: null}, {x: 0.088764045, y: null}, {x: 0.272727273, y: null}, {x: 0.565180824, y: null}, {x: 0.758920801, y: null}, {x: 0.171249018, y: null}, {x: 0.047029703, y: null}, {x: 0.12364946, y: null}, {x: 0.200736648, y: null}, {x: 0.0514198, y: null}, {x: 0.18784972, y: null}, {x: 0.089861751, y: null}, {x: 0.076363636, y: null}, {x: 0.068148148, y: null}, {x: 0.181021898, y: null}, {x: 0.209677419, y: null}, {x: 0.172205438, y: null}, {x: 0.218660969, y: null}, {x: 0.165700083, y: null}, {x: 0.126609442, y: null}, {x: 0.066852368, y: null}, {x: 0.173633441, y: null}, {x: 0.185148515, y: null}, {x: 0.170008718, y: null}, {x: 0.121142857, y: null}, {x: 0.281847134, y: null}, {x: 0.113562622, y: null}, {x: 0.155193993, y: null}, {x: 0.18997107, y: null}, {x: 0.473941368, y: null}, {x: 0.097812098, y: null}, {x: 0.201520913, y: null}, {x: 0.097959184, y: null}, {x: 0.355411955, y: null}, {x: 0.37145749, y: null}, {x: 0.329359165, y: null}, {x: 0.165422886, y: null}, {x: 0.548944338, y: null}, {x: 0.262813522, y: null}, {x: 0.227533461, y: null}, {x: 0.208955224, y: null}, {x: 0.119318182, y: null}, {x: 0.291841884, y: null}, {x: 0.754601227, y: null}, {x: 0.127245509, y: null}, {x: 0.280445969, y: null}, {x: 0.158119658, y: null}, {x: 0.111111111, y: 2.8}, {x: 0.159513133, y: null}, {x: 0.359756098, y: null}, {x: 0.215625, y: null}, {x: 0.12875121, y: null}, {x: 0.082208589, y: null}, {x: 0.425660793, y: null}, {x: 0.233282675, y: null}, {x: 0.087452471, y: null}, {x: 0.067776457, y: null}, {x: 0.311388755, y: null}, {x: 0.434116445, y: null}, {x: 0.432872254, y: null}, {x: 0.11827957, y: null}, {x: 0.180433039, y: null}, {x: 0.069421488, y: null}, {x: 0.175474814, y: null}, {x: 0.351669941, y: null}, {x: 0.450753187, y: null}, {x: 0.241203704, y: null}, {x: 0.259615385, y: null}, {x: 0.0, y: null}, {x: 1.0, y: null}, {x: 0.184190902, y: null}, {x: 0.37899918, y: null}, {x: 0.041082164, y: null}, {x: 0.131004367, y: null}, {x: 0.131100479, y: null}, {x: 0.182320442, y: null}, {x: 0.08910162, y: null}, {x: 0.175876727, y: null}, {x: 0.355685131, y: null}, {x: 0.083606557, y: null}, {x: 0.065263158, y: null}, {x: 0.183634634, y: null}, {x: 0.0, y: null}, {x: 0.269141531, y: null}, {x: 0.249578415, y: null}, {x: 0.19035744, y: null}, {x: 0.240200167, y: null}, {x: 0.071535022, y: null}, {x: 0.0945758, y: null}, {x: 0.399122807, y: null}, {x: 0.385391924, y: null}, {x: 0.666666667, y: null}, {x: 0.072519084, y: null}, {x: 0.346875, y: null}, {x: 0.419450631, y: null}, {x: 0.116094987, y: null}, {x: 0.035558781, y: 1.38}, {x: 0.004302926, y: null}, {x: 0.041910331, y: 3.71}, {x: 0.087529976, y: null}, {x: 0.207612457, y: null}, {x: 0.0653789, y: null}, {x: 0.103906899, y: null}, {x: 0.119777159, y: null}, {x: 0.03666997, y: null}, {x: 0.186423506, y: null}, {x: 0.024564184, y: null}, {x: 0.0, y: null}, {x: 0.099805574, y: null}, {x: 0.153669725, y: null}, {x: 0.038123167, y: null}, {x: 0.193960511, y: null}, {x: 0.083261058, y: null}, {x: 0.102013423, y: null}, {x: 0.180658874, y: null}, {x: 0.093772894, y: null}, {x: 0.0, y: null}, {x: 0.153473344, y: null}, {x: 0.152453271, y: null}, {x: 0.1544, y: null}, {x: 0.184054283, y: null}, {x: 0.682846371, y: null}, {x: 0.304635762, y: null}, {x: 0.210261569, y: null}, {x: 0.128410915, y: 1.975}, {x: 0.137285491, y: null}, {x: 0.070357555, y: null}, {x: 0.120289107, y: null}, {x: 0.01174743, y: 45.306}, {x: 0.134897361, y: null}, {x: 0.146017699, y: null}, {x: 0.026455026, y: null}, {x: 0.028528529, y: null}, {x: 0.087824351, y: null}, {x: 0.12605042, y: null}, {x: 0.059541985, y: null}, {x: 0.209051724, y: null}, {x: 0.011152416, y: null}, {x: 0.070773263, y: null}, {x: 0.03030303, y: null}, {x: 0.053941909, y: null}, {x: 0.021212121, y: null}, {x: 0.061271676, y: null}, {x: 0.0, y: null}, {x: 0.045107564, y: null}, {x: 0.307652799, y: null}, {x: 0.012578616, y: null}, {x: 0.081132075, y: null}, {x: 0.156886228, y: null}, {x: 0.07037037, y: null}, {x: 0.103202847, y: null}, {x: 0.00619195, y: null}, {x: 0.141618497, y: null}, {x: 0.167250438, y: null}, {x: 0.11352657, y: null}, {x: 0.257471264, y: null}, {x: 0.034907598, y: null}, {x: 0.005420054, y: null}, {x: 0.20573108, y: 12.033039}, {x: 0.09609375, y: null}, {x: 0.114934114, y: null}, {x: 0.472627737, y: null}, {x: 0.192743764, y: null}, {x: 0.032321254, y: null}, {x: 0.223445239, y: null}, {x: 0.0, y: null}, {x: 0.017316017, y: null}, {x: 0.050623053, y: null}, {x: 0.011483254, y: null}, {x: 0.019630485, y: null}, {x: 0.207908163, y: null}, {x: 0.036238981, y: null}, {x: 0.104538501, y: null}, {x: 0.051960784, y: null}, {x: 0.012074643, y: null}, {x: 0.044698545, y: null}, {x: 0.040328093, y: null}, {x: 0.0, y: null}, {x: 0.237944664, y: null}, {x: 0.107142857, y: null}, {x: 0.087142857, y: null}, {x: 0.072354212, y: null}, {x: 0.072902338, y: null}, {x: 0.045618247, y: null}, {x: 0.153061225, y: null}, {x: 0.128964059, y: null}, {x: 0.07087959, y: null}, {x: 0.070737606, y: null}, {x: 0.158986175, y: null}, {x: 0.17877095, y: null}, {x: 0.155731225, y: null}, {x: 0.138794084, y: null}, {x: 0.05618964, y: null}, {x: 0.198645598, y: null}, {x: 0.034943474, y: null}, {x: 0.191176471, y: null}, {x: 0.048370137, y: null}, {x: 0.033561644, y: null}, {x: 0.012101911, y: null}, {x: 0.123809524, y: null}, {x: 0.147751606, y: null}, {x: 0.007115948, y: null}, {x: 0.053266332, y: null}, {x: 0.279792746, y: null}, {x: 0.205009276, y: null}, {x: 0.087719298, y: null}, {x: 0.090163934, y: null}, {x: 0.036697248, y: null}, {x: 0.022516083, y: null}, {x: 0.089385475, y: null}, {x: 0.018402342, y: null}, {x: 0.144827586, y: null}, {x: 0.062626263, y: null}, {x: 0.023116438, y: null}, {x: 0.13452381, y: null}, {x: 0.020833333, y: null}, {x: 0.01981982, y: null}, {x: 0.026666667, y: null}, {x: 0.014492754, y: null}, {x: 0.034183397, y: null}, {x: 0.102868447, y: null}, {x: 0.033722438, y: null}, {x: 0.084241104, y: null}, {x: 0.0, y: null}, {x: 0.202939514, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.075630252, y: null}, {x: 0.067515924, y: null}, {x: 0.038393175, y: null}, {x: 0.08200213, y: null}, {x: 0.06202209, y: null}, {x: 0.0, y: null}, {x: 0.20886501, y: null}, {x: 0.218677494, y: null}, {x: 0.218516675, y: null}, {x: 0.33029382, y: null}, {x: 0.168469861, y: null}, {x: 0.096880131, y: null}, {x: 0.002998501, y: null}, {x: 0.03898917, y: null}, {x: 0.219183845, y: null}, {x: 0.231752797, y: null}, {x: 0.038461538, y: null}, {x: 0.024309392, y: null}, {x: 0.082075472, y: null}, {x: 0.036119711, y: null}, {x: 0.001144165, y: null}, {x: 0.114229444, y: null}, {x: 0.04735062, y: null}, {x: 0.0, y: null}, {x: 0.259927798, y: null}, {x: 0.029292107, y: null}, {x: 0.033242877, y: null}, {x: 0.057170543, y: null}, {x: 0.067164179, y: null}, {x: 0.047220107, y: null}, {x: 0.238165681, y: null}, {x: 0.050544323, y: null}, {x: 0.062787136, y: null}, {x: 0.101962662, y: null}, {x: 0.0, y: null}, {x: 0.102057959, y: null}, {x: 0.050765512, y: null}, {x: 0.032311978, y: 0.0117}, {x: 0.101750547, y: null}, {x: 0.405918728, y: null}, {x: 0.086978637, y: null}, {x: 0.130858186, y: null}, {x: 0.239146992, y: null}, {x: 0.151730257, y: null}, {x: 0.0, y: null}, {x: 0.166890983, y: null}, {x: 0.102122016, y: null}, {x: 0.0, y: null}, {x: 0.031300594, y: null}, {x: 0.125842697, y: null}, {x: 0.262761506, y: null}, {x: 0.070028011, y: null}, {x: 0.146699267, y: null}, {x: 0.060298103, y: null}, {x: 0.077654517, y: null}, {x: 0.04567079, y: null}, {x: 0.024219591, y: null}, {x: 0.054298643, y: null}, {x: 0.01669627, y: null}, {x: 0.080801105, y: null}, {x: 0.020438499, y: null}, {x: 0.033070866, y: null}, {x: 0.016289593, y: null}, {x: 0.0, y: null}, {x: 0.070053257, y: null}, {x: 0.016736402, y: null}, {x: 0.07063197, y: null}, {x: 0.011594203, y: null}, {x: 0.008591065, y: null}, {x: 0.091247672, y: null}, {x: 0.197934596, y: null}, {x: 0.109926169, y: null}, {x: 0.037513025, y: null}, {x: 0.08190709, y: null}, {x: 0.047421731, y: null}, {x: 0.010978957, y: null}, {x: 0.042944785, y: null}, {x: 0.077790304, y: null}, {x: 0.163052209, y: null}, {x: 0.149558124, y: null}, {x: 0.259504132, y: null}, {x: 0.058685446, y: null}, {x: 0.115890084, y: null}, {x: 0.200308166, y: null}, {x: 0.050587634, y: null}, {x: 0.0, y: null}, {x: 0.185185185, y: null}, {x: 0.07424072, y: null}, {x: 0.071071627, y: null}, {x: 0.170469799, y: null}, {x: 0.353585657, y: null}, {x: 0.136046938, y: null}, {x: 0.144318182, y: null}, {x: 0.223736969, y: null}, {x: 0.080962801, y: null}, {x: 0.045840407, y: null}, {x: 0.281629116, y: null}, {x: 0.300666032, y: null}, {x: 0.3, y: null}, {x: 0.392881128, y: null}, {x: 0.358374384, y: null}, {x: 0.471659919, y: null}, {x: 0.07267645, y: null}, {x: 0.020357804, y: null}, {x: 0.25528914, y: null}, {x: 0.0, y: null}, {x: 0.154545455, y: null}, {x: 0.28022493, y: null}, {x: 0.190993789, y: null}, {x: 0.328571429, y: null}, {x: 0.032707029, y: null}, {x: 0.017647059, y: null}, {x: 0.336538462, y: null}, {x: 0.202264151, y: null}, {x: 0.058786346, y: null}, {x: 0.290436006, y: null}, {x: 0.32120743, y: null}, {x: 0.4527897, y: null}, {x: 0.154236061, y: null}, {x: 0.044985251, y: null}, {x: 0.164921466, y: null}, {x: 0.145723337, y: null}, {x: 0.212713936, y: null}, {x: 0.020028612, y: null}, {x: 0.02292769, y: null}, {x: 0.290849673, y: null}, {x: 0.230008244, y: null}, {x: 0.249724973, y: null}, {x: 0.352762071, y: null}, {x: 0.295748614, y: null}, {x: 0.244698206, y: null}, {x: 0.72, y: null}, {x: 0.167177914, y: null}, {x: 0.014972777, y: null}, {x: 0.037401575, y: null}, {x: 0.247142857, y: null}, {x: 0.099932019, y: null}, {x: 0.049056604, y: null}, {x: 0.062819203, y: null}, {x: 0.2652124, y: null}, {x: 0.197160883, y: null}, {x: 0.26609658, y: null}, {x: 0.173333333, y: null}, {x: 0.094155844, y: null}, {x: 0.103706625, y: null}, {x: 0.045324154, y: null}, {x: 0.065217391, y: null}, {x: 0.109531773, y: null}, {x: 0.019496855, y: null}, {x: 0.174386921, y: null}, {x: 0.054773083, y: null}, {x: 0.020127119, y: null}, {x: 0.15779982, y: null}, {x: 0.359060403, y: null}, {x: 0.094174757, y: null}, {x: 0.124896609, y: null}, {x: 0.085714286, y: null}, {x: 0.180790961, y: null}, {x: 0.333333333, y: null}, {x: 0.184490306, y: null}, {x: 0.315476191, y: null}, {x: 0.104961832, y: null}, {x: 0.320375335, y: null}, {x: 0.247572816, y: null}, {x: 0.270476191, y: null}, {x: 0.120788303, y: null}, {x: 0.037209302, y: null}, {x: 0.042444822, y: null}, {x: 0.166467066, y: null}, {x: 0.06373117, y: null}, {x: 0.057992565, y: null}, {x: 0.186788155, y: null}, {x: 0.046470063, y: null}, {x: 0.084057971, y: null}, {x: 0.155451226, y: null}, {x: 0.121212121, y: null}, {x: 0.198133525, y: null}, {x: 0.015740741, y: null}, {x: 0.091420534, y: null}, {x: 0.168968318, y: null}, {x: 0.042328042, y: null}, {x: 0.068696331, y: null}, {x: 0.087413856, y: null}, {x: 0.087354409, y: null}, {x: 1.0, y: null}, {x: 0.146989374, y: null}, {x: 0.078674948, y: null}, {x: 0.033033033, y: null}, {x: 0.061157025, y: null}, {x: 0.02425107, y: null}, {x: 0.062926062, y: null}, {x: 0.067114094, y: null}, {x: 0.033764368, y: null}, {x: 0.028612303, y: null}, {x: 0.0, y: null}, {x: 0.195233731, y: null}, {x: 0.330120482, y: null}, {x: 0.037895928, y: null}, {x: 0.066797642, y: null}, {x: 0.21442623, y: null}, {x: 0.111188325, y: null}, {x: 0.070546737, y: null}, {x: 0.109013686, y: null}, {x: 0.073518915, y: null}, {x: 0.12630118, y: null}, {x: 0.010622155, y: null}, {x: 0.093869732, y: null}, {x: 0.013788099, y: null}, {x: 0.046468401, y: null}, {x: 0.020298507, y: null}, {x: 0.031213873, y: null}, {x: 0.041260315, y: null}, {x: 0.0, y: null}, {x: 0.100424328, y: null}, {x: 0.190302398, y: null}, {x: 0.0, y: null}, {x: 0.063829787, y: null}, {x: 0.156100886, y: null}, {x: 0.074766355, y: null}, {x: 0.237333333, y: null}, {x: 0.018018018, y: null}, {x: 0.010905642, y: null}, {x: 0.033281734, y: null}, {x: 0.098579041, y: null}, {x: 0.050299401, y: null}, {x: 0.112725451, y: null}, {x: 0.131414268, y: null}, {x: 0.208482371, y: null}, {x: 0.151515152, y: null}, {x: 0.083388484, y: null}, {x: 0.178507993, y: null}, {x: 0.016260163, y: null}, {x: 0.084337349, y: null}, {x: 0.009546539, y: null}, {x: 0.03626943, y: null}, {x: 0.080407701, y: null}, {x: 0.094430993, y: null}, {x: 0.056603774, y: null}, {x: 0.097067745, y: null}, {x: 0.056534508, y: null}, {x: 0.068230277, y: null}, {x: 0.037328909, y: null}, {x: 0.0, y: null}, {x: 0.106305367, y: null}, {x: 0.216711957, y: null}, {x: 0.018880647, y: null}, {x: 0.09974587, y: null}, {x: 0.246803069, y: null}, {x: 0.157845868, y: null}, {x: 0.164616286, y: null}, {x: 0.03862069, y: null}, {x: 0.161439114, y: null}, {x: 0.383116883, y: null}, {x: 0.0, y: null}, {x: 0.138536585, y: null}, {x: 0.088310038, y: null}, {x: 0.075428571, y: null}, {x: 0.312082574, y: null}, {x: 0.129401409, y: null}, {x: 0.060156931, y: null}, {x: 0.431334623, y: null}, {x: 0.379493223, y: null}, {x: 0.532424812, y: null}, {x: 0.613664987, y: null}, {x: 0.546052632, y: null}, {x: 0.226487524, y: null}, {x: 0.223476298, y: null}, {x: 0.076806084, y: null}, {x: 0.269230769, y: null}, {x: 0.088218554, y: null}, {x: 0.419339842, y: null}, {x: 0.090909091, y: null}, {x: 0.258830342, y: null}, {x: 0.370352251, y: null}, {x: 0.377083333, y: null}, {x: 0.588050315, y: null}, {x: 0.081730769, y: null}, {x: 0.185540627, y: null}, {x: 0.042626728, y: null}, {x: 0.232736573, y: null}, {x: 0.044630404, y: null}, {x: 0.460416667, y: null}, {x: 0.162745098, y: null}, {x: 0.080198723, y: null}, {x: 0.221582734, y: null}, {x: 0.026490066, y: null}, {x: 0.121537396, y: null}, {x: 0.105326877, y: null}, {x: 0.004132231, y: null}, {x: 0.172236504, y: null}, {x: 0.106007067, y: null}, {x: 0.092366902, y: null}, {x: 0.04985889, y: null}, {x: 0.041278834, y: null}, {x: 0.1253406, y: null}, {x: 0.060784314, y: null}, {x: 0.08428246, y: null}, {x: 0.0, y: null}, {x: 0.02293578, y: null}, {x: 0.0, y: null}, {x: 0.059672762, y: null}, {x: 0.171998146, y: null}, {x: 0.0, y: null}, {x: 0.093600764, y: null}, {x: 0.223797781, y: null}, {x: 0.057677903, y: null}, {x: 0.109499637, y: null}, {x: 0.085811966, y: null}, {x: 0.2, y: null}, {x: 0.34620887, y: null}, {x: 0.053123672, y: null}, {x: 0.080193957, y: null}, {x: 0.113268608, y: null}, {x: 0.05888651, y: null}, {x: 0.14829932, y: null}, {x: 0.102339181, y: null}, {x: 0.045673077, y: null}, {x: 0.037362637, y: null}, {x: 0.027713626, y: null}, {x: 0.132121212, y: null}, {x: 0.076180258, y: null}, {x: 0.067599068, y: null}, {x: 0.306865178, y: null}, {x: 0.040816327, y: null}, {x: 0.245704467, y: null}, {x: 0.007203667, y: null}, {x: 0.073689673, y: null}, {x: 0.100893997, y: null}, {x: 0.0, y: null}, {x: 0.042674253, y: null}, {x: 0.050750221, y: null}, {x: 0.098617176, y: null}, {x: 0.049409237, y: null}, {x: 0.213704994, y: null}, {x: 0.214181287, y: null}, {x: 0.183775664, y: 0.0002}, {x: 0.206951027, y: null}, {x: 0.152905199, y: null}, {x: 0.883963494, y: null}, {x: 0.587874659, y: null}, {x: 0.711637487, y: null}, {x: 0.0, y: null}, {x: 0.226415094, y: null}, {x: 0.09394572, y: null}, {x: 0.11577522, y: null}, {x: 0.090062112, y: null}, {x: 0.287859008, y: null}, {x: 0.04732254, y: null}, {x: 0.132924335, y: null}, {x: 0.35235378, y: null}, {x: 0.094637224, y: null}, {x: 0.130541872, y: null}, {x: 0.093366093, y: null}, {x: 0.0, y: null}, {x: 0.492160279, y: null}, {x: 0.112966601, y: null}, {x: 0.059564719, y: null}, {x: 0.443037975, y: null}, {x: 0.211176471, y: null}, {x: 0.152876038, y: null}, {x: 0.749723145, y: null}, {x: 0.425517241, y: null}, {x: 0.124, y: null}, {x: 0.142663962, y: null}, {x: 0.082969432, y: null}, {x: 0.150102459, y: null}, {x: 0.189581554, y: null}, {x: 0.118159204, y: null}, {x: 0.0, y: null}, {x: 0.177738928, y: null}, {x: 0.190880989, y: null}, {x: 0.0, y: null}, {x: 0.182167563, y: null}, {x: 0.129716981, y: null}, {x: 0.0, y: null}, {x: 0.080326753, y: null}, {x: 0.014802632, y: null}, {x: 0.13627451, y: null}, {x: 0.138633377, y: null}, {x: 0.101973684, y: null}, {x: 0.201810437, y: null}, {x: 0.236469609, y: null}, {x: 0.094017094, y: null}, {x: 0.298780488, y: null}, {x: 0.219209915, y: null}, {x: 0.668181818, y: null}, {x: 0.196313364, y: null}, {x: 0.093933464, y: null}, {x: 0.033690659, y: null}, {x: 0.280363831, y: null}, {x: 0.08668942, y: null}, {x: 0.063330727, y: null}, {x: 0.086060606, y: null}, {x: 0.25046729, y: null}, {x: 0.048419637, y: null}, {x: 0.046923879, y: null}, {x: 0.067961165, y: null}, {x: 0.095658572, y: null}, {x: 0.11622807, y: null}, {x: 0.100942127, y: null}, {x: 0.123679304, y: null}, {x: 0.309090909, y: null}, {x: 0.414570685, y: null}, {x: 0.207396302, y: null}, {x: 0.174016687, y: null}, {x: 0.076923077, y: null}, {x: 0.074534161, y: null}, {x: 0.083921016, y: null}, {x: 0.04592721, y: null}, {x: 0.229969419, y: null}, {x: 0.023636364, y: null}, {x: 0.021164021, y: null}, {x: 0.160166604, y: null}, {x: 0.080745342, y: null}, {x: 0.123042506, y: null}, {x: 0.023062731, y: null}, {x: 0.211988304, y: null}, {x: 0.028213166, y: null}, {x: 0.023900574, y: null}, {x: 0.037190083, y: null}, {x: 0.056831923, y: null}, {x: 0.03030303, y: null}, {x: 0.049744898, y: null}, {x: 0.095709571, y: null}, {x: 0.0, y: null}, {x: 0.052213394, y: null}, {x: 0.0, y: null}, {x: 0.020689655, y: null}, {x: 0.167291312, y: null}, {x: 0.104875805, y: null}, {x: 0.021582734, y: null}, {x: 0.082179931, y: null}, {x: 0.051764706, y: null}, {x: 0.094997473, y: null}, {x: 0.067567568, y: null}, {x: 0.210305572, y: null}, {x: 0.035020936, y: null}, {x: 0.165474975, y: null}, {x: 0.091651543, y: null}, {x: 0.022146508, y: null}, {x: 0.047930283, y: null}, {x: 0.029919448, y: null}, {x: 0.098017621, y: null}, {x: 0.14973262, y: null}, {x: 0.034650456, y: null}, {x: 0.101278269, y: null}, {x: 0.0, y: null}, {x: 0.028257457, y: null}, {x: 0.047450425, y: null}, {x: 0.0, y: null}, {x: 0.069802731, y: null}, {x: 0.021949078, y: null}, {x: 0.097122302, y: null}, {x: 0.076965066, y: null}, {x: 0.0, y: null}, {x: 0.030025021, y: null}, {x: 0.188588008, y: null}, {x: 0.186584426, y: null}, {x: 0.006224066, y: null}, {x: 0.0, y: null}, {x: 0.032563025, y: null}, {x: 0.032900433, y: null}, {x: 0.032497679, y: null}, {x: 0.019271949, y: null}, {x: 0.006402049, y: null}, {x: 0.133363069, y: null}, {x: 0.011144449, y: null}, {x: 0.046875, y: null}, {x: 0.0823219, y: null}, {x: 0.092278719, y: null}, {x: 0.058413252, y: null}, {x: 0.09210004, y: null}, {x: 0.029126214, y: null}, {x: 0.181265207, y: null}, {x: 0.14274571, y: null}, {x: 0.120698254, y: null}, {x: 0.125707814, y: null}, {x: 0.045277127, y: null}, {x: 0.142576205, y: null}, {x: 0.299007444, y: null}, {x: 0.170212766, y: null}, {x: 0.157000586, y: null}, {x: 0.027066216, y: null}, {x: 0.01754386, y: null}, {x: 0.060702875, y: null}, {x: 0.039123631, y: null}, {x: 0.013298855, y: null}, {x: 0.086834734, y: null}, {x: 0.0, y: null}, {x: 0.03030303, y: null}, {x: 0.039500202, y: null}, {x: 0.037804435, y: null}, {x: 0.267401392, y: null}, {x: 0.220166513, y: null}, {x: 0.011228534, y: null}, {x: 0.0, y: null}, {x: 0.150422535, y: null}, {x: 0.0, y: null}, {x: 0.304878049, y: null}, {x: 0.106789717, y: null}, {x: 0.056280587, y: null}, {x: 0.150065531, y: null}, {x: 0.115853659, y: null}, {x: 0.337142857, y: null}, {x: 0.10259301, y: null}, {x: 0.184615385, y: null}, {x: 0.018297237, y: null}, {x: 0.054405677, y: null}, {x: 0.122971286, y: null}, {x: 0.012399708, y: null}, {x: 0.038372985, y: null}, {x: 0.27161894, y: null}, {x: 0.0, y: null}, {x: 0.079526227, y: null}, {x: 0.080479953, y: null}, {x: 0.01501251, y: null}, {x: 0.043522267, y: null}, {x: 0.0, y: null}, {x: 0.216349542, y: null}, {x: 0.197278912, y: null}, {x: 0.115218731, y: null}, {x: 0.142099057, y: null}, {x: 0.091974752, y: null}, {x: 0.038776389, y: null}, {x: 0.0, y: null}, {x: 0.065751858, y: null}, {x: 0.03978907, y: null}, {x: 0.105875832, y: null}, {x: 0.018276762, y: null}, {x: 0.071559633, y: null}, {x: 0.065749235, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.035146444, y: null}, {x: 0.160971223, y: null}, {x: 0.0, y: null}, {x: 0.194786387, y: null}, {x: 0.309343434, y: null}, {x: 0.19538835, y: null}, {x: 0.236316247, y: null}, {x: 0.396019496, y: null}, {x: 0.118527043, y: null}, {x: 0.067320704, y: null}, {x: 0.084677419, y: null}, {x: 0.062948207, y: null}, {x: 0.092592593, y: null}, {x: 0.092065868, y: null}, {x: 0.11732852, y: null}, {x: 0.189245088, y: null}, {x: 0.065173116, y: null}, {x: 0.060016221, y: null}, {x: 0.097799511, y: null}, {x: 0.314457029, y: null}, {x: 0.503213368, y: null}, {x: 0.021934197, y: null}, {x: 0.02, y: null}, {x: 0.037628278, y: null}, {x: 0.052132701, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.027796383, y: null}, {x: 0.054054054, y: null}, {x: 0.0, y: null}, {x: 0.095744681, y: null}, {x: 0.059792028, y: null}, {x: 0.025945946, y: null}, {x: 0.089242054, y: null}, {x: 0.018331226, y: null}, {x: 0.164281626, y: null}, {x: 0.028423773, y: null}, {x: 0.042918455, y: null}, {x: 0.046122449, y: null}, {x: 0.212914485, y: null}, {x: 0.03815844, y: null}, {x: 0.110869565, y: null}, {x: 0.088809035, y: null}, {x: 0.112979153, y: null}, {x: 0.111278196, y: null}, {x: 0.015306122, y: null}, {x: 0.065473925, y: null}, {x: 0.046066619, y: null}, {x: 0.091017964, y: null}, {x: 0.064041995, y: null}, {x: 0.119047619, y: null}, {x: 0.161263508, y: null}, {x: 0.051794639, y: null}, {x: 0.038461538, y: null}, {x: 0.421978022, y: null}, {x: 0.025679758, y: null}, {x: 0.074144487, y: null}, {x: 0.37, y: null}, {x: 0.092352092, y: null}, {x: 0.034090909, y: null}, {x: 0.366819747, y: null}, {x: 0.069785884, y: null}, {x: 0.134234234, y: null}, {x: 0.008368201, y: null}, {x: 0.034343434, y: null}, {x: 0.296446701, y: null}, {x: 0.148106904, y: null}, {x: 0.038363171, y: null}, {x: 0.150596878, y: null}, {x: 0.149797571, y: null}, {x: 0.066666667, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.251308901, y: null}, {x: 0.055276382, y: null}, {x: 0.033946252, y: null}, {x: 0.202775636, y: null}, {x: 0.20516129, y: null}, {x: 0.137757948, y: null}, {x: 0.328648649, y: null}, {x: 0.166921899, y: null}, {x: 0.232832618, y: null}, {x: 0.282501757, y: null}, {x: 0.53539823, y: null}, {x: 0.116178067, y: null}, {x: 0.143933685, y: null}, {x: 0.123681687, y: null}, {x: 0.138029059, y: null}, {x: 0.030693069, y: null}, {x: 0.122841966, y: null}, {x: 0.17816092, y: null}, {x: 0.130067568, y: null}, {x: 0.183757743, y: null}, {x: 0.333138516, y: null}, {x: 0.28049952, y: null}, {x: 0.337325349, y: null}, {x: 0.317662861, y: null}, {x: 0.414583333, y: null}, {x: 0.204545455, y: null}, {x: 0.073529412, y: null}, {x: 0.032258065, y: null}, {x: 0.478995654, y: null}, {x: 0.304951691, y: null}, {x: 0.151179941, y: null}, {x: 0.279259663, y: null}, {x: 0.421420256, y: null}, {x: 0.12864494, y: null}, {x: 0.460285132, y: null}, {x: 0.118672199, y: null}, {x: 0.758037225, y: null}, {x: 0.270609319, y: null}, {x: 0.311428571, y: null}, {x: 0.055952381, y: null}, {x: 0.156995052, y: null}, {x: 0.189326557, y: null}, {x: 0.0, y: null}, {x: 0.032206119, y: null}, {x: 0.030685921, y: null}, {x: 0.180958013, y: null}, {x: 0.399301513, y: null}, {x: 0.763809524, y: null}, {x: 0.301276596, y: null}, {x: 0.409141583, y: null}, {x: 0.435582822, y: null}, {x: 0.314685315, y: null}, {x: 0.26982012, y: null}, {x: 0.146877749, y: null}, {x: 0.207492795, y: null}, {x: 0.367272727, y: null}, {x: 0.161939616, y: null}, {x: 0.09703504, y: null}, {x: 0.287692308, y: null}, {x: 0.210185934, y: null}, {x: 0.215801887, y: null}, {x: 0.280946602, y: null}, {x: 0.128497409, y: null}, {x: 0.529963899, y: null}, {x: 0.191881919, y: null}, {x: 0.259142212, y: null}, {x: 0.094492441, y: null}, {x: 0.18767507, y: null}, {x: 0.396480331, y: null}, {x: 0.116883117, y: null}, {x: 0.118780096, y: null}, {x: 0.260273973, y: null}, {x: 0.262370541, y: null}, {x: 0.557233317, y: null}, {x: 0.187552921, y: null}, {x: 0.073234984, y: null}, {x: 0.132596685, y: null}, {x: 0.0, y: null}, {x: 0.077565632, y: null}, {x: 0.057627119, y: null}, {x: 0.090775988, y: null}, {x: 0.193681319, y: null}, {x: 0.122368421, y: null}, {x: 0.01, y: null}, {x: 0.179289026, y: null}, {x: 0.220543807, y: null}, {x: 0.254048583, y: null}, {x: 0.223684211, y: null}, {x: 0.056853583, y: null}, {x: 0.014242116, y: null}, {x: 0.145336226, y: null}, {x: 0.241541353, y: null}, {x: 0.048834628, y: null}, {x: 0.027912621, y: null}, {x: 0.095522388, y: null}, {x: 0.166777852, y: null}, {x: 0.057078652, y: null}, {x: 0.100645161, y: null}, {x: 0.080961417, y: null}, {x: 0.134481495, y: null}, {x: 0.135396518, y: null}, {x: 0.421357616, y: null}, {x: 0.05068836, y: null}, {x: 0.162844037, y: null}, {x: 0.189566116, y: null}, {x: 0.23923445, y: null}, {x: 0.290086494, y: null}, {x: 0.199749269, y: null}, {x: 0.026696329, y: null}, {x: 0.265240642, y: null}, {x: 0.313575526, y: null}, {x: 0.282180717, y: null}, {x: 0.149102623, y: null}, {x: 0.0, y: null}, {x: 0.080589255, y: null}, {x: 0.249742002, y: null}, {x: 0.049832295, y: null}, {x: 0.413069909, y: null}, {x: 0.220733427, y: null}, {x: 0.100917431, y: null}, {x: 0.104424779, y: null}, {x: 0.482122261, y: null}, {x: 0.221273292, y: null}, {x: 0.267625899, y: null}, {x: 0.244877561, y: null}, {x: 0.034391534, y: null}, {x: 0.223984143, y: null}, {x: 0.144946237, y: null}, {x: 0.182076814, y: null}, {x: 0.0, y: null}, {x: 0.069331158, y: null}, {x: 0.067472306, y: null}, {x: 0.149544864, y: null}, {x: 0.107113655, y: null}, {x: 0.101718213, y: null}, {x: 0.132591562, y: null}, {x: 0.149797571, y: null}, {x: 0.052064632, y: null}, {x: 0.077085533, y: null}, {x: 0.07309322, y: null}, {x: 0.083844581, y: null}, {x: 0.380784175, y: null}, {x: 0.128016086, y: null}, {x: 0.02739726, y: null}, {x: 0.109820486, y: null}, {x: 0.060491493, y: null}, {x: 0.038961039, y: null}, {x: 0.337303478, y: null}, {x: 0.142279164, y: null}, {x: 0.257053292, y: null}, {x: 0.010899183, y: null}, {x: 0.0, y: null}, {x: 0.389261745, y: null}, {x: 0.203265766, y: null}, {x: 0.048128342, y: null}, {x: 0.428822496, y: null}, {x: 0.125187406, y: null}, {x: 0.183699871, y: null}, {x: 0.365217391, y: null}, {x: 0.083011583, y: null}, {x: 0.131350682, y: null}, {x: 0.599037691, y: null}, {x: 0.198624905, y: null}, {x: 0.248782647, y: null}, {x: 0.183242507, y: null}, {x: 0.163619744, y: null}, {x: 0.362244898, y: null}, {x: 0.081490105, y: null}, {x: 0.012942779, y: null}, {x: 0.132118451, y: null}, {x: 0.146109052, y: null}, {x: 0.191205863, y: null}, {x: 0.140916808, y: null}, {x: 0.115023474, y: null}, {x: 0.090116279, y: null}, {x: 0.204252577, y: null}, {x: 0.013812155, y: null}, {x: 0.171396141, y: null}, {x: 0.106180666, y: null}, {x: 0.133086876, y: null}, {x: 0.059069212, y: null}, {x: 0.229813665, y: null}, {x: 0.065367693, y: null}, {x: 0.053472222, y: null}, {x: 0.057856273, y: null}, {x: 0.230278885, y: null}, {x: 0.127682026, y: null}, {x: 0.196399345, y: null}, {x: 0.032742888, y: null}, {x: 0.070848708, y: null}, {x: 0.073899899, y: null}, {x: 0.055962118, y: null}, {x: 0.163974152, y: null}, {x: 0.059655325, y: null}, {x: 0.091600529, y: null}, {x: 0.057534247, y: null}, {x: 0.018867925, y: null}, {x: 0.094405594, y: null}, {x: 0.222772277, y: null}, {x: 0.016427105, y: null}, {x: 0.078571429, y: null}, {x: 0.092896175, y: null}, {x: 0.157858614, y: null}, {x: 0.094854586, y: null}, {x: 0.05721393, y: null}, {x: 0.151815182, y: null}, {x: 0.098010674, y: null}, {x: 0.140700483, y: null}, {x: 0.017673654, y: null}, {x: 0.056179775, y: null}, {x: 0.222329628, y: null}, {x: 0.144329897, y: null}, {x: 0.061135371, y: null}, {x: 0.177370031, y: null}, {x: 0.059467919, y: null}, {x: 0.21601686, y: null}, {x: 0.176588294, y: null}, {x: 0.165243382, y: null}, {x: 0.054862843, y: null}, {x: 0.006674082, y: null}, {x: 0.232044199, y: null}, {x: 0.07326284, y: null}, {x: 0.269820972, y: null}, {x: 0.04854679, y: null}, {x: 0.108832808, y: null}, {x: 0.010847107, y: null}, {x: 0.249889037, y: null}, {x: 0.098278986, y: null}, {x: 0.271370421, y: null}, {x: 0.116586539, y: null}, {x: 0.058870645, y: null}, {x: 0.365825688, y: null}, {x: 0.206165703, y: null}, {x: 0.158762887, y: null}, {x: 0.229464286, y: null}, {x: 0.394827586, y: null}, {x: 0.261016949, y: null}, {x: 0.112864078, y: null}, {x: 0.070998797, y: null}, {x: 0.076038904, y: null}, {x: 0.172992057, y: null}, {x: 0.019904165, y: null}, {x: 0.115294118, y: null}, {x: 0.122736419, y: null}, {x: 0.123193916, y: null}, {x: 0.11066879, y: null}, {x: 0.092962641, y: null}, {x: 0.055805581, y: null}, {x: 0.0, y: null}, {x: 0.054852321, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.089249493, y: 3617.0713}, {x: 0.067729084, y: null}, {x: 0.146468402, y: null}, {x: 0.118075802, y: null}, {x: 0.041336851, y: null}, {x: 0.078431373, y: null}, {x: 0.109090909, y: null}, {x: 0.144591612, y: null}, {x: 0.127659575, y: null}, {x: 0.139534884, y: null}, {x: 0.035260931, y: null}, {x: 0.105376344, y: null}, {x: 0.046659597, y: null}, {x: 0.12414734, y: null}, {x: 0.048164044, y: null}, {x: 0.107481215, y: null}, {x: 0.051752922, y: null}, {x: 0.020718679, y: null}, {x: 0.17755857, y: null}, {x: 0.080387685, y: null}, {x: 0.036144578, y: null}, {x: 0.063706564, y: null}, {x: 0.249818972, y: null}, {x: 0.122030238, y: null}, {x: 0.088418431, y: null}, {x: 0.400872818, y: null}, {x: 0.151394422, y: null}, {x: 0.039280644, y: null}, {x: 0.270774449, y: 21.541675}, {x: 0.322362869, y: null}, {x: 0.094758065, y: null}, {x: 0.189655172, y: null}, {x: 0.263915547, y: null}, {x: 0.034696406, y: null}, {x: 0.153397249, y: null}, {x: 0.011520737, y: null}, {x: 0.101969873, y: null}, {x: 0.044488712, y: null}, {x: 0.126760563, y: null}, {x: 0.019083969, y: null}, {x: 0.038872692, y: null}, {x: 0.237241379, y: null}, {x: 0.117843711, y: null}, {x: 0.033540373, y: null}, {x: 0.102209945, y: null}, {x: 0.149551346, y: null}, {x: 0.027206771, y: null}, {x: 0.0, y: null}, {x: 0.043303122, y: null}, {x: 0.029739777, y: null}, {x: 0.023255814, y: null}, {x: 0.142011834, y: null}, {x: 0.072378139, y: null}, {x: 0.032032032, y: null}, {x: 0.012672811, y: null}, {x: 0.085040348, y: null}, {x: 0.06805708, y: null}, {x: 0.020866774, y: null}, {x: 0.203373494, y: null}, {x: 0.0, y: null}, {x: 0.108897742, y: null}, {x: 0.0, y: null}, {x: 0.082939987, y: null}, {x: 0.047332832, y: null}, {x: 0.31887456, y: 0.021042}, {x: 0.050544323, y: null}, {x: 0.034053156, y: null}, {x: 0.115384615, y: null}, {x: 0.14994233, y: null}, {x: 0.529921943, y: null}, {x: 0.050147493, y: null}, {x: 0.272055628, y: null}, {x: 0.013659238, y: null}, {x: 0.048918823, y: null}, {x: 0.080353852, y: null}, {x: 0.18960594, y: null}, {x: 0.188690476, y: null}, {x: 0.093849658, y: null}, {x: 0.011942175, y: null}, {x: 0.262019231, y: null}, {x: 0.447311828, y: null}, {x: 0.131868132, y: null}, {x: 0.196, y: null}, {x: 0.086409396, y: null}, {x: 0.159124088, y: null}, {x: 0.100618325, y: null}, {x: 0.022764228, y: null}, {x: 0.048118985, y: null}, {x: 0.051807229, y: null}, {x: 0.054563492, y: null}, {x: 0.05986317, y: null}, {x: 0.099241902, y: null}, {x: 0.092880979, y: null}, {x: 0.038251366, y: null}, {x: 0.091295117, y: null}, {x: 0.038562092, y: null}, {x: 0.170873786, y: null}, {x: 0.03733149, y: null}, {x: 0.039647577, y: null}, {x: 0.16287304, y: null}, {x: 0.151221996, y: null}, {x: 0.073384447, y: null}, {x: 0.059597523, y: null}, {x: 0.094968108, y: null}, {x: 0.073699422, y: null}, {x: 0.158590308, y: null}, {x: 0.067057837, y: null}, {x: 0.076846307, y: null}, {x: 0.071045023, y: null}, {x: 0.098387993, y: null}, {x: 0.051512674, y: null}, {x: 0.076923077, y: null}, {x: 0.093241243, y: null}, {x: 0.098124098, y: null}, {x: 0.168787108, y: null}, {x: 0.181117534, y: null}, {x: 0.406278855, y: null}, {x: 0.194546794, y: null}, {x: 0.112351191, y: null}, {x: 0.035878565, y: null}, {x: 0.5, y: null}, {x: 0.255488267, y: null}, {x: 0.344432314, y: null}, {x: 0.343211578, y: null}, {x: 0.433145009, y: null}, {x: 0.639034628, y: null}, {x: 0.417266187, y: null}, {x: 0.267303103, y: null}, {x: 0.615835777, y: null}, {x: 0.331649832, y: null}, {x: 0.156886967, y: null}, {x: 0.441272812, y: null}, {x: 0.270967742, y: null}, {x: 0.286939943, y: null}, {x: 0.378757515, y: null}, {x: 0.349242424, y: null}, {x: 0.239508266, y: null}, {x: 0.465573771, y: null}, {x: 0.05620155, y: null}, {x: 0.036904762, y: null}, {x: 0.140243902, y: null}, {x: 0.314814815, y: null}, {x: 0.185796862, y: null}, {x: 0.687707641, y: null}, {x: 0.046722907, y: null}, {x: 0.095709571, y: null}, {x: 0.260791367, y: null}, {x: 0.598701299, y: null}, {x: 0.553299492, y: null}, {x: 0.498269896, y: null}, {x: 0.634680135, y: null}, {x: 0.46558527, y: null}, {x: 0.76848091, y: null}, {x: 0.72, y: null}, {x: 0.456996149, y: null}, {x: 0.587811271, y: null}, {x: 0.193051576, y: null}, {x: 0.172546012, y: null}, {x: 0.114702155, y: null}, {x: 0.311498754, y: null}, {x: 0.245917387, y: null}, {x: 0.531537048, y: null}, {x: 0.171641791, y: null}, {x: 0.346092504, y: null}, {x: 0.246049661, y: null}, {x: 0.052738337, y: null}, {x: 0.444564047, y: null}, {x: 0.207803595, y: null}, {x: 0.371939736, y: null}, {x: 0.562998405, y: null}, {x: 0.49867374, y: null}, {x: 0.299544419, y: null}, {x: 0.395575221, y: null}, {x: 0.337116155, y: null}, {x: 0.134394905, y: null}, {x: 0.571684588, y: null}, {x: 0.18220339, y: null}, {x: 0.45508982, y: null}, {x: 0.228740936, y: null}, {x: 0.11484375, y: null}, {x: 0.354814815, y: null}, {x: 0.050492611, y: null}, {x: 0.143243243, y: null}, {x: 0.320530726, y: null}, {x: 0.0, y: null}, {x: 0.021998743, y: null}, {x: 0.085201794, y: null}, {x: 0.125623583, y: null}, {x: 0.06385696, y: null}, {x: 0.095840131, y: null}, {x: 0.050493326, y: null}, {x: 0.274853801, y: null}, {x: 0.117236025, y: null}, {x: 0.127566895, y: null}, {x: 0.405083829, y: null}, {x: 0.022737023, y: null}, {x: 0.194879833, y: null}, {x: 0.051413882, y: null}, {x: 0.060509554, y: null}, {x: 0.146912351, y: null}, {x: 0.2594372, y: null}, {x: 0.123771224, y: null}, {x: 0.169964029, y: null}, {x: 0.115328467, y: null}, {x: 0.069962687, y: null}, {x: 0.053691275, y: null}, {x: 0.080982236, y: null}, {x: 0.050410317, y: null}, {x: 0.051724138, y: null}, {x: 0.133958104, y: null}, {x: 0.099099099, y: null}, {x: 0.075170843, y: null}, {x: 0.041021672, y: null}, {x: 0.241608119, y: null}, {x: 0.098522167, y: null}, {x: 0.152463382, y: null}, {x: 0.113876789, y: null}, {x: 0.096864112, y: null}, {x: 0.078065499, y: null}, {x: 0.288864981, y: null}, {x: 0.299629434, y: null}, {x: 0.080841639, y: null}, {x: 0.094538779, y: null}, {x: 0.15695682, y: null}, {x: 0.069782752, y: null}, {x: 0.087632509, y: null}, {x: 0.167878788, y: null}, {x: 0.166666667, y: null}, {x: 0.439655172, y: null}, {x: 0.031754875, y: null}, {x: 0.022538553, y: null}, {x: 0.072277546, y: null}, {x: 0.151598174, y: null}, {x: 0.038167939, y: null}, {x: 0.025412088, y: null}, {x: 0.07721459, y: null}, {x: 0.103146853, y: null}, {x: 0.157622739, y: null}, {x: 0.210144928, y: null}, {x: 0.013738551, y: null}, {x: 0.096124031, y: null}, {x: 0.276904474, y: null}, {x: 0.398917855, y: null}, {x: 0.24331672, y: null}, {x: 0.13739546, y: null}, {x: 0.181243414, y: null}, {x: 0.216818642, y: null}, {x: 0.348327566, y: null}, {x: 0.135714286, y: null}, {x: 0.020277481, y: null}, {x: 0.111538462, y: null}, {x: 0.029232643, y: null}, {x: 0.134110787, y: null}, {x: 0.397402597, y: null}, {x: 0.357370095, y: null}, {x: 0.21474359, y: null}, {x: 0.23681592, y: null}, {x: 0.01894452, y: null}, {x: 0.01605288, y: null}, {x: 0.107072692, y: null}, {x: 0.08198838, y: null}, {x: 0.052361396, y: null}, {x: 0.087186262, y: null}, {x: 0.143643644, y: null}, {x: 0.080068143, y: null}, {x: 0.106830123, y: null}, {x: 0.205600307, y: null}, {x: 0.181957187, y: null}, {x: 0.087020649, y: null}, {x: 0.075545171, y: null}, {x: 0.041818182, y: null}, {x: 0.06441048, y: null}, {x: 0.03091832, y: null}, {x: 0.045263649, y: null}, {x: 0.159038014, y: null}, {x: 0.158657829, y: null}, {x: 0.06133829, y: null}, {x: 0.144467641, y: null}, {x: 0.066115702, y: null}, {x: 0.177230047, y: null}, {x: 0.19245283, y: null}, {x: 0.243195266, y: null}, {x: 0.094651789, y: null}, {x: 0.047911548, y: null}, {x: 0.025206233, y: null}, {x: 0.029659141, y: null}, {x: 0.113884555, y: null}, {x: 0.039509537, y: null}, {x: 0.088382435, y: null}, {x: 0.181962528, y: null}, {x: 0.041338583, y: null}, {x: 0.205696203, y: null}, {x: 0.147486498, y: null}, {x: 0.146529563, y: null}, {x: 0.127981651, y: null}, {x: 0.073548387, y: null}, {x: 0.302480339, y: null}, {x: 0.28654005, y: null}, {x: 0.327586207, y: null}, {x: 0.50249584, y: null}, {x: 0.254677755, y: null}, {x: 0.346294938, y: null}, {x: 0.157733015, y: null}, {x: 0.255494506, y: null}, {x: 0.285456731, y: null}, {x: 0.182890856, y: null}, {x: 0.34245283, y: null}, {x: 0.244099021, y: null}, {x: 0.20649652, y: null}, {x: 0.27159309, y: null}, {x: 0.175251256, y: null}, {x: 0.339534884, y: null}, {x: 0.218929254, y: null}, {x: 0.080025608, y: null}, {x: 0.333030853, y: null}, {x: 0.031301483, y: null}, {x: 0.212090164, y: null}, {x: 0.193330111, y: null}, {x: 0.388686131, y: null}, {x: 0.312829526, y: null}, {x: 0.415384615, y: null}, {x: 0.027444254, y: null}, {x: 0.200343938, y: null}, {x: 0.061962134, y: null}, {x: 0.118226601, y: null}, {x: 0.188218391, y: null}, {x: 0.355905512, y: null}, {x: 0.530266344, y: null}, {x: 0.072205737, y: null}, {x: 0.276661515, y: null}, {x: 0.020356234, y: null}, {x: 0.051511758, y: null}, {x: 0.049261084, y: null}, {x: 0.052754982, y: null}, {x: 0.067285383, y: null}, {x: 0.10625, y: null}, {x: 0.117270789, y: null}, {x: 0.193846154, y: null}, {x: 0.155155155, y: null}, {x: 0.161396885, y: null}, {x: 0.20831618, y: null}, {x: 0.026587888, y: null}, {x: 0.325757576, y: null}, {x: 0.831460674, y: null}, {x: 0.0, y: null}, {x: 0.389156627, y: null}, {x: 0.181451613, y: null}, {x: 0.109170306, y: null}, {x: 0.319016009, y: null}, {x: 0.353518822, y: null}, {x: 0.190293742, y: null}, {x: 0.424535316, y: null}, {x: 0.226077813, y: null}, {x: 0.132901135, y: null}, {x: 0.154013015, y: null}, {x: 0.409001957, y: null}, {x: 0.129432624, y: null}, {x: 0.211666667, y: null}, {x: 0.116363636, y: null}, {x: 0.294520548, y: null}, {x: 0.204169662, y: null}, {x: 0.17875383, y: null}, {x: 0.173681091, y: null}, {x: 0.169338677, y: null}, {x: 0.224008575, y: null}, {x: 0.479535398, y: null}, {x: 0.343939394, y: null}, {x: 0.390243902, y: null}, {x: 0.141613465, y: null}, {x: 0.194128788, y: null}, {x: 0.325914149, y: null}, {x: 0.480639731, y: null}, {x: 0.0, y: null}, {x: 0.227212682, y: null}, {x: 0.25873606, y: null}, {x: 0.149275362, y: null}, {x: 0.595724907, y: null}, {x: 0.274787535, y: null}, {x: 0.450538688, y: null}, {x: 0.174461767, y: null}, {x: 0.454445664, y: null}, {x: 0.138433516, y: null}, {x: 0.120866591, y: null}, {x: 0.190366973, y: null}, {x: 0.688848921, y: null}, {x: 0.56212223, y: null}, {x: 0.344512195, y: null}, {x: 0.42582897, y: null}, {x: 0.494290375, y: null}, {x: 0.288093769, y: null}, {x: 0.359631821, y: null}, {x: 0.566131026, y: null}, {x: 0.548997773, y: null}, {x: 0.355486862, y: null}, {x: 0.294513956, y: null}, {x: 0.336260979, y: null}, {x: 0.443830571, y: null}, {x: 0.401285047, y: null}, {x: 0.272621133, y: null}, {x: 0.468921389, y: null}, {x: 0.598331347, y: null}, {x: 0.377068558, y: null}, {x: 0.0, y: null}, {x: 0.425795053, y: null}, {x: 0.0, y: null}, {x: 0.816326531, y: null}, {x: 0.27520436, y: null}, {x: 0.016393443, y: null}, {x: 0.895522388, y: null}, {x: 0.305607477, y: null}, {x: 0.31122449, y: null}, {x: 0.596368715, y: null}, {x: 0.541176471, y: null}, {x: 0.397988506, y: null}, {x: 0.478436658, y: null}, {x: 0.44344473, y: null}, {x: 0.164583333, y: null}, {x: 0.405923345, y: null}, {x: 0.605032823, y: null}, {x: 0.235488127, y: null}, {x: 0.692160612, y: null}, {x: 0.684563758, y: null}, {x: 0.134328358, y: null}, {x: 0.593564776, y: null}, {x: 0.713631157, y: null}, {x: 0.235887097, y: null}, {x: 0.448148148, y: null}, {x: 0.676923077, y: null}, {x: 0.724735322, y: null}, {x: 0.758566978, y: null}, {x: 0.896907217, y: null}, {x: 0.800488599, y: null}, {x: 0.778067885, y: null}, {x: 0.354074074, y: null}, {x: 0.488859764, y: null}, {x: 0.465158371, y: null}, {x: 0.26715462, y: null}, {x: 0.186598813, y: null}, {x: 0.241071429, y: null}, {x: 0.273712737, y: null}, {x: 0.140770252, y: null}, {x: 0.066473988, y: null}, {x: 0.072727273, y: null}, {x: 0.051006711, y: null}, {x: 0.090425532, y: null}, {x: 0.187992126, y: null}, {x: 0.105633803, y: null}, {x: 0.135135135, y: null}, {x: 0.174974568, y: null}, {x: 0.066666667, y: null}, {x: 0.146139706, y: null}, {x: 0.109737249, y: null}, {x: 0.0, y: null}, {x: 0.097385032, y: null}, {x: 0.123737374, y: null}, {x: 0.043037975, y: null}, {x: 0.254562044, y: null}, {x: 0.136363636, y: null}, {x: 0.092053501, y: null}, {x: 0.201665125, y: null}, {x: 0.128964059, y: null}, {x: 0.171821306, y: null}, {x: 0.270348837, y: null}, {x: 0.203732504, y: null}, {x: 0.142196532, y: null}, {x: 0.291184328, y: null}, {x: 0.226950355, y: null}, {x: 0.071428571, y: null}, {x: 0.112285337, y: null}, {x: 0.11577424, y: null}, {x: 0.067073171, y: null}, {x: 0.351351351, y: null}, {x: 0.0, y: null}, {x: 0.114119923, y: null}, {x: 0.122105263, y: null}, {x: 0.154598826, y: null}, {x: 0.188552189, y: 7.2}, {x: 0.116618076, y: null}, {x: 0.150337838, y: null}, {x: 0.200892857, y: null}, {x: 0.076081007, y: null}, {x: 0.687810945, y: null}, {x: 0.049010368, y: null}, {x: 0.524475525, y: null}, {x: 0.007918552, y: null}, {x: 0.031767956, y: null}, {x: 0.017045455, y: null}, {x: 0.012484395, y: null}, {x: 0.239120879, y: null}, {x: 0.041968162, y: 766.04}, {x: 0.111761264, y: 273.784}, {x: 0.06127451, y: null}, {x: 0.904428904, y: null}, {x: 0.73870682, y: null}, {x: 0.064956558, y: 2.5375}, {x: 0.322447447, y: null}, {x: 0.842781557, y: 0.473}, {x: 0.139076923, y: null}, {x: 0.437900641, y: null}, {x: 0.408608491, y: null}, {x: 0.460496614, y: null}, {x: 0.416666667, y: null}, {x: 0.24757953, y: 3.82795}, {x: 0.606349206, y: null}, {x: 0.520798669, y: null}, {x: 0.32388664, y: null}, {x: 0.31160221, y: null}, {x: 0.300348736, y: null}, {x: 0.0, y: null}, {x: 0.245294118, y: null}, {x: 0.416449086, y: null}, {x: 0.442989635, y: null}, {x: 0.354477612, y: null}, {x: 0.425998875, y: null}, {x: 0.326586937, y: null}, {x: 0.169918699, y: null}, {x: 0.548543689, y: 0.17529}, {x: 0.401254954, y: null}, {x: 0.487778959, y: null}, {x: 0.022330097, y: null}, {x: 0.137521222, y: null}, {x: 0.661381654, y: null}, {x: 0.198319328, y: null}, {x: 0.02875817, y: null}, {x: 0.113945578, y: 16.942}, {x: 0.330501931, y: null}, {x: 0.139748954, y: null}, {x: 0.038878843, y: null}, {x: 0.0, y: null}, {x: 0.09221902, y: null}, {x: 0.055882353, y: null}, {x: 0.249093108, y: null}, {x: 0.076991943, y: null}, {x: 0.166110184, y: null}, {x: 0.235136941, y: null}, {x: 0.16349481, y: null}, {x: 0.097631012, y: null}, {x: 0.003933137, y: null}, {x: 0.0, y: null}, {x: 0.03022339, y: null}, {x: 0.0, y: null}, {x: 0.131355932, y: null}, {x: 0.116465864, y: null}, {x: 0.0, y: null}, {x: 0.153994225, y: null}, {x: 0.029761905, y: null}, {x: 0.134235759, y: null}, {x: 0.131652661, y: null}, {x: 0.018450185, y: null}, {x: 0.081481481, y: null}, {x: 0.037076271, y: null}, {x: 0.571920758, y: null}, {x: 0.777462121, y: null}, {x: 0.0, y: null}, {x: 0.036605657, y: null}, {x: 0.118689105, y: null}, {x: 0.202036022, y: null}, {x: 0.105577689, y: null}, {x: 0.724522293, y: null}, {x: 0.822995461, y: null}, {x: 0.543385491, y: null}, {x: 0.820846906, y: null}, {x: 0.358778626, y: null}, {x: 0.0, y: null}, {x: 0.070057582, y: null}, {x: 0.018763797, y: null}, {x: 0.728275862, y: null}, {x: 0.212621359, y: null}, {x: 0.0, y: null}, {x: 0.384732824, y: null}, {x: 0.13312369, y: null}, {x: 0.181818182, y: null}, {x: 0.373303167, y: null}, {x: 0.790880503, y: null}, {x: 0.149897331, y: null}, {x: 0.3981026, y: null}, {x: 0.801204819, y: null}, {x: 0.202254642, y: null}, {x: 0.031731641, y: null}, {x: 0.088452088, y: null}, {x: 0.178151261, y: null}, {x: 0.41563786, y: null}, {x: 0.168336673, y: 180.08110000000002}, {x: 0.748675246, y: null}, {x: 0.061491935, y: null}, {x: 0.429326288, y: null}, {x: 0.088946459, y: null}, {x: 0.791830322, y: null}, {x: 0.177983539, y: null}, {x: 0.017738359, y: null}, {x: 0.471451876, y: null}, {x: 0.083727211, y: null}, {x: 0.324817518, y: null}, {x: 0.337236534, y: null}, {x: 0.128983308, y: null}, {x: 0.545931759, y: null}, {x: 0.335671343, y: null}, {x: 0.238836968, y: null}, {x: 0.266832918, y: null}, {x: 0.253475936, y: null}, {x: 0.412725709, y: null}, {x: 0.111324376, y: null}, {x: 0.073280722, y: null}, {x: 0.631192661, y: null}, {x: 0.0, y: null}, {x: 0.755005889, y: null}, {x: 0.544339623, y: null}, {x: 0.582938389, y: null}, {x: 0.619815668, y: null}, {x: 0.413043478, y: null}, {x: 0.588033012, y: null}, {x: 0.706018519, y: null}, {x: 0.311246731, y: null}, {x: 0.475839476, y: null}, {x: 0.647157191, y: null}, {x: 0.476973684, y: null}, {x: 0.865203762, y: null}, {x: 0.783703704, y: null}, {x: 0.501856436, y: null}, {x: 0.298107256, y: null}, {x: 0.532069971, y: null}, {x: 0.518126888, y: null}, {x: 0.250463822, y: null}, {x: 0.746835443, y: null}, {x: 0.509328358, y: null}, {x: 0.689300412, y: null}, {x: 0.495412844, y: null}, {x: 0.31641791, y: null}, {x: 0.200236967, y: null}, {x: 0.506738545, y: null}, {x: 0.345687332, y: null}, {x: 0.37861525, y: null}, {x: 0.595591543, y: null}, {x: 0.976987448, y: null}, {x: 0.844481605, y: null}, {x: 0.643523316, y: null}, {x: 0.58462867, y: null}, {x: 0.758663366, y: null}, {x: 0.460101868, y: null}, {x: 0.151724138, y: null}, {x: 0.39053729, y: null}, {x: 0.692493947, y: null}, {x: 0.514705882, y: null}, {x: 0.487639061, y: null}, {x: 0.603576751, y: null}, {x: 0.586666667, y: null}, {x: 0.615778689, y: null}, {x: 0.325141777, y: null}, {x: 0.694992413, y: null}, {x: 0.51303681, y: null}, {x: 0.318300087, y: null}, {x: 0.504288165, y: null}, {x: 0.346153846, y: null}, {x: 0.22853688, y: null}, {x: 0.419287212, y: null}, {x: 0.371482176, y: null}, {x: 0.244755245, y: null}, {x: 0.290966387, y: null}, {x: 0.602777778, y: null}, {x: 0.773447016, y: null}, {x: 0.382406563, y: null}, {x: 0.514721919, y: null}, {x: 0.747261346, y: null}, {x: 0.241803279, y: null}, {x: 0.461661342, y: null}, {x: 0.490429043, y: null}, {x: 0.592909536, y: null}, {x: 0.643564356, y: null}, {x: 0.517699115, y: null}, {x: 0.314576872, y: null}, {x: 0.546134663, y: null}, {x: 0.549786629, y: null}, {x: 0.83531746, y: null}, {x: 0.314041746, y: null}, {x: 0.53203125, y: null}, {x: 0.361679225, y: null}, {x: 0.451010887, y: null}, {x: 0.412081985, y: null}, {x: 0.460171165, y: null}, {x: 0.219753086, y: null}, {x: 0.116191904, y: null}, {x: 0.466945607, y: null}, {x: 0.335989376, y: null}, {x: 0.545343137, y: null}, {x: 0.640953717, y: null}, {x: 0.627856366, y: null}, {x: 0.209643606, y: null}, {x: 0.064144737, y: null}, {x: 0.214920071, y: null}, {x: 0.102333932, y: null}, {x: 0.224826389, y: null}, {x: 0.285928144, y: null}, {x: 0.273134328, y: null}, {x: 0.204395604, y: null}, {x: 0.362878788, y: null}, {x: 0.359875098, y: null}, {x: 0.445807771, y: null}, {x: 0.503327787, y: null}, {x: 0.597998332, y: null}, {x: 0.41677763, y: null}, {x: 0.53214049, y: null}, {x: 0.448220065, y: null}, {x: 0.367015099, y: null}, {x: 0.394822007, y: null}, {x: 0.250138351, y: null}, {x: 0.569444444, y: null}, {x: 0.423197492, y: null}, {x: 0.339401057, y: null}, {x: 0.491944146, y: null}, {x: 0.572649573, y: null}, {x: 0.567407407, y: null}, {x: 0.538541667, y: null}, {x: 0.486540379, y: null}, {x: 0.600529101, y: null}, {x: 0.643023256, y: null}, {x: 0.395259939, y: null}, {x: 0.301717089, y: null}, {x: 0.461081794, y: null}, {x: 0.173303167, y: null}, {x: 0.103938731, y: null}, {x: 0.510615711, y: null}, {x: 0.518372703, y: null}, {x: 0.503766478, y: null}, {x: 0.166389351, y: null}, {x: 0.733954451, y: null}, {x: 0.317395264, y: null}, {x: 0.09688196, y: null}, {x: 0.110144928, y: null}, {x: 0.226229508, y: null}, {x: 0.453525641, y: null}, {x: 0.156937799, y: null}, {x: 0.318333333, y: null}, {x: 0.47479776, y: null}, {x: 0.364111498, y: null}, {x: 0.481392557, y: null}, {x: 0.612654321, y: null}, {x: 0.45637229, y: null}, {x: 0.430563003, y: null}, {x: 0.425363276, y: null}, {x: 0.682602922, y: null}, {x: 0.874673629, y: null}, {x: 0.429323308, y: null}, {x: 0.424603175, y: null}, {x: 0.71483376, y: null}, {x: 0.799259945, y: null}, {x: 0.326677316, y: null}, {x: 0.459736457, y: null}, {x: 0.613037448, y: null}, {x: 0.397482014, y: null}, {x: 0.40111034, y: null}, {x: 0.193442623, y: null}, {x: 0.504368547, y: null}, {x: 0.372201493, y: null}, {x: 0.666666667, y: null}, {x: 0.301826847, y: null}, {x: 0.272094642, y: null}, {x: 0.181669394, y: null}, {x: 0.45488959, y: null}, {x: 0.10806175, y: null}, {x: 0.237348539, y: null}, {x: 0.478473581, y: null}, {x: 0.507357269, y: null}, {x: 0.06384743, y: null}, {x: 0.481380563, y: null}, {x: 0.182926829, y: null}, {x: 0.286193873, y: null}, {x: 0.079150579, y: null}, {x: 0.072124756, y: null}, {x: 0.062569832, y: null}, {x: 0.30511316, y: null}, {x: 0.014373717, y: null}, {x: 0.027659574, y: null}, {x: 0.090014065, y: null}, {x: 0.093506494, y: null}, {x: 0.110336818, y: null}, {x: 0.171532847, y: null}, {x: 0.18190128, y: null}, {x: 0.222772277, y: null}, {x: 0.357142857, y: null}, {x: 0.28902439, y: null}, {x: 0.25631769, y: null}, {x: 0.209302326, y: null}, {x: 0.046603032, y: null}, {x: 0.136363636, y: null}, {x: 0.529411765, y: null}, {x: 0.513539652, y: null}, {x: 0.694136292, y: null}, {x: 0.320615385, y: null}, {x: 0.187062937, y: null}, {x: 0.440113395, y: null}, {x: 0.3252149, y: null}, {x: 0.223073241, y: null}, {x: 0.348987854, y: null}, {x: 0.203846154, y: null}, {x: 0.485776805, y: null}, {x: 0.195416164, y: null}, {x: 0.303915839, y: null}, {x: 0.519595449, y: null}, {x: 0.446142093, y: null}, {x: 0.708469055, y: null}, {x: 0.87366167, y: null}, {x: 0.122489169, y: null}, {x: 0.103693182, y: null}, {x: 0.104, y: null}, {x: 0.285394098, y: null}, {x: 0.048181818, y: null}, {x: 0.134287662, y: null}, {x: 0.377033493, y: null}, {x: 0.173563218, y: null}, {x: 0.413541667, y: null}, {x: 0.100830368, y: null}, {x: 0.155143339, y: null}, {x: 0.124713083, y: null}, {x: 0.069981584, y: null}, {x: 0.187894073, y: null}, {x: 0.076839237, y: null}, {x: 0.080745342, y: null}, {x: 0.233638283, y: null}, {x: 0.171955403, y: null}, {x: 0.138888889, y: null}, {x: 0.035115304, y: null}, {x: 0.063522618, y: null}, {x: 0.043445693, y: null}, {x: 0.029270889, y: null}, {x: 0.088034718, y: null}, {x: 0.056213018, y: null}, {x: 0.041929925, y: null}, {x: 0.028436019, y: null}, {x: 0.219020173, y: null}, {x: 0.181372549, y: null}, {x: 0.136986301, y: null}, {x: 0.05465587, y: null}, {x: 0.222865412, y: null}, {x: 0.311187103, y: null}, {x: 0.133010883, y: null}, {x: 0.092172641, y: null}, {x: 0.20082531, y: null}, {x: 0.336290323, y: null}, {x: 0.151573539, y: null}, {x: 0.088737201, y: null}, {x: 0.021978022, y: null}, {x: 0.107039537, y: null}, {x: 0.1169464, y: null}, {x: 0.23463357, y: null}, {x: 0.280542986, y: null}, {x: 0.252886836, y: null}, {x: 0.379912664, y: null}, {x: 0.051851852, y: null}, {x: 0.178365938, y: null}, {x: 0.049338147, y: null}, {x: 0.218590398, y: null}, {x: 0.065404475, y: null}, {x: 0.176470588, y: null}, {x: 0.023722628, y: null}, {x: 0.053662074, y: null}, {x: 0.06424581, y: null}, {x: 0.118571429, y: null}, {x: 0.039665971, y: null}, {x: 0.179028133, y: null}, {x: 0.085801839, y: null}, {x: 0.073529412, y: null}, {x: 0.0, y: null}, {x: 0.083003953, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.030425963, y: null}, {x: 0.140306122, y: null}, {x: 0.124223603, y: null}, {x: 0.100084104, y: null}, {x: 0.050578035, y: null}, {x: 0.023547881, y: null}, {x: 0.383681399, y: null}, {x: 0.219669118, y: null}, {x: 0.0995086, y: null}, {x: 0.429591837, y: null}, {x: 0.410125589, y: null}, {x: 0.199186992, y: null}, {x: 0.209136331, y: null}, {x: 0.317192983, y: null}, {x: 0.023696682, y: null}, {x: 0.03686934, y: null}, {x: 0.179156328, y: null}, {x: 0.356875334, y: null}, {x: 0.346666667, y: null}, {x: 0.678520626, y: null}, {x: 0.170376712, y: null}, {x: 0.13840399, y: null}, {x: 0.216666667, y: null}, {x: 0.274330042, y: null}, {x: 0.104882459, y: null}, {x: 0.421267894, y: null}, {x: 0.237215909, y: null}, {x: 0.05558066, y: null}, {x: 0.0, y: null}, {x: 0.397889977, y: null}, {x: 0.0, y: null}, {x: 0.445823928, y: null}, {x: 0.375609756, y: null}, {x: 0.260377359, y: null}, {x: 0.311534968, y: null}, {x: 0.712948518, y: null}, {x: 0.017329256, y: null}, {x: 0.381169324, y: null}, {x: 0.449019608, y: null}, {x: 0.421667966, y: null}, {x: 0.230405672, y: null}, {x: 0.207586207, y: null}, {x: 0.593484419, y: null}, {x: 0.405577689, y: null}, {x: 0.184075968, y: null}, {x: 0.953974895, y: null}, {x: 0.346986542, y: null}, {x: 0.646840149, y: null}, {x: 0.596830986, y: null}, {x: 0.440894569, y: null}, {x: 0.652017291, y: null}, {x: 0.535934292, y: null}, {x: 0.561151079, y: null}, {x: 0.50658858, y: null}, {x: 0.357833656, y: null}, {x: 0.333772219, y: 0.028}, {x: 0.289719626, y: null}, {x: 0.58984375, y: null}, {x: 0.131681877, y: null}, {x: 0.784313726, y: null}, {x: 0.203204047, y: null}, {x: 0.409610984, y: null}, {x: 0.199856219, y: null}, {x: 0.7265625, y: null}, {x: 0.327086883, y: null}, {x: 0.614224138, y: null}, {x: 0.0, y: 1.660842}, {x: 0.629213483, y: null}, {x: 0.622093023, y: null}, {x: 0.183846154, y: null}, {x: 0.954098361, y: null}, {x: 0.315033784, y: null}, {x: 0.229651163, y: null}, {x: 0.179271709, y: null}, {x: 0.195809249, y: null}, {x: 0.414746544, y: null}, {x: 0.408737864, y: null}, {x: 0.84139785, y: null}, {x: 0.367078825, y: null}, {x: 0.360212202, y: null}, {x: 0.20239521, y: null}, {x: 0.302828619, y: null}, {x: 0.183716075, y: null}, {x: 0.128787879, y: null}, {x: 0.014957265, y: null}, {x: 0.638455828, y: null}, {x: 0.611774065, y: null}, {x: 0.470467033, y: null}, {x: 0.541012216, y: null}, {x: 0.395325203, y: null}, {x: 0.131528046, y: null}, {x: 0.153016184, y: null}, {x: 0.208333333, y: null}, {x: 0.139296188, y: null}, {x: 0.068167605, y: null}, {x: 0.450508788, y: null}, {x: 0.33502907, y: null}, {x: 0.077464789, y: null}, {x: 0.43372549, y: null}, {x: 0.580346821, y: null}, {x: 0.545454546, y: null}, {x: 0.224074074, y: null}, {x: 0.293424318, y: null}, {x: 0.46031746, y: null}, {x: 0.587436333, y: null}, {x: 0.384101536, y: null}, {x: 0.163851351, y: null}, {x: 0.159649123, y: null}, {x: 0.343042071, y: null}, {x: 0.161805173, y: null}, {x: 0.184895833, y: null}, {x: 0.46461825, y: null}, {x: 0.3375, y: null}, {x: 0.237637363, y: null}, {x: 0.853658537, y: null}, {x: 0.401469606, y: null}, {x: 0.323802164, y: null}, {x: 0.296678967, y: null}, {x: 0.761218837, y: null}, {x: 0.352797203, y: null}, {x: 0.291713326, y: null}, {x: 0.376220053, y: null}, {x: 0.363836825, y: null}, {x: 0.189987163, y: null}, {x: 0.099157485, y: null}, {x: 0.373590982, y: null}, {x: 0.243617482, y: null}, {x: 0.109602816, y: null}, {x: 0.278382582, y: null}, {x: 0.249575552, y: null}, {x: 0.131124914, y: null}, {x: 0.185950413, y: null}, {x: 0.123209169, y: null}, {x: 0.063945578, y: null}, {x: 0.061007958, y: null}, {x: 0.153296267, y: null}, {x: 0.159895151, y: null}, {x: 0.257075472, y: null}, {x: 0.09310987, y: null}, {x: 0.144190871, y: null}, {x: 0.06038821, y: null}, {x: 0.958083832, y: null}, {x: 0.913043478, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2.0275}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 123.083}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 6.4707}, {x: 0.0, y: null}, {x: 0.0, y: 7.7502}, {x: 0.149098474, y: null}, {x: 0.13559322, y: null}, {x: 0.326656395, y: null}, {x: 0.038977913, y: null}, {x: 0.054365733, y: null}, {x: 0.229545455, y: null}, {x: 0.161816065, y: null}, {x: 0.16, y: null}, {x: 0.188829787, y: null}, {x: 0.455266955, y: null}, {x: 0.205666317, y: null}, {x: 0.109977324, y: null}, {x: 0.266155531, y: null}, {x: 0.17522245, y: null}, {x: 0.240979381, y: null}, {x: 0.4, y: null}, {x: 0.441267388, y: null}, {x: 0.190615836, y: null}, {x: 0.37191358, y: null}, {x: 0.120643432, y: null}, {x: 0.188461539, y: null}, {x: 0.4471387, y: null}, {x: 0.078555046, y: null}, {x: 0.15007736, y: null}, {x: 0.191780822, y: null}, {x: 0.046620047, y: null}, {x: 0.131648936, y: null}, {x: 0.062095731, y: null}, {x: 0.664122137, y: null}, {x: 0.150833333, y: null}, {x: 0.136498516, y: null}, {x: 0.304627249, y: null}, {x: 0.103459973, y: null}, {x: 0.157195572, y: null}, {x: 0.462550029, y: null}, {x: 0.382110092, y: null}, {x: 0.53765324, y: null}, {x: 0.545701358, y: null}, {x: 0.47224927, y: null}, {x: 0.447461629, y: null}, {x: 0.415821501, y: null}, {x: 0.146792316, y: null}, {x: 0.236842105, y: null}, {x: 0.14893617, y: null}, {x: 0.22516167, y: null}, {x: 0.138370952, y: null}, {x: 0.248789932, y: null}, {x: 0.03446419, y: null}, {x: 0.110766847, y: null}, {x: 0.129775281, y: null}, {x: 0.100196464, y: null}, {x: 0.200575816, y: null}, {x: 0.055768412, y: null}, {x: 0.201557936, y: null}, {x: 0.224975223, y: null}, {x: 0.087788131, y: null}, {x: 0.4125, y: null}, {x: 0.245819398, y: null}, {x: 0.186023622, y: null}, {x: 0.087850467, y: null}, {x: 0.296296296, y: null}, {x: 0.171052632, y: null}, {x: 0.109227872, y: null}, {x: 0.583036351, y: null}, {x: 0.136543015, y: null}, {x: 0.262032086, y: null}, {x: 0.443850267, y: null}, {x: 0.425793245, y: null}, {x: 0.106078665, y: null}, {x: 0.351926978, y: null}, {x: 0.146537842, y: null}, {x: 0.166141378, y: null}, {x: 0.720245399, y: 626.415468}, {x: 0.37398374, y: null}, {x: 0.393744988, y: null}, {x: 0.360836084, y: null}, {x: 0.016277424, y: null}, {x: 0.155405405, y: null}, {x: 0.107358263, y: null}, {x: 0.157471264, y: null}, {x: 0.21826484, y: null}, {x: 0.434280639, y: null}, {x: 0.135859519, y: null}, {x: 0.504424779, y: 0.316}, {x: 0.331439394, y: 13.296268}, {x: 0.1925, y: null}, {x: 0.70642978, y: null}, {x: 0.413407821, y: null}, {x: 0.226785714, y: null}, {x: 0.39912759, y: 0.22}, {x: 0.038442084, y: null}, {x: 0.086372361, y: null}, {x: 0.264116576, y: 0.171}, {x: 0.191969197, y: null}, {x: 0.298534799, y: null}, {x: 0.346153846, y: null}, {x: 0.609081935, y: null}, {x: 0.507186858, y: null}, {x: 0.37306317, y: null}, {x: 0.292442497, y: null}, {x: 0.335607094, y: null}, {x: 0.779331307, y: null}, {x: 0.15970696, y: null}, {x: 0.171193936, y: null}, {x: 0.612021858, y: null}, {x: 0.703883495, y: 9.505065}, {x: 0.457281553, y: null}, {x: 0.562557924, y: null}, {x: 0.501336898, y: 3.291023}, {x: 0.337520938, y: null}, {x: 0.25, y: null}, {x: 0.407685098, y: null}, {x: 0.606765328, y: null}, {x: 0.080645161, y: null}, {x: 0.079228243, y: null}, {x: 0.104516129, y: null}, {x: 0.077892325, y: null}, {x: 0.367364747, y: null}, {x: 0.068111455, y: null}, {x: 0.108819658, y: null}, {x: 0.11015583, y: null}, {x: 0.172651934, y: null}, {x: 0.111111111, y: null}, {x: 0.060164084, y: null}, {x: 0.070151307, y: null}, {x: 0.123994922, y: null}, {x: 0.038129496, y: null}, {x: 0.053426875, y: null}, {x: 0.086317723, y: null}, {x: 0.043972707, y: null}, {x: 0.465462274, y: null}, {x: 0.23566879, y: null}, {x: 0.264705882, y: null}, {x: 0.049122807, y: null}, {x: 0.269614836, y: null}, {x: 0.213986014, y: null}, {x: 0.355283308, y: null}, {x: 0.142217802, y: null}, {x: 0.323320158, y: null}, {x: 0.142641737, y: null}, {x: 0.076765309, y: null}, {x: 0.129266521, y: null}, {x: 0.05380117, y: null}, {x: 0.174522293, y: null}, {x: 0.129558541, y: null}, {x: 0.12732688, y: null}, {x: 0.120177384, y: null}, {x: 0.101956746, y: null}, {x: 0.044871795, y: null}, {x: 0.115360888, y: null}, {x: 0.242375602, y: null}, {x: 0.013727811, y: null}, {x: 0.108982827, y: null}, {x: 0.119537921, y: null}, {x: 0.13562387, y: null}, {x: 0.17057903, y: null}, {x: 0.243936567, y: 0.016676}, {x: 0.220125786, y: null}, {x: 0.196088523, y: null}, {x: 0.402489627, y: null}, {x: 0.199237369, y: null}, {x: 0.206236712, y: null}, {x: 0.407784986, y: null}, {x: 0.263336156, y: null}, {x: 0.026652452, y: null}, {x: 0.204599524, y: null}, {x: 0.187368421, y: null}, {x: 0.165945166, y: null}, {x: 0.143786127, y: null}, {x: 0.105773283, y: null}, {x: 0.068292683, y: null}, {x: 0.085781434, y: null}, {x: 0.016412661, y: null}, {x: 0.199815838, y: null}, {x: 0.200620476, y: null}, {x: 0.302513465, y: null}, {x: 0.103148024, y: null}, {x: 0.544925125, y: null}, {x: 0.021215596, y: null}, {x: 0.0664322, y: null}, {x: 0.096162528, y: null}, {x: 0.133923919, y: null}, {x: 0.095753539, y: null}, {x: 0.226061204, y: null}, {x: 0.060784314, y: null}, {x: 0.167766258, y: null}, {x: 0.05978975, y: null}, {x: 0.070167064, y: null}, {x: 0.036215817, y: null}, {x: 0.053117783, y: null}, {x: 0.131707317, y: null}, {x: 0.107004964, y: null}, {x: 0.27893368, y: null}, {x: 0.078893019, y: null}, {x: 0.10998308, y: null}, {x: 0.161182642, y: null}, {x: 0.172489083, y: null}, {x: 0.117892977, y: null}, {x: 0.175297702, y: null}, {x: 0.119463087, y: null}, {x: 0.156806843, y: null}, {x: 0.337853774, y: null}, {x: 0.518857143, y: null}, {x: 0.091755319, y: null}, {x: 0.361861862, y: null}, {x: 0.186346864, y: null}, {x: 0.288183092, y: null}, {x: 0.136073707, y: null}, {x: 0.271484375, y: null}, {x: 0.082119205, y: null}, {x: 0.054570259, y: null}, {x: 0.080757727, y: null}, {x: 0.459704881, y: null}, {x: 0.714870396, y: null}, {x: 0.249322493, y: null}, {x: 0.496815287, y: null}, {x: 0.442922374, y: null}, {x: 0.388395904, y: null}, {x: 0.424956872, y: null}, {x: 0.049279161, y: null}, {x: 0.446127946, y: null}, {x: 0.064091308, y: null}, {x: 0.098901099, y: null}, {x: 0.174726989, y: null}, {x: 0.140720598, y: null}, {x: 0.057061341, y: null}, {x: 0.541926542, y: null}, {x: 0.185299296, y: null}, {x: 0.14417435, y: null}, {x: 0.134857676, y: null}, {x: 0.027742749, y: null}, {x: 0.084090909, y: null}, {x: 0.101941748, y: null}, {x: 0.281602003, y: null}, {x: 0.290262172, y: null}, {x: 0.146823278, y: null}, {x: 0.283924843, y: null}, {x: 0.449640288, y: null}, {x: 0.159751037, y: null}, {x: 0.154223624, y: null}, {x: 0.42283105, y: null}, {x: 0.405538695, y: null}, {x: 0.332888889, y: null}, {x: 0.13303438, y: null}, {x: 0.602739726, y: null}, {x: 0.308855292, y: null}, {x: 0.25756187, y: null}, {x: 0.336330935, y: null}, {x: 0.238187078, y: null}, {x: 0.387447699, y: null}, {x: 0.293074324, y: null}, {x: 0.0, y: null}, {x: 0.704724409, y: null}, {x: 0.489795918, y: null}, {x: 0.692726373, y: null}, {x: 0.509162304, y: null}, {x: 0.524203822, y: null}, {x: 0.511111111, y: null}, {x: 0.575713241, y: null}, {x: 0.659748428, y: null}, {x: 0.570722668, y: null}, {x: 0.800833333, y: null}, {x: 0.712883436, y: null}, {x: 0.362930078, y: null}, {x: 0.702479339, y: null}, {x: 0.39157373, y: null}, {x: 0.461309524, y: null}, {x: 0.838216561, y: null}, {x: 0.330357143, y: null}, {x: 0.713744076, y: null}, {x: 0.590368609, y: null}, {x: 0.691620879, y: null}, {x: 0.400885936, y: null}, {x: 0.426078029, y: null}, {x: 0.61774744, y: null}, {x: 0.846666667, y: null}, {x: 0.0, y: null}, {x: 0.914919852, y: null}, {x: 0.631612492, y: null}, {x: 0.765822785, y: null}, {x: 0.408058608, y: null}, {x: 0.376654633, y: null}, {x: 0.759137769, y: null}, {x: 0.460877863, y: null}, {x: 0.962820513, y: null}, {x: 0.246535376, y: null}, {x: 0.494708995, y: null}, {x: 0.54665493, y: null}, {x: 0.35234657, y: null}, {x: 0.529850746, y: null}, {x: 0.703867403, y: null}, {x: 0.939643347, y: null}, {x: 0.762730834, y: null}, {x: 0.320601852, y: null}, {x: 0.268222963, y: null}, {x: 0.234782609, y: null}, {x: 0.374434389, y: null}, {x: 0.24598678, y: null}, {x: 0.352293578, y: null}, {x: 0.213042102, y: null}, {x: 0.334760885, y: null}, {x: 0.171677983, y: null}, {x: 0.349802372, y: null}, {x: 0.4289746, y: null}, {x: 0.175397094, y: null}, {x: 0.499491353, y: null}, {x: 0.15256876, y: null}, {x: 0.526505404, y: null}, {x: 0.373093682, y: null}, {x: 0.689587426, y: null}, {x: 0.535564854, y: null}, {x: 0.419400856, y: null}, {x: 0.282937365, y: null}, {x: 0.505960265, y: 563.320881}, {x: 0.512396694, y: null}, {x: 0.55448718, y: null}, {x: 0.400758534, y: null}, {x: 0.351351351, y: null}, {x: 0.551984877, y: null}, {x: 0.676271186, y: null}, {x: 0.65462754, y: null}, {x: 0.193480547, y: null}, {x: 0.349487419, y: null}, {x: 0.369491525, y: null}, {x: 0.091752577, y: null}, {x: 0.143213729, y: null}, {x: 0.197945845, y: null}, {x: 0.344911147, y: null}, {x: 0.472275335, y: null}, {x: 0.369195923, y: null}, {x: 0.301724138, y: null}, {x: 0.423828125, y: null}, {x: 0.26713948, y: null}, {x: 0.786836935, y: null}, {x: 0.0, y: null}, {x: 0.647144949, y: null}, {x: 0.370813397, y: null}, {x: 0.779329609, y: null}, {x: 0.392805755, y: null}, {x: 0.250976018, y: null}, {x: 0.391691395, y: null}, {x: 0.171388102, y: null}, {x: 0.293124246, y: null}, {x: 0.03257329, y: null}, {x: 0.105769231, y: null}, {x: 0.2324897, y: null}, {x: 0.110019646, y: null}, {x: 0.187331536, y: null}, {x: 0.232886905, y: null}, {x: 0.05028463, y: null}, {x: 0.041509434, y: null}, {x: 0.11147541, y: null}, {x: 0.200284091, y: null}, {x: 0.104834329, y: null}, {x: 0.326230713, y: null}, {x: 0.212830957, y: null}, {x: 0.229892337, y: null}, {x: 0.253539254, y: null}, {x: 0.093315685, y: null}, {x: 0.171334432, y: null}, {x: 0.017035775, y: null}, {x: 0.180933852, y: null}, {x: 0.103669725, y: null}, {x: 0.082381729, y: null}, {x: 0.05710207, y: null}, {x: 0.212732919, y: null}, {x: 0.136794396, y: 58.2}, {x: 0.23046875, y: null}, {x: 0.388836329, y: null}, {x: 0.079754601, y: null}, {x: 0.064220183, y: null}, {x: 0.065891473, y: null}, {x: 0.089265537, y: null}, {x: 0.098484848, y: null}, {x: 0.121412804, y: null}, {x: 0.071636012, y: null}, {x: 0.028651015, y: null}, {x: 0.099415205, y: null}, {x: 0.277081798, y: null}, {x: 0.032173913, y: null}, {x: 0.059291683, y: null}, {x: 0.030828516, y: null}, {x: 0.19376392, y: null}, {x: 0.042689838, y: null}, {x: 0.086629002, y: null}, {x: 0.08554674, y: null}, {x: 0.148779103, y: null}, {x: 0.225012072, y: null}, {x: 0.085658663, y: null}, {x: 0.123092574, y: null}, {x: 0.101036269, y: null}, {x: 0.088686754, y: null}, {x: 0.089260313, y: null}, {x: 0.066808059, y: null}, {x: 0.200704225, y: null}, {x: 0.254804712, y: null}, {x: 0.125153374, y: null}, {x: 0.125041024, y: null}, {x: 0.059336824, y: null}, {x: 0.048309179, y: null}, {x: 0.023809524, y: null}, {x: 0.021861777, y: null}, {x: 0.164478231, y: null}, {x: 0.159452055, y: null}, {x: 0.051624388, y: null}, {x: 0.079594017, y: null}, {x: 0.189922481, y: null}, {x: 0.062966916, y: null}, {x: 0.033414833, y: null}, {x: 0.07121058, y: null}, {x: 0.043062201, y: null}, {x: 0.013370474, y: null}, {x: 0.049490539, y: null}, {x: 0.291770574, y: null}, {x: 0.128503437, y: null}, {x: 0.091035441, y: null}, {x: 0.072281167, y: null}, {x: 0.378029079, y: null}, {x: 0.057640751, y: null}, {x: 0.064824655, y: null}, {x: 0.047761194, y: null}, {x: 0.282958199, y: null}, {x: 0.110778443, y: null}, {x: 0.0, y: null}, {x: 0.049710425, y: null}, {x: 0.205309735, y: null}, {x: 0.022093635, y: null}, {x: 0.109957239, y: null}, {x: 0.055788455, y: null}, {x: 0.099258414, y: null}, {x: 0.164835165, y: null}, {x: 0.011349306, y: null}, {x: 0.181008902, y: null}, {x: 0.039004707, y: null}, {x: 0.116424116, y: null}, {x: 0.065818998, y: null}, {x: 0.214585519, y: null}, {x: 0.008237232, y: null}, {x: 0.110149942, y: null}, {x: 0.11430527, y: null}, {x: 0.125459318, y: null}, {x: 0.014858841, y: null}, {x: 0.022026432, y: null}, {x: 0.365714286, y: null}, {x: 0.047191011, y: null}, {x: 0.102651258, y: null}, {x: 0.442716858, y: null}, {x: 0.389589905, y: null}, {x: 0.214454976, y: null}, {x: 0.417814509, y: null}, {x: 0.119771863, y: null}, {x: 0.301587302, y: null}, {x: 0.568487728, y: null}, {x: 0.076479076, y: null}, {x: 0.184641933, y: null}, {x: 0.103092784, y: null}, {x: 0.162983425, y: null}, {x: 0.027469316, y: null}, {x: 0.08627451, y: null}, {x: 0.019984013, y: null}, {x: 0.104316547, y: null}, {x: 0.174560217, y: null}, {x: 0.193661972, y: null}, {x: 0.066378845, y: null}, {x: 0.211389522, y: null}, {x: 0.198927933, y: null}, {x: 0.154576271, y: null}, {x: 0.100294985, y: null}, {x: 0.054894434, y: null}, {x: 0.11574328, y: null}, {x: 0.053484603, y: null}, {x: 0.117572291, y: null}, {x: 0.193040597, y: null}, {x: 0.07118451, y: null}, {x: 0.253968254, y: null}, {x: 0.166277129, y: null}, {x: 0.231752797, y: null}, {x: 0.210729448, y: null}, {x: 0.029944838, y: null}, {x: 0.035576638, y: null}, {x: 0.173707067, y: null}, {x: 0.0, y: null}, {x: 0.182065217, y: null}, {x: 0.208086785, y: null}, {x: 0.175537359, y: null}, {x: 0.062116041, y: null}, {x: 0.053342817, y: null}, {x: 0.050961863, y: null}, {x: 0.08186929, y: null}, {x: 0.174231332, y: null}, {x: 0.084575111, y: null}, {x: 0.141538462, y: null}, {x: 0.090909091, y: null}, {x: 0.041027766, y: null}, {x: 0.116177389, y: null}, {x: 0.08148592, y: null}, {x: 0.150557621, y: null}, {x: 0.312891114, y: null}, {x: 0.2375, y: null}, {x: 0.068212824, y: null}, {x: 0.067519545, y: null}, {x: 0.121150934, y: null}, {x: 0.012322859, y: null}, {x: 0.103762136, y: null}, {x: 0.281499203, y: null}, {x: 0.531353135, y: null}, {x: 0.531192661, y: null}, {x: 0.411413969, y: null}, {x: 0.42962963, y: null}, {x: 0.332378224, y: null}, {x: 0.259229535, y: null}, {x: 0.116621984, y: null}, {x: 0.396162528, y: null}, {x: 0.443053817, y: null}, {x: 0.216348774, y: null}, {x: 0.439892545, y: null}, {x: 0.125984252, y: null}, {x: 0.068193131, y: null}, {x: 0.358549223, y: null}, {x: 0.066871637, y: null}, {x: 0.137670197, y: null}, {x: 0.235857267, y: null}, {x: 0.198325253, y: null}, {x: 0.067734887, y: null}, {x: 0.139903515, y: null}, {x: 0.034343434, y: null}, {x: 0.072511266, y: null}, {x: 0.24797048, y: null}, {x: 0.193658955, y: null}, {x: 0.215316315, y: null}, {x: 0.381229236, y: null}, {x: 0.232831916, y: null}, {x: 0.705114255, y: null}, {x: 0.447403462, y: null}, {x: 0.860294118, y: null}, {x: 0.573271889, y: null}, {x: 0.535159141, y: null}, {x: 0.754663652, y: null}, {x: 0.271039604, y: null}, {x: 0.117948718, y: null}, {x: 0.327064595, y: null}, {x: 0.404243119, y: null}, {x: 0.317155756, y: null}, {x: 0.057017544, y: null}, {x: 0.079575597, y: null}, {x: 0.175498576, y: null}, {x: 0.042253521, y: null}, {x: 0.31218089, y: null}, {x: 0.275208914, y: null}, {x: 0.0, y: null}, {x: 0.087354918, y: null}, {x: 0.173439049, y: null}, {x: 0.2734375, y: null}, {x: 0.117002882, y: null}, {x: 0.241293532, y: null}, {x: 0.266666667, y: null}, {x: 0.12326228, y: null}, {x: 0.302752294, y: null}, {x: 0.118620038, y: null}, {x: 0.1223272, y: null}, {x: 0.356719818, y: null}, {x: 0.152706553, y: null}, {x: 0.374374374, y: null}, {x: 0.215839861, y: null}, {x: 0.116863905, y: null}, {x: 0.116147309, y: null}, {x: 0.006660324, y: null}, {x: 0.078276165, y: null}, {x: 0.096501809, y: null}, {x: 0.026209677, y: null}, {x: 0.034934498, y: null}], 'label': 'Individual Census blocks', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.0402013485, y: 45.465745812508004}, {x: 0.12383678599999999, y: 320.1157510458926}, {x: 0.2423858485, y: 156.05896684258983}, {x: 0.658750411, y: 159.47650211474334}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.0402013485, y: -16.012555142875556}, {x: 0.12383678599999999, y: 37.10313040378065}, {x: 0.2423858485, y: 5.823265709236239}, {x: 0.658750411, y: 67.44315633572592}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.0402013485, y: 106.94404676789156}, {x: 0.12383678599999999, y: 603.1283716880046}, {x: 0.2423858485, y: 306.2946679759434}, {x: 0.658750411, y: 251.50984789376076}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_MINORPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_MINORPCT.html index 112473d..6aec17b 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_MINORPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_byCensus block_MINORPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.105365854, y: null}, {x: 0.127701375, y: null}, {x: 0.180576631, y: null}, {x: 0.078467153, y: null}, {x: 0.223543401, y: null}, {x: 0.348920863, y: null}, {x: 0.10815402, y: null}, {x: 0.042747022, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.001912046, y: null}, {x: 0.086647727, y: null}, {x: 0.03286385, y: null}, {x: 0.159192825, y: null}, {x: 0.052013423, y: null}, {x: 0.243128964, y: null}, {x: 0.0, y: null}, {x: 0.0375, y: null}, {x: 0.08004386, y: null}, {x: 0.058378378, y: null}, {x: 0.0, y: null}, {x: 0.009084556, y: null}, {x: 0.0, y: 0.093729}, {x: 0.012643678, y: null}, {x: 0.008561644, y: null}, {x: 0.048888889, y: null}, {x: 0.020186335, y: null}, {x: 0.0, y: null}, {x: 0.214805825, y: null}, {x: 0.0, y: null}, {x: 0.074193548, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051190476, y: null}, {x: 0.11011236, y: null}, {x: 0.017365523, y: null}, {x: 0.016194332, y: null}, {x: 0.181886793, y: null}, {x: 0.086486486, y: null}, {x: 0.028037383, y: null}, {x: 0.041269841, y: null}, {x: 0.137373737, y: null}, {x: 0.009943182, y: null}, {x: 0.156698565, y: null}, {x: 0.0, y: null}, {x: 0.009114583, y: null}, {x: 0.007532957, y: null}, {x: 0.0, y: null}, {x: 0.065433855, y: null}, {x: 0.101090188, y: null}, {x: 0.043076923, y: null}, {x: 0.104584527, y: null}, {x: 0.084302326, y: null}, {x: 0.077343039, y: null}, {x: 0.039269406, y: null}, {x: 0.0, y: null}, {x: 0.112244898, y: null}, {x: 0.0, y: null}, {x: 0.056050955, y: null}, {x: 0.123636364, y: null}, {x: 0.04192229, y: null}, {x: 0.01509434, y: null}, {x: 0.027383367, y: null}, {x: 0.563432836, y: null}, {x: 0.116087213, y: null}, {x: 0.018032787, y: null}, {x: 0.079545455, y: null}, {x: 0.087142857, y: null}, {x: 0.016791045, y: null}, {x: 0.065853659, y: null}, {x: 0.0, y: null}, {x: 0.024526198, y: null}, {x: 0.046783626, y: null}, {x: 0.101596517, y: null}, {x: 0.062247373, y: null}, {x: 0.037094281, y: null}, {x: 0.023049645, y: null}, {x: 0.165695793, y: null}, {x: 0.311848958, y: null}, {x: 0.035984848, y: null}, {x: 0.086508754, y: null}, {x: 0.140625, y: null}, {x: 0.179422836, y: null}, {x: 0.403317329, y: null}, {x: 0.567177638, y: null}, {x: 0.18296893, y: null}, {x: 0.135164835, y: null}, {x: 0.341350601, y: null}, {x: 0.067692308, y: null}, {x: 0.043478261, y: null}, {x: 0.096518987, y: null}, {x: 0.075898802, y: null}, {x: 0.020446097, y: null}, {x: 0.049848943, y: null}, {x: 0.036156513, y: null}, {x: 0.048543689, y: null}, {x: 0.168769716, y: null}, {x: 0.57037037, y: null}, {x: 0.408592322, y: null}, {x: 0.336188437, y: null}, {x: 0.200578991, y: null}, {x: 0.160550459, y: null}, {x: 0.520951888, y: null}, {x: 0.433333333, y: null}, {x: 0.746478873, y: null}, {x: 0.252702703, y: null}, {x: 0.119700748, y: null}, {x: 0.014677104, y: null}, {x: 0.332987552, y: null}, {x: 0.125859697, y: null}, {x: 0.053949904, y: null}, {x: 0.166951567, y: null}, {x: 0.077544426, y: null}, {x: 0.144, y: null}, {x: 0.188337273, y: null}, {x: 0.182937956, y: null}, {x: 0.150515464, y: null}, {x: 0.059340659, y: null}, {x: 0.238270469, y: null}, {x: 0.07963595, y: null}, {x: 0.090233546, y: null}, {x: 0.003418154, y: null}, {x: 0.0, y: null}, {x: 0.02514193, y: null}, {x: 0.05987395, y: null}, {x: 0.150637312, y: null}, {x: 0.055606199, y: null}, {x: 0.094919786, y: null}, {x: 0.052230686, y: null}, {x: 0.068503351, y: null}, {x: 0.025925926, y: null}, {x: 0.099388379, y: null}, {x: 0.005780347, y: null}, {x: 0.0, y: null}, {x: 0.297540208, y: null}, {x: 0.085231447, y: null}, {x: 0.047406807, y: null}, {x: 0.160447761, y: null}, {x: 0.13250678, y: null}, {x: 0.021102498, y: null}, {x: 0.028156222, y: null}, {x: 0.155704698, y: null}, {x: 0.069627851, y: null}, {x: 0.068255688, y: null}, {x: 0.147706422, y: null}, {x: 0.056720099, y: null}, {x: 0.180944756, y: null}, {x: 0.445935869, y: null}, {x: 0.005617978, y: null}, {x: 0.211564626, y: null}, {x: 0.0, y: null}, {x: 0.017563117, y: null}, {x: 0.0, y: null}, {x: 0.132424538, y: null}, {x: 0.0, y: null}, {x: 0.120667523, y: null}, {x: 0.155844156, y: null}, {x: 0.0, y: null}, {x: 0.011111111, y: null}, {x: 0.035864979, y: null}, {x: 0.117985612, y: null}, {x: 0.006263048, y: null}, {x: 0.169873107, y: null}, {x: 0.161861758, y: null}, {x: 0.069643806, y: null}, {x: 0.210958904, y: null}, {x: 0.062897791, y: null}, {x: 0.226586103, y: null}, {x: 0.100110011, y: null}, {x: 0.228985507, y: null}, {x: 0.0416, y: null}, {x: 0.041720991, y: null}, {x: 0.075301205, y: null}, {x: 0.042037187, y: null}, {x: 0.049303944, y: null}, {x: 0.264023211, y: null}, {x: 0.006952491, y: null}, {x: 0.215423303, y: null}, {x: 0.091932458, y: null}, {x: 0.0, y: null}, {x: 0.064651553, y: null}, {x: 0.085135135, y: null}, {x: 0.083086053, y: null}, {x: 0.111438183, y: null}, {x: 0.094222222, y: null}, {x: 0.280571074, y: null}, {x: 0.357062147, y: null}, {x: 0.186248912, y: null}, {x: 0.069781931, y: null}, {x: 0.0, y: null}, {x: 0.067882472, y: null}, {x: 0.681473456, y: null}, {x: 0.522123894, y: null}, {x: 0.295514512, y: null}, {x: 0.0, y: null}, {x: 0.354925776, y: null}, {x: 0.389692586, y: null}, {x: 0.078374456, y: null}, {x: 0.300729927, y: null}, {x: 0.278776978, y: null}, {x: 0.196078431, y: null}, {x: 0.473479948, y: null}, {x: 0.356513222, y: null}, {x: 0.393630573, y: null}, {x: 0.180754226, y: null}, {x: 0.607526882, y: null}, {x: 0.125, y: null}, {x: 0.174358974, y: null}, {x: 0.101910828, y: null}, {x: 0.085222121, y: null}, {x: 0.066115702, y: null}, {x: 0.074225122, y: null}, {x: 0.130674003, y: null}, {x: 0.199579832, y: null}, {x: 0.764444444, y: null}, {x: 0.346153846, y: null}, {x: 0.325123153, y: null}, {x: 0.527827648, y: null}, {x: 0.032423208, y: null}, {x: 0.056712963, y: null}, {x: 0.0, y: null}, {x: 0.147959184, y: null}, {x: 0.109707972, y: null}, {x: 0.185028249, y: null}, {x: 0.151345292, y: null}, {x: 0.032191781, y: null}, {x: 0.450931677, y: null}, {x: 0.173245614, y: null}, {x: 0.043789097, y: null}, {x: 0.433802817, y: null}, {x: 0.051825677, y: null}, {x: 0.132575758, y: null}, {x: 0.087141339, y: null}, {x: 0.079012346, y: null}, {x: 0.164910432, y: null}, {x: 0.0, y: null}, {x: 0.037076271, y: null}, {x: 0.0, y: null}, {x: 0.004810997, y: null}, {x: 0.072649573, y: null}, {x: 0.116049383, y: null}, {x: 0.185783522, y: null}, {x: 0.0546875, y: null}, {x: 0.008190618, y: null}, {x: 0.068567026, y: null}, {x: 0.056057866, y: null}, {x: 0.338461539, y: null}, {x: 0.043539326, y: null}, {x: 0.089788732, y: null}, {x: 0.060455192, y: null}, {x: 0.096128171, y: null}, {x: 0.047819972, y: 0.175}, {x: 0.028824834, y: null}, {x: 0.223713647, y: null}, {x: 0.003062787, y: null}, {x: 0.03803681, y: null}, {x: 0.025835866, y: null}, {x: 0.526992288, y: null}, {x: 0.147018031, y: null}, {x: 0.093877551, y: null}, {x: 0.273966766, y: null}, {x: 0.0, y: null}, {x: 0.129432624, y: null}, {x: 0.234777839, y: null}, {x: 0.078154426, y: null}, {x: 0.288143599, y: null}, {x: 0.16075388, y: null}, {x: 0.103986135, y: null}, {x: 0.169312169, y: null}, {x: 0.126778784, y: null}, {x: 0.087665647, y: null}, {x: 0.046774194, y: null}, {x: 0.176399027, y: null}, {x: 0.078152753, y: null}, {x: 0.0, y: null}, {x: 0.124863089, y: null}, {x: 0.007912957, y: null}, {x: 0.015957447, y: null}, {x: 0.055993001, y: null}, {x: 0.024819028, y: null}, {x: 0.168234065, y: null}, {x: 0.033358605, y: null}, {x: 0.080824089, y: null}, {x: 0.21902378, y: null}, {x: 0.0, y: null}, {x: 0.097222222, y: null}, {x: 0.211151737, y: null}, {x: 0.09883236, y: null}, {x: 0.274376417, y: null}, {x: 0.066914498, y: null}, {x: 0.05345502, y: null}, {x: 0.119131044, y: null}, {x: 0.123703704, y: null}, {x: 0.035940803, y: null}, {x: 0.171606864, y: null}, {x: 0.010538642, y: null}, {x: 0.038659794, y: null}, {x: 0.104722793, y: null}, {x: 0.025542784, y: null}, {x: 0.072033898, y: null}, {x: 0.162601626, y: null}, {x: 0.049731183, y: null}, {x: 0.111776447, y: null}, {x: 0.075938567, y: null}, {x: 0.123469388, y: null}, {x: 0.004201681, y: null}, {x: 0.069064748, y: null}, {x: 0.075785582, y: null}, {x: 0.022698613, y: null}, {x: 0.093304061, y: null}, {x: 0.126888218, y: null}, {x: 0.031088083, y: null}, {x: 0.043604651, y: null}, {x: 0.059933407, y: null}, {x: 0.144288577, y: null}, {x: 0.082706767, y: null}, {x: 0.062365591, y: null}, {x: 0.103448276, y: null}, {x: 0.049327354, y: null}, {x: 0.116154873, y: null}, {x: 0.079656863, y: null}, {x: 0.038343558, y: null}, {x: 0.030959752, y: null}, {x: 0.137010676, y: null}, {x: 0.062062937, y: null}, {x: 0.070234114, y: null}, {x: 0.039125432, y: null}, {x: 0.124277457, y: null}, {x: 0.14924297, y: null}, {x: 0.128827878, y: null}, {x: 0.181007579, y: null}, {x: 0.264024704, y: null}, {x: 0.182767624, y: null}, {x: 0.114482759, y: null}, {x: 0.13799448, y: null}, {x: 0.069688109, y: null}, {x: 0.440084836, y: null}, {x: 0.127807901, y: null}, {x: 0.07247191, y: null}, {x: 0.192026951, y: null}, {x: 0.256003098, y: null}, {x: 0.247634069, y: null}, {x: 0.069755336, y: null}, {x: 0.091484465, y: null}, {x: 0.162002946, y: null}, {x: 0.173322005, y: null}, {x: 0.003348962, y: null}, {x: 0.253140097, y: null}, {x: 0.190780142, y: null}, {x: 0.119382023, y: null}, {x: 0.103550296, y: null}, {x: 0.041048035, y: null}, {x: 0.041136874, y: null}, {x: 0.153524492, y: null}, {x: 0.255386232, y: null}, {x: 0.272606383, y: null}, {x: 0.132923242, y: null}, {x: 0.110393423, y: null}, {x: 0.163822526, y: null}, {x: 0.11625239, y: null}, {x: 0.12860676, y: null}, {x: 0.090605892, y: null}, {x: 0.104689564, y: null}, {x: 0.04501845, y: null}, {x: 0.066892464, y: null}, {x: 0.056030389, y: null}, {x: 0.072949527, y: null}, {x: 0.149312377, y: null}, {x: 0.282181357, y: null}, {x: 0.15862069, y: null}, {x: 0.16550765, y: null}, {x: 0.072987722, y: null}, {x: 0.341517857, y: null}, {x: 0.193345324, y: null}, {x: 0.50660066, y: null}, {x: 0.222645618, y: null}, {x: 0.142857143, y: null}, {x: 0.060335782, y: null}, {x: 0.113872832, y: null}, {x: 0.181596884, y: null}, {x: 0.204612655, y: null}, {x: 0.079749478, y: null}, {x: 0.427392739, y: null}, {x: 0.34904271, y: null}, {x: 0.192474674, y: null}, {x: 0.284760845, y: null}, {x: 0.169529837, y: null}, {x: 0.358309318, y: null}, {x: 0.350997935, y: null}, {x: 0.1843927, y: null}, {x: 0.31897712, y: null}, {x: 0.546705998, y: null}, {x: 0.254285714, y: null}, {x: 0.264947245, y: null}, {x: 0.132394366, y: null}, {x: 0.1425, y: 33.039}, {x: 0.091035441, y: null}, {x: 0.512331317, y: null}, {x: 0.25782957, y: null}, {x: 0.504943503, y: null}, {x: 0.202027027, y: null}, {x: 0.25, y: null}, {x: 0.157495256, y: null}, {x: 0.187030075, y: null}, {x: 0.140300935, y: null}, {x: 0.323996265, y: null}, {x: 0.168269231, y: null}, {x: 0.110200364, y: null}, {x: 0.092343659, y: null}, {x: 0.039877301, y: null}, {x: 0.033057851, y: null}, {x: 0.088983051, y: null}, {x: 0.081067721, y: null}, {x: 0.026357574, y: null}, {x: 0.0, y: null}, {x: 0.047070775, y: null}, {x: 0.025242718, y: null}, {x: 0.0, y: null}, {x: 0.016577857, y: null}, {x: 0.072675599, y: null}, {x: 0.418491484, y: null}, {x: 0.383269313, y: null}, {x: 0.143283582, y: null}, {x: 0.018759019, y: null}, {x: 0.097142857, y: null}, {x: 0.340350877, y: null}, {x: 0.046613896, y: null}, {x: 0.060918947, y: null}, {x: 0.169749728, y: null}, {x: 0.211567732, y: null}, {x: 0.0, y: null}, {x: 0.134290844, y: null}, {x: 0.215109573, y: null}, {x: 0.0, y: null}, {x: 0.073217726, y: null}, {x: 0.053984576, y: null}, {x: 0.102941177, y: null}, {x: 0.077723043, y: null}, {x: 0.102367243, y: null}, {x: 0.301497161, y: null}, {x: 0.190176322, y: null}, {x: 0.043165468, y: null}, {x: 0.166111111, y: null}, {x: 0.078163772, y: null}, {x: 0.123096447, y: null}, {x: 0.106224628, y: null}, {x: 0.201897019, y: null}, {x: 0.112547529, y: null}, {x: 0.142446043, y: null}, {x: 0.089853826, y: null}, {x: 0.304609218, y: null}, {x: 0.23088685, y: null}, {x: 0.056456456, y: null}, {x: 0.150236967, y: null}, {x: 0.210780926, y: null}, {x: 0.2651341, y: null}, {x: 0.439701897, y: null}, {x: 0.281912494, y: null}, {x: 0.104426788, y: null}, {x: 0.607964105, y: null}, {x: 0.281208936, y: null}, {x: 0.178631052, y: null}, {x: 0.118983957, y: null}, {x: 0.057737814, y: null}, {x: 0.098333333, y: null}, {x: 0.10778781, y: null}, {x: 0.218627998, y: null}, {x: 0.130484989, y: null}, {x: 0.018786127, y: null}, {x: 0.072727273, y: null}, {x: 0.077284946, y: null}, {x: 0.0, y: null}, {x: 0.021528525, y: 999.999999}, {x: 0.113612004, y: null}, {x: 0.283961437, y: null}, {x: 0.042682927, y: null}, {x: 0.0, y: null}, {x: 0.007020623, y: null}, {x: 0.054632867, y: null}, {x: 0.011997177, y: null}, {x: 0.136391068, y: null}, {x: 0.012314379, y: null}, {x: 0.165167095, y: null}, {x: 0.07540395, y: null}, {x: 0.076374019, y: null}, {x: 0.065789474, y: null}, {x: 0.01421092, y: null}, {x: 0.018181818, y: null}, {x: 0.343534057, y: null}, {x: 0.393822394, y: null}, {x: 0.109207709, y: null}, {x: 0.299324324, y: null}, {x: 0.126465145, y: null}, {x: 0.439949431, y: null}, {x: 0.484123107, y: null}, {x: 0.3299389, y: null}, {x: 0.377239199, y: null}, {x: 0.126410835, y: null}, {x: 0.391140434, y: 95.803564}, {x: 0.148487626, y: null}, {x: 0.311876248, y: 1904.333217}, {x: 0.129770992, y: null}, {x: 0.290563476, y: null}, {x: 0.325311203, y: 33.812967}, {x: 0.226287263, y: null}, {x: 0.19058296, y: null}, {x: 0.074882995, y: null}, {x: 0.11875, y: 13.403297}, {x: 0.427721088, y: null}, {x: 0.233539095, y: null}, {x: 0.1064764, y: null}, {x: 0.371531346, y: null}, {x: 0.038932147, y: null}, {x: 0.164929491, y: null}, {x: 0.111464968, y: null}, {x: 0.064239829, y: null}, {x: 0.553734062, y: null}, {x: 0.3091354, y: null}, {x: 0.195307546, y: null}, {x: 0.511737089, y: null}, {x: 0.252288912, y: null}, {x: 0.673400673, y: null}, {x: 0.466556565, y: null}, {x: 0.599202393, y: null}, {x: 0.07117853, y: 29.512963}, {x: 0.261124122, y: null}, {x: 0.661861075, y: null}, {x: 0.282131661, y: null}, {x: 0.333941606, y: null}, {x: 0.320334262, y: null}, {x: 0.162935323, y: null}, {x: 0.553374233, y: null}, {x: 0.220845481, y: null}, {x: 0.367826905, y: null}, {x: 0.606408706, y: null}, {x: 0.428832117, y: null}, {x: 0.425287356, y: null}, {x: 0.393534002, y: null}, {x: 0.499643621, y: null}, {x: 0.40228013, y: null}, {x: 0.196036801, y: null}, {x: 0.104495747, y: null}, {x: 0.247694335, y: null}, {x: 0.0, y: null}, {x: 0.111740891, y: null}, {x: 0.104570637, y: null}, {x: 0.097222222, y: null}, {x: 0.143369176, y: null}, {x: 0.247256767, y: null}, {x: 0.440318302, y: null}, {x: 0.273411371, y: null}, {x: 0.174556213, y: null}, {x: 0.26993865, y: 292.744127}, {x: 0.413441955, y: 194.570504}, {x: 0.353071145, y: 443.440785}, {x: 0.09624198, y: null}, {x: 0.344858963, y: null}, {x: 0.297734628, y: null}, {x: 0.070576541, y: null}, {x: 0.41216992, y: null}, {x: 0.089430894, y: null}, {x: 0.283662478, y: null}, {x: 0.2933213, y: null}, {x: 0.020979021, y: null}, {x: 0.142326733, y: null}, {x: 0.218645949, y: null}, {x: 0.079934747, y: null}, {x: 0.005185185, y: null}, {x: 0.021877205, y: null}, {x: 0.019487179, y: null}, {x: 0.016007114, y: null}, {x: 0.080165289, y: null}, {x: 0.048809524, y: null}, {x: 0.186153846, y: null}, {x: 0.042253521, y: null}, {x: 0.050705467, y: null}, {x: 0.080298786, y: null}, {x: 0.026431718, y: null}, {x: 0.143074581, y: null}, {x: 0.001295337, y: null}, {x: 0.117918314, y: null}, {x: 0.0, y: null}, {x: 0.076203209, y: null}, {x: 0.009615385, y: null}, {x: 0.116828929, y: null}, {x: 0.046614872, y: null}, {x: 0.043117745, y: null}, {x: 0.091375291, y: null}, {x: 0.058034217, y: null}, {x: 0.139097744, y: null}, {x: 0.0, y: null}, {x: 0.007044865, y: null}, {x: 0.015905947, y: null}, {x: 0.084431631, y: null}, {x: 0.047267997, y: null}, {x: 0.07917229, y: null}, {x: 0.0, y: null}, {x: 0.012435233, y: null}, {x: 0.029411765, y: null}, {x: 0.014955135, y: null}, {x: 0.059977578, y: null}, {x: 0.096267191, y: null}, {x: 0.292946338, y: null}, {x: 0.431599229, y: null}, {x: 0.059101655, y: null}, {x: 0.362642586, y: null}, {x: 0.053503185, y: null}, {x: 0.200823045, y: null}, {x: 0.397501837, y: null}, {x: 0.19303072, y: null}, {x: 0.084815321, y: null}, {x: 0.402857143, y: 0.12512}, {x: 0.13074205, y: null}, {x: 0.053875236, y: null}, {x: 0.115666179, y: 5.77926}, {x: 0.289068826, y: null}, {x: 0.164150943, y: null}, {x: 0.12191358, y: null}, {x: 0.217627856, y: null}, {x: 0.34057971, y: null}, {x: 0.520923521, y: null}, {x: 0.347692308, y: null}, {x: 0.496141125, y: null}, {x: 0.578330893, y: null}, {x: 0.701780415, y: 734.949067}, {x: 0.717926186, y: null}, {x: 0.472131148, y: null}, {x: 0.30548926, y: null}, {x: 0.696914701, y: null}, {x: 0.485887097, y: null}, {x: 0.756521739, y: null}, {x: 0.709813875, y: null}, {x: 0.706638116, y: null}, {x: 0.336294416, y: null}, {x: 0.202873313, y: null}, {x: 0.335480674, y: null}, {x: 0.522649781, y: null}, {x: 0.71301536, y: null}, {x: 0.79299691, y: null}, {x: 0.302861685, y: null}, {x: 0.200595829, y: null}, {x: 0.790909091, y: 11.58294}, {x: 0.611345806, y: null}, {x: 0.465714286, y: 71.329358}, {x: 0.539783002, y: null}, {x: 0.5, y: null}, {x: 0.54770318, y: null}, {x: 0.466346154, y: null}, {x: 0.850290698, y: null}, {x: 0.334841629, y: null}, {x: 0.771186441, y: null}, {x: 0.619491525, y: null}, {x: 0.798507463, y: null}, {x: 0.468407751, y: null}, {x: 0.448529412, y: null}, {x: 0.271723122, y: null}, {x: 0.791451732, y: null}, {x: 0.587115666, y: null}, {x: 0.473133287, y: null}, {x: 0.511111111, y: null}, {x: 0.609649123, y: 148.959479}, {x: 0.918666667, y: null}, {x: 0.193078324, y: null}, {x: 0.637599094, y: null}, {x: 0.492332526, y: null}, {x: 0.353466026, y: null}, {x: 0.108202443, y: null}, {x: 0.360069747, y: null}, {x: 0.266009852, y: null}, {x: 0.163120567, y: null}, {x: 0.072106262, y: null}, {x: 0.482256597, y: null}, {x: 0.481981982, y: null}, {x: 0.194842407, y: null}, {x: 0.308779011, y: null}, {x: 0.393171806, y: 291.200847}, {x: 0.280944625, y: null}, {x: 0.429058663, y: null}, {x: 0.415478615, y: null}, {x: 0.688605108, y: 123.559491}, {x: 0.403846154, y: null}, {x: 0.529829546, y: 253.998766}, {x: 0.283454988, y: 25.889026}, {x: 0.689655172, y: null}, {x: 0.327830189, y: 32.36738}, {x: 0.277248677, y: 54.925090000000004}, {x: 0.367272727, y: null}, {x: 0.083916084, y: null}, {x: 0.140888208, y: null}, {x: 0.112855741, y: null}, {x: 0.068510371, y: null}, {x: 0.06961507, y: null}, {x: 0.422695036, y: null}, {x: 0.013148283, y: null}, {x: 0.099644128, y: null}, {x: 0.135785007, y: null}, {x: 0.038819876, y: null}, {x: 0.207633588, y: null}, {x: 0.049910873, y: null}, {x: 0.057206208, y: null}, {x: 0.074529075, y: null}, {x: 0.226962457, y: null}, {x: 0.031786942, y: null}, {x: 0.277978339, y: null}, {x: 0.128274616, y: null}, {x: 0.017479301, y: null}, {x: 0.031531532, y: null}, {x: 0.092196612, y: null}, {x: 0.144349478, y: null}, {x: 0.017973856, y: 40.416186}, {x: 0.050243112, y: null}, {x: 0.043878273, y: null}, {x: 0.05679336, y: null}, {x: 0.054938632, y: null}, {x: 0.097997893, y: null}, {x: 0.023809524, y: null}, {x: 0.194297783, y: null}, {x: 0.035339064, y: null}, {x: 0.157973174, y: null}, {x: 0.078391275, y: null}, {x: 0.118937644, y: null}, {x: 0.073660714, y: null}, {x: 0.008857396, y: null}, {x: 0.069457659, y: null}, {x: 0.090103397, y: null}, {x: 0.033205619, y: null}, {x: 0.188223619, y: null}, {x: 0.323778196, y: null}, {x: 0.064375341, y: null}, {x: 0.263235294, y: null}, {x: 0.170763828, y: null}, {x: 0.0, y: null}, {x: 0.147623863, y: null}, {x: 0.215273602, y: null}, {x: 0.035479632, y: null}, {x: 0.304761905, y: null}, {x: 0.357512953, y: null}, {x: 0.156123822, y: null}, {x: 0.188461539, y: null}, {x: 0.063866513, y: null}, {x: 0.186697783, y: null}, {x: 0.262158956, y: null}, {x: 0.016722408, y: null}, {x: 0.177483444, y: null}, {x: 0.161413563, y: null}, {x: 0.204156889, y: null}, {x: 0.210573477, y: null}, {x: 0.111827957, y: null}, {x: 0.164348925, y: null}, {x: 0.040358744, y: null}, {x: 0.445730825, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050359712, y: 1.80788}, {x: 0.066358025, y: null}, {x: 0.057142857, y: null}, {x: 0.246930423, y: null}, {x: 0.053128689, y: null}, {x: 0.127055306, y: null}, {x: 0.077281812, y: null}, {x: 0.12568306, y: null}, {x: 0.054994388, y: null}, {x: 0.325423729, y: null}, {x: 0.092857143, y: null}, {x: 0.0, y: null}, {x: 0.261203585, y: null}, {x: 0.166549047, y: null}, {x: 0.114084507, y: null}, {x: 0.095015576, y: 1.335464}, {x: 0.209486166, y: null}, {x: 0.079704797, y: null}, {x: 0.130170316, y: null}, {x: 0.287390029, y: null}, {x: 0.065420561, y: null}, {x: 0.087431694, y: null}, {x: 0.009425878, y: null}, {x: 0.205692109, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.088277858, y: null}, {x: 0.029090909, y: null}, {x: 0.03567681, y: null}, {x: 0.153957529, y: null}, {x: 0.0, y: null}, {x: 0.045031056, y: null}, {x: 0.096429886, y: null}, {x: 0.149019608, y: null}, {x: 0.042151163, y: null}, {x: 0.0, y: null}, {x: 0.048780488, y: 0.072}, {x: 0.052028219, y: null}, {x: 0.024713151, y: null}, {x: 0.105195638, y: null}, {x: 0.265402844, y: null}, {x: 0.251345119, y: null}, {x: 0.017069701, y: null}, {x: 0.177110694, y: null}, {x: 0.447255742, y: null}, {x: 0.353989813, y: null}, {x: 0.492346939, y: null}, {x: 0.109599395, y: null}, {x: 0.529886914, y: null}, {x: 0.0, y: null}, {x: 0.076752768, y: null}, {x: 0.76118068, y: null}, {x: 0.907096774, y: null}, {x: 0.108994709, y: null}, {x: 0.060945274, y: null}, {x: 0.207780725, y: null}, {x: 0.055555556, y: null}, {x: 0.070107858, y: null}, {x: 0.202298851, y: null}, {x: 0.164718385, y: null}, {x: 0.204397394, y: null}, {x: 0.100269179, y: null}, {x: 0.070422535, y: null}, {x: 0.155378486, y: null}, {x: 0.105080831, y: null}, {x: 0.424657534, y: null}, {x: 0.166969147, y: null}, {x: 0.614195764, y: null}, {x: 0.174245644, y: null}, {x: 0.494323144, y: null}, {x: 0.272815534, y: null}, {x: 0.063165906, y: null}, {x: 0.35480916, y: null}, {x: 0.35375086, y: null}, {x: 0.436554133, y: null}, {x: 0.555452865, y: null}, {x: 0.297352342, y: null}, {x: 0.304854369, y: null}, {x: 0.483031674, y: null}, {x: 0.739099357, y: null}, {x: 0.706566916, y: null}, {x: 0.530754597, y: null}, {x: 0.511075949, y: null}, {x: 0.287601626, y: null}, {x: 0.528176796, y: null}, {x: 0.162995595, y: null}, {x: 0.288888889, y: null}, {x: 0.27589545, y: null}, {x: 0.286082474, y: null}, {x: 0.092459016, y: null}, {x: 0.410671257, y: null}, {x: 0.784060552, y: null}, {x: 0.775528979, y: null}, {x: 0.462857143, y: null}, {x: 0.388213283, y: null}, {x: 0.155482815, y: null}, {x: 0.378787879, y: null}, {x: 0.267548322, y: null}, {x: 0.880447585, y: null}, {x: 0.509410289, y: null}, {x: 0.466165414, y: 32.512411}, {x: 0.575409836, y: null}, {x: 0.66496945, y: null}, {x: 0.800465387, y: null}, {x: 0.730895645, y: null}, {x: 0.539273154, y: null}, {x: 0.554922701, y: null}, {x: 0.788423154, y: null}, {x: 0.816571131, y: null}, {x: 0.816338028, y: null}, {x: 0.857978279, y: null}, {x: 0.901328273, y: null}, {x: 0.891085791, y: null}, {x: 0.729947602, y: null}, {x: 0.70969993, y: null}, {x: 0.792498005, y: null}, {x: 0.866344606, y: null}, {x: 0.39581517, y: null}, {x: 0.897160883, y: null}, {x: 0.446332737, y: null}, {x: 0.700680272, y: null}, {x: 0.715441672, y: null}, {x: 0.386773547, y: null}, {x: 0.845647773, y: null}, {x: 0.76681128, y: null}, {x: 0.459394905, y: null}, {x: 0.346446701, y: null}, {x: 0.500794913, y: null}, {x: 0.79403489, y: null}, {x: 0.763414634, y: null}, {x: 0.275307474, y: null}, {x: 0.583333333, y: null}, {x: 0.374887082, y: null}, {x: 0.868758916, y: null}, {x: 0.770931326, y: null}, {x: 0.411007026, y: null}, {x: 0.500808625, y: null}, {x: 0.519764508, y: 144.338492}, {x: 0.892459827, y: null}, {x: 0.744423792, y: null}, {x: 0.919898284, y: null}, {x: 0.877671334, y: null}, {x: 0.885714286, y: null}, {x: 0.810117302, y: null}, {x: 0.662431942, y: null}, {x: 0.884689302, y: null}, {x: 0.164921466, y: null}, {x: 0.368703108, y: null}, {x: 0.117740652, y: null}, {x: 0.17421875, y: null}, {x: 0.148337596, y: null}, {x: 0.29445823, y: null}, {x: 0.19520548, y: null}, {x: 0.336518047, y: null}, {x: 0.112641815, y: null}, {x: 0.0, y: null}, {x: 0.089770355, y: null}, {x: 0.124255952, y: null}, {x: 0.229804315, y: null}, {x: 0.111111111, y: null}, {x: 0.087553648, y: null}, {x: 0.171250649, y: null}, {x: 0.179650915, y: null}, {x: 0.123737374, y: null}, {x: 0.097915657, y: null}, {x: 0.309719934, y: null}, {x: 0.334868421, y: null}, {x: 0.107121836, y: null}, {x: 0.448412698, y: null}, {x: 0.154831199, y: null}, {x: 0.11942446, y: null}, {x: 0.070607553, y: null}, {x: 0.069484241, y: null}, {x: 0.128732581, y: null}, {x: 0.05971223, y: null}, {x: 0.117810118, y: null}, {x: 0.031338028, y: null}, {x: 0.083333333, y: null}, {x: 0.060202451, y: null}, {x: 0.119221411, y: null}, {x: 0.078912467, y: null}, {x: 0.028119508, y: null}, {x: 0.046100819, y: null}, {x: 0.080040188, y: null}, {x: 0.002484472, y: null}, {x: 0.178756477, y: null}, {x: 0.064392119, y: null}, {x: 0.0, y: null}, {x: 0.188484519, y: null}, {x: 0.343164794, y: null}, {x: 0.498570067, y: null}, {x: 0.121147391, y: null}, {x: 0.022821577, y: null}, {x: 0.0, y: null}, {x: 0.240073869, y: null}, {x: 0.158736505, y: null}, {x: 0.032423208, y: null}, {x: 0.167942584, y: null}, {x: 0.240983607, y: null}, {x: 0.450167973, y: null}, {x: 0.603729604, y: null}, {x: 0.61519806, y: null}, {x: 0.520325203, y: null}, {x: 0.39229249, y: null}, {x: 0.160136286, y: null}, {x: 0.674418605, y: null}, {x: 0.4625, y: null}, {x: 0.172566372, y: null}, {x: 0.024505929, y: null}, {x: 0.215869312, y: null}, {x: 0.043548387, y: null}, {x: 0.066592675, y: null}, {x: 0.188972667, y: null}, {x: 0.088761632, y: null}, {x: 0.054274084, y: null}, {x: 0.128458498, y: null}, {x: 0.257826888, y: null}, {x: 0.025641026, y: null}, {x: 0.20610687, y: null}, {x: 0.043855642, y: null}, {x: 0.0, y: null}, {x: 0.259084474, y: null}, {x: 0.064085447, y: null}, {x: 0.231536926, y: null}, {x: 0.059910771, y: null}, {x: 0.296178344, y: null}, {x: 0.123842028, y: null}, {x: 0.005, y: null}, {x: 0.039193084, y: null}, {x: 0.346133333, y: null}, {x: 0.032371569, y: null}, {x: 0.027896164, y: null}, {x: 0.06244087, y: null}, {x: 0.093683084, y: null}, {x: 0.045801527, y: null}, {x: 0.100452489, y: null}, {x: 0.054640719, y: null}, {x: 0.036539269, y: null}, {x: 0.048086867, y: null}, {x: 0.118127382, y: null}, {x: 0.125984252, y: null}, {x: 0.07565337, y: null}, {x: 0.0446593, y: null}, {x: 0.065279092, y: null}, {x: 0.0890625, y: null}, {x: 0.410596027, y: null}, {x: 0.0, y: null}, {x: 0.073899371, y: null}, {x: 0.043646945, y: null}, {x: 0.158458244, y: null}, {x: 0.020166074, y: null}, {x: 0.048794827, y: null}, {x: 0.176685621, y: null}, {x: 0.054528212, y: null}, {x: 0.189847297, y: null}, {x: 0.273056058, y: null}, {x: 0.039981404, y: null}, {x: 0.090689238, y: null}, {x: 0.079083969, y: null}, {x: 0.101827676, y: null}, {x: 0.043093923, y: null}, {x: 0.11942446, y: null}, {x: 0.052166225, y: null}, {x: 0.401840491, y: null}, {x: 0.284057971, y: null}, {x: 0.322128852, y: null}, {x: 0.084566596, y: null}, {x: 0.314262691, y: null}, {x: 0.082706767, y: null}, {x: 0.179908676, y: null}, {x: 0.230769231, y: null}, {x: 0.434077079, y: null}, {x: 0.4192673, y: null}, {x: 0.049511855, y: null}, {x: 0.023255814, y: null}, {x: 0.019674936, y: null}, {x: 0.251763047, y: null}, {x: 0.177434908, y: null}, {x: 0.080993521, y: null}, {x: 0.097095436, y: null}, {x: 0.088639837, y: null}, {x: 0.012965964, y: null}, {x: 0.033877039, y: null}, {x: 0.132625272, y: null}, {x: 0.020084567, y: null}, {x: 0.026315789, y: null}, {x: 0.014937107, y: null}, {x: 0.178063943, y: null}, {x: 0.004398827, y: null}, {x: 0.04007286, y: null}, {x: 0.035555556, y: null}, {x: 0.058421851, y: null}, {x: 0.094894027, y: null}, {x: 0.011702128, y: null}, {x: 0.032258065, y: null}, {x: 0.0, y: null}, {x: 0.038085938, y: null}, {x: 0.032821599, y: null}, {x: 0.06330366, y: 0.89}, {x: 0.026004728, y: null}, {x: 0.216653193, y: null}, {x: 0.322722283, y: null}, {x: 0.037533512, y: 0.18}, {x: 0.078947368, y: null}, {x: 0.019346231, y: 0.276}, {x: 0.377939984, y: null}, {x: 0.204854369, y: null}, {x: 0.222056632, y: null}, {x: 0.114333057, y: null}, {x: 0.124388919, y: null}, {x: 0.015384615, y: null}, {x: 0.052567237, y: null}, {x: 0.007778738, y: null}, {x: 0.021171489, y: null}, {x: 0.006698565, y: null}, {x: 0.204685573, y: null}, {x: 0.040298507, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022016222, y: null}, {x: 0.019549763, y: null}, {x: 0.185412027, y: null}, {x: 0.044612795, y: null}, {x: 0.024324324, y: null}, {x: 0.172839506, y: null}, {x: 0.085768742, y: null}, {x: 0.151589242, y: null}, {x: 0.132075472, y: null}, {x: 0.025228127, y: null}, {x: 0.020833333, y: null}, {x: 0.908791209, y: 176.54059600000002}, {x: 0.815769522, y: null}, {x: 0.888643068, y: null}, {x: 0.973780044, y: null}, {x: 0.825046729, y: null}, {x: 0.978891821, y: null}, {x: 0.931164902, y: null}, {x: 0.982928091, y: null}, {x: 0.978562421, y: null}, {x: 0.888653234, y: null}, {x: 0.949283352, y: null}, {x: 0.97324941, y: null}, {x: 0.916176471, y: null}, {x: 0.932621748, y: null}, {x: 0.873153779, y: null}, {x: 0.951820129, y: null}, {x: 0.779874214, y: null}, {x: 0.948481353, y: null}, {x: 0.899947062, y: null}, {x: 0.932416953, y: null}, {x: 0.909038239, y: null}, {x: 0.890177881, y: null}, {x: 0.704281447, y: null}, {x: 0.873128448, y: null}, {x: 0.958499601, y: null}, {x: 0.99327505, y: null}, {x: 0.986601705, y: 6.126247}, {x: 0.963092269, y: null}, {x: 0.650491803, y: null}, {x: 0.918296893, y: null}, {x: 0.949438202, y: null}, {x: 0.971014493, y: null}, {x: 0.977946768, y: null}, {x: 0.894854586, y: null}, {x: 0.874005305, y: null}, {x: 0.947829014, y: null}, {x: 0.8113612, y: null}, {x: 0.870611836, y: null}, {x: 0.82230997, y: null}, {x: 0.785929648, y: null}, {x: 0.934655776, y: null}, {x: 0.918844567, y: null}, {x: 0.856401384, y: null}, {x: 0.925694838, y: null}, {x: 0.711111111, y: 38.4927}, {x: 0.88619403, y: null}, {x: 0.938500961, y: null}, {x: 1.0, y: null}, {x: 0.527292576, y: null}, {x: 1.0, y: null}, {x: 0.906885246, y: null}, {x: 0.838541667, y: null}, {x: 0.54951857, y: null}, {x: 0.800322061, y: null}, {x: 0.729971182, y: null}, {x: 0.454146074, y: null}, {x: 0.299352751, y: null}, {x: 0.650655022, y: null}, {x: 0.476335878, y: null}, {x: 0.189303905, y: null}, {x: 0.430843374, y: null}, {x: 0.260190217, y: null}, {x: 0.33526971, y: null}, {x: 0.399484536, y: null}, {x: 0.300775901, y: null}, {x: 0.159453303, y: null}, {x: 0.379435192, y: null}, {x: 0.881287726, y: null}, {x: 0.702885206, y: null}, {x: 0.566176471, y: null}, {x: 0.754769921, y: null}, {x: 0.252701579, y: null}, {x: 0.614740369, y: null}, {x: 0.687757909, y: null}, {x: 0.474349442, y: null}, {x: 0.581576027, y: null}, {x: 0.173955296, y: null}, {x: 0.72702884, y: null}, {x: 0.395575221, y: null}, {x: 0.251528384, y: null}, {x: 0.346712212, y: null}, {x: 0.499198718, y: null}, {x: 0.491246874, y: null}, {x: 0.041331803, y: null}, {x: 0.480324544, y: null}, {x: 0.211472603, y: null}, {x: 0.320621469, y: null}, {x: 0.184400826, y: null}, {x: 0.296616837, y: null}, {x: 0.576530612, y: null}, {x: 0.146976744, y: null}, {x: 0.191133721, y: null}, {x: 0.160945843, y: null}, {x: 0.122765197, y: null}, {x: 0.181467182, y: null}, {x: 0.318761384, y: null}, {x: 0.02997076, y: 57.7297}, {x: 0.08986731, y: null}, {x: 0.198795181, y: null}, {x: 0.036603221, y: null}, {x: 0.340713407, y: null}, {x: 0.35462963, y: null}, {x: 0.359520124, y: null}, {x: 0.181467182, y: null}, {x: 0.159113797, y: null}, {x: 0.122165326, y: null}, {x: 0.222608696, y: null}, {x: 0.450557621, y: null}, {x: 0.131989001, y: null}, {x: 0.294383149, y: null}, {x: 0.086277427, y: null}, {x: 0.029985008, y: null}, {x: 0.375826251, y: null}, {x: 0.062740077, y: null}, {x: 0.149467839, y: null}, {x: 0.116963064, y: null}, {x: 0.156133829, y: null}, {x: 0.247181965, y: null}, {x: 0.248914617, y: null}, {x: 0.078393881, y: null}, {x: 0.175405743, y: null}, {x: 0.141150443, y: null}, {x: 0.24463305, y: null}, {x: 0.371785714, y: null}, {x: 0.285863874, y: null}, {x: 0.370653096, y: null}, {x: 0.444073456, y: null}, {x: 0.331352155, y: null}, {x: 0.44708589, y: null}, {x: 0.277604708, y: null}, {x: 0.424954792, y: null}, {x: 0.748896518, y: null}, {x: 0.182566405, y: null}, {x: 0.327433628, y: null}, {x: 0.843330349, y: null}, {x: 0.51390059, y: 26.852272}, {x: 0.552982456, y: 17.432869}, {x: 0.21563981, y: null}, {x: 0.355847405, y: null}, {x: 0.462015504, y: 2.114101}, {x: 0.167921251, y: null}, {x: 0.175528507, y: 27.576203}, {x: 0.147877013, y: null}, {x: 0.237837838, y: null}, {x: 0.137959521, y: null}, {x: 0.479514416, y: null}, {x: 0.033795494, y: null}, {x: 0.253697383, y: null}, {x: 0.25728863, y: null}, {x: 0.220485627, y: null}, {x: 0.32371134, y: null}, {x: 0.620629371, y: null}, {x: 0.0805718, y: null}, {x: 0.130406714, y: null}, {x: 0.520257827, y: null}, {x: 0.245901639, y: null}, {x: 0.378537736, y: null}, {x: 0.301431801, y: null}, {x: 0.752407932, y: null}, {x: 0.41682243, y: 9.574524}, {x: 0.205658784, y: null}, {x: 0.549011178, y: null}, {x: 0.687575758, y: 17.33541}, {x: 0.405609493, y: null}, {x: 0.274444444, y: null}, {x: 0.44909688, y: null}, {x: 0.300794022, y: null}, {x: 0.442523768, y: null}, {x: 0.184029944, y: 19.605847}, {x: 0.272787758, y: null}, {x: 0.0997426, y: 0.363247}, {x: 0.042322835, y: null}, {x: 0.100963391, y: 51.7282}, {x: 0.285768937, y: null}, {x: 0.245523091, y: null}, {x: 0.06146789, y: null}, {x: 0.112774769, y: null}, {x: 0.016859852, y: null}, {x: 0.049342105, y: null}, {x: 0.049539986, y: null}, {x: 0.118327402, y: null}, {x: 0.180845644, y: null}, {x: 0.05481345, y: null}, {x: 0.142180095, y: null}, {x: 0.014583333, y: null}, {x: 0.029831388, y: null}, {x: 0.094653812, y: null}, {x: 0.041020966, y: null}, {x: 0.060908084, y: null}, {x: 0.034170854, y: null}, {x: 0.067763158, y: null}, {x: 0.056047198, y: null}, {x: 0.02507837, y: null}, {x: 0.017660044, y: null}, {x: 0.234642498, y: null}, {x: 0.122203098, y: null}, {x: 0.080864692, y: null}, {x: 0.037037037, y: null}, {x: 0.069269039, y: null}, {x: 0.134584013, y: null}, {x: 0.1411161, y: null}, {x: 0.075289575, y: null}, {x: 0.042492918, y: null}, {x: 0.233123312, y: null}, {x: 0.166944908, y: null}, {x: 0.012972973, y: null}, {x: 0.192660551, y: null}, {x: 0.164259928, y: null}, {x: 0.098230628, y: null}, {x: 0.222077922, y: null}, {x: 0.038383838, y: null}, {x: 0.03864279, y: null}, {x: 0.157419937, y: null}, {x: 0.061688312, y: null}, {x: 0.164593301, y: null}, {x: 0.024082569, y: null}, {x: 0.026863085, y: null}, {x: 0.062639821, y: null}, {x: 0.0, y: null}, {x: 0.026380874, y: null}, {x: 0.176232821, y: null}, {x: 0.025062657, y: null}, {x: 0.035267349, y: null}, {x: 0.0, y: null}, {x: 0.091079812, y: null}, {x: 0.086046512, y: null}, {x: 0.070696721, y: null}, {x: 0.082269504, y: null}, {x: 0.071078431, y: null}, {x: 0.04427334, y: null}, {x: 0.014728682, y: null}, {x: 0.092031425, y: null}, {x: 0.029946164, y: null}, {x: 0.042050691, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.096975089, y: null}, {x: 0.08185654, y: null}, {x: 0.046116505, y: null}, {x: 0.105202312, y: null}, {x: 0.041593439, y: null}, {x: 0.037073171, y: null}, {x: 0.073185012, y: null}, {x: 0.081282625, y: null}, {x: 0.120667523, y: null}, {x: 0.047932331, y: null}, {x: 0.097491039, y: null}, {x: 0.167030568, y: null}, {x: 0.071713147, y: null}, {x: 0.084074373, y: null}, {x: 0.115323855, y: null}, {x: 0.122874807, y: null}, {x: 0.0, y: null}, {x: 0.050304878, y: null}, {x: 0.085855032, y: null}, {x: 0.080824972, y: null}, {x: 0.131991052, y: null}, {x: 0.212686567, y: null}, {x: 0.081717452, y: 0.751364}, {x: 0.226337449, y: null}, {x: 0.134129214, y: null}, {x: 0.035294118, y: null}, {x: 0.005688282, y: null}, {x: 0.145128205, y: 0.6538919999999999}, {x: 0.03526971, y: null}, {x: 0.029548989, y: null}, {x: 0.062048193, y: null}, {x: 0.192, y: null}, {x: 0.232647815, y: null}, {x: 0.155767818, y: null}, {x: 0.116144019, y: null}, {x: 0.065994962, y: null}, {x: 0.097826087, y: null}, {x: 0.125, y: null}, {x: 0.127516779, y: null}, {x: 0.2258314, y: null}, {x: 0.068089431, y: null}, {x: 0.113226453, y: null}, {x: 0.021949078, y: null}, {x: 0.111716621, y: null}, {x: 0.074856046, y: null}, {x: 0.203816794, y: null}, {x: 0.02247191, y: null}, {x: 0.106024096, y: null}, {x: 0.036053131, y: null}, {x: 0.145408163, y: null}, {x: 0.095465394, y: null}, {x: 0.327979713, y: null}, {x: 0.066790353, y: null}, {x: 0.407171315, y: null}, {x: 0.078947368, y: null}, {x: 0.090389016, y: null}, {x: 0.089712919, y: null}, {x: 0.029233315, y: null}, {x: 0.078692494, y: null}, {x: 0.139742319, y: null}, {x: 0.09310987, y: null}, {x: 0.132786885, y: null}, {x: 0.666068223, y: null}, {x: 0.859778598, y: null}, {x: 0.468637347, y: null}, {x: 0.737354988, y: null}, {x: 0.713888889, y: 19.621000000000002}, {x: 0.574813812, y: null}, {x: 0.830940989, y: null}, {x: 0.622109827, y: null}, {x: 0.939347991, y: null}, {x: 0.603592814, y: null}, {x: 0.532026144, y: null}, {x: 0.579908676, y: null}, {x: 0.741660752, y: null}, {x: 0.709973046, y: null}, {x: 0.839224629, y: null}, {x: 0.364485981, y: null}, {x: 0.549155146, y: null}, {x: 0.665835412, y: null}, {x: 0.635145784, y: null}, {x: 0.794098361, y: null}, {x: 0.878336756, y: null}, {x: 0.796190476, y: null}, {x: 0.902504472, y: null}, {x: 0.607602339, y: null}, {x: 0.905444126, y: null}, {x: 0.996319018, y: null}, {x: 0.94701087, y: null}, {x: 0.993730408, y: null}, {x: 0.978021978, y: 37.631}, {x: 0.912572856, y: null}, {x: 0.988183161, y: null}, {x: 0.960207613, y: null}, {x: 0.88988764, y: null}, {x: 0.909340659, y: null}, {x: 0.816209317, y: 739.527068}, {x: 0.75273224, y: null}, {x: 0.977695167, y: null}, {x: 0.929032258, y: null}, {x: 0.874678112, y: null}, {x: 0.812627291, y: null}, {x: 0.989616613, y: null}, {x: 0.943625325, y: null}, {x: 0.841968912, y: null}, {x: 0.758928571, y: null}, {x: 1.0, y: null}, {x: 0.85170068, y: null}, {x: 0.818696884, y: null}, {x: 0.755304102, y: null}, {x: 0.54144385, y: null}, {x: 0.928794992, y: null}, {x: 0.828541001, y: null}, {x: 0.905699482, y: null}, {x: 0.890428212, y: null}, {x: 0.699331849, y: null}, {x: 0.907456724, y: null}, {x: 0.721938776, y: null}, {x: 0.719759926, y: null}, {x: 0.576826197, y: null}, {x: 0.412039197, y: null}, {x: 0.409162717, y: null}, {x: 0.401221996, y: null}, {x: 0.719214753, y: null}, {x: 0.615582506, y: null}, {x: 0.506289308, y: null}, {x: 0.457305503, y: null}, {x: 0.691776089, y: null}, {x: 0.348007414, y: null}, {x: 0.322754895, y: null}, {x: 0.293984962, y: null}, {x: 0.771888726, y: null}, {x: 0.374476987, y: null}, {x: 0.271912351, y: null}, {x: 0.98022356, y: null}, {x: 0.794626866, y: null}, {x: 0.994732221, y: null}, {x: 0.964611872, y: null}, {x: 0.183394161, y: null}, {x: 0.641163793, y: null}, {x: 0.927821522, y: null}, {x: 0.937165775, y: null}, {x: 0.558227848, y: null}, {x: 1.0, y: null}, {x: 0.911976912, y: null}, {x: 0.862837046, y: 27.040660999999997}, {x: 0.966568338, y: 81.680767}, {x: 0.844005778, y: null}, {x: 0.81284153, y: null}, {x: 0.77037037, y: null}, {x: 1.0, y: 198.331469}, {x: 0.811864407, y: null}, {x: 1.0, y: null}, {x: 0.754397835, y: null}, {x: 0.675422139, y: null}, {x: 0.376344086, y: null}, {x: 0.091891892, y: null}, {x: 0.476510067, y: null}, {x: 0.520172911, y: null}, {x: 0.919381108, y: 7.279}, {x: 0.766588603, y: null}, {x: 0.74893617, y: null}, {x: 0.685099846, y: null}, {x: 0.873223422, y: null}, {x: 0.806111697, y: null}, {x: 0.912801484, y: null}, {x: 0.916903409, y: null}, {x: 0.141498216, y: null}, {x: 0.211065574, y: null}, {x: 0.424207493, y: null}, {x: 0.262195122, y: null}, {x: 0.39589169, y: null}, {x: 0.182926829, y: null}, {x: 0.477832512, y: null}, {x: 0.656934307, y: null}, {x: 0.615486433, y: null}, {x: 0.577946768, y: null}, {x: 0.231316726, y: null}, {x: 0.751758087, y: null}, {x: 0.670623145, y: null}, {x: 0.827805222, y: null}, {x: 0.783199506, y: null}, {x: 0.615036232, y: null}, {x: 0.266241299, y: null}, {x: 0.175464143, y: null}, {x: 0.0, y: null}, {x: 0.251574657, y: null}, {x: 0.23653088, y: null}, {x: 0.129602356, y: null}, {x: 0.133093525, y: null}, {x: 0.0, y: null}, {x: 0.055594163, y: null}, {x: 0.27632951, y: null}, {x: 0.358490566, y: null}, {x: 0.196682465, y: null}, {x: 0.101513802, y: null}, {x: 0.087949743, y: null}, {x: 0.179837676, y: null}, {x: 0.065782764, y: null}, {x: 0.133580705, y: null}, {x: 0.346660995, y: null}, {x: 0.079715864, y: null}, {x: 0.052268506, y: null}, {x: 0.0, y: null}, {x: 0.176470588, y: null}, {x: 0.524048096, y: null}, {x: 0.030247141, y: null}, {x: 0.466400911, y: 1.005625}, {x: 0.274074074, y: null}, {x: 0.421518055, y: null}, {x: 0.32, y: null}, {x: 0.437592868, y: null}, {x: 0.430389817, y: 21.590654999999998}, {x: 0.580169972, y: 2.36377}, {x: 0.240875912, y: null}, {x: 0.569482289, y: 69.454067}, {x: 0.652968037, y: null}, {x: 0.121621622, y: null}, {x: 0.558648111, y: null}, {x: 0.45490982, y: null}, {x: 0.429160935, y: null}, {x: 0.18018018, y: null}, {x: 0.053133515, y: null}, {x: 0.100247525, y: null}, {x: 0.305327869, y: 4.023005}, {x: 0.215180545, y: null}, {x: 0.604985618, y: 15.273601}, {x: 0.548532731, y: null}, {x: 0.165534805, y: null}, {x: 0.631853786, y: null}, {x: 0.360091743, y: null}, {x: 0.505222437, y: 17.667698}, {x: 0.251160392, y: 130.09780700000002}, {x: 0.61027668, y: null}, {x: 0.0, y: null}, {x: 0.078554595, y: null}, {x: 0.523061825, y: null}, {x: 0.014662757, y: null}, {x: 0.297581493, y: null}, {x: 0.048259494, y: null}, {x: 0.184351145, y: 98.279335}, {x: 0.382911392, y: 0.465397}, {x: 0.0, y: null}, {x: 0.22, y: null}, {x: 0.397677794, y: null}, {x: 0.105067064, y: null}, {x: 0.113049096, y: null}, {x: 0.959605027, y: null}, {x: 0.963369963, y: null}, {x: 0.969387755, y: null}, {x: 0.956435644, y: null}, {x: 0.960204082, y: null}, {x: 0.926729986, y: 1.850684}, {x: 0.811279827, y: null}, {x: 0.975415282, y: null}, {x: 0.856299213, y: 211.675397}, {x: 0.858793325, y: null}, {x: 0.932656827, y: null}, {x: 0.558935361, y: null}, {x: 0.532241556, y: null}, {x: 0.386792453, y: null}, {x: 0.484396201, y: null}, {x: 0.257377049, y: 106.444359}, {x: 0.344457688, y: 2.454447}, {x: 0.279470199, y: null}, {x: 0.896103896, y: null}, {x: 0.791120081, y: null}, {x: 0.68814433, y: null}, {x: 0.13943662, y: null}, {x: 0.584837545, y: null}, {x: 0.152477764, y: null}, {x: 0.688147296, y: null}, {x: 0.219414894, y: null}, {x: 0.175746092, y: null}, {x: 0.107717042, y: null}, {x: 0.351125065, y: null}, {x: 0.371471025, y: 617.717181}, {x: 0.560286104, y: 0.620762}, {x: 0.644736842, y: null}, {x: 0.493927126, y: null}, {x: 0.55771725, y: null}, {x: 0.272727273, y: null}, {x: 0.446285714, y: null}, {x: 0.255829904, y: null}, {x: 0.125845738, y: null}, {x: 0.289340102, y: null}, {x: 0.186282811, y: null}, {x: 0.331491713, y: null}, {x: 0.479510378, y: null}, {x: 0.100867679, y: null}, {x: 0.208393632, y: null}, {x: 0.731759657, y: null}, {x: 0.083188908, y: null}, {x: 0.716853933, y: null}, {x: 0.296137339, y: null}, {x: 0.068448501, y: null}, {x: 0.065536723, y: null}, {x: 0.039503386, y: null}, {x: 0.144208038, y: null}, {x: 0.583662714, y: null}, {x: 0.122153209, y: null}, {x: 0.083102493, y: null}, {x: 0.225667939, y: null}, {x: 0.193456615, y: null}, {x: 0.026851098, y: null}, {x: 0.109311741, y: null}, {x: 0.57129923, y: null}, {x: 0.0, y: null}, {x: 0.153926338, y: null}, {x: 0.170827858, y: null}, {x: 0.134932534, y: null}, {x: 0.032445923, y: null}, {x: 0.160023795, y: null}, {x: 0.088263822, y: null}, {x: 0.326013514, y: null}, {x: 0.139669422, y: null}, {x: 0.224238876, y: null}, {x: 0.420615129, y: null}, {x: 0.389183457, y: null}, {x: 0.225772098, y: null}, {x: 0.12687813, y: null}, {x: 0.128164557, y: null}, {x: 0.072142064, y: null}, {x: 0.091920375, y: null}, {x: 0.071469411, y: null}, {x: 0.073937153, y: null}, {x: 0.073094868, y: null}, {x: 0.221294363, y: null}, {x: 0.104707435, y: null}, {x: 0.164637374, y: null}, {x: 0.135341212, y: null}, {x: 0.013571429, y: null}, {x: 0.046906866, y: null}, {x: 0.11247216, y: null}, {x: 0.126353791, y: null}, {x: 0.091073583, y: null}, {x: 0.067447046, y: null}, {x: 0.047466325, y: null}, {x: 0.102736653, y: null}, {x: 0.046249295, y: null}, {x: 0.127516779, y: null}, {x: 0.055292259, y: null}, {x: 0.092124814, y: null}, {x: 0.070581897, y: null}, {x: 0.218259629, y: null}, {x: 0.041054232, y: null}, {x: 0.083183453, y: null}, {x: 0.049350649, y: null}, {x: 0.170998632, y: null}, {x: 0.126258714, y: null}, {x: 0.04781491, y: null}, {x: 0.156842105, y: null}, {x: 0.28345679, y: null}, {x: 0.09062694, y: null}, {x: 0.150380339, y: null}, {x: 0.223846154, y: 385.927118}, {x: 0.086538462, y: 2.816}, {x: 0.084101807, y: null}, {x: 0.233801541, y: null}, {x: 0.001374256, y: null}, {x: 0.205357143, y: null}, {x: 0.16375345, y: null}, {x: 0.09386121, y: null}, {x: 0.213498015, y: null}, {x: 0.066517608, y: null}, {x: 0.13476874, y: null}, {x: 0.31184669, y: null}, {x: 0.0, y: null}, {x: 0.199457259, y: null}, {x: 0.153046764, y: null}, {x: 0.085403727, y: null}, {x: 0.145624103, y: null}, {x: 0.272268908, y: null}, {x: 0.016836509, y: null}, {x: 0.172516065, y: null}, {x: 0.192686357, y: null}, {x: 0.082211198, y: null}, {x: 0.0, y: null}, {x: 0.1056231, y: null}, {x: 0.189381933, y: null}, {x: 0.0, y: null}, {x: 0.073916409, y: null}, {x: 0.163109756, y: null}, {x: 0.063419118, y: null}, {x: 0.138977636, y: null}, {x: 0.272121789, y: null}, {x: 0.107692308, y: null}, {x: 0.101687389, y: null}, {x: 0.025847214, y: null}, {x: 0.025522042, y: null}, {x: 0.087609512, y: null}, {x: 0.102793296, y: null}, {x: 0.025792189, y: null}, {x: 0.065130261, y: null}, {x: 0.104951959, y: null}, {x: 0.048465267, y: null}, {x: 0.27791361, y: null}, {x: 0.006405124, y: null}, {x: 0.057109557, y: null}, {x: 0.066704036, y: null}, {x: 0.034074074, y: null}, {x: 0.082294264, y: null}, {x: 0.043219076, y: null}, {x: 0.00128866, y: null}, {x: 0.285781991, y: null}, {x: 0.083300589, y: null}, {x: 0.110504097, y: null}, {x: 0.13984375, y: null}, {x: 0.100474684, y: null}, {x: 0.0, y: null}, {x: 0.137073171, y: null}, {x: 0.082846522, y: null}, {x: 0.229588705, y: null}, {x: 0.00693909, y: null}, {x: 0.272848863, y: null}, {x: 0.564356436, y: null}, {x: 0.278772379, y: null}, {x: 0.213219616, y: null}, {x: 0.395305164, y: null}, {x: 0.379338295, y: null}, {x: 0.271004422, y: null}, {x: 0.035409035, y: null}, {x: 0.455334988, y: null}, {x: 0.079084967, y: null}, {x: 0.205537806, y: null}, {x: 0.361185984, y: null}, {x: 0.196330275, y: null}, {x: 0.405008166, y: null}, {x: 0.353893601, y: null}, {x: 0.467845659, y: null}, {x: 0.078101072, y: null}, {x: 0.10318792, y: null}, {x: 0.229373903, y: null}, {x: 0.499171728, y: null}, {x: 0.706864564, y: null}, {x: 0.395192308, y: null}, {x: 0.027865405, y: null}, {x: 0.021367521, y: null}, {x: 0.097174658, y: null}, {x: 0.082474227, y: null}, {x: 0.102493075, y: null}, {x: 0.081267218, y: null}, {x: 0.136107499, y: null}, {x: 0.113018598, y: null}, {x: 0.150882825, y: null}, {x: 0.066853343, y: null}, {x: 0.084639498, y: null}, {x: 0.435692034, y: null}, {x: 0.118721461, y: null}, {x: 0.186781609, y: null}, {x: 0.073194857, y: null}, {x: 0.070599613, y: null}, {x: 0.049403748, y: null}, {x: 0.016205267, y: 0.45}, {x: 0.220447284, y: null}, {x: 0.127737226, y: null}, {x: 0.185520362, y: null}, {x: 0.068365444, y: null}, {x: 0.103202847, y: null}, {x: 0.275950999, y: null}, {x: 0.148340249, y: null}, {x: 0.268025078, y: null}, {x: 0.090728477, y: null}, {x: 0.043799472, y: null}, {x: 0.111570248, y: null}, {x: 0.359516616, y: null}, {x: 0.166361974, y: null}, {x: 0.113030417, y: null}, {x: 0.202947846, y: null}, {x: 0.34056055, y: null}, {x: 0.6, y: null}, {x: 0.226250907, y: null}, {x: 0.103977669, y: null}, {x: 0.104134763, y: null}, {x: 0.134596211, y: null}, {x: 0.34949495, y: null}, {x: 0.097604259, y: null}, {x: 0.099537037, y: null}, {x: 0.14321075, y: null}, {x: 0.014985015, y: 5e-05}, {x: 0.18328841, y: null}, {x: 0.0, y: null}, {x: 0.020985401, y: null}, {x: 0.082198215, y: null}, {x: 0.086255259, y: null}, {x: 0.007885305, y: null}, {x: 0.262195122, y: null}, {x: 0.176043557, y: null}, {x: 0.34184514, y: null}, {x: 0.047169811, y: null}, {x: 0.17136958, y: null}, {x: 0.124248497, y: null}, {x: 0.18833652, y: null}, {x: 0.119771863, y: null}, {x: 0.158560959, y: null}, {x: 0.040250098, y: null}, {x: 0.051444679, y: null}, {x: 0.081424936, y: null}, {x: 0.058710913, y: null}, {x: 0.070114943, y: null}, {x: 0.000951475, y: null}, {x: 0.055979644, y: null}, {x: 0.032198712, y: null}, {x: 0.107988166, y: null}, {x: 0.042051282, y: null}, {x: 0.051079137, y: null}, {x: 0.030760626, y: null}, {x: 0.099214847, y: null}, {x: 0.185280494, y: null}, {x: 0.12631579, y: null}, {x: 0.233223322, y: null}, {x: 0.086890244, y: null}, {x: 0.044176707, y: null}, {x: 0.108650519, y: null}, {x: 0.625776398, y: null}, {x: 0.4303233, y: null}, {x: 0.243303571, y: null}, {x: 0.504125413, y: null}, {x: 0.305470191, y: null}, {x: 0.670188679, y: null}, {x: 0.4140625, y: null}, {x: 0.810711665, y: 2479.88946}, {x: 0.470477976, y: null}, {x: 0.494542974, y: null}, {x: 0.361378611, y: null}, {x: 0.735710796, y: null}, {x: 0.268716578, y: null}, {x: 0.497810219, y: null}, {x: 0.206703911, y: null}, {x: 0.580128205, y: null}, {x: 0.586387435, y: 482.90002}, {x: 0.501577287, y: null}, {x: 0.392857143, y: 67.833}, {x: 0.405897114, y: null}, {x: 0.566808511, y: null}, {x: 0.556089044, y: null}, {x: 0.290715373, y: null}, {x: 0.229755179, y: null}, {x: 0.553303608, y: null}, {x: 0.140516698, y: null}, {x: 0.163170163, y: null}, {x: 0.55213436, y: null}, {x: 0.595913734, y: null}, {x: 0.344072165, y: 55.29}, {x: 0.494425864, y: null}, {x: 0.588762215, y: null}, {x: 0.575929427, y: null}, {x: 0.790583275, y: null}, {x: 0.817023741, y: null}, {x: 0.686567164, y: null}, {x: 0.721368715, y: null}, {x: 0.77232581, y: null}, {x: 0.412192903, y: null}, {x: 0.744908896, y: null}, {x: 0.576190476, y: null}, {x: 0.658415842, y: null}, {x: 0.372239748, y: null}, {x: 0.634978992, y: null}, {x: 0.594638505, y: null}, {x: 0.296102385, y: null}, {x: 0.710313448, y: null}, {x: 0.187766714, y: null}, {x: 0.669319187, y: null}, {x: 0.605442177, y: null}, {x: 0.730275229, y: null}, {x: 0.88056872, y: null}, {x: 0.845993757, y: null}, {x: 0.794520548, y: null}, {x: 0.54845089, y: null}, {x: 0.781463928, y: null}, {x: 0.612634088, y: null}, {x: 0.704942966, y: null}, {x: 0.451371571, y: null}, {x: 0.611080022, y: null}, {x: 0.506493507, y: null}, {x: 0.500699301, y: null}, {x: 0.648580968, y: null}, {x: 0.504828797, y: null}, {x: 0.552493438, y: null}, {x: 0.548463357, y: null}, {x: 0.380503145, y: null}, {x: 0.354685647, y: null}, {x: 0.104050279, y: null}, {x: 0.23015873, y: null}, {x: 0.415037594, y: 199.24}, {x: 0.526806527, y: null}, {x: 0.150976909, y: 654.51638}, {x: 0.081784387, y: null}, {x: 0.46539961, y: null}, {x: 0.283392585, y: null}, {x: 0.394270123, y: null}, {x: 0.091129032, y: null}, {x: 0.350628294, y: null}, {x: 0.119047619, y: null}, {x: 0.093260722, y: null}, {x: 0.134637514, y: null}, {x: 0.305491991, y: null}, {x: 0.137418756, y: null}, {x: 0.259615385, y: null}, {x: 0.206148282, y: null}, {x: 0.123065308, y: null}, {x: 0.323278921, y: null}, {x: 0.371923428, y: null}, {x: 0.064330844, y: null}, {x: 0.187034277, y: null}, {x: 0.09895547, y: null}, {x: 0.214765101, y: null}, {x: 0.156366344, y: null}, {x: 0.27265745, y: null}, {x: 0.023121387, y: null}, {x: 0.147362697, y: null}, {x: 0.126470588, y: null}, {x: 0.203180212, y: null}, {x: 0.298004988, y: null}, {x: 0.088690937, y: null}, {x: 0.123136389, y: null}, {x: 0.083667622, y: null}, {x: 0.157660739, y: null}, {x: 0.091808346, y: null}, {x: 0.174882126, y: null}, {x: 0.100961539, y: null}, {x: 0.090986395, y: null}, {x: 0.051638976, y: null}, {x: 0.075698925, y: null}, {x: 0.173723537, y: null}, {x: 0.101067616, y: null}, {x: 0.055643045, y: null}, {x: 0.134114583, y: null}, {x: 0.016129032, y: null}, {x: 0.475961539, y: null}, {x: 0.106666667, y: null}, {x: 0.013297872, y: null}, {x: 0.07421875, y: null}, {x: 0.055252918, y: null}, {x: 0.006044325, y: null}, {x: 0.141449683, y: null}, {x: 0.115492958, y: null}, {x: 0.029772329, y: null}, {x: 0.116802484, y: null}, {x: 0.044742729, y: null}, {x: 0.142139268, y: null}, {x: 0.093934911, y: null}, {x: 0.103255814, y: null}, {x: 0.090754877, y: null}, {x: 0.401069519, y: null}, {x: 0.169734151, y: null}, {x: 0.260122699, y: null}, {x: 0.535494327, y: null}, {x: 0.316568047, y: null}, {x: 0.018060201, y: null}, {x: 0.222490931, y: null}, {x: 0.295432459, y: null}, {x: 0.27752809, y: null}, {x: 0.224576271, y: null}, {x: 0.305376344, y: null}, {x: 0.011989101, y: null}, {x: 0.131648936, y: null}, {x: 0.552836485, y: null}, {x: 0.220881427, y: 396.4304}, {x: 0.03131524, y: null}, {x: 0.40967092, y: null}, {x: 0.17005988, y: null}, {x: 0.481234362, y: null}, {x: 0.391278727, y: null}, {x: 0.179205852, y: null}, {x: 0.221984297, y: null}, {x: 0.0691085, y: null}, {x: 0.249858677, y: null}, {x: 0.552872606, y: null}, {x: 0.049713193, y: null}, {x: 0.142937535, y: null}, {x: 0.067375887, y: null}, {x: 0.074641148, y: null}, {x: 0.063897764, y: null}, {x: 0.230122818, y: null}, {x: 0.111572392, y: null}, {x: 0.075578855, y: null}, {x: 0.201622248, y: null}, {x: 0.210282538, y: null}, {x: 0.360262009, y: null}, {x: 0.322089227, y: null}, {x: 0.273054755, y: null}, {x: 0.109810479, y: null}, {x: 0.327294686, y: null}, {x: 0.04622871, y: null}, {x: 0.0859375, y: null}, {x: 0.19243604, y: null}, {x: 0.067736185, y: null}, {x: 0.061049011, y: null}, {x: 0.594653573, y: null}, {x: 0.362873917, y: null}, {x: 0.291262136, y: null}, {x: 0.20498615, y: null}, {x: 0.29795022, y: null}, {x: 0.427745665, y: null}, {x: 0.158297612, y: null}, {x: 0.265428003, y: null}, {x: 0.339189189, y: null}, {x: 0.283116883, y: null}, {x: 0.318601583, y: null}, {x: 0.190318302, y: null}, {x: 0.098099326, y: null}, {x: 0.237961477, y: null}, {x: 0.086724209, y: null}, {x: 0.236474695, y: null}, {x: 0.239476678, y: null}, {x: 0.1629681, y: null}, {x: 0.129107981, y: null}, {x: 0.660637792, y: null}, {x: 0.330578512, y: null}, {x: 0.300610094, y: null}, {x: 0.032069971, y: null}, {x: 0.247815231, y: null}, {x: 0.580364212, y: null}, {x: 0.335894621, y: null}, {x: 0.255499154, y: null}, {x: 0.259661836, y: null}, {x: 0.235410485, y: null}, {x: 0.565844579, y: null}, {x: 0.57573474, y: null}, {x: 0.42234957, y: null}, {x: 0.147557841, y: null}, {x: 0.231820185, y: null}, {x: 0.387111517, y: null}, {x: 0.529156328, y: null}, {x: 0.316777711, y: null}, {x: 0.30511022, y: null}, {x: 0.248429867, y: null}, {x: 0.426433915, y: null}, {x: 0.422315537, y: null}, {x: 0.144502618, y: null}, {x: 0.208754209, y: null}, {x: 0.511163337, y: null}, {x: 0.286984127, y: null}, {x: 0.128423041, y: null}, {x: 0.211583924, y: null}, {x: 0.076095311, y: null}, {x: 0.158295964, y: null}, {x: 0.136226902, y: null}, {x: 0.265976872, y: null}, {x: 0.123474515, y: null}, {x: 0.446022727, y: null}, {x: 0.054071661, y: null}, {x: 0.071776156, y: null}, {x: 0.090050378, y: null}, {x: 0.0, y: null}, {x: 0.223326706, y: null}, {x: 0.03635586, y: null}, {x: 0.275534442, y: null}, {x: 0.326836582, y: null}, {x: 0.154453213, y: null}, {x: 0.205063291, y: null}, {x: 0.098650927, y: null}, {x: 0.075135135, y: null}, {x: 0.067017083, y: null}, {x: 0.059251559, y: null}, {x: 0.16097561, y: null}, {x: 0.185833333, y: null}, {x: 0.138705416, y: null}, {x: 0.154738878, y: null}, {x: 0.044871795, y: null}, {x: 0.14690027, y: null}, {x: 0.338028169, y: null}, {x: 0.52246696, y: null}, {x: 0.172413793, y: null}, {x: 0.115021459, y: null}, {x: 0.141581633, y: null}, {x: 0.106082037, y: null}, {x: 0.0, y: null}, {x: 0.12150838, y: null}, {x: 0.209925558, y: null}, {x: 0.082863341, y: null}, {x: 0.032795699, y: null}, {x: 0.023573201, y: null}, {x: 0.10982659, y: null}, {x: 0.14940239, y: null}, {x: 0.284820921, y: null}, {x: 0.112531969, y: null}, {x: 0.123175183, y: null}, {x: 0.065587381, y: null}, {x: 0.0625, y: null}, {x: 0.094403237, y: null}, {x: 0.050838841, y: null}, {x: 0.121404557, y: null}, {x: 0.116161616, y: null}, {x: 0.088031652, y: null}, {x: 0.049612949, y: null}, {x: 0.155812832, y: null}, {x: 0.235803657, y: null}, {x: 0.128851541, y: null}, {x: 0.087979094, y: null}, {x: 0.123535156, y: null}, {x: 0.028231798, y: null}, {x: 0.054859869, y: null}, {x: 0.123129543, y: null}, {x: 0.063233966, y: null}, {x: 0.123695976, y: null}, {x: 0.071623465, y: null}, {x: 0.132102273, y: null}, {x: 0.292043985, y: null}, {x: 0.090135203, y: null}, {x: 0.209802236, y: null}, {x: 0.169030733, y: null}, {x: 0.03007798, y: null}, {x: 0.207064555, y: null}, {x: 0.437000615, y: null}, {x: 0.218721461, y: null}, {x: 0.226645645, y: null}, {x: 0.172794118, y: null}, {x: 0.457156091, y: null}, {x: 0.145067698, y: null}, {x: 0.102296451, y: null}, {x: 0.498461539, y: null}, {x: 0.314540059, y: null}, {x: 0.150605886, y: null}, {x: 0.0, y: null}, {x: 0.306491372, y: null}, {x: 0.317115552, y: null}, {x: 0.241590214, y: null}, {x: 0.040730337, y: null}, {x: 0.140350877, y: null}, {x: 0.101250504, y: null}, {x: 0.507946599, y: null}, {x: 0.0, y: null}, {x: 0.152058111, y: null}, {x: 0.181583477, y: null}, {x: 0.487315011, y: null}, {x: 0.036982249, y: null}, {x: 0.204022989, y: null}, {x: 0.335982659, y: null}, {x: 0.129537367, y: null}, {x: 0.136276392, y: null}, {x: 0.192818111, y: null}, {x: 0.071604938, y: null}, {x: 0.259124088, y: null}, {x: 0.147353362, y: null}, {x: 0.130052724, y: null}, {x: 0.28827425, y: null}, {x: 0.175318315, y: null}, {x: 0.369326326, y: null}, {x: 0.160484482, y: null}, {x: 0.350442478, y: null}, {x: 0.599537037, y: null}, {x: 0.28042328, y: null}, {x: 0.259890444, y: null}, {x: 0.362240289, y: null}, {x: 0.129272568, y: null}, {x: 0.0390625, y: null}, {x: 0.149967679, y: null}, {x: 0.303797468, y: null}, {x: 0.023033708, y: null}, {x: 0.016806723, y: null}, {x: 0.170568562, y: null}, {x: 0.122352941, y: null}, {x: 0.039341263, y: null}, {x: 0.109647059, y: null}, {x: 0.08716707, y: null}, {x: 0.198654941, y: null}, {x: 0.061937716, y: null}, {x: 0.065693431, y: null}, {x: 0.115135135, y: null}, {x: 0.03237858, y: null}, {x: 0.3459281, y: null}, {x: 0.0, y: null}, {x: 0.19138756, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004470939, y: null}, {x: 0.212520593, y: null}, {x: 0.0, y: null}, {x: 0.213178295, y: null}, {x: 0.0, y: null}, {x: 0.077809798, y: null}, {x: 0.116010855, y: null}, {x: 0.142269253, y: null}, {x: 0.111382511, y: null}, {x: 0.098050797, y: null}, {x: 0.274478331, y: null}, {x: 0.137691238, y: null}, {x: 0.019138756, y: null}, {x: 0.077114428, y: null}, {x: 0.03634277, y: null}, {x: 0.184977579, y: null}, {x: 0.161616162, y: null}, {x: 0.144869215, y: null}, {x: 0.115196078, y: null}, {x: 0.29407566, y: null}, {x: 0.048228346, y: null}, {x: 0.034901366, y: null}, {x: 0.278867102, y: null}, {x: 0.0, y: null}, {x: 0.125, y: null}, {x: 0.083916084, y: null}, {x: 0.027110767, y: null}, {x: 0.17612978, y: null}, {x: 0.139183056, y: null}, {x: 0.019417476, y: null}, {x: 0.169364882, y: null}, {x: 0.037953795, y: null}, {x: 0.027924131, y: null}, {x: 0.092071611, y: null}, {x: 0.156435644, y: null}, {x: 0.217362492, y: null}, {x: 0.178988327, y: null}, {x: 0.61260274, y: null}, {x: 0.172613308, y: null}, {x: 0.159090909, y: null}, {x: 0.391891892, y: null}, {x: 0.3625, y: null}, {x: 0.22298066, y: null}, {x: 0.221126761, y: null}, {x: 0.142621599, y: null}, {x: 0.28998779, y: null}, {x: 0.082200647, y: null}, {x: 0.134475748, y: null}, {x: 0.117724868, y: null}, {x: 0.084556962, y: null}, {x: 0.059633028, y: null}, {x: 0.385915493, y: null}, {x: 0.100802855, y: null}, {x: 0.095906433, y: null}, {x: 0.034320639, y: null}, {x: 0.255776892, y: null}, {x: 0.309927361, y: null}, {x: 0.095238095, y: null}, {x: 0.171026157, y: null}, {x: 0.221621622, y: null}, {x: 0.055137845, y: null}, {x: 0.295910781, y: null}, {x: 0.221646517, y: null}, {x: 0.252659575, y: null}, {x: 0.378600823, y: null}, {x: 0.455370651, y: null}, {x: 0.10989011, y: null}, {x: 0.159634318, y: null}, {x: 0.066920152, y: null}, {x: 0.183700735, y: null}, {x: 0.276501112, y: null}, {x: 0.274838013, y: null}, {x: 0.346287703, y: null}, {x: 0.131021195, y: null}, {x: 0.191799861, y: null}, {x: 0.164594002, y: null}, {x: 0.220675944, y: null}, {x: 0.239422085, y: null}, {x: 0.113772455, y: null}, {x: 0.477117819, y: null}, {x: 0.148648649, y: null}, {x: 0.182078853, y: null}, {x: 0.046747967, y: null}, {x: 0.282539683, y: null}, {x: 0.146634615, y: null}, {x: 0.082309582, y: null}, {x: 0.26223092, y: null}, {x: 0.093004769, y: null}, {x: 0.129836629, y: null}, {x: 0.367276888, y: null}, {x: 0.355329949, y: null}, {x: 0.614285714, y: null}, {x: 0.159090909, y: null}, {x: 0.309612984, y: null}, {x: 0.056047198, y: null}, {x: 0.265486726, y: null}, {x: 0.31530343, y: null}, {x: 0.219877468, y: null}, {x: 0.340080972, y: null}, {x: 0.103184713, y: null}, {x: 0.115264798, y: null}, {x: 0.163120567, y: null}, {x: 0.374045802, y: null}, {x: 0.118867925, y: null}, {x: 0.592931937, y: null}, {x: 0.479779412, y: null}, {x: 0.40797546, y: null}, {x: 0.541989279, y: null}, {x: 0.281818182, y: null}, {x: 0.492907801, y: null}, {x: 0.412844037, y: null}, {x: 0.176886793, y: 68.97}, {x: 0.35326087, y: null}, {x: 0.518153295, y: null}, {x: 0.518617021, y: null}, {x: 0.305354559, y: null}, {x: 0.737541528, y: null}, {x: 0.106936416, y: null}, {x: 0.384902144, y: null}, {x: 0.216466739, y: null}, {x: 0.575528701, y: null}, {x: 0.10059761, y: null}, {x: 0.277856135, y: null}, {x: 0.144736842, y: null}, {x: 0.420344054, y: null}, {x: 0.401459854, y: null}, {x: 0.317577548, y: null}, {x: 0.432971015, y: null}, {x: 0.302484472, y: null}, {x: 0.502296451, y: null}, {x: 0.131878558, y: null}, {x: 0.293457944, y: null}, {x: 0.289705882, y: null}, {x: 0.515422441, y: null}, {x: 0.582990398, y: null}, {x: 0.6084172, y: null}, {x: 0.430502975, y: null}, {x: 0.456925116, y: null}, {x: 0.044362292, y: null}, {x: 0.671493902, y: null}, {x: 0.395071542, y: null}, {x: 0.576335878, y: null}, {x: 0.267900241, y: null}, {x: 0.828983517, y: null}, {x: 0.796267496, y: null}, {x: 0.799184044, y: null}, {x: 0.84992343, y: null}, {x: 0.731019523, y: null}, {x: 0.374351371, y: null}, {x: 0.444067797, y: null}, {x: 0.707037643, y: null}, {x: 0.718248175, y: null}, {x: 0.688563327, y: null}, {x: 0.674258475, y: null}, {x: 0.032231405, y: null}, {x: 0.78255814, y: null}, {x: 0.734068628, y: null}, {x: 0.661971831, y: null}, {x: 0.758853288, y: null}, {x: 0.666963491, y: null}, {x: 0.641925777, y: null}, {x: 0.324032403, y: null}, {x: 0.411968777, y: null}, {x: 0.517911975, y: null}, {x: 0.341836735, y: null}, {x: 0.46993007, y: null}, {x: 0.571830986, y: null}, {x: 0.453637661, y: null}, {x: 0.574983628, y: null}, {x: 0.532983508, y: null}, {x: 0.579912024, y: null}, {x: 0.56713615, y: null}, {x: 0.605245461, y: null}, {x: 0.65212528, y: null}, {x: 0.923493045, y: null}, {x: 0.876507754, y: null}, {x: 0.560779817, y: null}, {x: 0.207246377, y: null}, {x: 0.464190981, y: null}, {x: 0.431083381, y: null}, {x: 0.515789474, y: null}, {x: 0.655963303, y: null}, {x: 0.667422525, y: null}, {x: 0.396350365, y: null}, {x: 0.272511848, y: null}, {x: 0.516318887, y: null}, {x: 0.515609265, y: null}, {x: 0.602675059, y: null}, {x: 0.721714687, y: null}, {x: 0.741660202, y: null}, {x: 0.718281718, y: null}, {x: 0.618780096, y: null}, {x: 0.734313726, y: null}, {x: 0.407155026, y: null}, {x: 0.668717949, y: null}, {x: 0.418533605, y: null}, {x: 0.616371411, y: null}, {x: 0.767313019, y: null}, {x: 0.643095397, y: null}, {x: 0.625185185, y: null}, {x: 0.72706422, y: null}, {x: 0.744255319, y: null}, {x: 0.440241228, y: null}, {x: 0.622080679, y: null}, {x: 0.556372549, y: null}, {x: 0.63537415, y: null}, {x: 0.772651007, y: null}, {x: 0.606557377, y: null}, {x: 0.446389497, y: null}, {x: 0.777731443, y: null}, {x: 0.419548872, y: null}, {x: 0.0, y: null}, {x: 0.386536833, y: null}, {x: 0.56444218, y: null}, {x: 0.287428273, y: null}, {x: 0.604482132, y: null}, {x: 0.295918367, y: null}, {x: 0.623381877, y: null}, {x: 0.513906185, y: null}, {x: 0.195758564, y: null}, {x: 0.397735315, y: null}, {x: 0.52556391, y: null}, {x: 0.573728814, y: null}, {x: 0.18242831, y: null}, {x: 0.575060533, y: null}, {x: 0.491343776, y: null}, {x: 0.325977934, y: null}, {x: 0.250398724, y: null}, {x: 0.022792023, y: null}, {x: 0.545405112, y: null}, {x: 0.168631006, y: null}, {x: 0.269906929, y: null}, {x: 0.296381832, y: null}, {x: 0.413636364, y: null}, {x: 0.357927787, y: null}, {x: 0.158671587, y: null}, {x: 0.258098224, y: null}, {x: 0.041299559, y: null}, {x: 0.230936819, y: null}, {x: 0.097765363, y: null}, {x: 0.125792812, y: null}, {x: 0.360895386, y: null}, {x: 0.154545455, y: null}, {x: 0.307077626, y: null}, {x: 0.108033241, y: null}, {x: 0.077244259, y: null}, {x: 0.103020914, y: null}, {x: 0.120224719, y: null}, {x: 0.350978136, y: null}, {x: 0.543313709, y: null}, {x: 0.436901654, y: null}, {x: 0.186959937, y: null}, {x: 0.292079208, y: null}, {x: 0.073229292, y: null}, {x: 0.275015347, y: null}, {x: 0.247889486, y: null}, {x: 0.173461231, y: null}, {x: 0.135944701, y: null}, {x: 0.272207792, y: null}, {x: 0.376296296, y: null}, {x: 0.31459854, y: null}, {x: 0.164222874, y: null}, {x: 0.317220544, y: null}, {x: 0.18275154, y: null}, {x: 0.202154101, y: null}, {x: 0.448497854, y: null}, {x: 0.184772516, y: null}, {x: 0.405948553, y: null}, {x: 0.169306931, y: null}, {x: 0.129904098, y: null}, {x: 0.347428571, y: null}, {x: 0.261146497, y: null}, {x: 0.20376379, y: null}, {x: 0.446182728, y: null}, {x: 0.339922854, y: null}, {x: 0.308903366, y: null}, {x: 0.320463321, y: null}, {x: 0.661596958, y: null}, {x: 0.346938776, y: null}, {x: 0.528271406, y: null}, {x: 0.491902834, y: null}, {x: 0.490312966, y: null}, {x: 0.252487562, y: null}, {x: 0.585412668, y: null}, {x: 0.401647786, y: null}, {x: 0.499089253, y: null}, {x: 0.23880597, y: null}, {x: 0.264772727, y: null}, {x: 0.562657696, y: null}, {x: 0.607361963, y: null}, {x: 0.54491018, y: null}, {x: 0.52915952, y: null}, {x: 0.494871795, y: null}, {x: 0.454415954, y: 2.8}, {x: 0.434920635, y: null}, {x: 0.44345898, y: null}, {x: 0.3796875, y: null}, {x: 0.499515973, y: null}, {x: 0.53803681, y: null}, {x: 0.782488987, y: null}, {x: 0.311550152, y: null}, {x: 0.494296578, y: null}, {x: 0.208085612, y: null}, {x: 0.334935127, y: null}, {x: 0.320735444, y: null}, {x: 0.657445077, y: null}, {x: 0.472094214, y: null}, {x: 0.302325581, y: null}, {x: 0.179362507, y: null}, {x: 0.457473163, y: null}, {x: 0.277013753, y: null}, {x: 0.664921466, y: null}, {x: 0.448012846, y: null}, {x: 0.557729941, y: null}, {x: 0.526024363, y: null}, {x: 0.516544908, y: null}, {x: 0.248148148, y: null}, {x: 0.627408994, y: null}, {x: 0.240480962, y: null}, {x: 0.517220172, y: null}, {x: 0.331100479, y: null}, {x: 0.433952788, y: null}, {x: 0.444035346, y: null}, {x: 0.273517382, y: null}, {x: 0.461926374, y: null}, {x: 0.253648367, y: null}, {x: 0.215098242, y: null}, {x: 0.311276794, y: null}, {x: 0.399352751, y: null}, {x: 0.527310924, y: null}, {x: 0.593621399, y: null}, {x: 0.644830308, y: null}, {x: 0.292722813, y: null}, {x: 0.17585693, y: null}, {x: 0.26147427, y: null}, {x: 0.409395973, y: null}, {x: 0.659682899, y: null}, {x: 0.418455916, y: null}, {x: 0.18778626, y: null}, {x: 0.36934793, y: null}, {x: 0.385300668, y: null}, {x: 0.375831486, y: null}, {x: 0.21319797, y: 1.38}, {x: 0.19535284, y: null}, {x: 0.24929972, y: 3.71}, {x: 0.357392317, y: null}, {x: 0.571626298, y: null}, {x: 0.153046062, y: null}, {x: 0.208850932, y: null}, {x: 0.202739726, y: null}, {x: 0.252725471, y: null}, {x: 0.306990882, y: null}, {x: 0.293977813, y: null}, {x: 0.0, y: null}, {x: 0.407831325, y: null}, {x: 0.610091743, y: null}, {x: 0.381964809, y: null}, {x: 0.481997677, y: null}, {x: 0.368603643, y: null}, {x: 0.406901042, y: null}, {x: 0.286720322, y: null}, {x: 0.319413919, y: null}, {x: 0.573394495, y: null}, {x: 0.387722133, y: null}, {x: 0.541471963, y: null}, {x: 0.2104, y: null}, {x: 0.245122986, y: null}, {x: 0.966069746, y: null}, {x: 0.752317881, y: null}, {x: 0.441649899, y: null}, {x: 0.242375602, y: 1.975}, {x: 0.229329173, y: null}, {x: 0.174163783, y: null}, {x: 0.255635246, y: null}, {x: 0.271659325, y: 45.306}, {x: 0.455522972, y: null}, {x: 0.406447535, y: null}, {x: 0.0, y: null}, {x: 0.352852853, y: null}, {x: 0.154690619, y: null}, {x: 0.469187675, y: null}, {x: 0.174045802, y: null}, {x: 0.263649425, y: null}, {x: 0.209107807, y: null}, {x: 0.280471822, y: null}, {x: 0.0, y: null}, {x: 0.332987552, y: null}, {x: 0.198484849, y: null}, {x: 0.205780347, y: null}, {x: 0.22927242, y: null}, {x: 0.362629758, y: null}, {x: 0.313840156, y: null}, {x: 0.365678347, y: null}, {x: 0.320754717, y: null}, {x: 0.368608799, y: null}, {x: 0.057407407, y: null}, {x: 0.165480427, y: null}, {x: 0.233230134, y: null}, {x: 0.289017341, y: null}, {x: 0.292469352, y: null}, {x: 0.190821256, y: null}, {x: 0.345977012, y: null}, {x: 0.012320329, y: null}, {x: 0.155307263, y: null}, {x: 0.402645114, y: 12.033039}, {x: 0.35390625, y: null}, {x: 0.349194729, y: null}, {x: 0.354014599, y: null}, {x: 0.170068027, y: null}, {x: 0.153770813, y: null}, {x: 0.195081967, y: null}, {x: 0.228215768, y: null}, {x: 0.03030303, y: null}, {x: 0.496884735, y: null}, {x: 0.170334928, y: null}, {x: 0.258660508, y: null}, {x: 0.520408163, y: null}, {x: 0.198824682, y: null}, {x: 0.44518103, y: null}, {x: 0.285294118, y: null}, {x: 0.173435785, y: null}, {x: 0.336798337, y: null}, {x: 0.19822283, y: null}, {x: 0.215384615, y: null}, {x: 0.44743083, y: null}, {x: 0.173963134, y: null}, {x: 0.245762712, y: null}, {x: 0.398488121, y: null}, {x: 0.166437414, y: null}, {x: 0.225690276, y: null}, {x: 0.263605442, y: null}, {x: 0.188160677, y: null}, {x: 0.470787468, y: null}, {x: 0.27025393, y: null}, {x: 0.203605514, y: null}, {x: 0.315976331, y: null}, {x: 0.262450593, y: null}, {x: 0.208191126, y: null}, {x: 0.121158911, y: null}, {x: 0.165914221, y: null}, {x: 0.229357798, y: null}, {x: 0.347689076, y: null}, {x: 0.36382755, y: null}, {x: 0.350684932, y: null}, {x: 0.354658385, y: null}, {x: 0.558756634, y: null}, {x: 0.41745531, y: null}, {x: 0.411050649, y: null}, {x: 0.663316583, y: null}, {x: 0.648963731, y: null}, {x: 0.28664193, y: null}, {x: 0.158183242, y: null}, {x: 0.43501171, y: null}, {x: 0.456880734, y: null}, {x: 0.429235168, y: null}, {x: 0.381386861, y: null}, {x: 0.302726544, y: null}, {x: 0.190038314, y: null}, {x: 0.35959596, y: null}, {x: 0.428082192, y: null}, {x: 0.592857143, y: null}, {x: 0.287808642, y: null}, {x: 0.477477478, y: null}, {x: 0.502994012, y: null}, {x: 0.423740511, y: null}, {x: 0.292457949, y: null}, {x: 0.287833828, y: null}, {x: 0.276264591, y: null}, {x: 0.19135365, y: null}, {x: 0.434782609, y: null}, {x: 0.424533635, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.1272509, y: null}, {x: 0.27133758, y: null}, {x: 0.313188766, y: null}, {x: 0.204883227, y: null}, {x: 0.326253186, y: null}, {x: 0.666666667, y: null}, {x: 0.496977838, y: null}, {x: 0.638051044, y: null}, {x: 0.568939771, y: null}, {x: 0.276595745, y: null}, {x: 0.457496136, y: null}, {x: 0.318555008, y: null}, {x: 0.053973013, y: null}, {x: 0.166064982, y: null}, {x: 0.163043478, y: null}, {x: 0.498940678, y: null}, {x: 0.101214575, y: null}, {x: 0.030330882, y: null}, {x: 0.16509434, y: null}, {x: 0.103616813, y: null}, {x: 0.04805492, y: null}, {x: 0.176267848, y: null}, {x: 0.135287486, y: null}, {x: 0.687378641, y: null}, {x: 0.279783394, y: null}, {x: 0.394654088, y: null}, {x: 0.22440678, y: null}, {x: 0.018410853, y: null}, {x: 0.110447761, y: null}, {x: 0.1769437, y: null}, {x: 0.048816568, y: null}, {x: 0.241057543, y: null}, {x: 0.060537268, y: null}, {x: 0.307324079, y: null}, {x: 0.196296296, y: null}, {x: 0.284334313, y: null}, {x: 0.18614021, y: null}, {x: 0.403342618, y: 0.0117}, {x: 0.508752735, y: null}, {x: 0.4092827, y: null}, {x: 0.481180061, y: null}, {x: 0.68533171, y: null}, {x: 0.339680122, y: null}, {x: 0.157054126, y: null}, {x: 0.429906542, y: null}, {x: 0.212651413, y: null}, {x: 0.401856764, y: null}, {x: 0.359160613, y: null}, {x: 0.336751214, y: null}, {x: 0.212268314, y: null}, {x: 0.119665272, y: null}, {x: 0.147058824, y: null}, {x: 0.161369193, y: null}, {x: 0.181571816, y: null}, {x: 0.063391442, y: null}, {x: 0.186489058, y: null}, {x: 0.192680301, y: null}, {x: 0.14379085, y: null}, {x: 0.185079929, y: null}, {x: 0.281767956, y: null}, {x: 0.24963977, y: null}, {x: 0.147244095, y: null}, {x: 0.054298643, y: null}, {x: 0.16137806, y: null}, {x: 0.195821385, y: null}, {x: 0.075313808, y: null}, {x: 0.172024327, y: null}, {x: 0.301449275, y: null}, {x: 0.17764804, y: null}, {x: 0.094972067, y: null}, {x: 0.24010327, y: null}, {x: 0.164227642, y: null}, {x: 0.171111881, y: null}, {x: 0.255501223, y: null}, {x: 0.246316759, y: null}, {x: 0.317932296, y: null}, {x: 0.294478528, y: null}, {x: 0.167418264, y: null}, {x: 0.219114219, y: null}, {x: 0.363018355, y: null}, {x: 0.266115703, y: null}, {x: 0.370618941, y: null}, {x: 0.265232975, y: null}, {x: 0.354391371, y: null}, {x: 0.174757282, y: null}, {x: 0.330218069, y: null}, {x: 0.15993266, y: null}, {x: 0.058823529, y: null}, {x: 0.402554137, y: null}, {x: 0.258713137, y: null}, {x: 0.385956175, y: null}, {x: 0.433810048, y: null}, {x: 0.239772727, y: null}, {x: 0.203688853, y: null}, {x: 0.181273816, y: null}, {x: 0.176570458, y: null}, {x: 0.390854185, y: null}, {x: 0.526165557, y: null}, {x: 0.328767123, y: null}, {x: 0.509738079, y: null}, {x: 0.376847291, y: null}, {x: 0.441295547, y: null}, {x: 0.500341297, y: null}, {x: 0.043680839, y: null}, {x: 0.349788434, y: null}, {x: 0.35967801, y: null}, {x: 0.460141271, y: null}, {x: 0.672914714, y: null}, {x: 0.175465839, y: null}, {x: 0.481203008, y: null}, {x: 0.649269311, y: null}, {x: 0.364705882, y: null}, {x: 0.357692308, y: null}, {x: 0.181886793, y: null}, {x: 0.244627054, y: null}, {x: 0.70886076, y: null}, {x: 0.74380805, y: null}, {x: 0.440987125, y: null}, {x: 0.484683458, y: null}, {x: 0.220501475, y: null}, {x: 0.355712603, y: null}, {x: 0.447729673, y: null}, {x: 0.175059952, y: null}, {x: 0.068669528, y: null}, {x: 0.157848325, y: null}, {x: 0.124183007, y: null}, {x: 0.505770816, y: null}, {x: 0.308994709, y: null}, {x: 0.625924315, y: null}, {x: 0.429097606, y: null}, {x: 0.298921418, y: null}, {x: 0.368383405, y: null}, {x: 0.185582822, y: null}, {x: 0.212833258, y: null}, {x: 0.088582677, y: null}, {x: 0.220714286, y: null}, {x: 0.189666893, y: null}, {x: 0.156603774, y: null}, {x: 0.328396323, y: null}, {x: 0.059701493, y: null}, {x: 0.415878023, y: null}, {x: 0.455231388, y: null}, {x: 0.488, y: null}, {x: 0.132034632, y: null}, {x: 0.28785489, y: null}, {x: 0.241537579, y: null}, {x: 0.182328191, y: null}, {x: 0.111204013, y: null}, {x: 0.246540881, y: null}, {x: 0.103542234, y: null}, {x: 0.266040689, y: null}, {x: 0.062761506, y: null}, {x: 0.284039675, y: null}, {x: 0.437919463, y: null}, {x: 0.336483932, y: null}, {x: 0.125723739, y: null}, {x: 0.173109244, y: null}, {x: 0.261016949, y: null}, {x: 0.0, y: null}, {x: 0.483427142, y: null}, {x: 0.040922619, y: null}, {x: 0.321246819, y: null}, {x: 0.373563218, y: null}, {x: 0.435679612, y: null}, {x: 0.211428571, y: null}, {x: 0.398601399, y: null}, {x: 0.260465116, y: null}, {x: 0.207979627, y: null}, {x: 0.265402844, y: null}, {x: 0.369640788, y: null}, {x: 0.550929368, y: null}, {x: 0.285497342, y: null}, {x: 0.0974084, y: null}, {x: 0.272463768, y: null}, {x: 0.386812046, y: null}, {x: 0.139037433, y: null}, {x: 0.124192391, y: null}, {x: 0.497222222, y: null}, {x: 0.153305204, y: null}, {x: 0.272948822, y: null}, {x: 0.099647266, y: null}, {x: 0.223744292, y: null}, {x: 0.188248096, y: null}, {x: 0.343161343, y: null}, {x: 0.322883173, y: null}, {x: 0.123476418, y: null}, {x: 0.097308489, y: null}, {x: 0.278278278, y: null}, {x: 0.219834711, y: null}, {x: 0.360912982, y: null}, {x: 0.308182264, y: null}, {x: 0.435682327, y: null}, {x: 0.265086207, y: null}, {x: 0.254649499, y: null}, {x: 0.326553051, y: null}, {x: 0.105407883, y: null}, {x: 0.240506329, y: null}, {x: 0.21040724, y: null}, {x: 0.547151277, y: null}, {x: 0.351598174, y: null}, {x: 0.269668737, y: null}, {x: 0.285714286, y: null}, {x: 0.399716848, y: null}, {x: 0.530169492, y: null}, {x: 0.303955586, y: null}, {x: 0.119119879, y: null}, {x: 0.224776501, y: null}, {x: 0.23222061, y: null}, {x: 0.102230483, y: null}, {x: 0.171343284, y: null}, {x: 0.329479769, y: null}, {x: 0.452363091, y: null}, {x: 0.142679901, y: null}, {x: 0.209335219, y: null}, {x: 0.33433584, y: null}, {x: 0.455710956, y: null}, {x: 0.095744681, y: null}, {x: 0.253578732, y: null}, {x: 0.275033378, y: null}, {x: 0.498207885, y: null}, {x: 0.15015015, y: null}, {x: 0.393551446, y: null}, {x: 0.156346749, y: null}, {x: 0.307282416, y: null}, {x: 0.146107784, y: null}, {x: 0.363226453, y: null}, {x: 0.355444305, y: null}, {x: 0.301992846, y: null}, {x: 0.223898612, y: null}, {x: 0.279843444, y: null}, {x: 0.255772647, y: null}, {x: 0.149262537, y: null}, {x: 0.17305586, y: null}, {x: 0.184964201, y: null}, {x: 0.207594937, y: null}, {x: 0.289699571, y: null}, {x: 0.061064087, y: null}, {x: 0.098532495, y: null}, {x: 0.038422649, y: null}, {x: 0.13215859, y: null}, {x: 0.277185501, y: null}, {x: 0.290976821, y: null}, {x: 0.02425107, y: null}, {x: 0.096469418, y: null}, {x: 0.245923913, y: null}, {x: 0.055293324, y: null}, {x: 0.136594663, y: null}, {x: 0.049872123, y: null}, {x: 0.340761374, y: null}, {x: 0.298093588, y: null}, {x: 0.035862069, y: null}, {x: 0.419741697, y: null}, {x: 0.489655172, y: null}, {x: 0.418487395, y: null}, {x: 0.483902439, y: null}, {x: 0.657560356, y: null}, {x: 0.510857143, y: null}, {x: 0.150576806, y: null}, {x: 0.164612676, y: null}, {x: 0.367916303, y: null}, {x: 0.569039914, y: null}, {x: 0.575, y: null}, {x: 0.808520599, y: null}, {x: 0.858036273, y: null}, {x: 0.617763158, y: null}, {x: 0.518049398, y: null}, {x: 0.828442438, y: null}, {x: 0.410153641, y: null}, {x: 0.687372014, y: null}, {x: 0.240288568, y: null}, {x: 0.723423423, y: null}, {x: 0.053521127, y: null}, {x: 0.429067748, y: null}, {x: 0.633072407, y: null}, {x: 0.520833333, y: null}, {x: 0.5525, y: null}, {x: 0.213942308, y: null}, {x: 0.365323097, y: null}, {x: 0.569832402, y: null}, {x: 0.323170732, y: null}, {x: 0.346815435, y: null}, {x: 0.864583333, y: null}, {x: 0.336764706, y: null}, {x: 0.2864494, y: null}, {x: 0.110791367, y: null}, {x: 0.325129534, y: null}, {x: 0.291204986, y: null}, {x: 0.233656174, y: null}, {x: 0.239210285, y: null}, {x: 0.198501873, y: null}, {x: 0.101176471, y: null}, {x: 0.433772756, y: null}, {x: 0.16462841, y: null}, {x: 0.126669365, y: null}, {x: 0.269754768, y: null}, {x: 0.40672187, y: null}, {x: 0.328777525, y: null}, {x: 0.193958665, y: null}, {x: 0.092515593, y: null}, {x: 0.354469855, y: null}, {x: 0.019249278, y: null}, {x: 0.330551692, y: null}, {x: 0.0, y: null}, {x: 0.081285444, y: null}, {x: 0.545370655, y: null}, {x: 0.245692884, y: null}, {x: 0.402533427, y: null}, {x: 0.451854372, y: null}, {x: 0.008665511, y: null}, {x: 0.275546159, y: null}, {x: 0.155932203, y: null}, {x: 0.279180388, y: null}, {x: 0.189320388, y: null}, {x: 0.200105042, y: null}, {x: 0.318367347, y: null}, {x: 0.362576508, y: null}, {x: 0.106971154, y: null}, {x: 0.132747253, y: null}, {x: 0.200153965, y: null}, {x: 0.055757576, y: null}, {x: 0.09388412, y: null}, {x: 0.059440559, y: null}, {x: 0.263854425, y: null}, {x: 0.086638831, y: null}, {x: 0.065292096, y: null}, {x: 0.127046496, y: null}, {x: 0.115723923, y: null}, {x: 0.326947637, y: null}, {x: 0.157667387, y: null}, {x: 0.156472262, y: null}, {x: 0.094880847, y: null}, {x: 0.300946143, y: null}, {x: 0.247046187, y: null}, {x: 0.479674797, y: null}, {x: 0.230994152, y: null}, {x: 0.33545402, y: 0.0002}, {x: 0.052132701, y: null}, {x: 0.042813456, y: null}, {x: 0.802477184, y: null}, {x: 0.493624772, y: null}, {x: 0.435756385, y: null}, {x: 0.0, y: null}, {x: 0.125087352, y: null}, {x: 0.142585551, y: null}, {x: 0.33089701, y: null}, {x: 0.538396625, y: null}, {x: 0.265013055, y: null}, {x: 0.066505441, y: null}, {x: 0.0, y: null}, {x: 0.186875892, y: null}, {x: 0.152208202, y: null}, {x: 0.128019324, y: null}, {x: 0.323877069, y: null}, {x: 0.0, y: null}, {x: 0.324041812, y: null}, {x: 0.335646141, y: null}, {x: 0.592633929, y: null}, {x: 0.589965398, y: null}, {x: 0.339244851, y: null}, {x: 0.319901569, y: null}, {x: 0.609080842, y: null}, {x: 0.23853525, y: null}, {x: 0.2376, y: null}, {x: 0.378519974, y: null}, {x: 0.276356831, y: null}, {x: 0.252121817, y: null}, {x: 0.361656704, y: null}, {x: 0.215590743, y: null}, {x: 0.403463204, y: null}, {x: 0.048368298, y: null}, {x: 0.43122102, y: null}, {x: 0.134644478, y: null}, {x: 0.31283628, y: null}, {x: 0.182389937, y: null}, {x: 0.400589102, y: null}, {x: 0.393464942, y: null}, {x: 0.434758772, y: null}, {x: 0.278431373, y: null}, {x: 0.229303548, y: null}, {x: 0.074561404, y: null}, {x: 0.333865815, y: null}, {x: 0.273105745, y: null}, {x: 0.374668786, y: null}, {x: 0.240279163, y: null}, {x: 0.387490465, y: null}, {x: 0.236363636, y: null}, {x: 0.358986175, y: null}, {x: 0.372798434, y: null}, {x: 0.183767228, y: null}, {x: 0.469234885, y: null}, {x: 0.343615052, y: null}, {x: 0.229545455, y: null}, {x: 0.297575758, y: null}, {x: 0.355607477, y: null}, {x: 0.592121982, y: null}, {x: 0.382690302, y: null}, {x: 0.242718447, y: null}, {x: 0.353798127, y: null}, {x: 0.287280702, y: null}, {x: 0.124495289, y: null}, {x: 0.162212554, y: null}, {x: 0.138909091, y: null}, {x: 0.408499566, y: null}, {x: 0.312469675, y: null}, {x: 0.144219309, y: null}, {x: 0.238197425, y: null}, {x: 0.151552795, y: null}, {x: 0.123413258, y: null}, {x: 0.155276992, y: null}, {x: 0.242813456, y: null}, {x: 0.190909091, y: null}, {x: 0.0, y: null}, {x: 0.241575161, y: null}, {x: 0.075421473, y: null}, {x: 0.262490679, y: null}, {x: 0.223963134, y: null}, {x: 0.198603569, y: null}, {x: 0.178683386, y: null}, {x: 0.111854685, y: null}, {x: 0.132231405, y: null}, {x: 0.118500605, y: null}, {x: 0.053787879, y: null}, {x: 0.028061224, y: null}, {x: 0.143234323, y: null}, {x: 0.0, y: null}, {x: 0.083930399, y: null}, {x: 0.140676841, y: null}, {x: 0.181724316, y: null}, {x: 0.126268657, y: null}, {x: 0.003679853, y: null}, {x: 0.24940048, y: null}, {x: 0.297577855, y: null}, {x: 0.063529412, y: null}, {x: 0.17574021, y: null}, {x: 0.146396396, y: null}, {x: 0.341113106, y: null}, {x: 0.297681376, y: null}, {x: 0.376661743, y: null}, {x: 0.589836661, y: null}, {x: 0.103918228, y: null}, {x: 0.173866091, y: null}, {x: 0.0, y: null}, {x: 0.052516411, y: null}, {x: 0.14171123, y: null}, {x: 0.201823708, y: null}, {x: 0.085377821, y: null}, {x: 0.417061611, y: null}, {x: 0.202511774, y: null}, {x: 0.105524079, y: null}, {x: 0.079522863, y: null}, {x: 0.126707132, y: null}, {x: 0.29499561, y: null}, {x: 0.383693046, y: null}, {x: 0.276165803, y: null}, {x: 0.268060837, y: null}, {x: 0.339449541, y: null}, {x: 0.154738878, y: null}, {x: 0.136468774, y: null}, {x: 0.196555218, y: null}, {x: 0.554667788, y: null}, {x: 0.15597148, y: null}, {x: 0.23524343, y: null}, {x: 0.322191272, y: null}, {x: 0.28372591, y: null}, {x: 0.123559539, y: null}, {x: 0.112867809, y: null}, {x: 0.022659256, y: null}, {x: 0.092447917, y: null}, {x: 0.063852243, y: null}, {x: 0.0, y: null}, {x: 0.133391456, y: null}, {x: 0.090115125, y: null}, {x: 0.172472873, y: null}, {x: 0.037712895, y: null}, {x: 0.146007605, y: null}, {x: 0.15511222, y: null}, {x: 0.0198188, y: null}, {x: 0.050741608, y: null}, {x: 0.169124877, y: null}, {x: 0.151589242, y: null}, {x: 0.179171333, y: null}, {x: 0.069127124, y: null}, {x: 0.116481392, y: null}, {x: 0.129323308, y: null}, {x: 0.04685836, y: null}, {x: 0.016800584, y: null}, {x: 0.048023642, y: null}, {x: 0.100680272, y: null}, {x: 0.58206278, y: null}, {x: 0.0, y: null}, {x: 0.085852479, y: null}, {x: 0.15303526, y: null}, {x: 0.524165708, y: null}, {x: 0.325624422, y: null}, {x: 0.123513871, y: null}, {x: 0.0, y: null}, {x: 0.127576602, y: null}, {x: 0.183862434, y: null}, {x: 0.111435726, y: null}, {x: 0.252941177, y: null}, {x: 0.07177814, y: null}, {x: 0.143512451, y: null}, {x: 0.03902439, y: null}, {x: 0.372747253, y: null}, {x: 0.095264938, y: null}, {x: 0.434782609, y: null}, {x: 0.117625093, y: null}, {x: 0.111768185, y: null}, {x: 0.062271062, y: null}, {x: 0.038184438, y: null}, {x: 0.037009063, y: null}, {x: 0.164162178, y: null}, {x: 0.315154994, y: null}, {x: 0.114213198, y: null}, {x: 0.112081514, y: null}, {x: 0.0, y: null}, {x: 0.126518219, y: null}, {x: 0.589641434, y: null}, {x: 0.202255109, y: null}, {x: 0.163157895, y: null}, {x: 0.06900801, y: null}, {x: 0.495283019, y: null}, {x: 0.11902615, y: null}, {x: 0.08789315, y: null}, {x: 0.213245033, y: null}, {x: 0.160091481, y: null}, {x: 0.107175713, y: null}, {x: 0.325405405, y: null}, {x: 0.127067015, y: null}, {x: 0.293577982, y: null}, {x: 0.288843607, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.075313808, y: null}, {x: 0.550359712, y: null}, {x: 0.0, y: null}, {x: 0.118030413, y: null}, {x: 0.179292929, y: null}, {x: 0.079299691, y: null}, {x: 0.239059968, y: null}, {x: 0.114947197, y: null}, {x: 0.102760736, y: null}, {x: 0.153924222, y: null}, {x: 0.017120623, y: null}, {x: 0.116334661, y: null}, {x: 0.365664404, y: null}, {x: 0.156437126, y: null}, {x: 0.025022341, y: null}, {x: 0.269158879, y: null}, {x: 0.622871046, y: null}, {x: 0.217356042, y: null}, {x: 0.289119804, y: null}, {x: 0.437041972, y: null}, {x: 0.625321337, y: null}, {x: 0.210368893, y: null}, {x: 0.367272727, y: null}, {x: 0.289623717, y: null}, {x: 0.403438395, y: null}, {x: 0.094339623, y: null}, {x: 0.176, y: null}, {x: 0.353255426, y: null}, {x: 0.476152623, y: null}, {x: 0.268591772, y: null}, {x: 0.247044917, y: null}, {x: 0.194107452, y: null}, {x: 0.207771182, y: null}, {x: 0.24205379, y: null}, {x: 0.288085359, y: null}, {x: 0.192329708, y: null}, {x: 0.177777778, y: null}, {x: 0.444206009, y: null}, {x: 0.193922431, y: null}, {x: 0.236474695, y: null}, {x: 0.152218996, y: null}, {x: 0.067391304, y: null}, {x: 0.633761106, y: null}, {x: 0.378848728, y: null}, {x: 0.155805978, y: null}, {x: 0.223214286, y: null}, {x: 0.141225733, y: null}, {x: 0.238128987, y: null}, {x: 0.105389222, y: null}, {x: 0.226868793, y: null}, {x: 0.179365079, y: null}, {x: 0.139650873, y: null}, {x: 0.289487312, y: null}, {x: 0.265251989, y: null}, {x: 0.776556777, y: null}, {x: 0.336858006, y: null}, {x: 0.093155894, y: null}, {x: 0.061428571, y: null}, {x: 0.578643579, y: null}, {x: 0.676948052, y: null}, {x: 0.800447177, y: null}, {x: 0.098207327, y: null}, {x: 0.541666667, y: null}, {x: 0.142259414, y: null}, {x: 0.031313131, y: null}, {x: 0.554314721, y: null}, {x: 0.050111359, y: null}, {x: 0.025575448, y: null}, {x: 0.060606061, y: null}, {x: 0.0, y: null}, {x: 0.272820513, y: null}, {x: 0.184559711, y: null}, {x: 0.097065463, y: null}, {x: 0.438481675, y: null}, {x: 0.523618091, y: null}, {x: 0.425742574, y: null}, {x: 0.255975328, y: null}, {x: 0.331612903, y: null}, {x: 0.30228667, y: null}, {x: 0.468108108, y: null}, {x: 0.808575804, y: null}, {x: 0.650214592, y: null}, {x: 0.731553057, y: null}, {x: 0.623893805, y: null}, {x: 0.583061889, y: null}, {x: 0.477015825, y: null}, {x: 0.241610738, y: null}, {x: 0.246464039, y: null}, {x: 0.020792079, y: null}, {x: 0.329139073, y: null}, {x: 0.296934866, y: null}, {x: 0.536317568, y: null}, {x: 0.419132829, y: null}, {x: 0.332554062, y: null}, {x: 0.655139289, y: null}, {x: 0.510978044, y: null}, {x: 0.705842848, y: null}, {x: 0.720833333, y: null}, {x: 0.458333333, y: null}, {x: 0.27124183, y: null}, {x: 0.452717391, y: null}, {x: 0.457732949, y: null}, {x: 0.644927536, y: null}, {x: 0.178466077, y: null}, {x: 0.64235166, y: null}, {x: 0.511641444, y: null}, {x: 0.142367067, y: null}, {x: 0.303030303, y: null}, {x: 0.047302905, y: null}, {x: 0.407783418, y: null}, {x: 0.363344051, y: null}, {x: 0.301818182, y: null}, {x: 0.257738095, y: null}, {x: 0.455690508, y: null}, {x: 0.047013977, y: null}, {x: 0.480806142, y: null}, {x: 0.148148148, y: null}, {x: 0.083032491, y: null}, {x: 0.256652868, y: null}, {x: 0.449941793, y: null}, {x: 0.502857143, y: null}, {x: 0.394893617, y: null}, {x: 0.455964326, y: null}, {x: 0.358895706, y: null}, {x: 0.487179487, y: null}, {x: 0.428381079, y: null}, {x: 0.722955145, y: null}, {x: 0.466138329, y: null}, {x: 0.484363636, y: null}, {x: 0.234217749, y: null}, {x: 0.440431267, y: null}, {x: 0.278461539, y: null}, {x: 0.285258964, y: null}, {x: 0.639753376, y: null}, {x: 0.459951456, y: null}, {x: 0.467357513, y: null}, {x: 0.626714801, y: null}, {x: 0.298892989, y: null}, {x: 0.539954853, y: null}, {x: 0.243928194, y: null}, {x: 0.301120448, y: null}, {x: 0.236024845, y: null}, {x: 0.536796537, y: null}, {x: 0.21187801, y: null}, {x: 0.599023332, y: null}, {x: 0.560414269, y: null}, {x: 0.658061374, y: null}, {x: 0.419966302, y: null}, {x: 0.506322445, y: null}, {x: 0.27308603, y: null}, {x: 0.0, y: null}, {x: 0.211217184, y: null}, {x: 0.088700565, y: null}, {x: 0.434358224, y: null}, {x: 0.246028143, y: null}, {x: 0.213157895, y: null}, {x: 0.235191638, y: null}, {x: 0.432766615, y: null}, {x: 0.432024169, y: null}, {x: 0.174089069, y: null}, {x: 0.43256579, y: null}, {x: 0.267912773, y: null}, {x: 0.638860631, y: null}, {x: 0.125090383, y: null}, {x: 0.328007519, y: null}, {x: 0.268500949, y: null}, {x: 0.451703407, y: null}, {x: 0.228358209, y: null}, {x: 0.272848566, y: null}, {x: 0.163146067, y: null}, {x: 0.196129032, y: null}, {x: 0.350411132, y: null}, {x: 0.321415803, y: null}, {x: 0.194068343, y: null}, {x: 0.404568902, y: null}, {x: 0.170212766, y: null}, {x: 0.346330275, y: null}, {x: 0.706701031, y: null}, {x: 0.534646739, y: null}, {x: 0.744510978, y: null}, {x: 0.745925616, y: null}, {x: 0.715239155, y: null}, {x: 0.638457687, y: null}, {x: 0.605493134, y: null}, {x: 0.762241292, y: null}, {x: 0.731707317, y: null}, {x: 0.0, y: null}, {x: 0.735701906, y: null}, {x: 0.842105263, y: null}, {x: 0.851461428, y: null}, {x: 0.854760461, y: null}, {x: 0.700987306, y: null}, {x: 0.809554551, y: null}, {x: 0.542168675, y: null}, {x: 0.70011534, y: null}, {x: 0.630434783, y: null}, {x: 0.703597122, y: null}, {x: 0.477761119, y: null}, {x: 0.084656085, y: null}, {x: 0.218037661, y: null}, {x: 0.31827957, y: null}, {x: 0.200140449, y: null}, {x: 0.089765101, y: null}, {x: 0.321628093, y: null}, {x: 0.327291037, y: null}, {x: 0.152145644, y: null}, {x: 0.036794767, y: null}, {x: 0.13676976, y: null}, {x: 0.151361329, y: null}, {x: 0.100806452, y: null}, {x: 0.405745063, y: null}, {x: 0.107708553, y: null}, {x: 0.070974576, y: null}, {x: 0.038854806, y: null}, {x: 0.408336277, y: null}, {x: 0.201072386, y: null}, {x: 0.175342466, y: null}, {x: 0.263991552, y: null}, {x: 0.134215501, y: null}, {x: 0.141125541, y: null}, {x: 0.493091949, y: null}, {x: 0.169693175, y: null}, {x: 0.151515152, y: null}, {x: 0.12715713, y: null}, {x: 0.238372093, y: null}, {x: 0.211703959, y: null}, {x: 0.182995496, y: null}, {x: 0.090909091, y: null}, {x: 0.232673267, y: null}, {x: 0.106060606, y: null}, {x: 0.208279431, y: null}, {x: 0.343478261, y: null}, {x: 0.258687259, y: null}, {x: 0.065675341, y: null}, {x: 0.322373697, y: null}, {x: 0.123758594, y: null}, {x: 0.288623285, y: null}, {x: 0.073569482, y: null}, {x: 0.118829982, y: null}, {x: 0.149234694, y: null}, {x: 0.15250291, y: null}, {x: 0.060626703, y: null}, {x: 0.092255125, y: null}, {x: 0.448385389, y: null}, {x: 0.196416722, y: null}, {x: 0.132716049, y: null}, {x: 0.227699531, y: null}, {x: 0.069767442, y: null}, {x: 0.094230769, y: null}, {x: 0.017931034, y: null}, {x: 0.075027996, y: null}, {x: 0.136291601, y: null}, {x: 0.089648799, y: null}, {x: 0.069212411, y: null}, {x: 0.094409938, y: null}, {x: 0.025657071, y: null}, {x: 0.060321716, y: null}, {x: 0.0590743, y: null}, {x: 0.267729084, y: null}, {x: 0.083010904, y: null}, {x: 0.075286416, y: null}, {x: 0.085882984, y: null}, {x: 0.208118081, y: null}, {x: 0.085723816, y: null}, {x: 0.064118896, y: null}, {x: 0.109077599, y: null}, {x: 0.091924399, y: null}, {x: 0.043564356, y: null}, {x: 0.087671233, y: null}, {x: 0.164005806, y: null}, {x: 0.173177843, y: null}, {x: 0.053217822, y: null}, {x: 0.088706366, y: null}, {x: 0.137301587, y: null}, {x: 0.069672131, y: null}, {x: 0.206932052, y: null}, {x: 0.310514541, y: null}, {x: 0.08650519, y: null}, {x: 0.110561056, y: null}, {x: 0.22125182, y: null}, {x: 0.132335329, y: null}, {x: 0.057953144, y: null}, {x: 0.043621943, y: null}, {x: 0.076346604, y: null}, {x: 0.138438881, y: null}, {x: 0.419213974, y: null}, {x: 0.046464646, y: null}, {x: 0.0, y: null}, {x: 0.079030558, y: null}, {x: 0.263785395, y: null}, {x: 0.061058924, y: null}, {x: 0.207207207, y: null}, {x: 0.0, y: null}, {x: 0.241537054, y: null}, {x: 0.160781367, y: null}, {x: 0.053030303, y: null}, {x: 0.364100926, y: null}, {x: 0.380126183, y: null}, {x: 0.239409805, y: null}, {x: 0.319026549, y: null}, {x: 0.350312779, y: null}, {x: 0.225237449, y: null}, {x: 0.448918269, y: null}, {x: 0.508521601, y: null}, {x: 0.479357798, y: null}, {x: 0.3224149, y: null}, {x: 0.24432105, y: null}, {x: 0.533035714, y: null}, {x: 0.0, y: null}, {x: 0.637288136, y: null}, {x: 0.26092233, y: null}, {x: 0.306257521, y: null}, {x: 0.319186561, y: null}, {x: 0.195939982, y: null}, {x: 0.299299668, y: null}, {x: 0.262352941, y: null}, {x: 0.25443787, y: null}, {x: 0.328278999, y: null}, {x: 0.205414013, y: null}, {x: 0.288444831, y: null}, {x: 0.286445013, y: null}, {x: 0.070126227, y: null}, {x: 0.216596343, y: null}, {x: 0.382257012, y: null}, {x: 0.26707132, y: null}, {x: 0.0, y: null}, {x: 0.066487576, y: 3617.0713}, {x: 0.115537849, y: null}, {x: 0.041635688, y: null}, {x: 0.080174927, y: null}, {x: 0.01407212, y: null}, {x: 0.011082694, y: null}, {x: 0.014285714, y: null}, {x: 0.067328918, y: null}, {x: 0.01787234, y: null}, {x: 0.122308355, y: null}, {x: 0.043723554, y: null}, {x: 0.016129032, y: null}, {x: 0.0, y: null}, {x: 0.115507049, y: null}, {x: 0.04434907, y: null}, {x: 0.095505618, y: null}, {x: 0.0, y: null}, {x: 0.026545808, y: null}, {x: 0.0, y: null}, {x: 0.114595211, y: null}, {x: 0.106827025, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.168466523, y: null}, {x: 0.224159402, y: null}, {x: 0.010598504, y: null}, {x: 0.188047809, y: null}, {x: 0.027922385, y: null}, {x: 0.171848502, y: 21.541675}, {x: 0.193248945, y: null}, {x: 0.0, y: null}, {x: 0.116096866, y: null}, {x: 0.205895901, y: null}, {x: 0.0, y: null}, {x: 0.039182993, y: null}, {x: 0.011422045, y: null}, {x: 0.015063731, y: null}, {x: 0.0, y: null}, {x: 0.031298905, y: null}, {x: 0.067066521, y: null}, {x: 0.0, y: null}, {x: 0.136803874, y: null}, {x: 0.090263268, y: null}, {x: 0.090269151, y: null}, {x: 0.071390231, y: null}, {x: 0.075892857, y: null}, {x: 0.061668682, y: null}, {x: 0.025142857, y: null}, {x: 0.147532729, y: null}, {x: 0.058736059, y: null}, {x: 0.234347048, y: null}, {x: 0.019691325, y: null}, {x: 0.042836041, y: null}, {x: 0.054054054, y: null}, {x: 0.128456221, y: null}, {x: 0.04283054, y: null}, {x: 0.0, y: null}, {x: 0.011235955, y: null}, {x: 0.076626506, y: null}, {x: 0.0, y: null}, {x: 0.154471545, y: null}, {x: 0.04835924, y: null}, {x: 0.211058665, y: null}, {x: 0.000751315, y: null}, {x: 0.0, y: 0.021042}, {x: 0.01244168, y: null}, {x: 0.015780731, y: null}, {x: 0.003205128, y: null}, {x: 0.041433371, y: null}, {x: 0.136166522, y: null}, {x: 0.060869565, y: null}, {x: 0.122555411, y: null}, {x: 0.031631919, y: null}, {x: 0.13753988, y: null}, {x: 0.020641356, y: null}, {x: 0.030268418, y: null}, {x: 0.028318584, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055288462, y: null}, {x: 0.0, y: null}, {x: 0.023419204, y: null}, {x: 0.061333333, y: null}, {x: 0.056431535, y: null}, {x: 0.012683578, y: null}, {x: 0.100056211, y: null}, {x: 0.041463415, y: null}, {x: 0.067366579, y: null}, {x: 0.004819277, y: null}, {x: 0.020833333, y: null}, {x: 0.024445708, y: null}, {x: 0.014472777, y: null}, {x: 0.046162403, y: null}, {x: 0.00273224, y: null}, {x: 0.029723992, y: null}, {x: 0.099346405, y: null}, {x: 0.112621359, y: null}, {x: 0.090563429, y: null}, {x: 0.0, y: null}, {x: 0.089023773, y: null}, {x: 0.004582485, y: null}, {x: 0.035049288, y: null}, {x: 0.058823529, y: null}, {x: 0.003511236, y: null}, {x: 0.057321773, y: null}, {x: 0.080176211, y: null}, {x: 0.033033033, y: null}, {x: 0.098484848, y: null}, {x: 0.10243701, y: null}, {x: 0.00933553, y: null}, {x: 0.0, y: null}, {x: 0.096503497, y: null}, {x: 0.079427726, y: null}, {x: 0.076479076, y: null}, {x: 0.491942324, y: null}, {x: 0.398843931, y: null}, {x: 0.319482918, y: null}, {x: 0.776713338, y: null}, {x: 0.502976191, y: null}, {x: 0.549869905, y: null}, {x: 0.84375, y: null}, {x: 0.741132076, y: null}, {x: 0.851528384, y: null}, {x: 0.848380427, y: null}, {x: 0.901129944, y: null}, {x: 0.797481637, y: null}, {x: 0.910585817, y: null}, {x: 0.904982619, y: null}, {x: 0.668621701, y: null}, {x: 0.795454546, y: null}, {x: 0.624051372, y: null}, {x: 0.853749418, y: null}, {x: 0.783849918, y: null}, {x: 0.484526967, y: null}, {x: 0.789579158, y: null}, {x: 0.809848485, y: null}, {x: 0.761339551, y: null}, {x: 0.731147541, y: null}, {x: 0.478682171, y: null}, {x: 0.19012605, y: null}, {x: 0.552168022, y: null}, {x: 0.657407407, y: null}, {x: 0.464079273, y: null}, {x: 0.331395349, y: null}, {x: 0.721046077, y: null}, {x: 0.621012101, y: null}, {x: 0.978417266, y: null}, {x: 0.851948052, y: null}, {x: 0.786802031, y: null}, {x: 0.976299376, y: null}, {x: 0.993265993, y: null}, {x: 0.879605827, y: null}, {x: 0.867587327, y: null}, {x: 0.611304348, y: null}, {x: 0.784980745, y: null}, {x: 0.832241153, y: null}, {x: 0.605659026, y: null}, {x: 0.391104295, y: null}, {x: 0.544887781, y: null}, {x: 0.579019541, y: null}, {x: 0.6493756, y: null}, {x: 0.854868341, y: null}, {x: 0.792165749, y: null}, {x: 0.619640387, y: null}, {x: 0.848758465, y: null}, {x: 0.482758621, y: null}, {x: 0.844183565, y: null}, {x: 0.652783867, y: null}, {x: 0.805350554, y: null}, {x: 0.858851675, y: null}, {x: 0.924479167, y: null}, {x: 0.961275626, y: null}, {x: 0.985457656, y: null}, {x: 0.949265688, y: null}, {x: 0.922929936, y: null}, {x: 0.871024735, y: null}, {x: 0.871236684, y: null}, {x: 1.0, y: null}, {x: 0.561518325, y: null}, {x: 0.309341501, y: null}, {x: 0.708148148, y: null}, {x: 0.692118227, y: null}, {x: 0.671621622, y: null}, {x: 0.328690808, y: null}, {x: 0.669160432, y: null}, {x: 0.618478944, y: null}, {x: 0.464380826, y: null}, {x: 0.142857143, y: null}, {x: 0.25798212, y: null}, {x: 0.182625483, y: null}, {x: 0.070806732, y: null}, {x: 0.299707602, y: null}, {x: 0.285714286, y: null}, {x: 0.105164904, y: null}, {x: 0.255273121, y: null}, {x: 0.111969112, y: null}, {x: 0.033960293, y: null}, {x: 0.071979434, y: null}, {x: 0.10403397, y: null}, {x: 0.119521912, y: null}, {x: 0.131091284, y: null}, {x: 0.070151921, y: null}, {x: 0.07823741, y: null}, {x: 0.061776062, y: null}, {x: 0.072761194, y: null}, {x: 0.032214765, y: null}, {x: 0.107628004, y: null}, {x: 0.099062134, y: null}, {x: 0.039408867, y: null}, {x: 0.084408602, y: null}, {x: 0.208797032, y: null}, {x: 0.0, y: null}, {x: 0.114045159, y: null}, {x: 0.231069477, y: null}, {x: 0.028325123, y: null}, {x: 0.110132159, y: null}, {x: 0.060983199, y: null}, {x: 0.090592334, y: null}, {x: 0.020075758, y: null}, {x: 0.197417967, y: null}, {x: 0.218104817, y: null}, {x: 0.11627907, y: null}, {x: 0.034393809, y: null}, {x: 0.044551062, y: null}, {x: 0.247531271, y: null}, {x: 0.041696113, y: null}, {x: 0.03030303, y: null}, {x: 0.126549964, y: null}, {x: 0.094280608, y: null}, {x: 0.04178273, y: null}, {x: 0.06168446, y: null}, {x: 0.082235785, y: null}, {x: 0.062121212, y: null}, {x: 0.164795689, y: null}, {x: 0.194368132, y: null}, {x: 0.052581715, y: null}, {x: 0.461538462, y: null}, {x: 0.02002584, y: null}, {x: 0.0, y: null}, {x: 0.018734388, y: null}, {x: 0.098822325, y: null}, {x: 0.107617896, y: null}, {x: 0.160372732, y: null}, {x: 0.114635252, y: null}, {x: 0.152927121, y: null}, {x: 0.109589041, y: null}, {x: 0.232016211, y: null}, {x: 0.058823529, y: null}, {x: 0.0, y: null}, {x: 0.091782284, y: null}, {x: 0.146581197, y: null}, {x: 0.020706456, y: null}, {x: 0.000971817, y: null}, {x: 0.027093596, y: null}, {x: 0.129917658, y: null}, {x: 0.131410256, y: null}, {x: 0.104056437, y: null}, {x: 0.031123139, y: null}, {x: 0.039660057, y: null}, {x: 0.076732673, y: null}, {x: 0.031585597, y: null}, {x: 0.291970803, y: null}, {x: 0.000660502, y: null}, {x: 0.011011011, y: null}, {x: 0.012298558, y: null}, {x: 0.062390543, y: null}, {x: 0.001129944, y: null}, {x: 0.428134557, y: null}, {x: 0.157817109, y: null}, {x: 0.025700935, y: null}, {x: 0.088181818, y: null}, {x: 0.07860262, y: null}, {x: 0.024965956, y: null}, {x: 0.076994867, y: null}, {x: 0.060514372, y: null}, {x: 0.190140845, y: null}, {x: 0.006815366, y: null}, {x: 0.049686848, y: null}, {x: 0.340220386, y: null}, {x: 0.0, y: null}, {x: 0.157366771, y: null}, {x: 0.093249428, y: null}, {x: 0.062756817, y: null}, {x: 0.08699187, y: null}, {x: 0.017415215, y: null}, {x: 0.012691466, y: null}, {x: 0.02600104, y: null}, {x: 0.021117166, y: null}, {x: 0.100055586, y: null}, {x: 0.094315656, y: null}, {x: 0.066437008, y: null}, {x: 0.083569405, y: null}, {x: 0.100716561, y: null}, {x: 0.202319072, y: null}, {x: 0.153669725, y: null}, {x: 0.038064516, y: null}, {x: 0.095583787, y: null}, {x: 0.016042781, y: null}, {x: 0.018318966, y: null}, {x: 0.259567388, y: null}, {x: 0.070686071, y: null}, {x: 0.053818182, y: null}, {x: 0.039195637, y: null}, {x: 0.152311877, y: null}, {x: 0.061298077, y: null}, {x: 0.065064478, y: null}, {x: 0.059433962, y: null}, {x: 0.069084629, y: null}, {x: 0.02417962, y: null}, {x: 0.127639156, y: null}, {x: 0.130653266, y: null}, {x: 0.252906977, y: null}, {x: 0.037284895, y: null}, {x: 0.271126761, y: null}, {x: 0.04446461, y: null}, {x: 0.438220758, y: null}, {x: 0.224897541, y: null}, {x: 0.074432093, y: null}, {x: 0.236148956, y: null}, {x: 0.398945519, y: null}, {x: 0.211764706, y: null}, {x: 0.015025042, y: null}, {x: 0.076526225, y: null}, {x: 0.104130809, y: null}, {x: 0.087035358, y: null}, {x: 0.039270687, y: null}, {x: 0.026011561, y: null}, {x: 0.049031477, y: null}, {x: 0.024727992, y: null}, {x: 0.530139104, y: null}, {x: 0.04389313, y: null}, {x: 0.010638298, y: null}, {x: 0.032840723, y: null}, {x: 0.031652989, y: null}, {x: 0.09512761, y: null}, {x: 0.142121524, y: null}, {x: 0.0, y: null}, {x: 0.241830065, y: null}, {x: 0.451451452, y: null}, {x: 0.054270882, y: null}, {x: 0.148351648, y: null}, {x: 0.180206795, y: null}, {x: 0.428433735, y: null}, {x: 0.254112706, y: null}, {x: 0.0, y: null}, {x: 0.436298077, y: null}, {x: 0.147177419, y: null}, {x: 0.556331878, y: null}, {x: 0.434986334, y: null}, {x: 0.62111293, y: null}, {x: 0.233716475, y: null}, {x: 0.292682927, y: null}, {x: 0.327024185, y: null}, {x: 0.431118314, y: null}, {x: 0.302603037, y: null}, {x: 0.497847358, y: null}, {x: 0.317375887, y: null}, {x: 0.230225989, y: null}, {x: 0.254545455, y: null}, {x: 0.576712329, y: null}, {x: 0.271746945, y: null}, {x: 0.45505618, y: null}, {x: 0.319502075, y: null}, {x: 0.296660118, y: null}, {x: 0.430868167, y: null}, {x: 0.389933628, y: null}, {x: 0.332575758, y: null}, {x: 0.247718383, y: null}, {x: 0.37260592, y: null}, {x: 0.337327189, y: null}, {x: 0.28358209, y: null}, {x: 0.374579125, y: null}, {x: 0.206666667, y: null}, {x: 0.182298547, y: null}, {x: 0.238975818, y: null}, {x: 0.484057971, y: null}, {x: 0.516728625, y: null}, {x: 0.291262136, y: null}, {x: 0.317335945, y: null}, {x: 0.322939866, y: null}, {x: 0.327349525, y: null}, {x: 0.406193078, y: null}, {x: 0.378563284, y: null}, {x: 0.183486239, y: null}, {x: 0.824340528, y: null}, {x: 0.453324379, y: null}, {x: 0.362804878, y: null}, {x: 0.425986842, y: null}, {x: 0.425774878, y: null}, {x: 0.354102406, y: null}, {x: 0.288625904, y: null}, {x: 0.576019778, y: null}, {x: 0.331848552, y: null}, {x: 0.576506955, y: null}, {x: 0.394610202, y: null}, {x: 0.306148055, y: null}, {x: 0.795580111, y: null}, {x: 0.537383178, y: null}, {x: 0.371278459, y: null}, {x: 0.440585009, y: null}, {x: 0.647199047, y: null}, {x: 0.536860364, y: null}, {x: 0.551282051, y: null}, {x: 0.468823994, y: null}, {x: 0.0, y: null}, {x: 0.425758819, y: null}, {x: 0.61423651, y: null}, {x: 0.47319933, y: null}, {x: 0.360818351, y: null}, {x: 0.31202046, y: null}, {x: 0.40386016, y: null}, {x: 0.332650972, y: null}, {x: 0.344453711, y: null}, {x: 0.335353535, y: null}, {x: 0.40886076, y: null}, {x: 0.625598086, y: null}, {x: 0.323529412, y: null}, {x: 0.429442509, y: null}, {x: 0.764770241, y: null}, {x: 0.481530343, y: null}, {x: 0.342256214, y: null}, {x: 0.304247104, y: null}, {x: 0.317724933, y: null}, {x: 0.621507197, y: null}, {x: 0.432989691, y: null}, {x: 0.282258065, y: null}, {x: 0.489719626, y: null}, {x: 0.410749834, y: null}, {x: 0.577118644, y: null}, {x: 0.278816199, y: null}, {x: 0.408577878, y: null}, {x: 0.529881995, y: null}, {x: 0.630111524, y: null}, {x: 0.388148148, y: null}, {x: 0.373713381, y: null}, {x: 0.660633484, y: null}, {x: 0.609332113, y: null}, {x: 0.188295165, y: null}, {x: 0.418831169, y: null}, {x: 0.444444444, y: null}, {x: 0.335466179, y: null}, {x: 0.175656985, y: null}, {x: 0.110909091, y: null}, {x: 0.311409396, y: null}, {x: 0.141258741, y: null}, {x: 0.120588235, y: null}, {x: 0.339648173, y: null}, {x: 0.167492567, y: null}, {x: 0.17802645, y: null}, {x: 0.161595673, y: null}, {x: 0.167664671, y: null}, {x: 0.227202473, y: null}, {x: 0.081447964, y: null}, {x: 0.145405888, y: null}, {x: 0.151515152, y: null}, {x: 0.091139241, y: null}, {x: 0.24270073, y: null}, {x: 0.144736842, y: null}, {x: 0.052714398, y: null}, {x: 0.363675958, y: null}, {x: 0.21564482, y: null}, {x: 0.290950745, y: null}, {x: 0.341207349, y: null}, {x: 0.566775244, y: null}, {x: 0.2477842, y: null}, {x: 0.25111309, y: null}, {x: 0.126646403, y: null}, {x: 0.213203463, y: null}, {x: 0.124174373, y: null}, {x: 0.121562952, y: null}, {x: 0.06097561, y: null}, {x: 0.326802835, y: null}, {x: 0.131782946, y: null}, {x: 0.109284333, y: null}, {x: 0.248421053, y: null}, {x: 0.052206339, y: null}, {x: 0.098901099, y: 7.2}, {x: 0.119533528, y: null}, {x: 0.170608108, y: null}, {x: 0.1875, y: null}, {x: 0.193760263, y: null}, {x: 0.832089552, y: null}, {x: 0.192271442, y: null}, {x: 0.881118881, y: null}, {x: 0.129524887, y: null}, {x: 0.022099448, y: null}, {x: 0.159090909, y: null}, {x: 0.0, y: null}, {x: 0.295384615, y: null}, {x: 0.105643994, y: 766.04}, {x: 0.294324166, y: 273.784}, {x: 0.099509804, y: null}, {x: 0.974358974, y: null}, {x: 0.920913884, y: null}, {x: 0.089480048, y: 2.5375}, {x: 0.804804805, y: null}, {x: 0.770975057, y: 0.473}, {x: 0.524307692, y: null}, {x: 0.817708333, y: null}, {x: 0.662735849, y: null}, {x: 0.534988713, y: null}, {x: 0.737089202, y: null}, {x: 0.484450587, y: 3.82795}, {x: 0.885714286, y: null}, {x: 0.62562396, y: null}, {x: 0.755060729, y: null}, {x: 0.497790055, y: null}, {x: 0.710113339, y: null}, {x: 0.0, y: null}, {x: 0.762780012, y: null}, {x: 0.566579635, y: null}, {x: 0.878341517, y: null}, {x: 0.726735598, y: null}, {x: 0.755205402, y: null}, {x: 0.862957938, y: null}, {x: 0.633333333, y: null}, {x: 0.731067961, y: 0.17529}, {x: 0.668428005, y: null}, {x: 0.570669501, y: null}, {x: 0.481553398, y: null}, {x: 0.559139785, y: null}, {x: 0.556708673, y: null}, {x: 0.293277311, y: null}, {x: 0.728453365, y: null}, {x: 0.491496599, y: 16.942}, {x: 0.398455599, y: null}, {x: 0.310460251, y: null}, {x: 0.047406082, y: null}, {x: 0.012482663, y: null}, {x: 0.06820365, y: null}, {x: 0.058823529, y: null}, {x: 0.036275695, y: null}, {x: 0.098478066, y: null}, {x: 0.141903172, y: null}, {x: 0.0, y: null}, {x: 0.038062284, y: null}, {x: 0.018664752, y: null}, {x: 0.003933137, y: null}, {x: 0.0, y: null}, {x: 0.045992116, y: null}, {x: 0.22675737, y: null}, {x: 0.120762712, y: null}, {x: 0.128514056, y: null}, {x: 0.391908976, y: null}, {x: 0.143407122, y: null}, {x: 0.288095238, y: null}, {x: 0.351945855, y: null}, {x: 0.18487395, y: null}, {x: 0.104551046, y: null}, {x: 0.171851852, y: null}, {x: 0.29661017, y: null}, {x: 0.888888889, y: null}, {x: 0.90530303, y: null}, {x: 0.029115342, y: null}, {x: 0.12312812, y: null}, {x: 0.28343667, y: null}, {x: 0.131437356, y: null}, {x: 0.07436919, y: null}, {x: 0.71656051, y: null}, {x: 0.605143722, y: null}, {x: 0.448079659, y: null}, {x: 0.822801303, y: null}, {x: 0.147282291, y: null}, {x: 0.0, y: null}, {x: 0.244525547, y: null}, {x: 0.126931567, y: null}, {x: 0.765264586, y: null}, {x: 0.411953042, y: null}, {x: 0.0625, y: null}, {x: 0.642748092, y: null}, {x: 0.259958071, y: null}, {x: 0.210643016, y: null}, {x: 0.372171946, y: null}, {x: 1.0, y: null}, {x: 0.320119671, y: null}, {x: 0.756920999, y: null}, {x: 1.0, y: null}, {x: 0.315023164, y: null}, {x: 0.270172258, y: null}, {x: 0.224815725, y: null}, {x: 0.068907563, y: null}, {x: 0.522633745, y: null}, {x: 0.314629259, y: 180.08110000000002}, {x: 0.923857868, y: null}, {x: 0.221774194, y: null}, {x: 0.367239102, y: null}, {x: 0.386010363, y: null}, {x: 0.844854674, y: null}, {x: 0.21399177, y: null}, {x: 0.315594974, y: null}, {x: 0.541598695, y: null}, {x: 0.376772451, y: null}, {x: 0.193430657, y: null}, {x: 0.389344262, y: null}, {x: 0.224582701, y: null}, {x: 0.777003484, y: null}, {x: 0.44488978, y: null}, {x: 0.33748702, y: null}, {x: 0.300083126, y: null}, {x: 0.737172775, y: null}, {x: 0.516766982, y: null}, {x: 0.430693069, y: null}, {x: 0.246899662, y: null}, {x: 0.427958834, y: null}, {x: 0.330396476, y: null}, {x: 0.975853946, y: null}, {x: 0.724309392, y: null}, {x: 0.821090047, y: null}, {x: 0.819124424, y: null}, {x: 0.899148658, y: null}, {x: 0.867975626, y: null}, {x: 1.0, y: null}, {x: 0.79163034, y: null}, {x: 0.993857494, y: null}, {x: 0.598896044, y: null}, {x: 1.0, y: null}, {x: 0.896551724, y: null}, {x: 0.599669422, y: null}, {x: 0.96039604, y: null}, {x: 0.494479495, y: null}, {x: 0.318411552, y: null}, {x: 0.261329305, y: null}, {x: 0.358070501, y: null}, {x: 0.425316456, y: null}, {x: 0.840485075, y: null}, {x: 0.770919067, y: null}, {x: 0.690140845, y: null}, {x: 0.429850746, y: null}, {x: 0.462167689, y: null}, {x: 0.634565778, y: null}, {x: 0.474806202, y: null}, {x: 0.669588081, y: null}, {x: 0.97705803, y: null}, {x: 1.0, y: null}, {x: 0.693979933, y: null}, {x: 0.957512953, y: null}, {x: 0.937823834, y: null}, {x: 0.844132029, y: null}, {x: 0.544991511, y: null}, {x: 0.590147783, y: null}, {x: 0.774659182, y: null}, {x: 0.401937046, y: null}, {x: 0.83006536, y: null}, {x: 0.90625, y: null}, {x: 0.98509687, y: null}, {x: 0.934607646, y: null}, {x: 0.947420635, y: null}, {x: 0.936672968, y: null}, {x: 1.0, y: null}, {x: 0.910276074, y: null}, {x: 0.973387097, y: null}, {x: 0.914236707, y: null}, {x: 0.97542735, y: null}, {x: 0.957678356, y: null}, {x: 0.853249476, y: null}, {x: 0.962488564, y: null}, {x: 0.903369358, y: null}, {x: 0.994747899, y: null}, {x: 0.975, y: null}, {x: 0.822168088, y: null}, {x: 0.959434822, y: null}, {x: 0.798618684, y: null}, {x: 0.859937402, y: null}, {x: 0.978483607, y: null}, {x: 0.985623003, y: null}, {x: 1.0, y: null}, {x: 0.843520782, y: null}, {x: 0.913366337, y: null}, {x: 0.92920354, y: null}, {x: 1.0, y: null}, {x: 0.957605985, y: null}, {x: 0.933854908, y: null}, {x: 0.982142857, y: null}, {x: 0.95256167, y: null}, {x: 0.98359375, y: null}, {x: 0.961248655, y: null}, {x: 0.898911353, y: null}, {x: 0.899676375, y: null}, {x: 0.927583937, y: null}, {x: 0.3, y: null}, {x: 0.206896552, y: null}, {x: 0.361506276, y: null}, {x: 0.38247012, y: null}, {x: 0.893382353, y: null}, {x: 0.579943899, y: null}, {x: 0.887921654, y: null}, {x: 0.419287212, y: null}, {x: 0.325657895, y: null}, {x: 0.269982238, y: null}, {x: 0.559545183, y: null}, {x: 0.216145833, y: null}, {x: 0.658682635, y: null}, {x: 0.705970149, y: null}, {x: 0.54945055, y: null}, {x: 0.697727273, y: null}, {x: 0.524806202, y: null}, {x: 0.793456033, y: null}, {x: 0.835274542, y: null}, {x: 0.98498749, y: null}, {x: 0.913072329, y: null}, {x: 0.939973615, y: null}, {x: 0.690938511, y: null}, {x: 0.955284553, y: null}, {x: 1.0, y: null}, {x: 0.904261206, y: null}, {x: 0.801587302, y: null}, {x: 0.630094044, y: null}, {x: 0.942454492, y: null}, {x: 0.974842767, y: null}, {x: 1.0, y: null}, {x: 0.946666667, y: null}, {x: 0.988717949, y: null}, {x: 0.89332004, y: null}, {x: 1.0, y: null}, {x: 0.88372093, y: null}, {x: 0.994126285, y: null}, {x: 0.95996732, y: null}, {x: 0.925461741, y: null}, {x: 0.865158371, y: null}, {x: 0.935275081, y: null}, {x: 0.988372093, y: null}, {x: 0.711286089, y: null}, {x: 0.954587581, y: null}, {x: 0.129783694, y: null}, {x: 0.8126294, y: null}, {x: 0.746190684, y: null}, {x: 0.768374165, y: null}, {x: 0.536231884, y: null}, {x: 0.887840671, y: null}, {x: 0.823708207, y: null}, {x: 0.989473684, y: null}, {x: 0.813333333, y: null}, {x: 0.954044118, y: null}, {x: 0.989690722, y: null}, {x: 1.0, y: null}, {x: 0.962962963, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.99339498, y: null}, {x: 0.953519256, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.936858721, y: null}, {x: 0.970588235, y: null}, {x: 0.990749306, y: null}, {x: 1.0, y: null}, {x: 0.964849354, y: null}, {x: 0.977808599, y: null}, {x: 1.0, y: null}, {x: 0.955991875, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.958022388, y: null}, {x: 0.858044164, y: null}, {x: 0.743494424, y: null}, {x: 0.921363953, y: null}, {x: 0.954173486, y: null}, {x: 0.760252366, y: null}, {x: 0.578364566, y: null}, {x: 0.738947368, y: null}, {x: 0.921259843, y: null}, {x: 0.971919771, y: null}, {x: 0.561359867, y: null}, {x: 0.516802906, y: null}, {x: 0.537148594, y: null}, {x: 0.618548049, y: null}, {x: 0.225868726, y: null}, {x: 0.101364522, y: null}, {x: 0.117318436, y: null}, {x: 0.266554904, y: null}, {x: 0.05338809, y: null}, {x: 0.163829787, y: null}, {x: 0.012658228, y: null}, {x: 0.355844156, y: null}, {x: 0.459930314, y: null}, {x: 0.370437956, y: null}, {x: 0.464351006, y: null}, {x: 0.405940594, y: null}, {x: 0.515625, y: null}, {x: 0.740243902, y: null}, {x: 0.75631769, y: null}, {x: 0.864098837, y: null}, {x: 0.806288602, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.979397781, y: null}, {x: 1.0, y: null}, {x: 0.987179487, y: null}, {x: 0.977321049, y: null}, {x: 0.981017192, y: null}, {x: 0.963066854, y: null}, {x: 0.981376518, y: null}, {x: 0.981868132, y: null}, {x: 0.850109409, y: null}, {x: 1.0, y: null}, {x: 0.988310929, y: null}, {x: 1.0, y: null}, {x: 0.961802903, y: null}, {x: 0.56514658, y: null}, {x: 0.939329051, y: null}, {x: 0.341866877, y: null}, {x: 0.607954546, y: null}, {x: 0.128, y: null}, {x: 0.870377288, y: null}, {x: 0.798758865, y: null}, {x: 0.389911384, y: null}, {x: 0.830703013, y: null}, {x: 0.443678161, y: null}, {x: 0.83125, y: null}, {x: 0.385527877, y: null}, {x: 0.509274874, y: null}, {x: 0.379495027, y: null}, {x: 0.365561694, y: null}, {x: 0.126103405, y: null}, {x: 0.209809264, y: null}, {x: 0.209937888, y: null}, {x: 0.491907108, y: null}, {x: 0.4296741, y: null}, {x: 0.498538012, y: null}, {x: 0.167065582, y: null}, {x: 0.191530318, y: null}, {x: 0.268913858, y: null}, {x: 0.159127195, y: null}, {x: 0.36949783, y: null}, {x: 0.091051805, y: null}, {x: 0.162550259, y: null}, {x: 0.295734597, y: null}, {x: 0.317002882, y: null}, {x: 0.270323213, y: null}, {x: 0.177142857, y: null}, {x: 0.163375224, y: null}, {x: 0.557163531, y: null}, {x: 0.551538837, y: null}, {x: 0.437726723, y: null}, {x: 0.626188735, y: null}, {x: 0.718019257, y: null}, {x: 0.506273063, y: null}, {x: 0.477842004, y: null}, {x: 0.298634812, y: null}, {x: 0.455544456, y: null}, {x: 0.171648988, y: null}, {x: 0.216971545, y: null}, {x: 0.250426864, y: null}, {x: 0.452222222, y: null}, {x: 0.409930716, y: null}, {x: 0.721615721, y: null}, {x: 0.42962963, y: null}, {x: 0.227848101, y: null}, {x: 0.405535499, y: null}, {x: 0.398365679, y: null}, {x: 0.344234079, y: null}, {x: 0.41503268, y: null}, {x: 0.251824818, y: null}, {x: 0.040609137, y: null}, {x: 0.072625698, y: null}, {x: 0.434724092, y: null}, {x: 0.206680585, y: null}, {x: 0.185421995, y: null}, {x: 0.366317793, y: null}, {x: 0.191176471, y: null}, {x: 0.015325671, y: null}, {x: 0.209486166, y: null}, {x: 0.125948407, y: null}, {x: 0.167553192, y: null}, {x: 0.079107505, y: null}, {x: 0.302295918, y: null}, {x: 0.151552795, y: null}, {x: 0.313708999, y: null}, {x: 0.460260116, y: null}, {x: 0.259026688, y: null}, {x: 0.264691598, y: null}, {x: 0.582743363, y: null}, {x: 0.232186732, y: null}, {x: 0.959863946, y: null}, {x: 0.541843425, y: null}, {x: 0.418699187, y: null}, {x: 0.882226981, y: null}, {x: 0.593684211, y: null}, {x: 0.383096367, y: null}, {x: 0.776843467, y: null}, {x: 0.596029777, y: null}, {x: 0.928838951, y: null}, {x: 0.747878788, y: null}, {x: 0.948790896, y: null}, {x: 0.689948893, y: null}, {x: 0.703241895, y: null}, {x: 0.772727273, y: null}, {x: 0.41819464, y: null}, {x: 0.603074141, y: null}, {x: 0.89, y: null}, {x: 0.469309463, y: null}, {x: 0.589952769, y: null}, {x: 0.449929478, y: null}, {x: 0.979653353, y: null}, {x: 0.777310924, y: null}, {x: 0.878103838, y: null}, {x: 0.809756098, y: null}, {x: 0.921372032, y: null}, {x: 0.989100817, y: null}, {x: 0.971918877, y: null}, {x: 1.0, y: null}, {x: 0.991647684, y: null}, {x: 1.0, y: null}, {x: 0.982857143, y: null}, {x: 0.976762505, y: null}, {x: 0.645517241, y: null}, {x: 0.817280453, y: null}, {x: 0.987250996, y: null}, {x: 0.932067202, y: null}, {x: 0.815899582, y: null}, {x: 0.884727911, y: null}, {x: 1.0, y: null}, {x: 0.827464789, y: null}, {x: 0.785265049, y: null}, {x: 0.984095427, y: null}, {x: 0.946226415, y: null}, {x: 0.902363823, y: null}, {x: 0.664714495, y: null}, {x: 0.379110252, y: null}, {x: 0.38974359, y: 0.028}, {x: 0.734312417, y: null}, {x: 0.87109375, y: null}, {x: 0.385919166, y: null}, {x: 0.906862745, y: null}, {x: 0.933083957, y: null}, {x: 0.824945295, y: null}, {x: 0.926671459, y: null}, {x: 0.790364583, y: null}, {x: 0.654173765, y: null}, {x: 0.839228296, y: null}, {x: 0.0, y: 1.660842}, {x: 0.798481712, y: null}, {x: 0.796033994, y: null}, {x: 0.746153846, y: null}, {x: 0.2675, y: null}, {x: 0.596283784, y: null}, {x: 0.918080116, y: null}, {x: 0.729691877, y: null}, {x: 0.81205165, y: null}, {x: 0.876728111, y: null}, {x: 0.687378641, y: null}, {x: 0.607526882, y: null}, {x: 0.647450111, y: null}, {x: 0.378147029, y: null}, {x: 0.194011976, y: null}, {x: 0.465058236, y: null}, {x: 0.709502708, y: null}, {x: 0.558080808, y: null}, {x: 0.338675214, y: null}, {x: 0.747587231, y: null}, {x: 0.185361973, y: null}, {x: 0.445157152, y: null}, {x: 0.445026178, y: null}, {x: 0.360772358, y: null}, {x: 0.440618956, y: null}, {x: 0.191694833, y: null}, {x: 0.274709302, y: null}, {x: 0.324046921, y: null}, {x: 0.681192661, y: null}, {x: 0.481961147, y: null}, {x: 0.404069767, y: null}, {x: 0.317683881, y: null}, {x: 0.44, y: null}, {x: 0.537572254, y: null}, {x: 0.398268398, y: null}, {x: 0.52345679, y: null}, {x: 0.405707196, y: null}, {x: 0.097222222, y: null}, {x: 0.05942275, y: null}, {x: 0.344021376, y: null}, {x: 0.577702703, y: null}, {x: 0.512280702, y: null}, {x: 0.570873786, y: null}, {x: 0.466152999, y: null}, {x: 0.381076389, y: null}, {x: 0.690409683, y: null}, {x: 0.448402948, y: null}, {x: 0.688186813, y: null}, {x: 0.490853659, y: null}, {x: 0.89245157, y: null}, {x: 0.707109737, y: null}, {x: 0.726199262, y: null}, {x: 0.825484765, y: null}, {x: 0.553496504, y: null}, {x: 0.575206612, y: null}, {x: 0.50310559, y: null}, {x: 0.588754135, y: null}, {x: 0.088575096, y: null}, {x: 0.127673364, y: null}, {x: 0.185185185, y: null}, {x: 0.533102553, y: null}, {x: 0.227772228, y: null}, {x: 0.121306376, y: null}, {x: 0.122241087, y: null}, {x: 0.190476191, y: null}, {x: 0.017906336, y: null}, {x: 0.094555874, y: null}, {x: 0.085714286, y: null}, {x: 0.092838196, y: null}, {x: 0.294678316, y: null}, {x: 0.178243775, y: null}, {x: 0.193396226, y: null}, {x: 0.212290503, y: null}, {x: 0.286282306, y: null}, {x: 0.10206995, y: null}, {x: 0.75, y: null}, {x: 0.366568915, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.656, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2.0275}, {x: 0.25, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 123.083}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.787234043, y: 6.4707}, {x: 0.0, y: null}, {x: 0.0, y: 7.7502}, {x: 0.067961165, y: null}, {x: 0.043778802, y: null}, {x: 0.198767334, y: null}, {x: 0.038544825, y: null}, {x: 0.084019769, y: null}, {x: 0.229545455, y: null}, {x: 0.075669383, y: null}, {x: 0.117296223, y: null}, {x: 0.120103093, y: null}, {x: 0.157287157, y: null}, {x: 0.328542095, y: null}, {x: 0.078231293, y: null}, {x: 0.061336254, y: null}, {x: 0.012320329, y: null}, {x: 0.121134021, y: null}, {x: 0.194891202, y: null}, {x: 0.020657995, y: null}, {x: 0.096997691, y: null}, {x: 0.038580247, y: null}, {x: 0.164879357, y: null}, {x: 0.102564103, y: null}, {x: 0.179721288, y: null}, {x: 0.055619266, y: null}, {x: 0.026180698, y: null}, {x: 0.101665206, y: null}, {x: 0.04972805, y: null}, {x: 0.02393617, y: null}, {x: 0.150711514, y: null}, {x: 0.03148855, y: null}, {x: 0.106864275, y: null}, {x: 0.0, y: null}, {x: 0.011568123, y: null}, {x: 0.142474019, y: null}, {x: 0.053874539, y: null}, {x: 0.227558605, y: null}, {x: 0.004094631, y: null}, {x: 0.255691769, y: null}, {x: 0.033484163, y: null}, {x: 0.160662123, y: null}, {x: 0.207201889, y: null}, {x: 0.308992563, y: null}, {x: 0.094020173, y: null}, {x: 0.158730159, y: null}, {x: 0.109574468, y: null}, {x: 0.127981385, y: null}, {x: 0.318181818, y: null}, {x: 0.263042525, y: null}, {x: 0.088314486, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020628684, y: null}, {x: 0.0, y: null}, {x: 0.319881054, y: null}, {x: 0.088631985, y: null}, {x: 0.274529237, y: null}, {x: 0.274153997, y: null}, {x: 0.245138889, y: null}, {x: 0.320234114, y: null}, {x: 0.181594488, y: null}, {x: 0.14953271, y: null}, {x: 0.523809524, y: null}, {x: 0.264473684, y: null}, {x: 0.193032015, y: null}, {x: 0.253029223, y: null}, {x: 0.323599053, y: null}, {x: 0.214572193, y: null}, {x: 0.364973262, y: null}, {x: 0.663766633, y: null}, {x: 0.272655323, y: null}, {x: 0.377840909, y: null}, {x: 0.23707035, y: null}, {x: 0.278253039, y: null}, {x: 0.475390156, y: 626.415468}, {x: 0.306220096, y: null}, {x: 0.635926223, y: null}, {x: 0.394939494, y: null}, {x: 0.612172682, y: null}, {x: 0.124439462, y: null}, {x: 0.083835947, y: null}, {x: 0.181069959, y: null}, {x: 0.064840183, y: null}, {x: 0.404085258, y: null}, {x: 0.388400703, y: null}, {x: 0.630088496, y: 0.316}, {x: 0.496212121, y: 13.296268}, {x: 0.475308642, y: null}, {x: 0.505922166, y: null}, {x: 0.32122905, y: null}, {x: 0.308928571, y: null}, {x: 0.331515812, y: 0.22}, {x: 0.015680324, y: null}, {x: 0.441458733, y: null}, {x: 0.216918429, y: 0.171}, {x: 0.28287708, y: null}, {x: 0.394688645, y: null}, {x: 0.176153846, y: null}, {x: 0.411648569, y: null}, {x: 0.659672131, y: null}, {x: 0.402860548, y: null}, {x: 0.528710726, y: null}, {x: 0.61255116, y: null}, {x: 0.736170213, y: null}, {x: 0.547906317, y: null}, {x: 0.433986102, y: null}, {x: 0.472334683, y: null}, {x: 0.621359223, y: 9.505065}, {x: 0.305333333, y: null}, {x: 0.430954588, y: null}, {x: 0.298128342, y: 3.291023}, {x: 0.367078189, y: null}, {x: 0.264084507, y: null}, {x: 0.234061931, y: null}, {x: 0.761458333, y: null}, {x: 0.297307547, y: null}, {x: 0.17340591, y: null}, {x: 0.036774194, y: null}, {x: 0.097979413, y: null}, {x: 0.176445211, y: null}, {x: 0.26625387, y: null}, {x: 0.100612423, y: null}, {x: 0.128654971, y: null}, {x: 0.182987552, y: null}, {x: 0.168518519, y: null}, {x: 0.018231541, y: null}, {x: 0.243562557, y: null}, {x: 0.143461701, y: null}, {x: 0.13381295, y: null}, {x: 0.146788991, y: null}, {x: 0.200183655, y: null}, {x: 0.071266111, y: null}, {x: 0.384536083, y: null}, {x: 0.305153445, y: null}, {x: 0.068014706, y: null}, {x: 0.125146199, y: null}, {x: 0.222065064, y: null}, {x: 0.201398601, y: null}, {x: 0.113323124, y: null}, {x: 0.203381402, y: null}, {x: 0.422924901, y: null}, {x: 0.065243536, y: null}, {x: 0.069740298, y: null}, {x: 0.060737527, y: null}, {x: 0.145152355, y: null}, {x: 0.026751592, y: null}, {x: 0.104606526, y: null}, {x: 0.031273269, y: null}, {x: 0.014634146, y: null}, {x: 0.10607621, y: null}, {x: 0.069230769, y: null}, {x: 0.055521283, y: null}, {x: 0.114308553, y: null}, {x: 0.038579882, y: null}, {x: 0.030243261, y: null}, {x: 0.114013059, y: null}, {x: 0.092827004, y: null}, {x: 0.0, y: null}, {x: 0.032031593, y: 0.016676}, {x: 0.029350105, y: null}, {x: 0.05678392, y: null}, {x: 0.156293223, y: null}, {x: 0.033269962, y: null}, {x: 0.009922041, y: null}, {x: 0.025949954, y: null}, {x: 0.055891239, y: null}, {x: 0.040254237, y: null}, {x: 0.051546392, y: null}, {x: 0.065263158, y: null}, {x: 0.027417027, y: null}, {x: 0.021676301, y: null}, {x: 0.116839917, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066822978, y: null}, {x: 0.108655617, y: null}, {x: 0.101344364, y: null}, {x: 0.012567325, y: null}, {x: 0.265907569, y: null}, {x: 0.0, y: null}, {x: 0.148509174, y: null}, {x: 0.144740877, y: null}, {x: 0.074492099, y: null}, {x: 0.180823346, y: null}, {x: 0.052456286, y: null}, {x: 0.127344521, y: null}, {x: 0.115686275, y: null}, {x: 0.158480074, y: null}, {x: 0.155059133, y: null}, {x: 0.048954161, y: null}, {x: 0.113152094, y: null}, {x: 0.239414935, y: null}, {x: 0.051219512, y: null}, {x: 0.083287369, y: null}, {x: 0.188967574, y: null}, {x: 0.167602245, y: null}, {x: 0.062605753, y: null}, {x: 0.117283951, y: null}, {x: 0.516375546, y: null}, {x: 0.239130435, y: null}, {x: 0.514261977, y: null}, {x: 0.336241611, y: null}, {x: 0.339873861, y: null}, {x: 0.487028302, y: null}, {x: 0.524076148, y: null}, {x: 0.148271277, y: null}, {x: 0.179429429, y: null}, {x: 0.180811808, y: null}, {x: 0.308267165, y: null}, {x: 0.291991495, y: null}, {x: 0.125, y: null}, {x: 0.307068366, y: null}, {x: 0.196452933, y: null}, {x: 0.252586207, y: null}, {x: 0.674233825, y: null}, {x: 0.807727273, y: null}, {x: 0.43516101, y: null}, {x: 0.717622081, y: null}, {x: 0.363636364, y: null}, {x: 0.696245734, y: null}, {x: 0.513239437, y: null}, {x: 0.148484063, y: null}, {x: 0.092592593, y: null}, {x: 0.296751536, y: null}, {x: 0.161997126, y: null}, {x: 0.202476329, y: null}, {x: 0.217691343, y: null}, {x: 0.111269615, y: null}, {x: 0.324576564, y: null}, {x: 0.305457747, y: null}, {x: 0.202011735, y: null}, {x: 0.170222424, y: null}, {x: 0.015, y: null}, {x: 0.438636364, y: null}, {x: 0.213468014, y: null}, {x: 0.176470588, y: null}, {x: 0.06835206, y: null}, {x: 0.206594539, y: null}, {x: 0.274332649, y: null}, {x: 0.177458034, y: null}, {x: 0.116182573, y: null}, {x: 0.666083916, y: null}, {x: 0.707762557, y: null}, {x: 0.429059181, y: null}, {x: 0.43164557, y: null}, {x: 0.418535127, y: null}, {x: 0.405088063, y: null}, {x: 0.548596112, y: null}, {x: 0.156736939, y: null}, {x: 0.656360424, y: null}, {x: 0.468659595, y: null}, {x: 0.39916318, y: null}, {x: 0.282939189, y: null}, {x: 0.313953488, y: null}, {x: 0.795275591, y: null}, {x: 0.417413572, y: null}, {x: 0.715487383, y: null}, {x: 0.354214123, y: null}, {x: 0.710191083, y: null}, {x: 0.416763679, y: null}, {x: 0.860750361, y: null}, {x: 0.895620876, y: null}, {x: 0.798641137, y: null}, {x: 0.898333333, y: null}, {x: 0.796319018, y: null}, {x: 0.699502488, y: null}, {x: 0.591339648, y: null}, {x: 0.572490706, y: null}, {x: 0.698689956, y: null}, {x: 0.596178344, y: null}, {x: 0.722841226, y: null}, {x: 0.939336493, y: null}, {x: 0.509512485, y: null}, {x: 0.212162162, y: null}, {x: 0.641447368, y: null}, {x: 0.475903615, y: null}, {x: 0.31610338, y: null}, {x: 0.28, y: null}, {x: 0.177543186, y: null}, {x: 0.25378614, y: null}, {x: 0.577710843, y: null}, {x: 0.497363796, y: null}, {x: 0.512087912, y: null}, {x: 0.097472924, y: null}, {x: 0.454545455, y: null}, {x: 0.382633588, y: null}, {x: 0.747435897, y: null}, {x: 0.582763338, y: null}, {x: 0.902116402, y: null}, {x: 0.814298169, y: null}, {x: 0.584115524, y: null}, {x: 0.613583138, y: null}, {x: 0.701947813, y: null}, {x: 0.913123, y: null}, {x: 0.609960828, y: null}, {x: 0.542748918, y: null}, {x: 0.359142607, y: null}, {x: 0.4, y: null}, {x: 0.331447964, y: null}, {x: 0.503777148, y: null}, {x: 0.503669725, y: null}, {x: 0.397594175, y: null}, {x: 0.577444682, y: null}, {x: 0.466273187, y: null}, {x: 0.373517787, y: null}, {x: 0.264816557, y: null}, {x: 0.187901318, y: null}, {x: 0.495422177, y: null}, {x: 0.359107421, y: null}, {x: 0.718476583, y: null}, {x: 0.737869198, y: null}, {x: 0.827111984, y: null}, {x: 0.962343096, y: null}, {x: 0.784593438, y: null}, {x: 0.6621881, y: null}, {x: 0.533774834, y: 563.320881}, {x: 0.712809917, y: null}, {x: 0.751282051, y: null}, {x: 0.677623262, y: null}, {x: 0.4171123, y: null}, {x: 0.374291115, y: null}, {x: 0.623728814, y: null}, {x: 0.640659341, y: null}, {x: 0.640378549, y: null}, {x: 0.612301957, y: null}, {x: 0.514124294, y: null}, {x: 0.364261168, y: null}, {x: 0.592823713, y: null}, {x: 0.384830154, y: null}, {x: 0.288368336, y: null}, {x: 0.560229446, y: null}, {x: 0.161290323, y: null}, {x: 0.558045977, y: null}, {x: 0.362085308, y: null}, {x: 0.346335697, y: null}, {x: 0.758349705, y: null}, {x: 0.216393443, y: null}, {x: 0.56954612, y: null}, {x: 0.582934609, y: null}, {x: 0.72122905, y: null}, {x: 0.290647482, y: null}, {x: 0.440602342, y: null}, {x: 0.569943289, y: null}, {x: 0.305949009, y: null}, {x: 0.164930556, y: null}, {x: 0.077361564, y: null}, {x: 0.029735683, y: null}, {x: 0.208357858, y: null}, {x: 0.134852802, y: null}, {x: 0.067017083, y: null}, {x: 0.183571429, y: null}, {x: 0.158490566, y: null}, {x: 0.016352201, y: null}, {x: 0.114345114, y: null}, {x: 0.061079545, y: null}, {x: 0.040195546, y: null}, {x: 0.10138585, y: null}, {x: 0.251503006, y: null}, {x: 0.142676768, y: null}, {x: 0.075, y: null}, {x: 0.100595632, y: null}, {x: 0.0, y: null}, {x: 0.039182283, y: null}, {x: 0.034046693, y: null}, {x: 0.060550459, y: null}, {x: 0.172104405, y: null}, {x: 0.10206995, y: null}, {x: 0.145962733, y: null}, {x: 0.136382365, y: 58.2}, {x: 0.065300896, y: null}, {x: 0.118259224, y: null}, {x: 0.08449848, y: null}, {x: 0.184141547, y: null}, {x: 0.098861284, y: null}, {x: 0.11920904, y: null}, {x: 0.307359307, y: null}, {x: 0.283287671, y: null}, {x: 0.330129745, y: null}, {x: 0.217668126, y: null}, {x: 0.331989247, y: null}, {x: 0.119749447, y: null}, {x: 0.243478261, y: null}, {x: 0.184416601, y: null}, {x: 0.285163777, y: null}, {x: 0.489977728, y: null}, {x: 0.376275028, y: null}, {x: 0.607532957, y: null}, {x: 0.627457744, y: null}, {x: 0.471323112, y: null}, {x: 0.399323998, y: null}, {x: 0.166774822, y: null}, {x: 0.317904374, y: null}, {x: 0.197849462, y: null}, {x: 0.312109153, y: null}, {x: 0.234982332, y: null}, {x: 0.405090138, y: null}, {x: 0.422535211, y: null}, {x: 0.152892562, y: null}, {x: 0.314542484, y: null}, {x: 0.343944864, y: null}, {x: 0.143106457, y: null}, {x: 0.204736211, y: null}, {x: 0.088293651, y: null}, {x: 0.153590426, y: null}, {x: 0.288182446, y: null}, {x: 0.223561644, y: null}, {x: 0.135736538, y: null}, {x: 0.336538462, y: null}, {x: 0.089147287, y: null}, {x: 0.357524013, y: null}, {x: 0.218418908, y: null}, {x: 0.196135266, y: null}, {x: 0.174641148, y: null}, {x: 0.151532033, y: null}, {x: 0.14653081, y: null}, {x: 0.33042394, y: null}, {x: 0.195134849, y: null}, {x: 0.330195024, y: null}, {x: 0.273209549, y: null}, {x: 0.198507463, y: null}, {x: 0.076923077, y: null}, {x: 0.209351754, y: null}, {x: 0.061674009, y: null}, {x: 0.339228296, y: null}, {x: 0.432848589, y: null}, {x: 0.231901841, y: null}, {x: 0.215733591, y: null}, {x: 0.35840708, y: null}, {x: 0.723303525, y: null}, {x: 0.863775199, y: null}, {x: 0.269912931, y: null}, {x: 0.146327684, y: null}, {x: 0.206043956, y: null}, {x: 0.112693758, y: null}, {x: 0.388300127, y: null}, {x: 0.164356436, y: null}, {x: 0.036382536, y: null}, {x: 0.083769634, y: null}, {x: 0.210912907, y: null}, {x: 0.24656782, y: null}, {x: 0.135524798, y: null}, {x: 0.196440794, y: null}, {x: 0.437565036, y: null}, {x: 0.216939079, y: null}, {x: 0.335243553, y: null}, {x: 0.246590909, y: null}, {x: 0.078651685, y: null}, {x: 0.169191919, y: null}, {x: 0.569558102, y: null}, {x: 0.571766562, y: null}, {x: 0.483412322, y: null}, {x: 0.283746557, y: null}, {x: 0.23183391, y: null}, {x: 0.107407407, y: null}, {x: 0.649247823, y: null}, {x: 0.047979798, y: null}, {x: 0.090831191, y: null}, {x: 0.033767487, y: null}, {x: 0.064516129, y: null}, {x: 0.034904014, y: null}, {x: 0.046498599, y: null}, {x: 0.169464429, y: null}, {x: 0.15323741, y: null}, {x: 0.136671177, y: null}, {x: 0.01056338, y: null}, {x: 0.040816327, y: null}, {x: 0.227436823, y: null}, {x: 0.06150207, y: null}, {x: 0.016949153, y: null}, {x: 0.012979351, y: null}, {x: 0.052207294, y: null}, {x: 0.133512064, y: null}, {x: 0.046461372, y: null}, {x: 0.047107177, y: null}, {x: 0.04003268, y: null}, {x: 0.087699317, y: null}, {x: 0.034632035, y: null}, {x: 0.23402195, y: null}, {x: 0.309536494, y: null}, {x: 0.091117042, y: null}, {x: 0.218282112, y: null}, {x: 0.087459235, y: null}, {x: 0.146341463, y: null}, {x: 0.108806405, y: null}, {x: 0.05298913, y: null}, {x: 0.07495069, y: null}, {x: 0.128454452, y: null}, {x: 0.144308943, y: null}, {x: 0.023470839, y: null}, {x: 0.086061424, y: null}, {x: 0.11173577, y: null}, {x: 0.0, y: null}, {x: 0.04389851, y: null}, {x: 0.041025641, y: null}, {x: 0.022518766, y: null}, {x: 0.056775798, y: null}, {x: 0.094940662, y: null}, {x: 0.180946675, y: null}, {x: 0.127600555, y: null}, {x: 0.109302326, y: null}, {x: 0.190625, y: null}, {x: 0.043201455, y: null}, {x: 0.011371713, y: null}, {x: 0.111055023, y: null}, {x: 0.041469194, y: null}, {x: 0.309850746, y: null}, {x: 0.228867624, y: null}, {x: 0.316171617, y: null}, {x: 0.131147541, y: null}, {x: 0.338160136, y: null}, {x: 0.380246914, y: null}, {x: 0.468481375, y: null}, {x: 0.056133056, y: null}, {x: 0.139410188, y: null}, {x: 0.44945055, y: null}, {x: 0.397997497, y: null}, {x: 0.139433551, y: null}, {x: 0.118200134, y: null}, {x: 0.212598425, y: null}, {x: 0.144963145, y: null}, {x: 0.096373057, y: null}, {x: 0.07611336, y: null}, {x: 0.048411498, y: null}, {x: 0.134879725, y: null}, {x: 0.095196122, y: null}, {x: 0.013540961, y: null}, {x: 0.017918677, y: null}, {x: 0.047355164, y: null}, {x: 0.131503482, y: null}, {x: 0.0900369, y: null}, {x: 0.185089974, y: null}, {x: 0.38290788, y: null}, {x: 0.378737542, y: null}, {x: 0.235448005, y: null}, {x: 0.693144723, y: null}, {x: 0.720372836, y: null}, {x: 0.430147059, y: null}, {x: 0.667281106, y: null}, {x: 0.58412483, y: null}, {x: 0.538157151, y: null}, {x: 0.393564356, y: null}, {x: 0.097435897, y: null}, {x: 0.390350877, y: null}, {x: 0.296444954, y: null}, {x: 0.262979684, y: null}, {x: 0.120175439, y: null}, {x: 0.159151194, y: null}, {x: 0.038746439, y: null}, {x: 0.129694836, y: null}, {x: 0.097738877, y: null}, {x: 0.016155989, y: null}, {x: 0.205310881, y: null}, {x: 0.047037263, y: null}, {x: 0.081372549, y: null}, {x: 0.041294643, y: null}, {x: 0.013256484, y: null}, {x: 0.145522388, y: null}, {x: 0.0, y: null}, {x: 0.157942238, y: null}, {x: 0.0, y: null}, {x: 0.04584121, y: null}, {x: 0.527100945, y: null}, {x: 0.544263776, y: null}, {x: 0.287578288, y: null}, {x: 0.360753221, y: null}, {x: 0.241231822, y: null}, {x: 0.362308254, y: null}, {x: 0.245514636, y: null}, {x: 0.055185538, y: null}, {x: 0.160070361, y: null}, {x: 0.021712907, y: null}, {x: 0.117943548, y: null}, {x: 0.511073254, y: null}], 'label': 'Individual Census blocks', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.04731466375, y: 318.01129862853503}, {x: 0.15694694199999998, y: 97.50223199303082}, {x: 0.32998777737499996, y: 193.25888523292286}, {x: 0.720355499125, y: 165.58233927769797}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.04731466375, y: -105.94169103352851}, {x: 0.15694694199999998, y: 13.299348642767981}, {x: 0.32998777737499996, y: 62.23000140693864}, {x: 0.720355499125, y: 58.45055278661121}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.04731466375, y: 741.9642882905986}, {x: 0.15694694199999998, y: 181.70511534329364}, {x: 0.32998777737499996, y: 324.2877690589071}, {x: 0.720355499125, y: 272.7141257687847}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.105365854, y: null}, {x: 0.127701375, y: null}, {x: 0.180576631, y: null}, {x: 0.078467153, y: null}, {x: 0.223543401, y: null}, {x: 0.348920863, y: null}, {x: 0.10815402, y: null}, {x: 0.042747022, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.001912046, y: null}, {x: 0.086647727, y: null}, {x: 0.03286385, y: null}, {x: 0.159192825, y: null}, {x: 0.052013423, y: null}, {x: 0.243128964, y: null}, {x: 0.0, y: null}, {x: 0.0375, y: null}, {x: 0.08004386, y: null}, {x: 0.058378378, y: null}, {x: 0.0, y: null}, {x: 0.009084556, y: null}, {x: 0.0, y: 0.093729}, {x: 0.012643678, y: null}, {x: 0.008561644, y: null}, {x: 0.048888889, y: null}, {x: 0.020186335, y: null}, {x: 0.0, y: null}, {x: 0.214805825, y: null}, {x: 0.0, y: null}, {x: 0.074193548, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.051190476, y: null}, {x: 0.11011236, y: null}, {x: 0.017365523, y: null}, {x: 0.016194332, y: null}, {x: 0.181886793, y: null}, {x: 0.086486486, y: null}, {x: 0.028037383, y: null}, {x: 0.041269841, y: null}, {x: 0.137373737, y: null}, {x: 0.009943182, y: null}, {x: 0.156698565, y: null}, {x: 0.0, y: null}, {x: 0.009114583, y: null}, {x: 0.007532957, y: null}, {x: 0.0, y: null}, {x: 0.065433855, y: null}, {x: 0.101090188, y: null}, {x: 0.043076923, y: null}, {x: 0.104584527, y: null}, {x: 0.084302326, y: null}, {x: 0.077343039, y: null}, {x: 0.039269406, y: null}, {x: 0.0, y: null}, {x: 0.112244898, y: null}, {x: 0.0, y: null}, {x: 0.056050955, y: null}, {x: 0.123636364, y: null}, {x: 0.04192229, y: null}, {x: 0.01509434, y: null}, {x: 0.027383367, y: null}, {x: 0.563432836, y: null}, {x: 0.116087213, y: null}, {x: 0.018032787, y: null}, {x: 0.079545455, y: null}, {x: 0.087142857, y: null}, {x: 0.016791045, y: null}, {x: 0.065853659, y: null}, {x: 0.0, y: null}, {x: 0.024526198, y: null}, {x: 0.046783626, y: null}, {x: 0.101596517, y: null}, {x: 0.062247373, y: null}, {x: 0.037094281, y: null}, {x: 0.023049645, y: null}, {x: 0.165695793, y: null}, {x: 0.311848958, y: null}, {x: 0.035984848, y: null}, {x: 0.086508754, y: null}, {x: 0.140625, y: null}, {x: 0.179422836, y: null}, {x: 0.403317329, y: null}, {x: 0.567177638, y: null}, {x: 0.18296893, y: null}, {x: 0.135164835, y: null}, {x: 0.341350601, y: null}, {x: 0.067692308, y: null}, {x: 0.043478261, y: null}, {x: 0.096518987, y: null}, {x: 0.075898802, y: null}, {x: 0.020446097, y: null}, {x: 0.049848943, y: null}, {x: 0.036156513, y: null}, {x: 0.048543689, y: null}, {x: 0.168769716, y: null}, {x: 0.57037037, y: null}, {x: 0.408592322, y: null}, {x: 0.336188437, y: null}, {x: 0.200578991, y: null}, {x: 0.160550459, y: null}, {x: 0.520951888, y: null}, {x: 0.433333333, y: null}, {x: 0.746478873, y: null}, {x: 0.252702703, y: null}, {x: 0.119700748, y: null}, {x: 0.014677104, y: null}, {x: 0.332987552, y: null}, {x: 0.125859697, y: null}, {x: 0.053949904, y: null}, {x: 0.166951567, y: null}, {x: 0.077544426, y: null}, {x: 0.144, y: null}, {x: 0.188337273, y: null}, {x: 0.182937956, y: null}, {x: 0.150515464, y: null}, {x: 0.059340659, y: null}, {x: 0.238270469, y: null}, {x: 0.07963595, y: null}, {x: 0.090233546, y: null}, {x: 0.003418154, y: null}, {x: 0.0, y: null}, {x: 0.02514193, y: null}, {x: 0.05987395, y: null}, {x: 0.150637312, y: null}, {x: 0.055606199, y: null}, {x: 0.094919786, y: null}, {x: 0.052230686, y: null}, {x: 0.068503351, y: null}, {x: 0.025925926, y: null}, {x: 0.099388379, y: null}, {x: 0.005780347, y: null}, {x: 0.0, y: null}, {x: 0.297540208, y: null}, {x: 0.085231447, y: null}, {x: 0.047406807, y: null}, {x: 0.160447761, y: null}, {x: 0.13250678, y: null}, {x: 0.021102498, y: null}, {x: 0.028156222, y: null}, {x: 0.155704698, y: null}, {x: 0.069627851, y: null}, {x: 0.068255688, y: null}, {x: 0.147706422, y: null}, {x: 0.056720099, y: null}, {x: 0.180944756, y: null}, {x: 0.445935869, y: null}, {x: 0.005617978, y: null}, {x: 0.211564626, y: null}, {x: 0.0, y: null}, {x: 0.017563117, y: null}, {x: 0.0, y: null}, {x: 0.132424538, y: null}, {x: 0.0, y: null}, {x: 0.120667523, y: null}, {x: 0.155844156, y: null}, {x: 0.0, y: null}, {x: 0.011111111, y: null}, {x: 0.035864979, y: null}, {x: 0.117985612, y: null}, {x: 0.006263048, y: null}, {x: 0.169873107, y: null}, {x: 0.161861758, y: null}, {x: 0.069643806, y: null}, {x: 0.210958904, y: null}, {x: 0.062897791, y: null}, {x: 0.226586103, y: null}, {x: 0.100110011, y: null}, {x: 0.228985507, y: null}, {x: 0.0416, y: null}, {x: 0.041720991, y: null}, {x: 0.075301205, y: null}, {x: 0.042037187, y: null}, {x: 0.049303944, y: null}, {x: 0.264023211, y: null}, {x: 0.006952491, y: null}, {x: 0.215423303, y: null}, {x: 0.091932458, y: null}, {x: 0.0, y: null}, {x: 0.064651553, y: null}, {x: 0.085135135, y: null}, {x: 0.083086053, y: null}, {x: 0.111438183, y: null}, {x: 0.094222222, y: null}, {x: 0.280571074, y: null}, {x: 0.357062147, y: null}, {x: 0.186248912, y: null}, {x: 0.069781931, y: null}, {x: 0.0, y: null}, {x: 0.067882472, y: null}, {x: 0.681473456, y: null}, {x: 0.522123894, y: null}, {x: 0.295514512, y: null}, {x: 0.0, y: null}, {x: 0.354925776, y: null}, {x: 0.389692586, y: null}, {x: 0.078374456, y: null}, {x: 0.300729927, y: null}, {x: 0.278776978, y: null}, {x: 0.196078431, y: null}, {x: 0.473479948, y: null}, {x: 0.356513222, y: null}, {x: 0.393630573, y: null}, {x: 0.180754226, y: null}, {x: 0.607526882, y: null}, {x: 0.125, y: null}, {x: 0.174358974, y: null}, {x: 0.101910828, y: null}, {x: 0.085222121, y: null}, {x: 0.066115702, y: null}, {x: 0.074225122, y: null}, {x: 0.130674003, y: null}, {x: 0.199579832, y: null}, {x: 0.764444444, y: null}, {x: 0.346153846, y: null}, {x: 0.325123153, y: null}, {x: 0.527827648, y: null}, {x: 0.032423208, y: null}, {x: 0.056712963, y: null}, {x: 0.0, y: null}, {x: 0.147959184, y: null}, {x: 0.109707972, y: null}, {x: 0.185028249, y: null}, {x: 0.151345292, y: null}, {x: 0.032191781, y: null}, {x: 0.450931677, y: null}, {x: 0.173245614, y: null}, {x: 0.043789097, y: null}, {x: 0.433802817, y: null}, {x: 0.051825677, y: null}, {x: 0.132575758, y: null}, {x: 0.087141339, y: null}, {x: 0.079012346, y: null}, {x: 0.164910432, y: null}, {x: 0.0, y: null}, {x: 0.037076271, y: null}, {x: 0.0, y: null}, {x: 0.004810997, y: null}, {x: 0.072649573, y: null}, {x: 0.116049383, y: null}, {x: 0.185783522, y: null}, {x: 0.0546875, y: null}, {x: 0.008190618, y: null}, {x: 0.068567026, y: null}, {x: 0.056057866, y: null}, {x: 0.338461539, y: null}, {x: 0.043539326, y: null}, {x: 0.089788732, y: null}, {x: 0.060455192, y: null}, {x: 0.096128171, y: null}, {x: 0.047819972, y: 0.175}, {x: 0.028824834, y: null}, {x: 0.223713647, y: null}, {x: 0.003062787, y: null}, {x: 0.03803681, y: null}, {x: 0.025835866, y: null}, {x: 0.526992288, y: null}, {x: 0.147018031, y: null}, {x: 0.093877551, y: null}, {x: 0.273966766, y: null}, {x: 0.0, y: null}, {x: 0.129432624, y: null}, {x: 0.234777839, y: null}, {x: 0.078154426, y: null}, {x: 0.288143599, y: null}, {x: 0.16075388, y: null}, {x: 0.103986135, y: null}, {x: 0.169312169, y: null}, {x: 0.126778784, y: null}, {x: 0.087665647, y: null}, {x: 0.046774194, y: null}, {x: 0.176399027, y: null}, {x: 0.078152753, y: null}, {x: 0.0, y: null}, {x: 0.124863089, y: null}, {x: 0.007912957, y: null}, {x: 0.015957447, y: null}, {x: 0.055993001, y: null}, {x: 0.024819028, y: null}, {x: 0.168234065, y: null}, {x: 0.033358605, y: null}, {x: 0.080824089, y: null}, {x: 0.21902378, y: null}, {x: 0.0, y: null}, {x: 0.097222222, y: null}, {x: 0.211151737, y: null}, {x: 0.09883236, y: null}, {x: 0.274376417, y: null}, {x: 0.066914498, y: null}, {x: 0.05345502, y: null}, {x: 0.119131044, y: null}, {x: 0.123703704, y: null}, {x: 0.035940803, y: null}, {x: 0.171606864, y: null}, {x: 0.010538642, y: null}, {x: 0.038659794, y: null}, {x: 0.104722793, y: null}, {x: 0.025542784, y: null}, {x: 0.072033898, y: null}, {x: 0.162601626, y: null}, {x: 0.049731183, y: null}, {x: 0.111776447, y: null}, {x: 0.075938567, y: null}, {x: 0.123469388, y: null}, {x: 0.004201681, y: null}, {x: 0.069064748, y: null}, {x: 0.075785582, y: null}, {x: 0.022698613, y: null}, {x: 0.093304061, y: null}, {x: 0.126888218, y: null}, {x: 0.031088083, y: null}, {x: 0.043604651, y: null}, {x: 0.059933407, y: null}, {x: 0.144288577, y: null}, {x: 0.082706767, y: null}, {x: 0.062365591, y: null}, {x: 0.103448276, y: null}, {x: 0.049327354, y: null}, {x: 0.116154873, y: null}, {x: 0.079656863, y: null}, {x: 0.038343558, y: null}, {x: 0.030959752, y: null}, {x: 0.137010676, y: null}, {x: 0.062062937, y: null}, {x: 0.070234114, y: null}, {x: 0.039125432, y: null}, {x: 0.124277457, y: null}, {x: 0.14924297, y: null}, {x: 0.128827878, y: null}, {x: 0.181007579, y: null}, {x: 0.264024704, y: null}, {x: 0.182767624, y: null}, {x: 0.114482759, y: null}, {x: 0.13799448, y: null}, {x: 0.069688109, y: null}, {x: 0.440084836, y: null}, {x: 0.127807901, y: null}, {x: 0.07247191, y: null}, {x: 0.192026951, y: null}, {x: 0.256003098, y: null}, {x: 0.247634069, y: null}, {x: 0.069755336, y: null}, {x: 0.091484465, y: null}, {x: 0.162002946, y: null}, {x: 0.173322005, y: null}, {x: 0.003348962, y: null}, {x: 0.253140097, y: null}, {x: 0.190780142, y: null}, {x: 0.119382023, y: null}, {x: 0.103550296, y: null}, {x: 0.041048035, y: null}, {x: 0.041136874, y: null}, {x: 0.153524492, y: null}, {x: 0.255386232, y: null}, {x: 0.272606383, y: null}, {x: 0.132923242, y: null}, {x: 0.110393423, y: null}, {x: 0.163822526, y: null}, {x: 0.11625239, y: null}, {x: 0.12860676, y: null}, {x: 0.090605892, y: null}, {x: 0.104689564, y: null}, {x: 0.04501845, y: null}, {x: 0.066892464, y: null}, {x: 0.056030389, y: null}, {x: 0.072949527, y: null}, {x: 0.149312377, y: null}, {x: 0.282181357, y: null}, {x: 0.15862069, y: null}, {x: 0.16550765, y: null}, {x: 0.072987722, y: null}, {x: 0.341517857, y: null}, {x: 0.193345324, y: null}, {x: 0.50660066, y: null}, {x: 0.222645618, y: null}, {x: 0.142857143, y: null}, {x: 0.060335782, y: null}, {x: 0.113872832, y: null}, {x: 0.181596884, y: null}, {x: 0.204612655, y: null}, {x: 0.079749478, y: null}, {x: 0.427392739, y: null}, {x: 0.34904271, y: null}, {x: 0.192474674, y: null}, {x: 0.284760845, y: null}, {x: 0.169529837, y: null}, {x: 0.358309318, y: null}, {x: 0.350997935, y: null}, {x: 0.1843927, y: null}, {x: 0.31897712, y: null}, {x: 0.546705998, y: null}, {x: 0.254285714, y: null}, {x: 0.264947245, y: null}, {x: 0.132394366, y: null}, {x: 0.1425, y: 33.039}, {x: 0.091035441, y: null}, {x: 0.512331317, y: null}, {x: 0.25782957, y: null}, {x: 0.504943503, y: null}, {x: 0.202027027, y: null}, {x: 0.25, y: null}, {x: 0.157495256, y: null}, {x: 0.187030075, y: null}, {x: 0.140300935, y: null}, {x: 0.323996265, y: null}, {x: 0.168269231, y: null}, {x: 0.110200364, y: null}, {x: 0.092343659, y: null}, {x: 0.039877301, y: null}, {x: 0.033057851, y: null}, {x: 0.088983051, y: null}, {x: 0.081067721, y: null}, {x: 0.026357574, y: null}, {x: 0.0, y: null}, {x: 0.047070775, y: null}, {x: 0.025242718, y: null}, {x: 0.0, y: null}, {x: 0.016577857, y: null}, {x: 0.072675599, y: null}, {x: 0.418491484, y: null}, {x: 0.383269313, y: null}, {x: 0.143283582, y: null}, {x: 0.018759019, y: null}, {x: 0.097142857, y: null}, {x: 0.340350877, y: null}, {x: 0.046613896, y: null}, {x: 0.060918947, y: null}, {x: 0.169749728, y: null}, {x: 0.211567732, y: null}, {x: 0.0, y: null}, {x: 0.134290844, y: null}, {x: 0.215109573, y: null}, {x: 0.0, y: null}, {x: 0.073217726, y: null}, {x: 0.053984576, y: null}, {x: 0.102941177, y: null}, {x: 0.077723043, y: null}, {x: 0.102367243, y: null}, {x: 0.301497161, y: null}, {x: 0.190176322, y: null}, {x: 0.043165468, y: null}, {x: 0.166111111, y: null}, {x: 0.078163772, y: null}, {x: 0.123096447, y: null}, {x: 0.106224628, y: null}, {x: 0.201897019, y: null}, {x: 0.112547529, y: null}, {x: 0.142446043, y: null}, {x: 0.089853826, y: null}, {x: 0.304609218, y: null}, {x: 0.23088685, y: null}, {x: 0.056456456, y: null}, {x: 0.150236967, y: null}, {x: 0.210780926, y: null}, {x: 0.2651341, y: null}, {x: 0.439701897, y: null}, {x: 0.281912494, y: null}, {x: 0.104426788, y: null}, {x: 0.607964105, y: null}, {x: 0.281208936, y: null}, {x: 0.178631052, y: null}, {x: 0.118983957, y: null}, {x: 0.057737814, y: null}, {x: 0.098333333, y: null}, {x: 0.10778781, y: null}, {x: 0.218627998, y: null}, {x: 0.130484989, y: null}, {x: 0.018786127, y: null}, {x: 0.072727273, y: null}, {x: 0.077284946, y: null}, {x: 0.0, y: null}, {x: 0.021528525, y: 999.999999}, {x: 0.113612004, y: null}, {x: 0.283961437, y: null}, {x: 0.042682927, y: null}, {x: 0.0, y: null}, {x: 0.007020623, y: null}, {x: 0.054632867, y: null}, {x: 0.011997177, y: null}, {x: 0.136391068, y: null}, {x: 0.012314379, y: null}, {x: 0.165167095, y: null}, {x: 0.07540395, y: null}, {x: 0.076374019, y: null}, {x: 0.065789474, y: null}, {x: 0.01421092, y: null}, {x: 0.018181818, y: null}, {x: 0.343534057, y: null}, {x: 0.393822394, y: null}, {x: 0.109207709, y: null}, {x: 0.299324324, y: null}, {x: 0.126465145, y: null}, {x: 0.439949431, y: null}, {x: 0.484123107, y: null}, {x: 0.3299389, y: null}, {x: 0.377239199, y: null}, {x: 0.126410835, y: null}, {x: 0.391140434, y: 95.803564}, {x: 0.148487626, y: null}, {x: 0.311876248, y: 1904.333217}, {x: 0.129770992, y: null}, {x: 0.290563476, y: null}, {x: 0.325311203, y: 33.812967}, {x: 0.226287263, y: null}, {x: 0.19058296, y: null}, {x: 0.074882995, y: null}, {x: 0.11875, y: 13.403297}, {x: 0.427721088, y: null}, {x: 0.233539095, y: null}, {x: 0.1064764, y: null}, {x: 0.371531346, y: null}, {x: 0.038932147, y: null}, {x: 0.164929491, y: null}, {x: 0.111464968, y: null}, {x: 0.064239829, y: null}, {x: 0.553734062, y: null}, {x: 0.3091354, y: null}, {x: 0.195307546, y: null}, {x: 0.511737089, y: null}, {x: 0.252288912, y: null}, {x: 0.673400673, y: null}, {x: 0.466556565, y: null}, {x: 0.599202393, y: null}, {x: 0.07117853, y: 29.512963}, {x: 0.261124122, y: null}, {x: 0.661861075, y: null}, {x: 0.282131661, y: null}, {x: 0.333941606, y: null}, {x: 0.320334262, y: null}, {x: 0.162935323, y: null}, {x: 0.553374233, y: null}, {x: 0.220845481, y: null}, {x: 0.367826905, y: null}, {x: 0.606408706, y: null}, {x: 0.428832117, y: null}, {x: 0.425287356, y: null}, {x: 0.393534002, y: null}, {x: 0.499643621, y: null}, {x: 0.40228013, y: null}, {x: 0.196036801, y: null}, {x: 0.104495747, y: null}, {x: 0.247694335, y: null}, {x: 0.0, y: null}, {x: 0.111740891, y: null}, {x: 0.104570637, y: null}, {x: 0.097222222, y: null}, {x: 0.143369176, y: null}, {x: 0.247256767, y: null}, {x: 0.440318302, y: null}, {x: 0.273411371, y: null}, {x: 0.174556213, y: null}, {x: 0.26993865, y: 292.744127}, {x: 0.413441955, y: 194.570504}, {x: 0.353071145, y: 443.440785}, {x: 0.09624198, y: null}, {x: 0.344858963, y: null}, {x: 0.297734628, y: null}, {x: 0.070576541, y: null}, {x: 0.41216992, y: null}, {x: 0.089430894, y: null}, {x: 0.283662478, y: null}, {x: 0.2933213, y: null}, {x: 0.020979021, y: null}, {x: 0.142326733, y: null}, {x: 0.218645949, y: null}, {x: 0.079934747, y: null}, {x: 0.005185185, y: null}, {x: 0.021877205, y: null}, {x: 0.019487179, y: null}, {x: 0.016007114, y: null}, {x: 0.080165289, y: null}, {x: 0.048809524, y: null}, {x: 0.186153846, y: null}, {x: 0.042253521, y: null}, {x: 0.050705467, y: null}, {x: 0.080298786, y: null}, {x: 0.026431718, y: null}, {x: 0.143074581, y: null}, {x: 0.001295337, y: null}, {x: 0.117918314, y: null}, {x: 0.0, y: null}, {x: 0.076203209, y: null}, {x: 0.009615385, y: null}, {x: 0.116828929, y: null}, {x: 0.046614872, y: null}, {x: 0.043117745, y: null}, {x: 0.091375291, y: null}, {x: 0.058034217, y: null}, {x: 0.139097744, y: null}, {x: 0.0, y: null}, {x: 0.007044865, y: null}, {x: 0.015905947, y: null}, {x: 0.084431631, y: null}, {x: 0.047267997, y: null}, {x: 0.07917229, y: null}, {x: 0.0, y: null}, {x: 0.012435233, y: null}, {x: 0.029411765, y: null}, {x: 0.014955135, y: null}, {x: 0.059977578, y: null}, {x: 0.096267191, y: null}, {x: 0.292946338, y: null}, {x: 0.431599229, y: null}, {x: 0.059101655, y: null}, {x: 0.362642586, y: null}, {x: 0.053503185, y: null}, {x: 0.200823045, y: null}, {x: 0.397501837, y: null}, {x: 0.19303072, y: null}, {x: 0.084815321, y: null}, {x: 0.402857143, y: 0.12512}, {x: 0.13074205, y: null}, {x: 0.053875236, y: null}, {x: 0.115666179, y: 5.77926}, {x: 0.289068826, y: null}, {x: 0.164150943, y: null}, {x: 0.12191358, y: null}, {x: 0.217627856, y: null}, {x: 0.34057971, y: null}, {x: 0.520923521, y: null}, {x: 0.347692308, y: null}, {x: 0.496141125, y: null}, {x: 0.578330893, y: null}, {x: 0.701780415, y: 734.949067}, {x: 0.717926186, y: null}, {x: 0.472131148, y: null}, {x: 0.30548926, y: null}, {x: 0.696914701, y: null}, {x: 0.485887097, y: null}, {x: 0.756521739, y: null}, {x: 0.709813875, y: null}, {x: 0.706638116, y: null}, {x: 0.336294416, y: null}, {x: 0.202873313, y: null}, {x: 0.335480674, y: null}, {x: 0.522649781, y: null}, {x: 0.71301536, y: null}, {x: 0.79299691, y: null}, {x: 0.302861685, y: null}, {x: 0.200595829, y: null}, {x: 0.790909091, y: 11.58294}, {x: 0.611345806, y: null}, {x: 0.465714286, y: 71.329358}, {x: 0.539783002, y: null}, {x: 0.5, y: null}, {x: 0.54770318, y: null}, {x: 0.466346154, y: null}, {x: 0.850290698, y: null}, {x: 0.334841629, y: null}, {x: 0.771186441, y: null}, {x: 0.619491525, y: null}, {x: 0.798507463, y: null}, {x: 0.468407751, y: null}, {x: 0.448529412, y: null}, {x: 0.271723122, y: null}, {x: 0.791451732, y: null}, {x: 0.587115666, y: null}, {x: 0.473133287, y: null}, {x: 0.511111111, y: null}, {x: 0.609649123, y: 148.959479}, {x: 0.918666667, y: null}, {x: 0.193078324, y: null}, {x: 0.637599094, y: null}, {x: 0.492332526, y: null}, {x: 0.353466026, y: null}, {x: 0.108202443, y: null}, {x: 0.360069747, y: null}, {x: 0.266009852, y: null}, {x: 0.163120567, y: null}, {x: 0.072106262, y: null}, {x: 0.482256597, y: null}, {x: 0.481981982, y: null}, {x: 0.194842407, y: null}, {x: 0.308779011, y: null}, {x: 0.393171806, y: 291.200847}, {x: 0.280944625, y: null}, {x: 0.429058663, y: null}, {x: 0.415478615, y: null}, {x: 0.688605108, y: 123.559491}, {x: 0.403846154, y: null}, {x: 0.529829546, y: 253.998766}, {x: 0.283454988, y: 25.889026}, {x: 0.689655172, y: null}, {x: 0.327830189, y: 32.36738}, {x: 0.277248677, y: 54.925090000000004}, {x: 0.367272727, y: null}, {x: 0.083916084, y: null}, {x: 0.140888208, y: null}, {x: 0.112855741, y: null}, {x: 0.068510371, y: null}, {x: 0.06961507, y: null}, {x: 0.422695036, y: null}, {x: 0.013148283, y: null}, {x: 0.099644128, y: null}, {x: 0.135785007, y: null}, {x: 0.038819876, y: null}, {x: 0.207633588, y: null}, {x: 0.049910873, y: null}, {x: 0.057206208, y: null}, {x: 0.074529075, y: null}, {x: 0.226962457, y: null}, {x: 0.031786942, y: null}, {x: 0.277978339, y: null}, {x: 0.128274616, y: null}, {x: 0.017479301, y: null}, {x: 0.031531532, y: null}, {x: 0.092196612, y: null}, {x: 0.144349478, y: null}, {x: 0.017973856, y: 40.416186}, {x: 0.050243112, y: null}, {x: 0.043878273, y: null}, {x: 0.05679336, y: null}, {x: 0.054938632, y: null}, {x: 0.097997893, y: null}, {x: 0.023809524, y: null}, {x: 0.194297783, y: null}, {x: 0.035339064, y: null}, {x: 0.157973174, y: null}, {x: 0.078391275, y: null}, {x: 0.118937644, y: null}, {x: 0.073660714, y: null}, {x: 0.008857396, y: null}, {x: 0.069457659, y: null}, {x: 0.090103397, y: null}, {x: 0.033205619, y: null}, {x: 0.188223619, y: null}, {x: 0.323778196, y: null}, {x: 0.064375341, y: null}, {x: 0.263235294, y: null}, {x: 0.170763828, y: null}, {x: 0.0, y: null}, {x: 0.147623863, y: null}, {x: 0.215273602, y: null}, {x: 0.035479632, y: null}, {x: 0.304761905, y: null}, {x: 0.357512953, y: null}, {x: 0.156123822, y: null}, {x: 0.188461539, y: null}, {x: 0.063866513, y: null}, {x: 0.186697783, y: null}, {x: 0.262158956, y: null}, {x: 0.016722408, y: null}, {x: 0.177483444, y: null}, {x: 0.161413563, y: null}, {x: 0.204156889, y: null}, {x: 0.210573477, y: null}, {x: 0.111827957, y: null}, {x: 0.164348925, y: null}, {x: 0.040358744, y: null}, {x: 0.445730825, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.050359712, y: 1.80788}, {x: 0.066358025, y: null}, {x: 0.057142857, y: null}, {x: 0.246930423, y: null}, {x: 0.053128689, y: null}, {x: 0.127055306, y: null}, {x: 0.077281812, y: null}, {x: 0.12568306, y: null}, {x: 0.054994388, y: null}, {x: 0.325423729, y: null}, {x: 0.092857143, y: null}, {x: 0.0, y: null}, {x: 0.261203585, y: null}, {x: 0.166549047, y: null}, {x: 0.114084507, y: null}, {x: 0.095015576, y: 1.335464}, {x: 0.209486166, y: null}, {x: 0.079704797, y: null}, {x: 0.130170316, y: null}, {x: 0.287390029, y: null}, {x: 0.065420561, y: null}, {x: 0.087431694, y: null}, {x: 0.009425878, y: null}, {x: 0.205692109, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.088277858, y: null}, {x: 0.029090909, y: null}, {x: 0.03567681, y: null}, {x: 0.153957529, y: null}, {x: 0.0, y: null}, {x: 0.045031056, y: null}, {x: 0.096429886, y: null}, {x: 0.149019608, y: null}, {x: 0.042151163, y: null}, {x: 0.0, y: null}, {x: 0.048780488, y: 0.072}, {x: 0.052028219, y: null}, {x: 0.024713151, y: null}, {x: 0.105195638, y: null}, {x: 0.265402844, y: null}, {x: 0.251345119, y: null}, {x: 0.017069701, y: null}, {x: 0.177110694, y: null}, {x: 0.447255742, y: null}, {x: 0.353989813, y: null}, {x: 0.492346939, y: null}, {x: 0.109599395, y: null}, {x: 0.529886914, y: null}, {x: 0.0, y: null}, {x: 0.076752768, y: null}, {x: 0.76118068, y: null}, {x: 0.907096774, y: null}, {x: 0.108994709, y: null}, {x: 0.060945274, y: null}, {x: 0.207780725, y: null}, {x: 0.055555556, y: null}, {x: 0.070107858, y: null}, {x: 0.202298851, y: null}, {x: 0.164718385, y: null}, {x: 0.204397394, y: null}, {x: 0.100269179, y: null}, {x: 0.070422535, y: null}, {x: 0.155378486, y: null}, {x: 0.105080831, y: null}, {x: 0.424657534, y: null}, {x: 0.166969147, y: null}, {x: 0.614195764, y: null}, {x: 0.174245644, y: null}, {x: 0.494323144, y: null}, {x: 0.272815534, y: null}, {x: 0.063165906, y: null}, {x: 0.35480916, y: null}, {x: 0.35375086, y: null}, {x: 0.436554133, y: null}, {x: 0.555452865, y: null}, {x: 0.297352342, y: null}, {x: 0.304854369, y: null}, {x: 0.483031674, y: null}, {x: 0.739099357, y: null}, {x: 0.706566916, y: null}, {x: 0.530754597, y: null}, {x: 0.511075949, y: null}, {x: 0.287601626, y: null}, {x: 0.528176796, y: null}, {x: 0.162995595, y: null}, {x: 0.288888889, y: null}, {x: 0.27589545, y: null}, {x: 0.286082474, y: null}, {x: 0.092459016, y: null}, {x: 0.410671257, y: null}, {x: 0.784060552, y: null}, {x: 0.775528979, y: null}, {x: 0.462857143, y: null}, {x: 0.388213283, y: null}, {x: 0.155482815, y: null}, {x: 0.378787879, y: null}, {x: 0.267548322, y: null}, {x: 0.880447585, y: null}, {x: 0.509410289, y: null}, {x: 0.466165414, y: 32.512411}, {x: 0.575409836, y: null}, {x: 0.66496945, y: null}, {x: 0.800465387, y: null}, {x: 0.730895645, y: null}, {x: 0.539273154, y: null}, {x: 0.554922701, y: null}, {x: 0.788423154, y: null}, {x: 0.816571131, y: null}, {x: 0.816338028, y: null}, {x: 0.857978279, y: null}, {x: 0.901328273, y: null}, {x: 0.891085791, y: null}, {x: 0.729947602, y: null}, {x: 0.70969993, y: null}, {x: 0.792498005, y: null}, {x: 0.866344606, y: null}, {x: 0.39581517, y: null}, {x: 0.897160883, y: null}, {x: 0.446332737, y: null}, {x: 0.700680272, y: null}, {x: 0.715441672, y: null}, {x: 0.386773547, y: null}, {x: 0.845647773, y: null}, {x: 0.76681128, y: null}, {x: 0.459394905, y: null}, {x: 0.346446701, y: null}, {x: 0.500794913, y: null}, {x: 0.79403489, y: null}, {x: 0.763414634, y: null}, {x: 0.275307474, y: null}, {x: 0.583333333, y: null}, {x: 0.374887082, y: null}, {x: 0.868758916, y: null}, {x: 0.770931326, y: null}, {x: 0.411007026, y: null}, {x: 0.500808625, y: null}, {x: 0.519764508, y: 144.338492}, {x: 0.892459827, y: null}, {x: 0.744423792, y: null}, {x: 0.919898284, y: null}, {x: 0.877671334, y: null}, {x: 0.885714286, y: null}, {x: 0.810117302, y: null}, {x: 0.662431942, y: null}, {x: 0.884689302, y: null}, {x: 0.164921466, y: null}, {x: 0.368703108, y: null}, {x: 0.117740652, y: null}, {x: 0.17421875, y: null}, {x: 0.148337596, y: null}, {x: 0.29445823, y: null}, {x: 0.19520548, y: null}, {x: 0.336518047, y: null}, {x: 0.112641815, y: null}, {x: 0.0, y: null}, {x: 0.089770355, y: null}, {x: 0.124255952, y: null}, {x: 0.229804315, y: null}, {x: 0.111111111, y: null}, {x: 0.087553648, y: null}, {x: 0.171250649, y: null}, {x: 0.179650915, y: null}, {x: 0.123737374, y: null}, {x: 0.097915657, y: null}, {x: 0.309719934, y: null}, {x: 0.334868421, y: null}, {x: 0.107121836, y: null}, {x: 0.448412698, y: null}, {x: 0.154831199, y: null}, {x: 0.11942446, y: null}, {x: 0.070607553, y: null}, {x: 0.069484241, y: null}, {x: 0.128732581, y: null}, {x: 0.05971223, y: null}, {x: 0.117810118, y: null}, {x: 0.031338028, y: null}, {x: 0.083333333, y: null}, {x: 0.060202451, y: null}, {x: 0.119221411, y: null}, {x: 0.078912467, y: null}, {x: 0.028119508, y: null}, {x: 0.046100819, y: null}, {x: 0.080040188, y: null}, {x: 0.002484472, y: null}, {x: 0.178756477, y: null}, {x: 0.064392119, y: null}, {x: 0.0, y: null}, {x: 0.188484519, y: null}, {x: 0.343164794, y: null}, {x: 0.498570067, y: null}, {x: 0.121147391, y: null}, {x: 0.022821577, y: null}, {x: 0.0, y: null}, {x: 0.240073869, y: null}, {x: 0.158736505, y: null}, {x: 0.032423208, y: null}, {x: 0.167942584, y: null}, {x: 0.240983607, y: null}, {x: 0.450167973, y: null}, {x: 0.603729604, y: null}, {x: 0.61519806, y: null}, {x: 0.520325203, y: null}, {x: 0.39229249, y: null}, {x: 0.160136286, y: null}, {x: 0.674418605, y: null}, {x: 0.4625, y: null}, {x: 0.172566372, y: null}, {x: 0.024505929, y: null}, {x: 0.215869312, y: null}, {x: 0.043548387, y: null}, {x: 0.066592675, y: null}, {x: 0.188972667, y: null}, {x: 0.088761632, y: null}, {x: 0.054274084, y: null}, {x: 0.128458498, y: null}, {x: 0.257826888, y: null}, {x: 0.025641026, y: null}, {x: 0.20610687, y: null}, {x: 0.043855642, y: null}, {x: 0.0, y: null}, {x: 0.259084474, y: null}, {x: 0.064085447, y: null}, {x: 0.231536926, y: null}, {x: 0.059910771, y: null}, {x: 0.296178344, y: null}, {x: 0.123842028, y: null}, {x: 0.005, y: null}, {x: 0.039193084, y: null}, {x: 0.346133333, y: null}, {x: 0.032371569, y: null}, {x: 0.027896164, y: null}, {x: 0.06244087, y: null}, {x: 0.093683084, y: null}, {x: 0.045801527, y: null}, {x: 0.100452489, y: null}, {x: 0.054640719, y: null}, {x: 0.036539269, y: null}, {x: 0.048086867, y: null}, {x: 0.118127382, y: null}, {x: 0.125984252, y: null}, {x: 0.07565337, y: null}, {x: 0.0446593, y: null}, {x: 0.065279092, y: null}, {x: 0.0890625, y: null}, {x: 0.410596027, y: null}, {x: 0.0, y: null}, {x: 0.073899371, y: null}, {x: 0.043646945, y: null}, {x: 0.158458244, y: null}, {x: 0.020166074, y: null}, {x: 0.048794827, y: null}, {x: 0.176685621, y: null}, {x: 0.054528212, y: null}, {x: 0.189847297, y: null}, {x: 0.273056058, y: null}, {x: 0.039981404, y: null}, {x: 0.090689238, y: null}, {x: 0.079083969, y: null}, {x: 0.101827676, y: null}, {x: 0.043093923, y: null}, {x: 0.11942446, y: null}, {x: 0.052166225, y: null}, {x: 0.401840491, y: null}, {x: 0.284057971, y: null}, {x: 0.322128852, y: null}, {x: 0.084566596, y: null}, {x: 0.314262691, y: null}, {x: 0.082706767, y: null}, {x: 0.179908676, y: null}, {x: 0.230769231, y: null}, {x: 0.434077079, y: null}, {x: 0.4192673, y: null}, {x: 0.049511855, y: null}, {x: 0.023255814, y: null}, {x: 0.019674936, y: null}, {x: 0.251763047, y: null}, {x: 0.177434908, y: null}, {x: 0.080993521, y: null}, {x: 0.097095436, y: null}, {x: 0.088639837, y: null}, {x: 0.012965964, y: null}, {x: 0.033877039, y: null}, {x: 0.132625272, y: null}, {x: 0.020084567, y: null}, {x: 0.026315789, y: null}, {x: 0.014937107, y: null}, {x: 0.178063943, y: null}, {x: 0.004398827, y: null}, {x: 0.04007286, y: null}, {x: 0.035555556, y: null}, {x: 0.058421851, y: null}, {x: 0.094894027, y: null}, {x: 0.011702128, y: null}, {x: 0.032258065, y: null}, {x: 0.0, y: null}, {x: 0.038085938, y: null}, {x: 0.032821599, y: null}, {x: 0.06330366, y: 0.89}, {x: 0.026004728, y: null}, {x: 0.216653193, y: null}, {x: 0.322722283, y: null}, {x: 0.037533512, y: 0.18}, {x: 0.078947368, y: null}, {x: 0.019346231, y: 0.276}, {x: 0.377939984, y: null}, {x: 0.204854369, y: null}, {x: 0.222056632, y: null}, {x: 0.114333057, y: null}, {x: 0.124388919, y: null}, {x: 0.015384615, y: null}, {x: 0.052567237, y: null}, {x: 0.007778738, y: null}, {x: 0.021171489, y: null}, {x: 0.006698565, y: null}, {x: 0.204685573, y: null}, {x: 0.040298507, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.022016222, y: null}, {x: 0.019549763, y: null}, {x: 0.185412027, y: null}, {x: 0.044612795, y: null}, {x: 0.024324324, y: null}, {x: 0.172839506, y: null}, {x: 0.085768742, y: null}, {x: 0.151589242, y: null}, {x: 0.132075472, y: null}, {x: 0.025228127, y: null}, {x: 0.020833333, y: null}, {x: 0.908791209, y: 176.54059600000002}, {x: 0.815769522, y: null}, {x: 0.888643068, y: null}, {x: 0.973780044, y: null}, {x: 0.825046729, y: null}, {x: 0.978891821, y: null}, {x: 0.931164902, y: null}, {x: 0.982928091, y: null}, {x: 0.978562421, y: null}, {x: 0.888653234, y: null}, {x: 0.949283352, y: null}, {x: 0.97324941, y: null}, {x: 0.916176471, y: null}, {x: 0.932621748, y: null}, {x: 0.873153779, y: null}, {x: 0.951820129, y: null}, {x: 0.779874214, y: null}, {x: 0.948481353, y: null}, {x: 0.899947062, y: null}, {x: 0.932416953, y: null}, {x: 0.909038239, y: null}, {x: 0.890177881, y: null}, {x: 0.704281447, y: null}, {x: 0.873128448, y: null}, {x: 0.958499601, y: null}, {x: 0.99327505, y: null}, {x: 0.986601705, y: 6.126247}, {x: 0.963092269, y: null}, {x: 0.650491803, y: null}, {x: 0.918296893, y: null}, {x: 0.949438202, y: null}, {x: 0.971014493, y: null}, {x: 0.977946768, y: null}, {x: 0.894854586, y: null}, {x: 0.874005305, y: null}, {x: 0.947829014, y: null}, {x: 0.8113612, y: null}, {x: 0.870611836, y: null}, {x: 0.82230997, y: null}, {x: 0.785929648, y: null}, {x: 0.934655776, y: null}, {x: 0.918844567, y: null}, {x: 0.856401384, y: null}, {x: 0.925694838, y: null}, {x: 0.711111111, y: 38.4927}, {x: 0.88619403, y: null}, {x: 0.938500961, y: null}, {x: 1.0, y: null}, {x: 0.527292576, y: null}, {x: 1.0, y: null}, {x: 0.906885246, y: null}, {x: 0.838541667, y: null}, {x: 0.54951857, y: null}, {x: 0.800322061, y: null}, {x: 0.729971182, y: null}, {x: 0.454146074, y: null}, {x: 0.299352751, y: null}, {x: 0.650655022, y: null}, {x: 0.476335878, y: null}, {x: 0.189303905, y: null}, {x: 0.430843374, y: null}, {x: 0.260190217, y: null}, {x: 0.33526971, y: null}, {x: 0.399484536, y: null}, {x: 0.300775901, y: null}, {x: 0.159453303, y: null}, {x: 0.379435192, y: null}, {x: 0.881287726, y: null}, {x: 0.702885206, y: null}, {x: 0.566176471, y: null}, {x: 0.754769921, y: null}, {x: 0.252701579, y: null}, {x: 0.614740369, y: null}, {x: 0.687757909, y: null}, {x: 0.474349442, y: null}, {x: 0.581576027, y: null}, {x: 0.173955296, y: null}, {x: 0.72702884, y: null}, {x: 0.395575221, y: null}, {x: 0.251528384, y: null}, {x: 0.346712212, y: null}, {x: 0.499198718, y: null}, {x: 0.491246874, y: null}, {x: 0.041331803, y: null}, {x: 0.480324544, y: null}, {x: 0.211472603, y: null}, {x: 0.320621469, y: null}, {x: 0.184400826, y: null}, {x: 0.296616837, y: null}, {x: 0.576530612, y: null}, {x: 0.146976744, y: null}, {x: 0.191133721, y: null}, {x: 0.160945843, y: null}, {x: 0.122765197, y: null}, {x: 0.181467182, y: null}, {x: 0.318761384, y: null}, {x: 0.02997076, y: 57.7297}, {x: 0.08986731, y: null}, {x: 0.198795181, y: null}, {x: 0.036603221, y: null}, {x: 0.340713407, y: null}, {x: 0.35462963, y: null}, {x: 0.359520124, y: null}, {x: 0.181467182, y: null}, {x: 0.159113797, y: null}, {x: 0.122165326, y: null}, {x: 0.222608696, y: null}, {x: 0.450557621, y: null}, {x: 0.131989001, y: null}, {x: 0.294383149, y: null}, {x: 0.086277427, y: null}, {x: 0.029985008, y: null}, {x: 0.375826251, y: null}, {x: 0.062740077, y: null}, {x: 0.149467839, y: null}, {x: 0.116963064, y: null}, {x: 0.156133829, y: null}, {x: 0.247181965, y: null}, {x: 0.248914617, y: null}, {x: 0.078393881, y: null}, {x: 0.175405743, y: null}, {x: 0.141150443, y: null}, {x: 0.24463305, y: null}, {x: 0.371785714, y: null}, {x: 0.285863874, y: null}, {x: 0.370653096, y: null}, {x: 0.444073456, y: null}, {x: 0.331352155, y: null}, {x: 0.44708589, y: null}, {x: 0.277604708, y: null}, {x: 0.424954792, y: null}, {x: 0.748896518, y: null}, {x: 0.182566405, y: null}, {x: 0.327433628, y: null}, {x: 0.843330349, y: null}, {x: 0.51390059, y: 26.852272}, {x: 0.552982456, y: 17.432869}, {x: 0.21563981, y: null}, {x: 0.355847405, y: null}, {x: 0.462015504, y: 2.114101}, {x: 0.167921251, y: null}, {x: 0.175528507, y: 27.576203}, {x: 0.147877013, y: null}, {x: 0.237837838, y: null}, {x: 0.137959521, y: null}, {x: 0.479514416, y: null}, {x: 0.033795494, y: null}, {x: 0.253697383, y: null}, {x: 0.25728863, y: null}, {x: 0.220485627, y: null}, {x: 0.32371134, y: null}, {x: 0.620629371, y: null}, {x: 0.0805718, y: null}, {x: 0.130406714, y: null}, {x: 0.520257827, y: null}, {x: 0.245901639, y: null}, {x: 0.378537736, y: null}, {x: 0.301431801, y: null}, {x: 0.752407932, y: null}, {x: 0.41682243, y: 9.574524}, {x: 0.205658784, y: null}, {x: 0.549011178, y: null}, {x: 0.687575758, y: 17.33541}, {x: 0.405609493, y: null}, {x: 0.274444444, y: null}, {x: 0.44909688, y: null}, {x: 0.300794022, y: null}, {x: 0.442523768, y: null}, {x: 0.184029944, y: 19.605847}, {x: 0.272787758, y: null}, {x: 0.0997426, y: 0.363247}, {x: 0.042322835, y: null}, {x: 0.100963391, y: 51.7282}, {x: 0.285768937, y: null}, {x: 0.245523091, y: null}, {x: 0.06146789, y: null}, {x: 0.112774769, y: null}, {x: 0.016859852, y: null}, {x: 0.049342105, y: null}, {x: 0.049539986, y: null}, {x: 0.118327402, y: null}, {x: 0.180845644, y: null}, {x: 0.05481345, y: null}, {x: 0.142180095, y: null}, {x: 0.014583333, y: null}, {x: 0.029831388, y: null}, {x: 0.094653812, y: null}, {x: 0.041020966, y: null}, {x: 0.060908084, y: null}, {x: 0.034170854, y: null}, {x: 0.067763158, y: null}, {x: 0.056047198, y: null}, {x: 0.02507837, y: null}, {x: 0.017660044, y: null}, {x: 0.234642498, y: null}, {x: 0.122203098, y: null}, {x: 0.080864692, y: null}, {x: 0.037037037, y: null}, {x: 0.069269039, y: null}, {x: 0.134584013, y: null}, {x: 0.1411161, y: null}, {x: 0.075289575, y: null}, {x: 0.042492918, y: null}, {x: 0.233123312, y: null}, {x: 0.166944908, y: null}, {x: 0.012972973, y: null}, {x: 0.192660551, y: null}, {x: 0.164259928, y: null}, {x: 0.098230628, y: null}, {x: 0.222077922, y: null}, {x: 0.038383838, y: null}, {x: 0.03864279, y: null}, {x: 0.157419937, y: null}, {x: 0.061688312, y: null}, {x: 0.164593301, y: null}, {x: 0.024082569, y: null}, {x: 0.026863085, y: null}, {x: 0.062639821, y: null}, {x: 0.0, y: null}, {x: 0.026380874, y: null}, {x: 0.176232821, y: null}, {x: 0.025062657, y: null}, {x: 0.035267349, y: null}, {x: 0.0, y: null}, {x: 0.091079812, y: null}, {x: 0.086046512, y: null}, {x: 0.070696721, y: null}, {x: 0.082269504, y: null}, {x: 0.071078431, y: null}, {x: 0.04427334, y: null}, {x: 0.014728682, y: null}, {x: 0.092031425, y: null}, {x: 0.029946164, y: null}, {x: 0.042050691, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.096975089, y: null}, {x: 0.08185654, y: null}, {x: 0.046116505, y: null}, {x: 0.105202312, y: null}, {x: 0.041593439, y: null}, {x: 0.037073171, y: null}, {x: 0.073185012, y: null}, {x: 0.081282625, y: null}, {x: 0.120667523, y: null}, {x: 0.047932331, y: null}, {x: 0.097491039, y: null}, {x: 0.167030568, y: null}, {x: 0.071713147, y: null}, {x: 0.084074373, y: null}, {x: 0.115323855, y: null}, {x: 0.122874807, y: null}, {x: 0.0, y: null}, {x: 0.050304878, y: null}, {x: 0.085855032, y: null}, {x: 0.080824972, y: null}, {x: 0.131991052, y: null}, {x: 0.212686567, y: null}, {x: 0.081717452, y: 0.751364}, {x: 0.226337449, y: null}, {x: 0.134129214, y: null}, {x: 0.035294118, y: null}, {x: 0.005688282, y: null}, {x: 0.145128205, y: 0.6538919999999999}, {x: 0.03526971, y: null}, {x: 0.029548989, y: null}, {x: 0.062048193, y: null}, {x: 0.192, y: null}, {x: 0.232647815, y: null}, {x: 0.155767818, y: null}, {x: 0.116144019, y: null}, {x: 0.065994962, y: null}, {x: 0.097826087, y: null}, {x: 0.125, y: null}, {x: 0.127516779, y: null}, {x: 0.2258314, y: null}, {x: 0.068089431, y: null}, {x: 0.113226453, y: null}, {x: 0.021949078, y: null}, {x: 0.111716621, y: null}, {x: 0.074856046, y: null}, {x: 0.203816794, y: null}, {x: 0.02247191, y: null}, {x: 0.106024096, y: null}, {x: 0.036053131, y: null}, {x: 0.145408163, y: null}, {x: 0.095465394, y: null}, {x: 0.327979713, y: null}, {x: 0.066790353, y: null}, {x: 0.407171315, y: null}, {x: 0.078947368, y: null}, {x: 0.090389016, y: null}, {x: 0.089712919, y: null}, {x: 0.029233315, y: null}, {x: 0.078692494, y: null}, {x: 0.139742319, y: null}, {x: 0.09310987, y: null}, {x: 0.132786885, y: null}, {x: 0.666068223, y: null}, {x: 0.859778598, y: null}, {x: 0.468637347, y: null}, {x: 0.737354988, y: null}, {x: 0.713888889, y: 19.621000000000002}, {x: 0.574813812, y: null}, {x: 0.830940989, y: null}, {x: 0.622109827, y: null}, {x: 0.939347991, y: null}, {x: 0.603592814, y: null}, {x: 0.532026144, y: null}, {x: 0.579908676, y: null}, {x: 0.741660752, y: null}, {x: 0.709973046, y: null}, {x: 0.839224629, y: null}, {x: 0.364485981, y: null}, {x: 0.549155146, y: null}, {x: 0.665835412, y: null}, {x: 0.635145784, y: null}, {x: 0.794098361, y: null}, {x: 0.878336756, y: null}, {x: 0.796190476, y: null}, {x: 0.902504472, y: null}, {x: 0.607602339, y: null}, {x: 0.905444126, y: null}, {x: 0.996319018, y: null}, {x: 0.94701087, y: null}, {x: 0.993730408, y: null}, {x: 0.978021978, y: 37.631}, {x: 0.912572856, y: null}, {x: 0.988183161, y: null}, {x: 0.960207613, y: null}, {x: 0.88988764, y: null}, {x: 0.909340659, y: null}, {x: 0.816209317, y: 739.527068}, {x: 0.75273224, y: null}, {x: 0.977695167, y: null}, {x: 0.929032258, y: null}, {x: 0.874678112, y: null}, {x: 0.812627291, y: null}, {x: 0.989616613, y: null}, {x: 0.943625325, y: null}, {x: 0.841968912, y: null}, {x: 0.758928571, y: null}, {x: 1.0, y: null}, {x: 0.85170068, y: null}, {x: 0.818696884, y: null}, {x: 0.755304102, y: null}, {x: 0.54144385, y: null}, {x: 0.928794992, y: null}, {x: 0.828541001, y: null}, {x: 0.905699482, y: null}, {x: 0.890428212, y: null}, {x: 0.699331849, y: null}, {x: 0.907456724, y: null}, {x: 0.721938776, y: null}, {x: 0.719759926, y: null}, {x: 0.576826197, y: null}, {x: 0.412039197, y: null}, {x: 0.409162717, y: null}, {x: 0.401221996, y: null}, {x: 0.719214753, y: null}, {x: 0.615582506, y: null}, {x: 0.506289308, y: null}, {x: 0.457305503, y: null}, {x: 0.691776089, y: null}, {x: 0.348007414, y: null}, {x: 0.322754895, y: null}, {x: 0.293984962, y: null}, {x: 0.771888726, y: null}, {x: 0.374476987, y: null}, {x: 0.271912351, y: null}, {x: 0.98022356, y: null}, {x: 0.794626866, y: null}, {x: 0.994732221, y: null}, {x: 0.964611872, y: null}, {x: 0.183394161, y: null}, {x: 0.641163793, y: null}, {x: 0.927821522, y: null}, {x: 0.937165775, y: null}, {x: 0.558227848, y: null}, {x: 1.0, y: null}, {x: 0.911976912, y: null}, {x: 0.862837046, y: 27.040660999999997}, {x: 0.966568338, y: 81.680767}, {x: 0.844005778, y: null}, {x: 0.81284153, y: null}, {x: 0.77037037, y: null}, {x: 1.0, y: 198.331469}, {x: 0.811864407, y: null}, {x: 1.0, y: null}, {x: 0.754397835, y: null}, {x: 0.675422139, y: null}, {x: 0.376344086, y: null}, {x: 0.091891892, y: null}, {x: 0.476510067, y: null}, {x: 0.520172911, y: null}, {x: 0.919381108, y: 7.279}, {x: 0.766588603, y: null}, {x: 0.74893617, y: null}, {x: 0.685099846, y: null}, {x: 0.873223422, y: null}, {x: 0.806111697, y: null}, {x: 0.912801484, y: null}, {x: 0.916903409, y: null}, {x: 0.141498216, y: null}, {x: 0.211065574, y: null}, {x: 0.424207493, y: null}, {x: 0.262195122, y: null}, {x: 0.39589169, y: null}, {x: 0.182926829, y: null}, {x: 0.477832512, y: null}, {x: 0.656934307, y: null}, {x: 0.615486433, y: null}, {x: 0.577946768, y: null}, {x: 0.231316726, y: null}, {x: 0.751758087, y: null}, {x: 0.670623145, y: null}, {x: 0.827805222, y: null}, {x: 0.783199506, y: null}, {x: 0.615036232, y: null}, {x: 0.266241299, y: null}, {x: 0.175464143, y: null}, {x: 0.0, y: null}, {x: 0.251574657, y: null}, {x: 0.23653088, y: null}, {x: 0.129602356, y: null}, {x: 0.133093525, y: null}, {x: 0.0, y: null}, {x: 0.055594163, y: null}, {x: 0.27632951, y: null}, {x: 0.358490566, y: null}, {x: 0.196682465, y: null}, {x: 0.101513802, y: null}, {x: 0.087949743, y: null}, {x: 0.179837676, y: null}, {x: 0.065782764, y: null}, {x: 0.133580705, y: null}, {x: 0.346660995, y: null}, {x: 0.079715864, y: null}, {x: 0.052268506, y: null}, {x: 0.0, y: null}, {x: 0.176470588, y: null}, {x: 0.524048096, y: null}, {x: 0.030247141, y: null}, {x: 0.466400911, y: 1.005625}, {x: 0.274074074, y: null}, {x: 0.421518055, y: null}, {x: 0.32, y: null}, {x: 0.437592868, y: null}, {x: 0.430389817, y: 21.590654999999998}, {x: 0.580169972, y: 2.36377}, {x: 0.240875912, y: null}, {x: 0.569482289, y: 69.454067}, {x: 0.652968037, y: null}, {x: 0.121621622, y: null}, {x: 0.558648111, y: null}, {x: 0.45490982, y: null}, {x: 0.429160935, y: null}, {x: 0.18018018, y: null}, {x: 0.053133515, y: null}, {x: 0.100247525, y: null}, {x: 0.305327869, y: 4.023005}, {x: 0.215180545, y: null}, {x: 0.604985618, y: 15.273601}, {x: 0.548532731, y: null}, {x: 0.165534805, y: null}, {x: 0.631853786, y: null}, {x: 0.360091743, y: null}, {x: 0.505222437, y: 17.667698}, {x: 0.251160392, y: 130.09780700000002}, {x: 0.61027668, y: null}, {x: 0.0, y: null}, {x: 0.078554595, y: null}, {x: 0.523061825, y: null}, {x: 0.014662757, y: null}, {x: 0.297581493, y: null}, {x: 0.048259494, y: null}, {x: 0.184351145, y: 98.279335}, {x: 0.382911392, y: 0.465397}, {x: 0.0, y: null}, {x: 0.22, y: null}, {x: 0.397677794, y: null}, {x: 0.105067064, y: null}, {x: 0.113049096, y: null}, {x: 0.959605027, y: null}, {x: 0.963369963, y: null}, {x: 0.969387755, y: null}, {x: 0.956435644, y: null}, {x: 0.960204082, y: null}, {x: 0.926729986, y: 1.850684}, {x: 0.811279827, y: null}, {x: 0.975415282, y: null}, {x: 0.856299213, y: 211.675397}, {x: 0.858793325, y: null}, {x: 0.932656827, y: null}, {x: 0.558935361, y: null}, {x: 0.532241556, y: null}, {x: 0.386792453, y: null}, {x: 0.484396201, y: null}, {x: 0.257377049, y: 106.444359}, {x: 0.344457688, y: 2.454447}, {x: 0.279470199, y: null}, {x: 0.896103896, y: null}, {x: 0.791120081, y: null}, {x: 0.68814433, y: null}, {x: 0.13943662, y: null}, {x: 0.584837545, y: null}, {x: 0.152477764, y: null}, {x: 0.688147296, y: null}, {x: 0.219414894, y: null}, {x: 0.175746092, y: null}, {x: 0.107717042, y: null}, {x: 0.351125065, y: null}, {x: 0.371471025, y: 617.717181}, {x: 0.560286104, y: 0.620762}, {x: 0.644736842, y: null}, {x: 0.493927126, y: null}, {x: 0.55771725, y: null}, {x: 0.272727273, y: null}, {x: 0.446285714, y: null}, {x: 0.255829904, y: null}, {x: 0.125845738, y: null}, {x: 0.289340102, y: null}, {x: 0.186282811, y: null}, {x: 0.331491713, y: null}, {x: 0.479510378, y: null}, {x: 0.100867679, y: null}, {x: 0.208393632, y: null}, {x: 0.731759657, y: null}, {x: 0.083188908, y: null}, {x: 0.716853933, y: null}, {x: 0.296137339, y: null}, {x: 0.068448501, y: null}, {x: 0.065536723, y: null}, {x: 0.039503386, y: null}, {x: 0.144208038, y: null}, {x: 0.583662714, y: null}, {x: 0.122153209, y: null}, {x: 0.083102493, y: null}, {x: 0.225667939, y: null}, {x: 0.193456615, y: null}, {x: 0.026851098, y: null}, {x: 0.109311741, y: null}, {x: 0.57129923, y: null}, {x: 0.0, y: null}, {x: 0.153926338, y: null}, {x: 0.170827858, y: null}, {x: 0.134932534, y: null}, {x: 0.032445923, y: null}, {x: 0.160023795, y: null}, {x: 0.088263822, y: null}, {x: 0.326013514, y: null}, {x: 0.139669422, y: null}, {x: 0.224238876, y: null}, {x: 0.420615129, y: null}, {x: 0.389183457, y: null}, {x: 0.225772098, y: null}, {x: 0.12687813, y: null}, {x: 0.128164557, y: null}, {x: 0.072142064, y: null}, {x: 0.091920375, y: null}, {x: 0.071469411, y: null}, {x: 0.073937153, y: null}, {x: 0.073094868, y: null}, {x: 0.221294363, y: null}, {x: 0.104707435, y: null}, {x: 0.164637374, y: null}, {x: 0.135341212, y: null}, {x: 0.013571429, y: null}, {x: 0.046906866, y: null}, {x: 0.11247216, y: null}, {x: 0.126353791, y: null}, {x: 0.091073583, y: null}, {x: 0.067447046, y: null}, {x: 0.047466325, y: null}, {x: 0.102736653, y: null}, {x: 0.046249295, y: null}, {x: 0.127516779, y: null}, {x: 0.055292259, y: null}, {x: 0.092124814, y: null}, {x: 0.070581897, y: null}, {x: 0.218259629, y: null}, {x: 0.041054232, y: null}, {x: 0.083183453, y: null}, {x: 0.049350649, y: null}, {x: 0.170998632, y: null}, {x: 0.126258714, y: null}, {x: 0.04781491, y: null}, {x: 0.156842105, y: null}, {x: 0.28345679, y: null}, {x: 0.09062694, y: null}, {x: 0.150380339, y: null}, {x: 0.223846154, y: 385.927118}, {x: 0.086538462, y: 2.816}, {x: 0.084101807, y: null}, {x: 0.233801541, y: null}, {x: 0.001374256, y: null}, {x: 0.205357143, y: null}, {x: 0.16375345, y: null}, {x: 0.09386121, y: null}, {x: 0.213498015, y: null}, {x: 0.066517608, y: null}, {x: 0.13476874, y: null}, {x: 0.31184669, y: null}, {x: 0.0, y: null}, {x: 0.199457259, y: null}, {x: 0.153046764, y: null}, {x: 0.085403727, y: null}, {x: 0.145624103, y: null}, {x: 0.272268908, y: null}, {x: 0.016836509, y: null}, {x: 0.172516065, y: null}, {x: 0.192686357, y: null}, {x: 0.082211198, y: null}, {x: 0.0, y: null}, {x: 0.1056231, y: null}, {x: 0.189381933, y: null}, {x: 0.0, y: null}, {x: 0.073916409, y: null}, {x: 0.163109756, y: null}, {x: 0.063419118, y: null}, {x: 0.138977636, y: null}, {x: 0.272121789, y: null}, {x: 0.107692308, y: null}, {x: 0.101687389, y: null}, {x: 0.025847214, y: null}, {x: 0.025522042, y: null}, {x: 0.087609512, y: null}, {x: 0.102793296, y: null}, {x: 0.025792189, y: null}, {x: 0.065130261, y: null}, {x: 0.104951959, y: null}, {x: 0.048465267, y: null}, {x: 0.27791361, y: null}, {x: 0.006405124, y: null}, {x: 0.057109557, y: null}, {x: 0.066704036, y: null}, {x: 0.034074074, y: null}, {x: 0.082294264, y: null}, {x: 0.043219076, y: null}, {x: 0.00128866, y: null}, {x: 0.285781991, y: null}, {x: 0.083300589, y: null}, {x: 0.110504097, y: null}, {x: 0.13984375, y: null}, {x: 0.100474684, y: null}, {x: 0.0, y: null}, {x: 0.137073171, y: null}, {x: 0.082846522, y: null}, {x: 0.229588705, y: null}, {x: 0.00693909, y: null}, {x: 0.272848863, y: null}, {x: 0.564356436, y: null}, {x: 0.278772379, y: null}, {x: 0.213219616, y: null}, {x: 0.395305164, y: null}, {x: 0.379338295, y: null}, {x: 0.271004422, y: null}, {x: 0.035409035, y: null}, {x: 0.455334988, y: null}, {x: 0.079084967, y: null}, {x: 0.205537806, y: null}, {x: 0.361185984, y: null}, {x: 0.196330275, y: null}, {x: 0.405008166, y: null}, {x: 0.353893601, y: null}, {x: 0.467845659, y: null}, {x: 0.078101072, y: null}, {x: 0.10318792, y: null}, {x: 0.229373903, y: null}, {x: 0.499171728, y: null}, {x: 0.706864564, y: null}, {x: 0.395192308, y: null}, {x: 0.027865405, y: null}, {x: 0.021367521, y: null}, {x: 0.097174658, y: null}, {x: 0.082474227, y: null}, {x: 0.102493075, y: null}, {x: 0.081267218, y: null}, {x: 0.136107499, y: null}, {x: 0.113018598, y: null}, {x: 0.150882825, y: null}, {x: 0.066853343, y: null}, {x: 0.084639498, y: null}, {x: 0.435692034, y: null}, {x: 0.118721461, y: null}, {x: 0.186781609, y: null}, {x: 0.073194857, y: null}, {x: 0.070599613, y: null}, {x: 0.049403748, y: null}, {x: 0.016205267, y: 0.45}, {x: 0.220447284, y: null}, {x: 0.127737226, y: null}, {x: 0.185520362, y: null}, {x: 0.068365444, y: null}, {x: 0.103202847, y: null}, {x: 0.275950999, y: null}, {x: 0.148340249, y: null}, {x: 0.268025078, y: null}, {x: 0.090728477, y: null}, {x: 0.043799472, y: null}, {x: 0.111570248, y: null}, {x: 0.359516616, y: null}, {x: 0.166361974, y: null}, {x: 0.113030417, y: null}, {x: 0.202947846, y: null}, {x: 0.34056055, y: null}, {x: 0.6, y: null}, {x: 0.226250907, y: null}, {x: 0.103977669, y: null}, {x: 0.104134763, y: null}, {x: 0.134596211, y: null}, {x: 0.34949495, y: null}, {x: 0.097604259, y: null}, {x: 0.099537037, y: null}, {x: 0.14321075, y: null}, {x: 0.014985015, y: 5e-05}, {x: 0.18328841, y: null}, {x: 0.0, y: null}, {x: 0.020985401, y: null}, {x: 0.082198215, y: null}, {x: 0.086255259, y: null}, {x: 0.007885305, y: null}, {x: 0.262195122, y: null}, {x: 0.176043557, y: null}, {x: 0.34184514, y: null}, {x: 0.047169811, y: null}, {x: 0.17136958, y: null}, {x: 0.124248497, y: null}, {x: 0.18833652, y: null}, {x: 0.119771863, y: null}, {x: 0.158560959, y: null}, {x: 0.040250098, y: null}, {x: 0.051444679, y: null}, {x: 0.081424936, y: null}, {x: 0.058710913, y: null}, {x: 0.070114943, y: null}, {x: 0.000951475, y: null}, {x: 0.055979644, y: null}, {x: 0.032198712, y: null}, {x: 0.107988166, y: null}, {x: 0.042051282, y: null}, {x: 0.051079137, y: null}, {x: 0.030760626, y: null}, {x: 0.099214847, y: null}, {x: 0.185280494, y: null}, {x: 0.12631579, y: null}, {x: 0.233223322, y: null}, {x: 0.086890244, y: null}, {x: 0.044176707, y: null}, {x: 0.108650519, y: null}, {x: 0.625776398, y: null}, {x: 0.4303233, y: null}, {x: 0.243303571, y: null}, {x: 0.504125413, y: null}, {x: 0.305470191, y: null}, {x: 0.670188679, y: null}, {x: 0.4140625, y: null}, {x: 0.810711665, y: 2479.88946}, {x: 0.470477976, y: null}, {x: 0.494542974, y: null}, {x: 0.361378611, y: null}, {x: 0.735710796, y: null}, {x: 0.268716578, y: null}, {x: 0.497810219, y: null}, {x: 0.206703911, y: null}, {x: 0.580128205, y: null}, {x: 0.586387435, y: 482.90002}, {x: 0.501577287, y: null}, {x: 0.392857143, y: 67.833}, {x: 0.405897114, y: null}, {x: 0.566808511, y: null}, {x: 0.556089044, y: null}, {x: 0.290715373, y: null}, {x: 0.229755179, y: null}, {x: 0.553303608, y: null}, {x: 0.140516698, y: null}, {x: 0.163170163, y: null}, {x: 0.55213436, y: null}, {x: 0.595913734, y: null}, {x: 0.344072165, y: 55.29}, {x: 0.494425864, y: null}, {x: 0.588762215, y: null}, {x: 0.575929427, y: null}, {x: 0.790583275, y: null}, {x: 0.817023741, y: null}, {x: 0.686567164, y: null}, {x: 0.721368715, y: null}, {x: 0.77232581, y: null}, {x: 0.412192903, y: null}, {x: 0.744908896, y: null}, {x: 0.576190476, y: null}, {x: 0.658415842, y: null}, {x: 0.372239748, y: null}, {x: 0.634978992, y: null}, {x: 0.594638505, y: null}, {x: 0.296102385, y: null}, {x: 0.710313448, y: null}, {x: 0.187766714, y: null}, {x: 0.669319187, y: null}, {x: 0.605442177, y: null}, {x: 0.730275229, y: null}, {x: 0.88056872, y: null}, {x: 0.845993757, y: null}, {x: 0.794520548, y: null}, {x: 0.54845089, y: null}, {x: 0.781463928, y: null}, {x: 0.612634088, y: null}, {x: 0.704942966, y: null}, {x: 0.451371571, y: null}, {x: 0.611080022, y: null}, {x: 0.506493507, y: null}, {x: 0.500699301, y: null}, {x: 0.648580968, y: null}, {x: 0.504828797, y: null}, {x: 0.552493438, y: null}, {x: 0.548463357, y: null}, {x: 0.380503145, y: null}, {x: 0.354685647, y: null}, {x: 0.104050279, y: null}, {x: 0.23015873, y: null}, {x: 0.415037594, y: 199.24}, {x: 0.526806527, y: null}, {x: 0.150976909, y: 654.51638}, {x: 0.081784387, y: null}, {x: 0.46539961, y: null}, {x: 0.283392585, y: null}, {x: 0.394270123, y: null}, {x: 0.091129032, y: null}, {x: 0.350628294, y: null}, {x: 0.119047619, y: null}, {x: 0.093260722, y: null}, {x: 0.134637514, y: null}, {x: 0.305491991, y: null}, {x: 0.137418756, y: null}, {x: 0.259615385, y: null}, {x: 0.206148282, y: null}, {x: 0.123065308, y: null}, {x: 0.323278921, y: null}, {x: 0.371923428, y: null}, {x: 0.064330844, y: null}, {x: 0.187034277, y: null}, {x: 0.09895547, y: null}, {x: 0.214765101, y: null}, {x: 0.156366344, y: null}, {x: 0.27265745, y: null}, {x: 0.023121387, y: null}, {x: 0.147362697, y: null}, {x: 0.126470588, y: null}, {x: 0.203180212, y: null}, {x: 0.298004988, y: null}, {x: 0.088690937, y: null}, {x: 0.123136389, y: null}, {x: 0.083667622, y: null}, {x: 0.157660739, y: null}, {x: 0.091808346, y: null}, {x: 0.174882126, y: null}, {x: 0.100961539, y: null}, {x: 0.090986395, y: null}, {x: 0.051638976, y: null}, {x: 0.075698925, y: null}, {x: 0.173723537, y: null}, {x: 0.101067616, y: null}, {x: 0.055643045, y: null}, {x: 0.134114583, y: null}, {x: 0.016129032, y: null}, {x: 0.475961539, y: null}, {x: 0.106666667, y: null}, {x: 0.013297872, y: null}, {x: 0.07421875, y: null}, {x: 0.055252918, y: null}, {x: 0.006044325, y: null}, {x: 0.141449683, y: null}, {x: 0.115492958, y: null}, {x: 0.029772329, y: null}, {x: 0.116802484, y: null}, {x: 0.044742729, y: null}, {x: 0.142139268, y: null}, {x: 0.093934911, y: null}, {x: 0.103255814, y: null}, {x: 0.090754877, y: null}, {x: 0.401069519, y: null}, {x: 0.169734151, y: null}, {x: 0.260122699, y: null}, {x: 0.535494327, y: null}, {x: 0.316568047, y: null}, {x: 0.018060201, y: null}, {x: 0.222490931, y: null}, {x: 0.295432459, y: null}, {x: 0.27752809, y: null}, {x: 0.224576271, y: null}, {x: 0.305376344, y: null}, {x: 0.011989101, y: null}, {x: 0.131648936, y: null}, {x: 0.552836485, y: null}, {x: 0.220881427, y: 396.4304}, {x: 0.03131524, y: null}, {x: 0.40967092, y: null}, {x: 0.17005988, y: null}, {x: 0.481234362, y: null}, {x: 0.391278727, y: null}, {x: 0.179205852, y: null}, {x: 0.221984297, y: null}, {x: 0.0691085, y: null}, {x: 0.249858677, y: null}, {x: 0.552872606, y: null}, {x: 0.049713193, y: null}, {x: 0.142937535, y: null}, {x: 0.067375887, y: null}, {x: 0.074641148, y: null}, {x: 0.063897764, y: null}, {x: 0.230122818, y: null}, {x: 0.111572392, y: null}, {x: 0.075578855, y: null}, {x: 0.201622248, y: null}, {x: 0.210282538, y: null}, {x: 0.360262009, y: null}, {x: 0.322089227, y: null}, {x: 0.273054755, y: null}, {x: 0.109810479, y: null}, {x: 0.327294686, y: null}, {x: 0.04622871, y: null}, {x: 0.0859375, y: null}, {x: 0.19243604, y: null}, {x: 0.067736185, y: null}, {x: 0.061049011, y: null}, {x: 0.594653573, y: null}, {x: 0.362873917, y: null}, {x: 0.291262136, y: null}, {x: 0.20498615, y: null}, {x: 0.29795022, y: null}, {x: 0.427745665, y: null}, {x: 0.158297612, y: null}, {x: 0.265428003, y: null}, {x: 0.339189189, y: null}, {x: 0.283116883, y: null}, {x: 0.318601583, y: null}, {x: 0.190318302, y: null}, {x: 0.098099326, y: null}, {x: 0.237961477, y: null}, {x: 0.086724209, y: null}, {x: 0.236474695, y: null}, {x: 0.239476678, y: null}, {x: 0.1629681, y: null}, {x: 0.129107981, y: null}, {x: 0.660637792, y: null}, {x: 0.330578512, y: null}, {x: 0.300610094, y: null}, {x: 0.032069971, y: null}, {x: 0.247815231, y: null}, {x: 0.580364212, y: null}, {x: 0.335894621, y: null}, {x: 0.255499154, y: null}, {x: 0.259661836, y: null}, {x: 0.235410485, y: null}, {x: 0.565844579, y: null}, {x: 0.57573474, y: null}, {x: 0.42234957, y: null}, {x: 0.147557841, y: null}, {x: 0.231820185, y: null}, {x: 0.387111517, y: null}, {x: 0.529156328, y: null}, {x: 0.316777711, y: null}, {x: 0.30511022, y: null}, {x: 0.248429867, y: null}, {x: 0.426433915, y: null}, {x: 0.422315537, y: null}, {x: 0.144502618, y: null}, {x: 0.208754209, y: null}, {x: 0.511163337, y: null}, {x: 0.286984127, y: null}, {x: 0.128423041, y: null}, {x: 0.211583924, y: null}, {x: 0.076095311, y: null}, {x: 0.158295964, y: null}, {x: 0.136226902, y: null}, {x: 0.265976872, y: null}, {x: 0.123474515, y: null}, {x: 0.446022727, y: null}, {x: 0.054071661, y: null}, {x: 0.071776156, y: null}, {x: 0.090050378, y: null}, {x: 0.0, y: null}, {x: 0.223326706, y: null}, {x: 0.03635586, y: null}, {x: 0.275534442, y: null}, {x: 0.326836582, y: null}, {x: 0.154453213, y: null}, {x: 0.205063291, y: null}, {x: 0.098650927, y: null}, {x: 0.075135135, y: null}, {x: 0.067017083, y: null}, {x: 0.059251559, y: null}, {x: 0.16097561, y: null}, {x: 0.185833333, y: null}, {x: 0.138705416, y: null}, {x: 0.154738878, y: null}, {x: 0.044871795, y: null}, {x: 0.14690027, y: null}, {x: 0.338028169, y: null}, {x: 0.52246696, y: null}, {x: 0.172413793, y: null}, {x: 0.115021459, y: null}, {x: 0.141581633, y: null}, {x: 0.106082037, y: null}, {x: 0.0, y: null}, {x: 0.12150838, y: null}, {x: 0.209925558, y: null}, {x: 0.082863341, y: null}, {x: 0.032795699, y: null}, {x: 0.023573201, y: null}, {x: 0.10982659, y: null}, {x: 0.14940239, y: null}, {x: 0.284820921, y: null}, {x: 0.112531969, y: null}, {x: 0.123175183, y: null}, {x: 0.065587381, y: null}, {x: 0.0625, y: null}, {x: 0.094403237, y: null}, {x: 0.050838841, y: null}, {x: 0.121404557, y: null}, {x: 0.116161616, y: null}, {x: 0.088031652, y: null}, {x: 0.049612949, y: null}, {x: 0.155812832, y: null}, {x: 0.235803657, y: null}, {x: 0.128851541, y: null}, {x: 0.087979094, y: null}, {x: 0.123535156, y: null}, {x: 0.028231798, y: null}, {x: 0.054859869, y: null}, {x: 0.123129543, y: null}, {x: 0.063233966, y: null}, {x: 0.123695976, y: null}, {x: 0.071623465, y: null}, {x: 0.132102273, y: null}, {x: 0.292043985, y: null}, {x: 0.090135203, y: null}, {x: 0.209802236, y: null}, {x: 0.169030733, y: null}, {x: 0.03007798, y: null}, {x: 0.207064555, y: null}, {x: 0.437000615, y: null}, {x: 0.218721461, y: null}, {x: 0.226645645, y: null}, {x: 0.172794118, y: null}, {x: 0.457156091, y: null}, {x: 0.145067698, y: null}, {x: 0.102296451, y: null}, {x: 0.498461539, y: null}, {x: 0.314540059, y: null}, {x: 0.150605886, y: null}, {x: 0.0, y: null}, {x: 0.306491372, y: null}, {x: 0.317115552, y: null}, {x: 0.241590214, y: null}, {x: 0.040730337, y: null}, {x: 0.140350877, y: null}, {x: 0.101250504, y: null}, {x: 0.507946599, y: null}, {x: 0.0, y: null}, {x: 0.152058111, y: null}, {x: 0.181583477, y: null}, {x: 0.487315011, y: null}, {x: 0.036982249, y: null}, {x: 0.204022989, y: null}, {x: 0.335982659, y: null}, {x: 0.129537367, y: null}, {x: 0.136276392, y: null}, {x: 0.192818111, y: null}, {x: 0.071604938, y: null}, {x: 0.259124088, y: null}, {x: 0.147353362, y: null}, {x: 0.130052724, y: null}, {x: 0.28827425, y: null}, {x: 0.175318315, y: null}, {x: 0.369326326, y: null}, {x: 0.160484482, y: null}, {x: 0.350442478, y: null}, {x: 0.599537037, y: null}, {x: 0.28042328, y: null}, {x: 0.259890444, y: null}, {x: 0.362240289, y: null}, {x: 0.129272568, y: null}, {x: 0.0390625, y: null}, {x: 0.149967679, y: null}, {x: 0.303797468, y: null}, {x: 0.023033708, y: null}, {x: 0.016806723, y: null}, {x: 0.170568562, y: null}, {x: 0.122352941, y: null}, {x: 0.039341263, y: null}, {x: 0.109647059, y: null}, {x: 0.08716707, y: null}, {x: 0.198654941, y: null}, {x: 0.061937716, y: null}, {x: 0.065693431, y: null}, {x: 0.115135135, y: null}, {x: 0.03237858, y: null}, {x: 0.3459281, y: null}, {x: 0.0, y: null}, {x: 0.19138756, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.004470939, y: null}, {x: 0.212520593, y: null}, {x: 0.0, y: null}, {x: 0.213178295, y: null}, {x: 0.0, y: null}, {x: 0.077809798, y: null}, {x: 0.116010855, y: null}, {x: 0.142269253, y: null}, {x: 0.111382511, y: null}, {x: 0.098050797, y: null}, {x: 0.274478331, y: null}, {x: 0.137691238, y: null}, {x: 0.019138756, y: null}, {x: 0.077114428, y: null}, {x: 0.03634277, y: null}, {x: 0.184977579, y: null}, {x: 0.161616162, y: null}, {x: 0.144869215, y: null}, {x: 0.115196078, y: null}, {x: 0.29407566, y: null}, {x: 0.048228346, y: null}, {x: 0.034901366, y: null}, {x: 0.278867102, y: null}, {x: 0.0, y: null}, {x: 0.125, y: null}, {x: 0.083916084, y: null}, {x: 0.027110767, y: null}, {x: 0.17612978, y: null}, {x: 0.139183056, y: null}, {x: 0.019417476, y: null}, {x: 0.169364882, y: null}, {x: 0.037953795, y: null}, {x: 0.027924131, y: null}, {x: 0.092071611, y: null}, {x: 0.156435644, y: null}, {x: 0.217362492, y: null}, {x: 0.178988327, y: null}, {x: 0.61260274, y: null}, {x: 0.172613308, y: null}, {x: 0.159090909, y: null}, {x: 0.391891892, y: null}, {x: 0.3625, y: null}, {x: 0.22298066, y: null}, {x: 0.221126761, y: null}, {x: 0.142621599, y: null}, {x: 0.28998779, y: null}, {x: 0.082200647, y: null}, {x: 0.134475748, y: null}, {x: 0.117724868, y: null}, {x: 0.084556962, y: null}, {x: 0.059633028, y: null}, {x: 0.385915493, y: null}, {x: 0.100802855, y: null}, {x: 0.095906433, y: null}, {x: 0.034320639, y: null}, {x: 0.255776892, y: null}, {x: 0.309927361, y: null}, {x: 0.095238095, y: null}, {x: 0.171026157, y: null}, {x: 0.221621622, y: null}, {x: 0.055137845, y: null}, {x: 0.295910781, y: null}, {x: 0.221646517, y: null}, {x: 0.252659575, y: null}, {x: 0.378600823, y: null}, {x: 0.455370651, y: null}, {x: 0.10989011, y: null}, {x: 0.159634318, y: null}, {x: 0.066920152, y: null}, {x: 0.183700735, y: null}, {x: 0.276501112, y: null}, {x: 0.274838013, y: null}, {x: 0.346287703, y: null}, {x: 0.131021195, y: null}, {x: 0.191799861, y: null}, {x: 0.164594002, y: null}, {x: 0.220675944, y: null}, {x: 0.239422085, y: null}, {x: 0.113772455, y: null}, {x: 0.477117819, y: null}, {x: 0.148648649, y: null}, {x: 0.182078853, y: null}, {x: 0.046747967, y: null}, {x: 0.282539683, y: null}, {x: 0.146634615, y: null}, {x: 0.082309582, y: null}, {x: 0.26223092, y: null}, {x: 0.093004769, y: null}, {x: 0.129836629, y: null}, {x: 0.367276888, y: null}, {x: 0.355329949, y: null}, {x: 0.614285714, y: null}, {x: 0.159090909, y: null}, {x: 0.309612984, y: null}, {x: 0.056047198, y: null}, {x: 0.265486726, y: null}, {x: 0.31530343, y: null}, {x: 0.219877468, y: null}, {x: 0.340080972, y: null}, {x: 0.103184713, y: null}, {x: 0.115264798, y: null}, {x: 0.163120567, y: null}, {x: 0.374045802, y: null}, {x: 0.118867925, y: null}, {x: 0.592931937, y: null}, {x: 0.479779412, y: null}, {x: 0.40797546, y: null}, {x: 0.541989279, y: null}, {x: 0.281818182, y: null}, {x: 0.492907801, y: null}, {x: 0.412844037, y: null}, {x: 0.176886793, y: 68.97}, {x: 0.35326087, y: null}, {x: 0.518153295, y: null}, {x: 0.518617021, y: null}, {x: 0.305354559, y: null}, {x: 0.737541528, y: null}, {x: 0.106936416, y: null}, {x: 0.384902144, y: null}, {x: 0.216466739, y: null}, {x: 0.575528701, y: null}, {x: 0.10059761, y: null}, {x: 0.277856135, y: null}, {x: 0.144736842, y: null}, {x: 0.420344054, y: null}, {x: 0.401459854, y: null}, {x: 0.317577548, y: null}, {x: 0.432971015, y: null}, {x: 0.302484472, y: null}, {x: 0.502296451, y: null}, {x: 0.131878558, y: null}, {x: 0.293457944, y: null}, {x: 0.289705882, y: null}, {x: 0.515422441, y: null}, {x: 0.582990398, y: null}, {x: 0.6084172, y: null}, {x: 0.430502975, y: null}, {x: 0.456925116, y: null}, {x: 0.044362292, y: null}, {x: 0.671493902, y: null}, {x: 0.395071542, y: null}, {x: 0.576335878, y: null}, {x: 0.267900241, y: null}, {x: 0.828983517, y: null}, {x: 0.796267496, y: null}, {x: 0.799184044, y: null}, {x: 0.84992343, y: null}, {x: 0.731019523, y: null}, {x: 0.374351371, y: null}, {x: 0.444067797, y: null}, {x: 0.707037643, y: null}, {x: 0.718248175, y: null}, {x: 0.688563327, y: null}, {x: 0.674258475, y: null}, {x: 0.032231405, y: null}, {x: 0.78255814, y: null}, {x: 0.734068628, y: null}, {x: 0.661971831, y: null}, {x: 0.758853288, y: null}, {x: 0.666963491, y: null}, {x: 0.641925777, y: null}, {x: 0.324032403, y: null}, {x: 0.411968777, y: null}, {x: 0.517911975, y: null}, {x: 0.341836735, y: null}, {x: 0.46993007, y: null}, {x: 0.571830986, y: null}, {x: 0.453637661, y: null}, {x: 0.574983628, y: null}, {x: 0.532983508, y: null}, {x: 0.579912024, y: null}, {x: 0.56713615, y: null}, {x: 0.605245461, y: null}, {x: 0.65212528, y: null}, {x: 0.923493045, y: null}, {x: 0.876507754, y: null}, {x: 0.560779817, y: null}, {x: 0.207246377, y: null}, {x: 0.464190981, y: null}, {x: 0.431083381, y: null}, {x: 0.515789474, y: null}, {x: 0.655963303, y: null}, {x: 0.667422525, y: null}, {x: 0.396350365, y: null}, {x: 0.272511848, y: null}, {x: 0.516318887, y: null}, {x: 0.515609265, y: null}, {x: 0.602675059, y: null}, {x: 0.721714687, y: null}, {x: 0.741660202, y: null}, {x: 0.718281718, y: null}, {x: 0.618780096, y: null}, {x: 0.734313726, y: null}, {x: 0.407155026, y: null}, {x: 0.668717949, y: null}, {x: 0.418533605, y: null}, {x: 0.616371411, y: null}, {x: 0.767313019, y: null}, {x: 0.643095397, y: null}, {x: 0.625185185, y: null}, {x: 0.72706422, y: null}, {x: 0.744255319, y: null}, {x: 0.440241228, y: null}, {x: 0.622080679, y: null}, {x: 0.556372549, y: null}, {x: 0.63537415, y: null}, {x: 0.772651007, y: null}, {x: 0.606557377, y: null}, {x: 0.446389497, y: null}, {x: 0.777731443, y: null}, {x: 0.419548872, y: null}, {x: 0.0, y: null}, {x: 0.386536833, y: null}, {x: 0.56444218, y: null}, {x: 0.287428273, y: null}, {x: 0.604482132, y: null}, {x: 0.295918367, y: null}, {x: 0.623381877, y: null}, {x: 0.513906185, y: null}, {x: 0.195758564, y: null}, {x: 0.397735315, y: null}, {x: 0.52556391, y: null}, {x: 0.573728814, y: null}, {x: 0.18242831, y: null}, {x: 0.575060533, y: null}, {x: 0.491343776, y: null}, {x: 0.325977934, y: null}, {x: 0.250398724, y: null}, {x: 0.022792023, y: null}, {x: 0.545405112, y: null}, {x: 0.168631006, y: null}, {x: 0.269906929, y: null}, {x: 0.296381832, y: null}, {x: 0.413636364, y: null}, {x: 0.357927787, y: null}, {x: 0.158671587, y: null}, {x: 0.258098224, y: null}, {x: 0.041299559, y: null}, {x: 0.230936819, y: null}, {x: 0.097765363, y: null}, {x: 0.125792812, y: null}, {x: 0.360895386, y: null}, {x: 0.154545455, y: null}, {x: 0.307077626, y: null}, {x: 0.108033241, y: null}, {x: 0.077244259, y: null}, {x: 0.103020914, y: null}, {x: 0.120224719, y: null}, {x: 0.350978136, y: null}, {x: 0.543313709, y: null}, {x: 0.436901654, y: null}, {x: 0.186959937, y: null}, {x: 0.292079208, y: null}, {x: 0.073229292, y: null}, {x: 0.275015347, y: null}, {x: 0.247889486, y: null}, {x: 0.173461231, y: null}, {x: 0.135944701, y: null}, {x: 0.272207792, y: null}, {x: 0.376296296, y: null}, {x: 0.31459854, y: null}, {x: 0.164222874, y: null}, {x: 0.317220544, y: null}, {x: 0.18275154, y: null}, {x: 0.202154101, y: null}, {x: 0.448497854, y: null}, {x: 0.184772516, y: null}, {x: 0.405948553, y: null}, {x: 0.169306931, y: null}, {x: 0.129904098, y: null}, {x: 0.347428571, y: null}, {x: 0.261146497, y: null}, {x: 0.20376379, y: null}, {x: 0.446182728, y: null}, {x: 0.339922854, y: null}, {x: 0.308903366, y: null}, {x: 0.320463321, y: null}, {x: 0.661596958, y: null}, {x: 0.346938776, y: null}, {x: 0.528271406, y: null}, {x: 0.491902834, y: null}, {x: 0.490312966, y: null}, {x: 0.252487562, y: null}, {x: 0.585412668, y: null}, {x: 0.401647786, y: null}, {x: 0.499089253, y: null}, {x: 0.23880597, y: null}, {x: 0.264772727, y: null}, {x: 0.562657696, y: null}, {x: 0.607361963, y: null}, {x: 0.54491018, y: null}, {x: 0.52915952, y: null}, {x: 0.494871795, y: null}, {x: 0.454415954, y: 2.8}, {x: 0.434920635, y: null}, {x: 0.44345898, y: null}, {x: 0.3796875, y: null}, {x: 0.499515973, y: null}, {x: 0.53803681, y: null}, {x: 0.782488987, y: null}, {x: 0.311550152, y: null}, {x: 0.494296578, y: null}, {x: 0.208085612, y: null}, {x: 0.334935127, y: null}, {x: 0.320735444, y: null}, {x: 0.657445077, y: null}, {x: 0.472094214, y: null}, {x: 0.302325581, y: null}, {x: 0.179362507, y: null}, {x: 0.457473163, y: null}, {x: 0.277013753, y: null}, {x: 0.664921466, y: null}, {x: 0.448012846, y: null}, {x: 0.557729941, y: null}, {x: 0.526024363, y: null}, {x: 0.516544908, y: null}, {x: 0.248148148, y: null}, {x: 0.627408994, y: null}, {x: 0.240480962, y: null}, {x: 0.517220172, y: null}, {x: 0.331100479, y: null}, {x: 0.433952788, y: null}, {x: 0.444035346, y: null}, {x: 0.273517382, y: null}, {x: 0.461926374, y: null}, {x: 0.253648367, y: null}, {x: 0.215098242, y: null}, {x: 0.311276794, y: null}, {x: 0.399352751, y: null}, {x: 0.527310924, y: null}, {x: 0.593621399, y: null}, {x: 0.644830308, y: null}, {x: 0.292722813, y: null}, {x: 0.17585693, y: null}, {x: 0.26147427, y: null}, {x: 0.409395973, y: null}, {x: 0.659682899, y: null}, {x: 0.418455916, y: null}, {x: 0.18778626, y: null}, {x: 0.36934793, y: null}, {x: 0.385300668, y: null}, {x: 0.375831486, y: null}, {x: 0.21319797, y: 1.38}, {x: 0.19535284, y: null}, {x: 0.24929972, y: 3.71}, {x: 0.357392317, y: null}, {x: 0.571626298, y: null}, {x: 0.153046062, y: null}, {x: 0.208850932, y: null}, {x: 0.202739726, y: null}, {x: 0.252725471, y: null}, {x: 0.306990882, y: null}, {x: 0.293977813, y: null}, {x: 0.0, y: null}, {x: 0.407831325, y: null}, {x: 0.610091743, y: null}, {x: 0.381964809, y: null}, {x: 0.481997677, y: null}, {x: 0.368603643, y: null}, {x: 0.406901042, y: null}, {x: 0.286720322, y: null}, {x: 0.319413919, y: null}, {x: 0.573394495, y: null}, {x: 0.387722133, y: null}, {x: 0.541471963, y: null}, {x: 0.2104, y: null}, {x: 0.245122986, y: null}, {x: 0.966069746, y: null}, {x: 0.752317881, y: null}, {x: 0.441649899, y: null}, {x: 0.242375602, y: 1.975}, {x: 0.229329173, y: null}, {x: 0.174163783, y: null}, {x: 0.255635246, y: null}, {x: 0.271659325, y: 45.306}, {x: 0.455522972, y: null}, {x: 0.406447535, y: null}, {x: 0.0, y: null}, {x: 0.352852853, y: null}, {x: 0.154690619, y: null}, {x: 0.469187675, y: null}, {x: 0.174045802, y: null}, {x: 0.263649425, y: null}, {x: 0.209107807, y: null}, {x: 0.280471822, y: null}, {x: 0.0, y: null}, {x: 0.332987552, y: null}, {x: 0.198484849, y: null}, {x: 0.205780347, y: null}, {x: 0.22927242, y: null}, {x: 0.362629758, y: null}, {x: 0.313840156, y: null}, {x: 0.365678347, y: null}, {x: 0.320754717, y: null}, {x: 0.368608799, y: null}, {x: 0.057407407, y: null}, {x: 0.165480427, y: null}, {x: 0.233230134, y: null}, {x: 0.289017341, y: null}, {x: 0.292469352, y: null}, {x: 0.190821256, y: null}, {x: 0.345977012, y: null}, {x: 0.012320329, y: null}, {x: 0.155307263, y: null}, {x: 0.402645114, y: 12.033039}, {x: 0.35390625, y: null}, {x: 0.349194729, y: null}, {x: 0.354014599, y: null}, {x: 0.170068027, y: null}, {x: 0.153770813, y: null}, {x: 0.195081967, y: null}, {x: 0.228215768, y: null}, {x: 0.03030303, y: null}, {x: 0.496884735, y: null}, {x: 0.170334928, y: null}, {x: 0.258660508, y: null}, {x: 0.520408163, y: null}, {x: 0.198824682, y: null}, {x: 0.44518103, y: null}, {x: 0.285294118, y: null}, {x: 0.173435785, y: null}, {x: 0.336798337, y: null}, {x: 0.19822283, y: null}, {x: 0.215384615, y: null}, {x: 0.44743083, y: null}, {x: 0.173963134, y: null}, {x: 0.245762712, y: null}, {x: 0.398488121, y: null}, {x: 0.166437414, y: null}, {x: 0.225690276, y: null}, {x: 0.263605442, y: null}, {x: 0.188160677, y: null}, {x: 0.470787468, y: null}, {x: 0.27025393, y: null}, {x: 0.203605514, y: null}, {x: 0.315976331, y: null}, {x: 0.262450593, y: null}, {x: 0.208191126, y: null}, {x: 0.121158911, y: null}, {x: 0.165914221, y: null}, {x: 0.229357798, y: null}, {x: 0.347689076, y: null}, {x: 0.36382755, y: null}, {x: 0.350684932, y: null}, {x: 0.354658385, y: null}, {x: 0.558756634, y: null}, {x: 0.41745531, y: null}, {x: 0.411050649, y: null}, {x: 0.663316583, y: null}, {x: 0.648963731, y: null}, {x: 0.28664193, y: null}, {x: 0.158183242, y: null}, {x: 0.43501171, y: null}, {x: 0.456880734, y: null}, {x: 0.429235168, y: null}, {x: 0.381386861, y: null}, {x: 0.302726544, y: null}, {x: 0.190038314, y: null}, {x: 0.35959596, y: null}, {x: 0.428082192, y: null}, {x: 0.592857143, y: null}, {x: 0.287808642, y: null}, {x: 0.477477478, y: null}, {x: 0.502994012, y: null}, {x: 0.423740511, y: null}, {x: 0.292457949, y: null}, {x: 0.287833828, y: null}, {x: 0.276264591, y: null}, {x: 0.19135365, y: null}, {x: 0.434782609, y: null}, {x: 0.424533635, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.1272509, y: null}, {x: 0.27133758, y: null}, {x: 0.313188766, y: null}, {x: 0.204883227, y: null}, {x: 0.326253186, y: null}, {x: 0.666666667, y: null}, {x: 0.496977838, y: null}, {x: 0.638051044, y: null}, {x: 0.568939771, y: null}, {x: 0.276595745, y: null}, {x: 0.457496136, y: null}, {x: 0.318555008, y: null}, {x: 0.053973013, y: null}, {x: 0.166064982, y: null}, {x: 0.163043478, y: null}, {x: 0.498940678, y: null}, {x: 0.101214575, y: null}, {x: 0.030330882, y: null}, {x: 0.16509434, y: null}, {x: 0.103616813, y: null}, {x: 0.04805492, y: null}, {x: 0.176267848, y: null}, {x: 0.135287486, y: null}, {x: 0.687378641, y: null}, {x: 0.279783394, y: null}, {x: 0.394654088, y: null}, {x: 0.22440678, y: null}, {x: 0.018410853, y: null}, {x: 0.110447761, y: null}, {x: 0.1769437, y: null}, {x: 0.048816568, y: null}, {x: 0.241057543, y: null}, {x: 0.060537268, y: null}, {x: 0.307324079, y: null}, {x: 0.196296296, y: null}, {x: 0.284334313, y: null}, {x: 0.18614021, y: null}, {x: 0.403342618, y: 0.0117}, {x: 0.508752735, y: null}, {x: 0.4092827, y: null}, {x: 0.481180061, y: null}, {x: 0.68533171, y: null}, {x: 0.339680122, y: null}, {x: 0.157054126, y: null}, {x: 0.429906542, y: null}, {x: 0.212651413, y: null}, {x: 0.401856764, y: null}, {x: 0.359160613, y: null}, {x: 0.336751214, y: null}, {x: 0.212268314, y: null}, {x: 0.119665272, y: null}, {x: 0.147058824, y: null}, {x: 0.161369193, y: null}, {x: 0.181571816, y: null}, {x: 0.063391442, y: null}, {x: 0.186489058, y: null}, {x: 0.192680301, y: null}, {x: 0.14379085, y: null}, {x: 0.185079929, y: null}, {x: 0.281767956, y: null}, {x: 0.24963977, y: null}, {x: 0.147244095, y: null}, {x: 0.054298643, y: null}, {x: 0.16137806, y: null}, {x: 0.195821385, y: null}, {x: 0.075313808, y: null}, {x: 0.172024327, y: null}, {x: 0.301449275, y: null}, {x: 0.17764804, y: null}, {x: 0.094972067, y: null}, {x: 0.24010327, y: null}, {x: 0.164227642, y: null}, {x: 0.171111881, y: null}, {x: 0.255501223, y: null}, {x: 0.246316759, y: null}, {x: 0.317932296, y: null}, {x: 0.294478528, y: null}, {x: 0.167418264, y: null}, {x: 0.219114219, y: null}, {x: 0.363018355, y: null}, {x: 0.266115703, y: null}, {x: 0.370618941, y: null}, {x: 0.265232975, y: null}, {x: 0.354391371, y: null}, {x: 0.174757282, y: null}, {x: 0.330218069, y: null}, {x: 0.15993266, y: null}, {x: 0.058823529, y: null}, {x: 0.402554137, y: null}, {x: 0.258713137, y: null}, {x: 0.385956175, y: null}, {x: 0.433810048, y: null}, {x: 0.239772727, y: null}, {x: 0.203688853, y: null}, {x: 0.181273816, y: null}, {x: 0.176570458, y: null}, {x: 0.390854185, y: null}, {x: 0.526165557, y: null}, {x: 0.328767123, y: null}, {x: 0.509738079, y: null}, {x: 0.376847291, y: null}, {x: 0.441295547, y: null}, {x: 0.500341297, y: null}, {x: 0.043680839, y: null}, {x: 0.349788434, y: null}, {x: 0.35967801, y: null}, {x: 0.460141271, y: null}, {x: 0.672914714, y: null}, {x: 0.175465839, y: null}, {x: 0.481203008, y: null}, {x: 0.649269311, y: null}, {x: 0.364705882, y: null}, {x: 0.357692308, y: null}, {x: 0.181886793, y: null}, {x: 0.244627054, y: null}, {x: 0.70886076, y: null}, {x: 0.74380805, y: null}, {x: 0.440987125, y: null}, {x: 0.484683458, y: null}, {x: 0.220501475, y: null}, {x: 0.355712603, y: null}, {x: 0.447729673, y: null}, {x: 0.175059952, y: null}, {x: 0.068669528, y: null}, {x: 0.157848325, y: null}, {x: 0.124183007, y: null}, {x: 0.505770816, y: null}, {x: 0.308994709, y: null}, {x: 0.625924315, y: null}, {x: 0.429097606, y: null}, {x: 0.298921418, y: null}, {x: 0.368383405, y: null}, {x: 0.185582822, y: null}, {x: 0.212833258, y: null}, {x: 0.088582677, y: null}, {x: 0.220714286, y: null}, {x: 0.189666893, y: null}, {x: 0.156603774, y: null}, {x: 0.328396323, y: null}, {x: 0.059701493, y: null}, {x: 0.415878023, y: null}, {x: 0.455231388, y: null}, {x: 0.488, y: null}, {x: 0.132034632, y: null}, {x: 0.28785489, y: null}, {x: 0.241537579, y: null}, {x: 0.182328191, y: null}, {x: 0.111204013, y: null}, {x: 0.246540881, y: null}, {x: 0.103542234, y: null}, {x: 0.266040689, y: null}, {x: 0.062761506, y: null}, {x: 0.284039675, y: null}, {x: 0.437919463, y: null}, {x: 0.336483932, y: null}, {x: 0.125723739, y: null}, {x: 0.173109244, y: null}, {x: 0.261016949, y: null}, {x: 0.0, y: null}, {x: 0.483427142, y: null}, {x: 0.040922619, y: null}, {x: 0.321246819, y: null}, {x: 0.373563218, y: null}, {x: 0.435679612, y: null}, {x: 0.211428571, y: null}, {x: 0.398601399, y: null}, {x: 0.260465116, y: null}, {x: 0.207979627, y: null}, {x: 0.265402844, y: null}, {x: 0.369640788, y: null}, {x: 0.550929368, y: null}, {x: 0.285497342, y: null}, {x: 0.0974084, y: null}, {x: 0.272463768, y: null}, {x: 0.386812046, y: null}, {x: 0.139037433, y: null}, {x: 0.124192391, y: null}, {x: 0.497222222, y: null}, {x: 0.153305204, y: null}, {x: 0.272948822, y: null}, {x: 0.099647266, y: null}, {x: 0.223744292, y: null}, {x: 0.188248096, y: null}, {x: 0.343161343, y: null}, {x: 0.322883173, y: null}, {x: 0.123476418, y: null}, {x: 0.097308489, y: null}, {x: 0.278278278, y: null}, {x: 0.219834711, y: null}, {x: 0.360912982, y: null}, {x: 0.308182264, y: null}, {x: 0.435682327, y: null}, {x: 0.265086207, y: null}, {x: 0.254649499, y: null}, {x: 0.326553051, y: null}, {x: 0.105407883, y: null}, {x: 0.240506329, y: null}, {x: 0.21040724, y: null}, {x: 0.547151277, y: null}, {x: 0.351598174, y: null}, {x: 0.269668737, y: null}, {x: 0.285714286, y: null}, {x: 0.399716848, y: null}, {x: 0.530169492, y: null}, {x: 0.303955586, y: null}, {x: 0.119119879, y: null}, {x: 0.224776501, y: null}, {x: 0.23222061, y: null}, {x: 0.102230483, y: null}, {x: 0.171343284, y: null}, {x: 0.329479769, y: null}, {x: 0.452363091, y: null}, {x: 0.142679901, y: null}, {x: 0.209335219, y: null}, {x: 0.33433584, y: null}, {x: 0.455710956, y: null}, {x: 0.095744681, y: null}, {x: 0.253578732, y: null}, {x: 0.275033378, y: null}, {x: 0.498207885, y: null}, {x: 0.15015015, y: null}, {x: 0.393551446, y: null}, {x: 0.156346749, y: null}, {x: 0.307282416, y: null}, {x: 0.146107784, y: null}, {x: 0.363226453, y: null}, {x: 0.355444305, y: null}, {x: 0.301992846, y: null}, {x: 0.223898612, y: null}, {x: 0.279843444, y: null}, {x: 0.255772647, y: null}, {x: 0.149262537, y: null}, {x: 0.17305586, y: null}, {x: 0.184964201, y: null}, {x: 0.207594937, y: null}, {x: 0.289699571, y: null}, {x: 0.061064087, y: null}, {x: 0.098532495, y: null}, {x: 0.038422649, y: null}, {x: 0.13215859, y: null}, {x: 0.277185501, y: null}, {x: 0.290976821, y: null}, {x: 0.02425107, y: null}, {x: 0.096469418, y: null}, {x: 0.245923913, y: null}, {x: 0.055293324, y: null}, {x: 0.136594663, y: null}, {x: 0.049872123, y: null}, {x: 0.340761374, y: null}, {x: 0.298093588, y: null}, {x: 0.035862069, y: null}, {x: 0.419741697, y: null}, {x: 0.489655172, y: null}, {x: 0.418487395, y: null}, {x: 0.483902439, y: null}, {x: 0.657560356, y: null}, {x: 0.510857143, y: null}, {x: 0.150576806, y: null}, {x: 0.164612676, y: null}, {x: 0.367916303, y: null}, {x: 0.569039914, y: null}, {x: 0.575, y: null}, {x: 0.808520599, y: null}, {x: 0.858036273, y: null}, {x: 0.617763158, y: null}, {x: 0.518049398, y: null}, {x: 0.828442438, y: null}, {x: 0.410153641, y: null}, {x: 0.687372014, y: null}, {x: 0.240288568, y: null}, {x: 0.723423423, y: null}, {x: 0.053521127, y: null}, {x: 0.429067748, y: null}, {x: 0.633072407, y: null}, {x: 0.520833333, y: null}, {x: 0.5525, y: null}, {x: 0.213942308, y: null}, {x: 0.365323097, y: null}, {x: 0.569832402, y: null}, {x: 0.323170732, y: null}, {x: 0.346815435, y: null}, {x: 0.864583333, y: null}, {x: 0.336764706, y: null}, {x: 0.2864494, y: null}, {x: 0.110791367, y: null}, {x: 0.325129534, y: null}, {x: 0.291204986, y: null}, {x: 0.233656174, y: null}, {x: 0.239210285, y: null}, {x: 0.198501873, y: null}, {x: 0.101176471, y: null}, {x: 0.433772756, y: null}, {x: 0.16462841, y: null}, {x: 0.126669365, y: null}, {x: 0.269754768, y: null}, {x: 0.40672187, y: null}, {x: 0.328777525, y: null}, {x: 0.193958665, y: null}, {x: 0.092515593, y: null}, {x: 0.354469855, y: null}, {x: 0.019249278, y: null}, {x: 0.330551692, y: null}, {x: 0.0, y: null}, {x: 0.081285444, y: null}, {x: 0.545370655, y: null}, {x: 0.245692884, y: null}, {x: 0.402533427, y: null}, {x: 0.451854372, y: null}, {x: 0.008665511, y: null}, {x: 0.275546159, y: null}, {x: 0.155932203, y: null}, {x: 0.279180388, y: null}, {x: 0.189320388, y: null}, {x: 0.200105042, y: null}, {x: 0.318367347, y: null}, {x: 0.362576508, y: null}, {x: 0.106971154, y: null}, {x: 0.132747253, y: null}, {x: 0.200153965, y: null}, {x: 0.055757576, y: null}, {x: 0.09388412, y: null}, {x: 0.059440559, y: null}, {x: 0.263854425, y: null}, {x: 0.086638831, y: null}, {x: 0.065292096, y: null}, {x: 0.127046496, y: null}, {x: 0.115723923, y: null}, {x: 0.326947637, y: null}, {x: 0.157667387, y: null}, {x: 0.156472262, y: null}, {x: 0.094880847, y: null}, {x: 0.300946143, y: null}, {x: 0.247046187, y: null}, {x: 0.479674797, y: null}, {x: 0.230994152, y: null}, {x: 0.33545402, y: 0.0002}, {x: 0.052132701, y: null}, {x: 0.042813456, y: null}, {x: 0.802477184, y: null}, {x: 0.493624772, y: null}, {x: 0.435756385, y: null}, {x: 0.0, y: null}, {x: 0.125087352, y: null}, {x: 0.142585551, y: null}, {x: 0.33089701, y: null}, {x: 0.538396625, y: null}, {x: 0.265013055, y: null}, {x: 0.066505441, y: null}, {x: 0.0, y: null}, {x: 0.186875892, y: null}, {x: 0.152208202, y: null}, {x: 0.128019324, y: null}, {x: 0.323877069, y: null}, {x: 0.0, y: null}, {x: 0.324041812, y: null}, {x: 0.335646141, y: null}, {x: 0.592633929, y: null}, {x: 0.589965398, y: null}, {x: 0.339244851, y: null}, {x: 0.319901569, y: null}, {x: 0.609080842, y: null}, {x: 0.23853525, y: null}, {x: 0.2376, y: null}, {x: 0.378519974, y: null}, {x: 0.276356831, y: null}, {x: 0.252121817, y: null}, {x: 0.361656704, y: null}, {x: 0.215590743, y: null}, {x: 0.403463204, y: null}, {x: 0.048368298, y: null}, {x: 0.43122102, y: null}, {x: 0.134644478, y: null}, {x: 0.31283628, y: null}, {x: 0.182389937, y: null}, {x: 0.400589102, y: null}, {x: 0.393464942, y: null}, {x: 0.434758772, y: null}, {x: 0.278431373, y: null}, {x: 0.229303548, y: null}, {x: 0.074561404, y: null}, {x: 0.333865815, y: null}, {x: 0.273105745, y: null}, {x: 0.374668786, y: null}, {x: 0.240279163, y: null}, {x: 0.387490465, y: null}, {x: 0.236363636, y: null}, {x: 0.358986175, y: null}, {x: 0.372798434, y: null}, {x: 0.183767228, y: null}, {x: 0.469234885, y: null}, {x: 0.343615052, y: null}, {x: 0.229545455, y: null}, {x: 0.297575758, y: null}, {x: 0.355607477, y: null}, {x: 0.592121982, y: null}, {x: 0.382690302, y: null}, {x: 0.242718447, y: null}, {x: 0.353798127, y: null}, {x: 0.287280702, y: null}, {x: 0.124495289, y: null}, {x: 0.162212554, y: null}, {x: 0.138909091, y: null}, {x: 0.408499566, y: null}, {x: 0.312469675, y: null}, {x: 0.144219309, y: null}, {x: 0.238197425, y: null}, {x: 0.151552795, y: null}, {x: 0.123413258, y: null}, {x: 0.155276992, y: null}, {x: 0.242813456, y: null}, {x: 0.190909091, y: null}, {x: 0.0, y: null}, {x: 0.241575161, y: null}, {x: 0.075421473, y: null}, {x: 0.262490679, y: null}, {x: 0.223963134, y: null}, {x: 0.198603569, y: null}, {x: 0.178683386, y: null}, {x: 0.111854685, y: null}, {x: 0.132231405, y: null}, {x: 0.118500605, y: null}, {x: 0.053787879, y: null}, {x: 0.028061224, y: null}, {x: 0.143234323, y: null}, {x: 0.0, y: null}, {x: 0.083930399, y: null}, {x: 0.140676841, y: null}, {x: 0.181724316, y: null}, {x: 0.126268657, y: null}, {x: 0.003679853, y: null}, {x: 0.24940048, y: null}, {x: 0.297577855, y: null}, {x: 0.063529412, y: null}, {x: 0.17574021, y: null}, {x: 0.146396396, y: null}, {x: 0.341113106, y: null}, {x: 0.297681376, y: null}, {x: 0.376661743, y: null}, {x: 0.589836661, y: null}, {x: 0.103918228, y: null}, {x: 0.173866091, y: null}, {x: 0.0, y: null}, {x: 0.052516411, y: null}, {x: 0.14171123, y: null}, {x: 0.201823708, y: null}, {x: 0.085377821, y: null}, {x: 0.417061611, y: null}, {x: 0.202511774, y: null}, {x: 0.105524079, y: null}, {x: 0.079522863, y: null}, {x: 0.126707132, y: null}, {x: 0.29499561, y: null}, {x: 0.383693046, y: null}, {x: 0.276165803, y: null}, {x: 0.268060837, y: null}, {x: 0.339449541, y: null}, {x: 0.154738878, y: null}, {x: 0.136468774, y: null}, {x: 0.196555218, y: null}, {x: 0.554667788, y: null}, {x: 0.15597148, y: null}, {x: 0.23524343, y: null}, {x: 0.322191272, y: null}, {x: 0.28372591, y: null}, {x: 0.123559539, y: null}, {x: 0.112867809, y: null}, {x: 0.022659256, y: null}, {x: 0.092447917, y: null}, {x: 0.063852243, y: null}, {x: 0.0, y: null}, {x: 0.133391456, y: null}, {x: 0.090115125, y: null}, {x: 0.172472873, y: null}, {x: 0.037712895, y: null}, {x: 0.146007605, y: null}, {x: 0.15511222, y: null}, {x: 0.0198188, y: null}, {x: 0.050741608, y: null}, {x: 0.169124877, y: null}, {x: 0.151589242, y: null}, {x: 0.179171333, y: null}, {x: 0.069127124, y: null}, {x: 0.116481392, y: null}, {x: 0.129323308, y: null}, {x: 0.04685836, y: null}, {x: 0.016800584, y: null}, {x: 0.048023642, y: null}, {x: 0.100680272, y: null}, {x: 0.58206278, y: null}, {x: 0.0, y: null}, {x: 0.085852479, y: null}, {x: 0.15303526, y: null}, {x: 0.524165708, y: null}, {x: 0.325624422, y: null}, {x: 0.123513871, y: null}, {x: 0.0, y: null}, {x: 0.127576602, y: null}, {x: 0.183862434, y: null}, {x: 0.111435726, y: null}, {x: 0.252941177, y: null}, {x: 0.07177814, y: null}, {x: 0.143512451, y: null}, {x: 0.03902439, y: null}, {x: 0.372747253, y: null}, {x: 0.095264938, y: null}, {x: 0.434782609, y: null}, {x: 0.117625093, y: null}, {x: 0.111768185, y: null}, {x: 0.062271062, y: null}, {x: 0.038184438, y: null}, {x: 0.037009063, y: null}, {x: 0.164162178, y: null}, {x: 0.315154994, y: null}, {x: 0.114213198, y: null}, {x: 0.112081514, y: null}, {x: 0.0, y: null}, {x: 0.126518219, y: null}, {x: 0.589641434, y: null}, {x: 0.202255109, y: null}, {x: 0.163157895, y: null}, {x: 0.06900801, y: null}, {x: 0.495283019, y: null}, {x: 0.11902615, y: null}, {x: 0.08789315, y: null}, {x: 0.213245033, y: null}, {x: 0.160091481, y: null}, {x: 0.107175713, y: null}, {x: 0.325405405, y: null}, {x: 0.127067015, y: null}, {x: 0.293577982, y: null}, {x: 0.288843607, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.075313808, y: null}, {x: 0.550359712, y: null}, {x: 0.0, y: null}, {x: 0.118030413, y: null}, {x: 0.179292929, y: null}, {x: 0.079299691, y: null}, {x: 0.239059968, y: null}, {x: 0.114947197, y: null}, {x: 0.102760736, y: null}, {x: 0.153924222, y: null}, {x: 0.017120623, y: null}, {x: 0.116334661, y: null}, {x: 0.365664404, y: null}, {x: 0.156437126, y: null}, {x: 0.025022341, y: null}, {x: 0.269158879, y: null}, {x: 0.622871046, y: null}, {x: 0.217356042, y: null}, {x: 0.289119804, y: null}, {x: 0.437041972, y: null}, {x: 0.625321337, y: null}, {x: 0.210368893, y: null}, {x: 0.367272727, y: null}, {x: 0.289623717, y: null}, {x: 0.403438395, y: null}, {x: 0.094339623, y: null}, {x: 0.176, y: null}, {x: 0.353255426, y: null}, {x: 0.476152623, y: null}, {x: 0.268591772, y: null}, {x: 0.247044917, y: null}, {x: 0.194107452, y: null}, {x: 0.207771182, y: null}, {x: 0.24205379, y: null}, {x: 0.288085359, y: null}, {x: 0.192329708, y: null}, {x: 0.177777778, y: null}, {x: 0.444206009, y: null}, {x: 0.193922431, y: null}, {x: 0.236474695, y: null}, {x: 0.152218996, y: null}, {x: 0.067391304, y: null}, {x: 0.633761106, y: null}, {x: 0.378848728, y: null}, {x: 0.155805978, y: null}, {x: 0.223214286, y: null}, {x: 0.141225733, y: null}, {x: 0.238128987, y: null}, {x: 0.105389222, y: null}, {x: 0.226868793, y: null}, {x: 0.179365079, y: null}, {x: 0.139650873, y: null}, {x: 0.289487312, y: null}, {x: 0.265251989, y: null}, {x: 0.776556777, y: null}, {x: 0.336858006, y: null}, {x: 0.093155894, y: null}, {x: 0.061428571, y: null}, {x: 0.578643579, y: null}, {x: 0.676948052, y: null}, {x: 0.800447177, y: null}, {x: 0.098207327, y: null}, {x: 0.541666667, y: null}, {x: 0.142259414, y: null}, {x: 0.031313131, y: null}, {x: 0.554314721, y: null}, {x: 0.050111359, y: null}, {x: 0.025575448, y: null}, {x: 0.060606061, y: null}, {x: 0.0, y: null}, {x: 0.272820513, y: null}, {x: 0.184559711, y: null}, {x: 0.097065463, y: null}, {x: 0.438481675, y: null}, {x: 0.523618091, y: null}, {x: 0.425742574, y: null}, {x: 0.255975328, y: null}, {x: 0.331612903, y: null}, {x: 0.30228667, y: null}, {x: 0.468108108, y: null}, {x: 0.808575804, y: null}, {x: 0.650214592, y: null}, {x: 0.731553057, y: null}, {x: 0.623893805, y: null}, {x: 0.583061889, y: null}, {x: 0.477015825, y: null}, {x: 0.241610738, y: null}, {x: 0.246464039, y: null}, {x: 0.020792079, y: null}, {x: 0.329139073, y: null}, {x: 0.296934866, y: null}, {x: 0.536317568, y: null}, {x: 0.419132829, y: null}, {x: 0.332554062, y: null}, {x: 0.655139289, y: null}, {x: 0.510978044, y: null}, {x: 0.705842848, y: null}, {x: 0.720833333, y: null}, {x: 0.458333333, y: null}, {x: 0.27124183, y: null}, {x: 0.452717391, y: null}, {x: 0.457732949, y: null}, {x: 0.644927536, y: null}, {x: 0.178466077, y: null}, {x: 0.64235166, y: null}, {x: 0.511641444, y: null}, {x: 0.142367067, y: null}, {x: 0.303030303, y: null}, {x: 0.047302905, y: null}, {x: 0.407783418, y: null}, {x: 0.363344051, y: null}, {x: 0.301818182, y: null}, {x: 0.257738095, y: null}, {x: 0.455690508, y: null}, {x: 0.047013977, y: null}, {x: 0.480806142, y: null}, {x: 0.148148148, y: null}, {x: 0.083032491, y: null}, {x: 0.256652868, y: null}, {x: 0.449941793, y: null}, {x: 0.502857143, y: null}, {x: 0.394893617, y: null}, {x: 0.455964326, y: null}, {x: 0.358895706, y: null}, {x: 0.487179487, y: null}, {x: 0.428381079, y: null}, {x: 0.722955145, y: null}, {x: 0.466138329, y: null}, {x: 0.484363636, y: null}, {x: 0.234217749, y: null}, {x: 0.440431267, y: null}, {x: 0.278461539, y: null}, {x: 0.285258964, y: null}, {x: 0.639753376, y: null}, {x: 0.459951456, y: null}, {x: 0.467357513, y: null}, {x: 0.626714801, y: null}, {x: 0.298892989, y: null}, {x: 0.539954853, y: null}, {x: 0.243928194, y: null}, {x: 0.301120448, y: null}, {x: 0.236024845, y: null}, {x: 0.536796537, y: null}, {x: 0.21187801, y: null}, {x: 0.599023332, y: null}, {x: 0.560414269, y: null}, {x: 0.658061374, y: null}, {x: 0.419966302, y: null}, {x: 0.506322445, y: null}, {x: 0.27308603, y: null}, {x: 0.0, y: null}, {x: 0.211217184, y: null}, {x: 0.088700565, y: null}, {x: 0.434358224, y: null}, {x: 0.246028143, y: null}, {x: 0.213157895, y: null}, {x: 0.235191638, y: null}, {x: 0.432766615, y: null}, {x: 0.432024169, y: null}, {x: 0.174089069, y: null}, {x: 0.43256579, y: null}, {x: 0.267912773, y: null}, {x: 0.638860631, y: null}, {x: 0.125090383, y: null}, {x: 0.328007519, y: null}, {x: 0.268500949, y: null}, {x: 0.451703407, y: null}, {x: 0.228358209, y: null}, {x: 0.272848566, y: null}, {x: 0.163146067, y: null}, {x: 0.196129032, y: null}, {x: 0.350411132, y: null}, {x: 0.321415803, y: null}, {x: 0.194068343, y: null}, {x: 0.404568902, y: null}, {x: 0.170212766, y: null}, {x: 0.346330275, y: null}, {x: 0.706701031, y: null}, {x: 0.534646739, y: null}, {x: 0.744510978, y: null}, {x: 0.745925616, y: null}, {x: 0.715239155, y: null}, {x: 0.638457687, y: null}, {x: 0.605493134, y: null}, {x: 0.762241292, y: null}, {x: 0.731707317, y: null}, {x: 0.0, y: null}, {x: 0.735701906, y: null}, {x: 0.842105263, y: null}, {x: 0.851461428, y: null}, {x: 0.854760461, y: null}, {x: 0.700987306, y: null}, {x: 0.809554551, y: null}, {x: 0.542168675, y: null}, {x: 0.70011534, y: null}, {x: 0.630434783, y: null}, {x: 0.703597122, y: null}, {x: 0.477761119, y: null}, {x: 0.084656085, y: null}, {x: 0.218037661, y: null}, {x: 0.31827957, y: null}, {x: 0.200140449, y: null}, {x: 0.089765101, y: null}, {x: 0.321628093, y: null}, {x: 0.327291037, y: null}, {x: 0.152145644, y: null}, {x: 0.036794767, y: null}, {x: 0.13676976, y: null}, {x: 0.151361329, y: null}, {x: 0.100806452, y: null}, {x: 0.405745063, y: null}, {x: 0.107708553, y: null}, {x: 0.070974576, y: null}, {x: 0.038854806, y: null}, {x: 0.408336277, y: null}, {x: 0.201072386, y: null}, {x: 0.175342466, y: null}, {x: 0.263991552, y: null}, {x: 0.134215501, y: null}, {x: 0.141125541, y: null}, {x: 0.493091949, y: null}, {x: 0.169693175, y: null}, {x: 0.151515152, y: null}, {x: 0.12715713, y: null}, {x: 0.238372093, y: null}, {x: 0.211703959, y: null}, {x: 0.182995496, y: null}, {x: 0.090909091, y: null}, {x: 0.232673267, y: null}, {x: 0.106060606, y: null}, {x: 0.208279431, y: null}, {x: 0.343478261, y: null}, {x: 0.258687259, y: null}, {x: 0.065675341, y: null}, {x: 0.322373697, y: null}, {x: 0.123758594, y: null}, {x: 0.288623285, y: null}, {x: 0.073569482, y: null}, {x: 0.118829982, y: null}, {x: 0.149234694, y: null}, {x: 0.15250291, y: null}, {x: 0.060626703, y: null}, {x: 0.092255125, y: null}, {x: 0.448385389, y: null}, {x: 0.196416722, y: null}, {x: 0.132716049, y: null}, {x: 0.227699531, y: null}, {x: 0.069767442, y: null}, {x: 0.094230769, y: null}, {x: 0.017931034, y: null}, {x: 0.075027996, y: null}, {x: 0.136291601, y: null}, {x: 0.089648799, y: null}, {x: 0.069212411, y: null}, {x: 0.094409938, y: null}, {x: 0.025657071, y: null}, {x: 0.060321716, y: null}, {x: 0.0590743, y: null}, {x: 0.267729084, y: null}, {x: 0.083010904, y: null}, {x: 0.075286416, y: null}, {x: 0.085882984, y: null}, {x: 0.208118081, y: null}, {x: 0.085723816, y: null}, {x: 0.064118896, y: null}, {x: 0.109077599, y: null}, {x: 0.091924399, y: null}, {x: 0.043564356, y: null}, {x: 0.087671233, y: null}, {x: 0.164005806, y: null}, {x: 0.173177843, y: null}, {x: 0.053217822, y: null}, {x: 0.088706366, y: null}, {x: 0.137301587, y: null}, {x: 0.069672131, y: null}, {x: 0.206932052, y: null}, {x: 0.310514541, y: null}, {x: 0.08650519, y: null}, {x: 0.110561056, y: null}, {x: 0.22125182, y: null}, {x: 0.132335329, y: null}, {x: 0.057953144, y: null}, {x: 0.043621943, y: null}, {x: 0.076346604, y: null}, {x: 0.138438881, y: null}, {x: 0.419213974, y: null}, {x: 0.046464646, y: null}, {x: 0.0, y: null}, {x: 0.079030558, y: null}, {x: 0.263785395, y: null}, {x: 0.061058924, y: null}, {x: 0.207207207, y: null}, {x: 0.0, y: null}, {x: 0.241537054, y: null}, {x: 0.160781367, y: null}, {x: 0.053030303, y: null}, {x: 0.364100926, y: null}, {x: 0.380126183, y: null}, {x: 0.239409805, y: null}, {x: 0.319026549, y: null}, {x: 0.350312779, y: null}, {x: 0.225237449, y: null}, {x: 0.448918269, y: null}, {x: 0.508521601, y: null}, {x: 0.479357798, y: null}, {x: 0.3224149, y: null}, {x: 0.24432105, y: null}, {x: 0.533035714, y: null}, {x: 0.0, y: null}, {x: 0.637288136, y: null}, {x: 0.26092233, y: null}, {x: 0.306257521, y: null}, {x: 0.319186561, y: null}, {x: 0.195939982, y: null}, {x: 0.299299668, y: null}, {x: 0.262352941, y: null}, {x: 0.25443787, y: null}, {x: 0.328278999, y: null}, {x: 0.205414013, y: null}, {x: 0.288444831, y: null}, {x: 0.286445013, y: null}, {x: 0.070126227, y: null}, {x: 0.216596343, y: null}, {x: 0.382257012, y: null}, {x: 0.26707132, y: null}, {x: 0.0, y: null}, {x: 0.066487576, y: 3617.0713}, {x: 0.115537849, y: null}, {x: 0.041635688, y: null}, {x: 0.080174927, y: null}, {x: 0.01407212, y: null}, {x: 0.011082694, y: null}, {x: 0.014285714, y: null}, {x: 0.067328918, y: null}, {x: 0.01787234, y: null}, {x: 0.122308355, y: null}, {x: 0.043723554, y: null}, {x: 0.016129032, y: null}, {x: 0.0, y: null}, {x: 0.115507049, y: null}, {x: 0.04434907, y: null}, {x: 0.095505618, y: null}, {x: 0.0, y: null}, {x: 0.026545808, y: null}, {x: 0.0, y: null}, {x: 0.114595211, y: null}, {x: 0.106827025, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.168466523, y: null}, {x: 0.224159402, y: null}, {x: 0.010598504, y: null}, {x: 0.188047809, y: null}, {x: 0.027922385, y: null}, {x: 0.171848502, y: 21.541675}, {x: 0.193248945, y: null}, {x: 0.0, y: null}, {x: 0.116096866, y: null}, {x: 0.205895901, y: null}, {x: 0.0, y: null}, {x: 0.039182993, y: null}, {x: 0.011422045, y: null}, {x: 0.015063731, y: null}, {x: 0.0, y: null}, {x: 0.031298905, y: null}, {x: 0.067066521, y: null}, {x: 0.0, y: null}, {x: 0.136803874, y: null}, {x: 0.090263268, y: null}, {x: 0.090269151, y: null}, {x: 0.071390231, y: null}, {x: 0.075892857, y: null}, {x: 0.061668682, y: null}, {x: 0.025142857, y: null}, {x: 0.147532729, y: null}, {x: 0.058736059, y: null}, {x: 0.234347048, y: null}, {x: 0.019691325, y: null}, {x: 0.042836041, y: null}, {x: 0.054054054, y: null}, {x: 0.128456221, y: null}, {x: 0.04283054, y: null}, {x: 0.0, y: null}, {x: 0.011235955, y: null}, {x: 0.076626506, y: null}, {x: 0.0, y: null}, {x: 0.154471545, y: null}, {x: 0.04835924, y: null}, {x: 0.211058665, y: null}, {x: 0.000751315, y: null}, {x: 0.0, y: 0.021042}, {x: 0.01244168, y: null}, {x: 0.015780731, y: null}, {x: 0.003205128, y: null}, {x: 0.041433371, y: null}, {x: 0.136166522, y: null}, {x: 0.060869565, y: null}, {x: 0.122555411, y: null}, {x: 0.031631919, y: null}, {x: 0.13753988, y: null}, {x: 0.020641356, y: null}, {x: 0.030268418, y: null}, {x: 0.028318584, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.055288462, y: null}, {x: 0.0, y: null}, {x: 0.023419204, y: null}, {x: 0.061333333, y: null}, {x: 0.056431535, y: null}, {x: 0.012683578, y: null}, {x: 0.100056211, y: null}, {x: 0.041463415, y: null}, {x: 0.067366579, y: null}, {x: 0.004819277, y: null}, {x: 0.020833333, y: null}, {x: 0.024445708, y: null}, {x: 0.014472777, y: null}, {x: 0.046162403, y: null}, {x: 0.00273224, y: null}, {x: 0.029723992, y: null}, {x: 0.099346405, y: null}, {x: 0.112621359, y: null}, {x: 0.090563429, y: null}, {x: 0.0, y: null}, {x: 0.089023773, y: null}, {x: 0.004582485, y: null}, {x: 0.035049288, y: null}, {x: 0.058823529, y: null}, {x: 0.003511236, y: null}, {x: 0.057321773, y: null}, {x: 0.080176211, y: null}, {x: 0.033033033, y: null}, {x: 0.098484848, y: null}, {x: 0.10243701, y: null}, {x: 0.00933553, y: null}, {x: 0.0, y: null}, {x: 0.096503497, y: null}, {x: 0.079427726, y: null}, {x: 0.076479076, y: null}, {x: 0.491942324, y: null}, {x: 0.398843931, y: null}, {x: 0.319482918, y: null}, {x: 0.776713338, y: null}, {x: 0.502976191, y: null}, {x: 0.549869905, y: null}, {x: 0.84375, y: null}, {x: 0.741132076, y: null}, {x: 0.851528384, y: null}, {x: 0.848380427, y: null}, {x: 0.901129944, y: null}, {x: 0.797481637, y: null}, {x: 0.910585817, y: null}, {x: 0.904982619, y: null}, {x: 0.668621701, y: null}, {x: 0.795454546, y: null}, {x: 0.624051372, y: null}, {x: 0.853749418, y: null}, {x: 0.783849918, y: null}, {x: 0.484526967, y: null}, {x: 0.789579158, y: null}, {x: 0.809848485, y: null}, {x: 0.761339551, y: null}, {x: 0.731147541, y: null}, {x: 0.478682171, y: null}, {x: 0.19012605, y: null}, {x: 0.552168022, y: null}, {x: 0.657407407, y: null}, {x: 0.464079273, y: null}, {x: 0.331395349, y: null}, {x: 0.721046077, y: null}, {x: 0.621012101, y: null}, {x: 0.978417266, y: null}, {x: 0.851948052, y: null}, {x: 0.786802031, y: null}, {x: 0.976299376, y: null}, {x: 0.993265993, y: null}, {x: 0.879605827, y: null}, {x: 0.867587327, y: null}, {x: 0.611304348, y: null}, {x: 0.784980745, y: null}, {x: 0.832241153, y: null}, {x: 0.605659026, y: null}, {x: 0.391104295, y: null}, {x: 0.544887781, y: null}, {x: 0.579019541, y: null}, {x: 0.6493756, y: null}, {x: 0.854868341, y: null}, {x: 0.792165749, y: null}, {x: 0.619640387, y: null}, {x: 0.848758465, y: null}, {x: 0.482758621, y: null}, {x: 0.844183565, y: null}, {x: 0.652783867, y: null}, {x: 0.805350554, y: null}, {x: 0.858851675, y: null}, {x: 0.924479167, y: null}, {x: 0.961275626, y: null}, {x: 0.985457656, y: null}, {x: 0.949265688, y: null}, {x: 0.922929936, y: null}, {x: 0.871024735, y: null}, {x: 0.871236684, y: null}, {x: 1.0, y: null}, {x: 0.561518325, y: null}, {x: 0.309341501, y: null}, {x: 0.708148148, y: null}, {x: 0.692118227, y: null}, {x: 0.671621622, y: null}, {x: 0.328690808, y: null}, {x: 0.669160432, y: null}, {x: 0.618478944, y: null}, {x: 0.464380826, y: null}, {x: 0.142857143, y: null}, {x: 0.25798212, y: null}, {x: 0.182625483, y: null}, {x: 0.070806732, y: null}, {x: 0.299707602, y: null}, {x: 0.285714286, y: null}, {x: 0.105164904, y: null}, {x: 0.255273121, y: null}, {x: 0.111969112, y: null}, {x: 0.033960293, y: null}, {x: 0.071979434, y: null}, {x: 0.10403397, y: null}, {x: 0.119521912, y: null}, {x: 0.131091284, y: null}, {x: 0.070151921, y: null}, {x: 0.07823741, y: null}, {x: 0.061776062, y: null}, {x: 0.072761194, y: null}, {x: 0.032214765, y: null}, {x: 0.107628004, y: null}, {x: 0.099062134, y: null}, {x: 0.039408867, y: null}, {x: 0.084408602, y: null}, {x: 0.208797032, y: null}, {x: 0.0, y: null}, {x: 0.114045159, y: null}, {x: 0.231069477, y: null}, {x: 0.028325123, y: null}, {x: 0.110132159, y: null}, {x: 0.060983199, y: null}, {x: 0.090592334, y: null}, {x: 0.020075758, y: null}, {x: 0.197417967, y: null}, {x: 0.218104817, y: null}, {x: 0.11627907, y: null}, {x: 0.034393809, y: null}, {x: 0.044551062, y: null}, {x: 0.247531271, y: null}, {x: 0.041696113, y: null}, {x: 0.03030303, y: null}, {x: 0.126549964, y: null}, {x: 0.094280608, y: null}, {x: 0.04178273, y: null}, {x: 0.06168446, y: null}, {x: 0.082235785, y: null}, {x: 0.062121212, y: null}, {x: 0.164795689, y: null}, {x: 0.194368132, y: null}, {x: 0.052581715, y: null}, {x: 0.461538462, y: null}, {x: 0.02002584, y: null}, {x: 0.0, y: null}, {x: 0.018734388, y: null}, {x: 0.098822325, y: null}, {x: 0.107617896, y: null}, {x: 0.160372732, y: null}, {x: 0.114635252, y: null}, {x: 0.152927121, y: null}, {x: 0.109589041, y: null}, {x: 0.232016211, y: null}, {x: 0.058823529, y: null}, {x: 0.0, y: null}, {x: 0.091782284, y: null}, {x: 0.146581197, y: null}, {x: 0.020706456, y: null}, {x: 0.000971817, y: null}, {x: 0.027093596, y: null}, {x: 0.129917658, y: null}, {x: 0.131410256, y: null}, {x: 0.104056437, y: null}, {x: 0.031123139, y: null}, {x: 0.039660057, y: null}, {x: 0.076732673, y: null}, {x: 0.031585597, y: null}, {x: 0.291970803, y: null}, {x: 0.000660502, y: null}, {x: 0.011011011, y: null}, {x: 0.012298558, y: null}, {x: 0.062390543, y: null}, {x: 0.001129944, y: null}, {x: 0.428134557, y: null}, {x: 0.157817109, y: null}, {x: 0.025700935, y: null}, {x: 0.088181818, y: null}, {x: 0.07860262, y: null}, {x: 0.024965956, y: null}, {x: 0.076994867, y: null}, {x: 0.060514372, y: null}, {x: 0.190140845, y: null}, {x: 0.006815366, y: null}, {x: 0.049686848, y: null}, {x: 0.340220386, y: null}, {x: 0.0, y: null}, {x: 0.157366771, y: null}, {x: 0.093249428, y: null}, {x: 0.062756817, y: null}, {x: 0.08699187, y: null}, {x: 0.017415215, y: null}, {x: 0.012691466, y: null}, {x: 0.02600104, y: null}, {x: 0.021117166, y: null}, {x: 0.100055586, y: null}, {x: 0.094315656, y: null}, {x: 0.066437008, y: null}, {x: 0.083569405, y: null}, {x: 0.100716561, y: null}, {x: 0.202319072, y: null}, {x: 0.153669725, y: null}, {x: 0.038064516, y: null}, {x: 0.095583787, y: null}, {x: 0.016042781, y: null}, {x: 0.018318966, y: null}, {x: 0.259567388, y: null}, {x: 0.070686071, y: null}, {x: 0.053818182, y: null}, {x: 0.039195637, y: null}, {x: 0.152311877, y: null}, {x: 0.061298077, y: null}, {x: 0.065064478, y: null}, {x: 0.059433962, y: null}, {x: 0.069084629, y: null}, {x: 0.02417962, y: null}, {x: 0.127639156, y: null}, {x: 0.130653266, y: null}, {x: 0.252906977, y: null}, {x: 0.037284895, y: null}, {x: 0.271126761, y: null}, {x: 0.04446461, y: null}, {x: 0.438220758, y: null}, {x: 0.224897541, y: null}, {x: 0.074432093, y: null}, {x: 0.236148956, y: null}, {x: 0.398945519, y: null}, {x: 0.211764706, y: null}, {x: 0.015025042, y: null}, {x: 0.076526225, y: null}, {x: 0.104130809, y: null}, {x: 0.087035358, y: null}, {x: 0.039270687, y: null}, {x: 0.026011561, y: null}, {x: 0.049031477, y: null}, {x: 0.024727992, y: null}, {x: 0.530139104, y: null}, {x: 0.04389313, y: null}, {x: 0.010638298, y: null}, {x: 0.032840723, y: null}, {x: 0.031652989, y: null}, {x: 0.09512761, y: null}, {x: 0.142121524, y: null}, {x: 0.0, y: null}, {x: 0.241830065, y: null}, {x: 0.451451452, y: null}, {x: 0.054270882, y: null}, {x: 0.148351648, y: null}, {x: 0.180206795, y: null}, {x: 0.428433735, y: null}, {x: 0.254112706, y: null}, {x: 0.0, y: null}, {x: 0.436298077, y: null}, {x: 0.147177419, y: null}, {x: 0.556331878, y: null}, {x: 0.434986334, y: null}, {x: 0.62111293, y: null}, {x: 0.233716475, y: null}, {x: 0.292682927, y: null}, {x: 0.327024185, y: null}, {x: 0.431118314, y: null}, {x: 0.302603037, y: null}, {x: 0.497847358, y: null}, {x: 0.317375887, y: null}, {x: 0.230225989, y: null}, {x: 0.254545455, y: null}, {x: 0.576712329, y: null}, {x: 0.271746945, y: null}, {x: 0.45505618, y: null}, {x: 0.319502075, y: null}, {x: 0.296660118, y: null}, {x: 0.430868167, y: null}, {x: 0.389933628, y: null}, {x: 0.332575758, y: null}, {x: 0.247718383, y: null}, {x: 0.37260592, y: null}, {x: 0.337327189, y: null}, {x: 0.28358209, y: null}, {x: 0.374579125, y: null}, {x: 0.206666667, y: null}, {x: 0.182298547, y: null}, {x: 0.238975818, y: null}, {x: 0.484057971, y: null}, {x: 0.516728625, y: null}, {x: 0.291262136, y: null}, {x: 0.317335945, y: null}, {x: 0.322939866, y: null}, {x: 0.327349525, y: null}, {x: 0.406193078, y: null}, {x: 0.378563284, y: null}, {x: 0.183486239, y: null}, {x: 0.824340528, y: null}, {x: 0.453324379, y: null}, {x: 0.362804878, y: null}, {x: 0.425986842, y: null}, {x: 0.425774878, y: null}, {x: 0.354102406, y: null}, {x: 0.288625904, y: null}, {x: 0.576019778, y: null}, {x: 0.331848552, y: null}, {x: 0.576506955, y: null}, {x: 0.394610202, y: null}, {x: 0.306148055, y: null}, {x: 0.795580111, y: null}, {x: 0.537383178, y: null}, {x: 0.371278459, y: null}, {x: 0.440585009, y: null}, {x: 0.647199047, y: null}, {x: 0.536860364, y: null}, {x: 0.551282051, y: null}, {x: 0.468823994, y: null}, {x: 0.0, y: null}, {x: 0.425758819, y: null}, {x: 0.61423651, y: null}, {x: 0.47319933, y: null}, {x: 0.360818351, y: null}, {x: 0.31202046, y: null}, {x: 0.40386016, y: null}, {x: 0.332650972, y: null}, {x: 0.344453711, y: null}, {x: 0.335353535, y: null}, {x: 0.40886076, y: null}, {x: 0.625598086, y: null}, {x: 0.323529412, y: null}, {x: 0.429442509, y: null}, {x: 0.764770241, y: null}, {x: 0.481530343, y: null}, {x: 0.342256214, y: null}, {x: 0.304247104, y: null}, {x: 0.317724933, y: null}, {x: 0.621507197, y: null}, {x: 0.432989691, y: null}, {x: 0.282258065, y: null}, {x: 0.489719626, y: null}, {x: 0.410749834, y: null}, {x: 0.577118644, y: null}, {x: 0.278816199, y: null}, {x: 0.408577878, y: null}, {x: 0.529881995, y: null}, {x: 0.630111524, y: null}, {x: 0.388148148, y: null}, {x: 0.373713381, y: null}, {x: 0.660633484, y: null}, {x: 0.609332113, y: null}, {x: 0.188295165, y: null}, {x: 0.418831169, y: null}, {x: 0.444444444, y: null}, {x: 0.335466179, y: null}, {x: 0.175656985, y: null}, {x: 0.110909091, y: null}, {x: 0.311409396, y: null}, {x: 0.141258741, y: null}, {x: 0.120588235, y: null}, {x: 0.339648173, y: null}, {x: 0.167492567, y: null}, {x: 0.17802645, y: null}, {x: 0.161595673, y: null}, {x: 0.167664671, y: null}, {x: 0.227202473, y: null}, {x: 0.081447964, y: null}, {x: 0.145405888, y: null}, {x: 0.151515152, y: null}, {x: 0.091139241, y: null}, {x: 0.24270073, y: null}, {x: 0.144736842, y: null}, {x: 0.052714398, y: null}, {x: 0.363675958, y: null}, {x: 0.21564482, y: null}, {x: 0.290950745, y: null}, {x: 0.341207349, y: null}, {x: 0.566775244, y: null}, {x: 0.2477842, y: null}, {x: 0.25111309, y: null}, {x: 0.126646403, y: null}, {x: 0.213203463, y: null}, {x: 0.124174373, y: null}, {x: 0.121562952, y: null}, {x: 0.06097561, y: null}, {x: 0.326802835, y: null}, {x: 0.131782946, y: null}, {x: 0.109284333, y: null}, {x: 0.248421053, y: null}, {x: 0.052206339, y: null}, {x: 0.098901099, y: 7.2}, {x: 0.119533528, y: null}, {x: 0.170608108, y: null}, {x: 0.1875, y: null}, {x: 0.193760263, y: null}, {x: 0.832089552, y: null}, {x: 0.192271442, y: null}, {x: 0.881118881, y: null}, {x: 0.129524887, y: null}, {x: 0.022099448, y: null}, {x: 0.159090909, y: null}, {x: 0.0, y: null}, {x: 0.295384615, y: null}, {x: 0.105643994, y: 766.04}, {x: 0.294324166, y: 273.784}, {x: 0.099509804, y: null}, {x: 0.974358974, y: null}, {x: 0.920913884, y: null}, {x: 0.089480048, y: 2.5375}, {x: 0.804804805, y: null}, {x: 0.770975057, y: 0.473}, {x: 0.524307692, y: null}, {x: 0.817708333, y: null}, {x: 0.662735849, y: null}, {x: 0.534988713, y: null}, {x: 0.737089202, y: null}, {x: 0.484450587, y: 3.82795}, {x: 0.885714286, y: null}, {x: 0.62562396, y: null}, {x: 0.755060729, y: null}, {x: 0.497790055, y: null}, {x: 0.710113339, y: null}, {x: 0.0, y: null}, {x: 0.762780012, y: null}, {x: 0.566579635, y: null}, {x: 0.878341517, y: null}, {x: 0.726735598, y: null}, {x: 0.755205402, y: null}, {x: 0.862957938, y: null}, {x: 0.633333333, y: null}, {x: 0.731067961, y: 0.17529}, {x: 0.668428005, y: null}, {x: 0.570669501, y: null}, {x: 0.481553398, y: null}, {x: 0.559139785, y: null}, {x: 0.556708673, y: null}, {x: 0.293277311, y: null}, {x: 0.728453365, y: null}, {x: 0.491496599, y: 16.942}, {x: 0.398455599, y: null}, {x: 0.310460251, y: null}, {x: 0.047406082, y: null}, {x: 0.012482663, y: null}, {x: 0.06820365, y: null}, {x: 0.058823529, y: null}, {x: 0.036275695, y: null}, {x: 0.098478066, y: null}, {x: 0.141903172, y: null}, {x: 0.0, y: null}, {x: 0.038062284, y: null}, {x: 0.018664752, y: null}, {x: 0.003933137, y: null}, {x: 0.0, y: null}, {x: 0.045992116, y: null}, {x: 0.22675737, y: null}, {x: 0.120762712, y: null}, {x: 0.128514056, y: null}, {x: 0.391908976, y: null}, {x: 0.143407122, y: null}, {x: 0.288095238, y: null}, {x: 0.351945855, y: null}, {x: 0.18487395, y: null}, {x: 0.104551046, y: null}, {x: 0.171851852, y: null}, {x: 0.29661017, y: null}, {x: 0.888888889, y: null}, {x: 0.90530303, y: null}, {x: 0.029115342, y: null}, {x: 0.12312812, y: null}, {x: 0.28343667, y: null}, {x: 0.131437356, y: null}, {x: 0.07436919, y: null}, {x: 0.71656051, y: null}, {x: 0.605143722, y: null}, {x: 0.448079659, y: null}, {x: 0.822801303, y: null}, {x: 0.147282291, y: null}, {x: 0.0, y: null}, {x: 0.244525547, y: null}, {x: 0.126931567, y: null}, {x: 0.765264586, y: null}, {x: 0.411953042, y: null}, {x: 0.0625, y: null}, {x: 0.642748092, y: null}, {x: 0.259958071, y: null}, {x: 0.210643016, y: null}, {x: 0.372171946, y: null}, {x: 1.0, y: null}, {x: 0.320119671, y: null}, {x: 0.756920999, y: null}, {x: 1.0, y: null}, {x: 0.315023164, y: null}, {x: 0.270172258, y: null}, {x: 0.224815725, y: null}, {x: 0.068907563, y: null}, {x: 0.522633745, y: null}, {x: 0.314629259, y: 180.08110000000002}, {x: 0.923857868, y: null}, {x: 0.221774194, y: null}, {x: 0.367239102, y: null}, {x: 0.386010363, y: null}, {x: 0.844854674, y: null}, {x: 0.21399177, y: null}, {x: 0.315594974, y: null}, {x: 0.541598695, y: null}, {x: 0.376772451, y: null}, {x: 0.193430657, y: null}, {x: 0.389344262, y: null}, {x: 0.224582701, y: null}, {x: 0.777003484, y: null}, {x: 0.44488978, y: null}, {x: 0.33748702, y: null}, {x: 0.300083126, y: null}, {x: 0.737172775, y: null}, {x: 0.516766982, y: null}, {x: 0.430693069, y: null}, {x: 0.246899662, y: null}, {x: 0.427958834, y: null}, {x: 0.330396476, y: null}, {x: 0.975853946, y: null}, {x: 0.724309392, y: null}, {x: 0.821090047, y: null}, {x: 0.819124424, y: null}, {x: 0.899148658, y: null}, {x: 0.867975626, y: null}, {x: 1.0, y: null}, {x: 0.79163034, y: null}, {x: 0.993857494, y: null}, {x: 0.598896044, y: null}, {x: 1.0, y: null}, {x: 0.896551724, y: null}, {x: 0.599669422, y: null}, {x: 0.96039604, y: null}, {x: 0.494479495, y: null}, {x: 0.318411552, y: null}, {x: 0.261329305, y: null}, {x: 0.358070501, y: null}, {x: 0.425316456, y: null}, {x: 0.840485075, y: null}, {x: 0.770919067, y: null}, {x: 0.690140845, y: null}, {x: 0.429850746, y: null}, {x: 0.462167689, y: null}, {x: 0.634565778, y: null}, {x: 0.474806202, y: null}, {x: 0.669588081, y: null}, {x: 0.97705803, y: null}, {x: 1.0, y: null}, {x: 0.693979933, y: null}, {x: 0.957512953, y: null}, {x: 0.937823834, y: null}, {x: 0.844132029, y: null}, {x: 0.544991511, y: null}, {x: 0.590147783, y: null}, {x: 0.774659182, y: null}, {x: 0.401937046, y: null}, {x: 0.83006536, y: null}, {x: 0.90625, y: null}, {x: 0.98509687, y: null}, {x: 0.934607646, y: null}, {x: 0.947420635, y: null}, {x: 0.936672968, y: null}, {x: 1.0, y: null}, {x: 0.910276074, y: null}, {x: 0.973387097, y: null}, {x: 0.914236707, y: null}, {x: 0.97542735, y: null}, {x: 0.957678356, y: null}, {x: 0.853249476, y: null}, {x: 0.962488564, y: null}, {x: 0.903369358, y: null}, {x: 0.994747899, y: null}, {x: 0.975, y: null}, {x: 0.822168088, y: null}, {x: 0.959434822, y: null}, {x: 0.798618684, y: null}, {x: 0.859937402, y: null}, {x: 0.978483607, y: null}, {x: 0.985623003, y: null}, {x: 1.0, y: null}, {x: 0.843520782, y: null}, {x: 0.913366337, y: null}, {x: 0.92920354, y: null}, {x: 1.0, y: null}, {x: 0.957605985, y: null}, {x: 0.933854908, y: null}, {x: 0.982142857, y: null}, {x: 0.95256167, y: null}, {x: 0.98359375, y: null}, {x: 0.961248655, y: null}, {x: 0.898911353, y: null}, {x: 0.899676375, y: null}, {x: 0.927583937, y: null}, {x: 0.3, y: null}, {x: 0.206896552, y: null}, {x: 0.361506276, y: null}, {x: 0.38247012, y: null}, {x: 0.893382353, y: null}, {x: 0.579943899, y: null}, {x: 0.887921654, y: null}, {x: 0.419287212, y: null}, {x: 0.325657895, y: null}, {x: 0.269982238, y: null}, {x: 0.559545183, y: null}, {x: 0.216145833, y: null}, {x: 0.658682635, y: null}, {x: 0.705970149, y: null}, {x: 0.54945055, y: null}, {x: 0.697727273, y: null}, {x: 0.524806202, y: null}, {x: 0.793456033, y: null}, {x: 0.835274542, y: null}, {x: 0.98498749, y: null}, {x: 0.913072329, y: null}, {x: 0.939973615, y: null}, {x: 0.690938511, y: null}, {x: 0.955284553, y: null}, {x: 1.0, y: null}, {x: 0.904261206, y: null}, {x: 0.801587302, y: null}, {x: 0.630094044, y: null}, {x: 0.942454492, y: null}, {x: 0.974842767, y: null}, {x: 1.0, y: null}, {x: 0.946666667, y: null}, {x: 0.988717949, y: null}, {x: 0.89332004, y: null}, {x: 1.0, y: null}, {x: 0.88372093, y: null}, {x: 0.994126285, y: null}, {x: 0.95996732, y: null}, {x: 0.925461741, y: null}, {x: 0.865158371, y: null}, {x: 0.935275081, y: null}, {x: 0.988372093, y: null}, {x: 0.711286089, y: null}, {x: 0.954587581, y: null}, {x: 0.129783694, y: null}, {x: 0.8126294, y: null}, {x: 0.746190684, y: null}, {x: 0.768374165, y: null}, {x: 0.536231884, y: null}, {x: 0.887840671, y: null}, {x: 0.823708207, y: null}, {x: 0.989473684, y: null}, {x: 0.813333333, y: null}, {x: 0.954044118, y: null}, {x: 0.989690722, y: null}, {x: 1.0, y: null}, {x: 0.962962963, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.99339498, y: null}, {x: 0.953519256, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.936858721, y: null}, {x: 0.970588235, y: null}, {x: 0.990749306, y: null}, {x: 1.0, y: null}, {x: 0.964849354, y: null}, {x: 0.977808599, y: null}, {x: 1.0, y: null}, {x: 0.955991875, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.958022388, y: null}, {x: 0.858044164, y: null}, {x: 0.743494424, y: null}, {x: 0.921363953, y: null}, {x: 0.954173486, y: null}, {x: 0.760252366, y: null}, {x: 0.578364566, y: null}, {x: 0.738947368, y: null}, {x: 0.921259843, y: null}, {x: 0.971919771, y: null}, {x: 0.561359867, y: null}, {x: 0.516802906, y: null}, {x: 0.537148594, y: null}, {x: 0.618548049, y: null}, {x: 0.225868726, y: null}, {x: 0.101364522, y: null}, {x: 0.117318436, y: null}, {x: 0.266554904, y: null}, {x: 0.05338809, y: null}, {x: 0.163829787, y: null}, {x: 0.012658228, y: null}, {x: 0.355844156, y: null}, {x: 0.459930314, y: null}, {x: 0.370437956, y: null}, {x: 0.464351006, y: null}, {x: 0.405940594, y: null}, {x: 0.515625, y: null}, {x: 0.740243902, y: null}, {x: 0.75631769, y: null}, {x: 0.864098837, y: null}, {x: 0.806288602, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 1.0, y: null}, {x: 0.979397781, y: null}, {x: 1.0, y: null}, {x: 0.987179487, y: null}, {x: 0.977321049, y: null}, {x: 0.981017192, y: null}, {x: 0.963066854, y: null}, {x: 0.981376518, y: null}, {x: 0.981868132, y: null}, {x: 0.850109409, y: null}, {x: 1.0, y: null}, {x: 0.988310929, y: null}, {x: 1.0, y: null}, {x: 0.961802903, y: null}, {x: 0.56514658, y: null}, {x: 0.939329051, y: null}, {x: 0.341866877, y: null}, {x: 0.607954546, y: null}, {x: 0.128, y: null}, {x: 0.870377288, y: null}, {x: 0.798758865, y: null}, {x: 0.389911384, y: null}, {x: 0.830703013, y: null}, {x: 0.443678161, y: null}, {x: 0.83125, y: null}, {x: 0.385527877, y: null}, {x: 0.509274874, y: null}, {x: 0.379495027, y: null}, {x: 0.365561694, y: null}, {x: 0.126103405, y: null}, {x: 0.209809264, y: null}, {x: 0.209937888, y: null}, {x: 0.491907108, y: null}, {x: 0.4296741, y: null}, {x: 0.498538012, y: null}, {x: 0.167065582, y: null}, {x: 0.191530318, y: null}, {x: 0.268913858, y: null}, {x: 0.159127195, y: null}, {x: 0.36949783, y: null}, {x: 0.091051805, y: null}, {x: 0.162550259, y: null}, {x: 0.295734597, y: null}, {x: 0.317002882, y: null}, {x: 0.270323213, y: null}, {x: 0.177142857, y: null}, {x: 0.163375224, y: null}, {x: 0.557163531, y: null}, {x: 0.551538837, y: null}, {x: 0.437726723, y: null}, {x: 0.626188735, y: null}, {x: 0.718019257, y: null}, {x: 0.506273063, y: null}, {x: 0.477842004, y: null}, {x: 0.298634812, y: null}, {x: 0.455544456, y: null}, {x: 0.171648988, y: null}, {x: 0.216971545, y: null}, {x: 0.250426864, y: null}, {x: 0.452222222, y: null}, {x: 0.409930716, y: null}, {x: 0.721615721, y: null}, {x: 0.42962963, y: null}, {x: 0.227848101, y: null}, {x: 0.405535499, y: null}, {x: 0.398365679, y: null}, {x: 0.344234079, y: null}, {x: 0.41503268, y: null}, {x: 0.251824818, y: null}, {x: 0.040609137, y: null}, {x: 0.072625698, y: null}, {x: 0.434724092, y: null}, {x: 0.206680585, y: null}, {x: 0.185421995, y: null}, {x: 0.366317793, y: null}, {x: 0.191176471, y: null}, {x: 0.015325671, y: null}, {x: 0.209486166, y: null}, {x: 0.125948407, y: null}, {x: 0.167553192, y: null}, {x: 0.079107505, y: null}, {x: 0.302295918, y: null}, {x: 0.151552795, y: null}, {x: 0.313708999, y: null}, {x: 0.460260116, y: null}, {x: 0.259026688, y: null}, {x: 0.264691598, y: null}, {x: 0.582743363, y: null}, {x: 0.232186732, y: null}, {x: 0.959863946, y: null}, {x: 0.541843425, y: null}, {x: 0.418699187, y: null}, {x: 0.882226981, y: null}, {x: 0.593684211, y: null}, {x: 0.383096367, y: null}, {x: 0.776843467, y: null}, {x: 0.596029777, y: null}, {x: 0.928838951, y: null}, {x: 0.747878788, y: null}, {x: 0.948790896, y: null}, {x: 0.689948893, y: null}, {x: 0.703241895, y: null}, {x: 0.772727273, y: null}, {x: 0.41819464, y: null}, {x: 0.603074141, y: null}, {x: 0.89, y: null}, {x: 0.469309463, y: null}, {x: 0.589952769, y: null}, {x: 0.449929478, y: null}, {x: 0.979653353, y: null}, {x: 0.777310924, y: null}, {x: 0.878103838, y: null}, {x: 0.809756098, y: null}, {x: 0.921372032, y: null}, {x: 0.989100817, y: null}, {x: 0.971918877, y: null}, {x: 1.0, y: null}, {x: 0.991647684, y: null}, {x: 1.0, y: null}, {x: 0.982857143, y: null}, {x: 0.976762505, y: null}, {x: 0.645517241, y: null}, {x: 0.817280453, y: null}, {x: 0.987250996, y: null}, {x: 0.932067202, y: null}, {x: 0.815899582, y: null}, {x: 0.884727911, y: null}, {x: 1.0, y: null}, {x: 0.827464789, y: null}, {x: 0.785265049, y: null}, {x: 0.984095427, y: null}, {x: 0.946226415, y: null}, {x: 0.902363823, y: null}, {x: 0.664714495, y: null}, {x: 0.379110252, y: null}, {x: 0.38974359, y: 0.028}, {x: 0.734312417, y: null}, {x: 0.87109375, y: null}, {x: 0.385919166, y: null}, {x: 0.906862745, y: null}, {x: 0.933083957, y: null}, {x: 0.824945295, y: null}, {x: 0.926671459, y: null}, {x: 0.790364583, y: null}, {x: 0.654173765, y: null}, {x: 0.839228296, y: null}, {x: 0.0, y: 1.660842}, {x: 0.798481712, y: null}, {x: 0.796033994, y: null}, {x: 0.746153846, y: null}, {x: 0.2675, y: null}, {x: 0.596283784, y: null}, {x: 0.918080116, y: null}, {x: 0.729691877, y: null}, {x: 0.81205165, y: null}, {x: 0.876728111, y: null}, {x: 0.687378641, y: null}, {x: 0.607526882, y: null}, {x: 0.647450111, y: null}, {x: 0.378147029, y: null}, {x: 0.194011976, y: null}, {x: 0.465058236, y: null}, {x: 0.709502708, y: null}, {x: 0.558080808, y: null}, {x: 0.338675214, y: null}, {x: 0.747587231, y: null}, {x: 0.185361973, y: null}, {x: 0.445157152, y: null}, {x: 0.445026178, y: null}, {x: 0.360772358, y: null}, {x: 0.440618956, y: null}, {x: 0.191694833, y: null}, {x: 0.274709302, y: null}, {x: 0.324046921, y: null}, {x: 0.681192661, y: null}, {x: 0.481961147, y: null}, {x: 0.404069767, y: null}, {x: 0.317683881, y: null}, {x: 0.44, y: null}, {x: 0.537572254, y: null}, {x: 0.398268398, y: null}, {x: 0.52345679, y: null}, {x: 0.405707196, y: null}, {x: 0.097222222, y: null}, {x: 0.05942275, y: null}, {x: 0.344021376, y: null}, {x: 0.577702703, y: null}, {x: 0.512280702, y: null}, {x: 0.570873786, y: null}, {x: 0.466152999, y: null}, {x: 0.381076389, y: null}, {x: 0.690409683, y: null}, {x: 0.448402948, y: null}, {x: 0.688186813, y: null}, {x: 0.490853659, y: null}, {x: 0.89245157, y: null}, {x: 0.707109737, y: null}, {x: 0.726199262, y: null}, {x: 0.825484765, y: null}, {x: 0.553496504, y: null}, {x: 0.575206612, y: null}, {x: 0.50310559, y: null}, {x: 0.588754135, y: null}, {x: 0.088575096, y: null}, {x: 0.127673364, y: null}, {x: 0.185185185, y: null}, {x: 0.533102553, y: null}, {x: 0.227772228, y: null}, {x: 0.121306376, y: null}, {x: 0.122241087, y: null}, {x: 0.190476191, y: null}, {x: 0.017906336, y: null}, {x: 0.094555874, y: null}, {x: 0.085714286, y: null}, {x: 0.092838196, y: null}, {x: 0.294678316, y: null}, {x: 0.178243775, y: null}, {x: 0.193396226, y: null}, {x: 0.212290503, y: null}, {x: 0.286282306, y: null}, {x: 0.10206995, y: null}, {x: 0.75, y: null}, {x: 0.366568915, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.656, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 2.0275}, {x: 0.25, y: null}, {x: 0.0, y: null}, {x: 0.0, y: 123.083}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.787234043, y: 6.4707}, {x: 0.0, y: null}, {x: 0.0, y: 7.7502}, {x: 0.067961165, y: null}, {x: 0.043778802, y: null}, {x: 0.198767334, y: null}, {x: 0.038544825, y: null}, {x: 0.084019769, y: null}, {x: 0.229545455, y: null}, {x: 0.075669383, y: null}, {x: 0.117296223, y: null}, {x: 0.120103093, y: null}, {x: 0.157287157, y: null}, {x: 0.328542095, y: null}, {x: 0.078231293, y: null}, {x: 0.061336254, y: null}, {x: 0.012320329, y: null}, {x: 0.121134021, y: null}, {x: 0.194891202, y: null}, {x: 0.020657995, y: null}, {x: 0.096997691, y: null}, {x: 0.038580247, y: null}, {x: 0.164879357, y: null}, {x: 0.102564103, y: null}, {x: 0.179721288, y: null}, {x: 0.055619266, y: null}, {x: 0.026180698, y: null}, {x: 0.101665206, y: null}, {x: 0.04972805, y: null}, {x: 0.02393617, y: null}, {x: 0.150711514, y: null}, {x: 0.03148855, y: null}, {x: 0.106864275, y: null}, {x: 0.0, y: null}, {x: 0.011568123, y: null}, {x: 0.142474019, y: null}, {x: 0.053874539, y: null}, {x: 0.227558605, y: null}, {x: 0.004094631, y: null}, {x: 0.255691769, y: null}, {x: 0.033484163, y: null}, {x: 0.160662123, y: null}, {x: 0.207201889, y: null}, {x: 0.308992563, y: null}, {x: 0.094020173, y: null}, {x: 0.158730159, y: null}, {x: 0.109574468, y: null}, {x: 0.127981385, y: null}, {x: 0.318181818, y: null}, {x: 0.263042525, y: null}, {x: 0.088314486, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.020628684, y: null}, {x: 0.0, y: null}, {x: 0.319881054, y: null}, {x: 0.088631985, y: null}, {x: 0.274529237, y: null}, {x: 0.274153997, y: null}, {x: 0.245138889, y: null}, {x: 0.320234114, y: null}, {x: 0.181594488, y: null}, {x: 0.14953271, y: null}, {x: 0.523809524, y: null}, {x: 0.264473684, y: null}, {x: 0.193032015, y: null}, {x: 0.253029223, y: null}, {x: 0.323599053, y: null}, {x: 0.214572193, y: null}, {x: 0.364973262, y: null}, {x: 0.663766633, y: null}, {x: 0.272655323, y: null}, {x: 0.377840909, y: null}, {x: 0.23707035, y: null}, {x: 0.278253039, y: null}, {x: 0.475390156, y: 626.415468}, {x: 0.306220096, y: null}, {x: 0.635926223, y: null}, {x: 0.394939494, y: null}, {x: 0.612172682, y: null}, {x: 0.124439462, y: null}, {x: 0.083835947, y: null}, {x: 0.181069959, y: null}, {x: 0.064840183, y: null}, {x: 0.404085258, y: null}, {x: 0.388400703, y: null}, {x: 0.630088496, y: 0.316}, {x: 0.496212121, y: 13.296268}, {x: 0.475308642, y: null}, {x: 0.505922166, y: null}, {x: 0.32122905, y: null}, {x: 0.308928571, y: null}, {x: 0.331515812, y: 0.22}, {x: 0.015680324, y: null}, {x: 0.441458733, y: null}, {x: 0.216918429, y: 0.171}, {x: 0.28287708, y: null}, {x: 0.394688645, y: null}, {x: 0.176153846, y: null}, {x: 0.411648569, y: null}, {x: 0.659672131, y: null}, {x: 0.402860548, y: null}, {x: 0.528710726, y: null}, {x: 0.61255116, y: null}, {x: 0.736170213, y: null}, {x: 0.547906317, y: null}, {x: 0.433986102, y: null}, {x: 0.472334683, y: null}, {x: 0.621359223, y: 9.505065}, {x: 0.305333333, y: null}, {x: 0.430954588, y: null}, {x: 0.298128342, y: 3.291023}, {x: 0.367078189, y: null}, {x: 0.264084507, y: null}, {x: 0.234061931, y: null}, {x: 0.761458333, y: null}, {x: 0.297307547, y: null}, {x: 0.17340591, y: null}, {x: 0.036774194, y: null}, {x: 0.097979413, y: null}, {x: 0.176445211, y: null}, {x: 0.26625387, y: null}, {x: 0.100612423, y: null}, {x: 0.128654971, y: null}, {x: 0.182987552, y: null}, {x: 0.168518519, y: null}, {x: 0.018231541, y: null}, {x: 0.243562557, y: null}, {x: 0.143461701, y: null}, {x: 0.13381295, y: null}, {x: 0.146788991, y: null}, {x: 0.200183655, y: null}, {x: 0.071266111, y: null}, {x: 0.384536083, y: null}, {x: 0.305153445, y: null}, {x: 0.068014706, y: null}, {x: 0.125146199, y: null}, {x: 0.222065064, y: null}, {x: 0.201398601, y: null}, {x: 0.113323124, y: null}, {x: 0.203381402, y: null}, {x: 0.422924901, y: null}, {x: 0.065243536, y: null}, {x: 0.069740298, y: null}, {x: 0.060737527, y: null}, {x: 0.145152355, y: null}, {x: 0.026751592, y: null}, {x: 0.104606526, y: null}, {x: 0.031273269, y: null}, {x: 0.014634146, y: null}, {x: 0.10607621, y: null}, {x: 0.069230769, y: null}, {x: 0.055521283, y: null}, {x: 0.114308553, y: null}, {x: 0.038579882, y: null}, {x: 0.030243261, y: null}, {x: 0.114013059, y: null}, {x: 0.092827004, y: null}, {x: 0.0, y: null}, {x: 0.032031593, y: 0.016676}, {x: 0.029350105, y: null}, {x: 0.05678392, y: null}, {x: 0.156293223, y: null}, {x: 0.033269962, y: null}, {x: 0.009922041, y: null}, {x: 0.025949954, y: null}, {x: 0.055891239, y: null}, {x: 0.040254237, y: null}, {x: 0.051546392, y: null}, {x: 0.065263158, y: null}, {x: 0.027417027, y: null}, {x: 0.021676301, y: null}, {x: 0.116839917, y: null}, {x: 0.0, y: null}, {x: 0.0, y: null}, {x: 0.066822978, y: null}, {x: 0.108655617, y: null}, {x: 0.101344364, y: null}, {x: 0.012567325, y: null}, {x: 0.265907569, y: null}, {x: 0.0, y: null}, {x: 0.148509174, y: null}, {x: 0.144740877, y: null}, {x: 0.074492099, y: null}, {x: 0.180823346, y: null}, {x: 0.052456286, y: null}, {x: 0.127344521, y: null}, {x: 0.115686275, y: null}, {x: 0.158480074, y: null}, {x: 0.155059133, y: null}, {x: 0.048954161, y: null}, {x: 0.113152094, y: null}, {x: 0.239414935, y: null}, {x: 0.051219512, y: null}, {x: 0.083287369, y: null}, {x: 0.188967574, y: null}, {x: 0.167602245, y: null}, {x: 0.062605753, y: null}, {x: 0.117283951, y: null}, {x: 0.516375546, y: null}, {x: 0.239130435, y: null}, {x: 0.514261977, y: null}, {x: 0.336241611, y: null}, {x: 0.339873861, y: null}, {x: 0.487028302, y: null}, {x: 0.524076148, y: null}, {x: 0.148271277, y: null}, {x: 0.179429429, y: null}, {x: 0.180811808, y: null}, {x: 0.308267165, y: null}, {x: 0.291991495, y: null}, {x: 0.125, y: null}, {x: 0.307068366, y: null}, {x: 0.196452933, y: null}, {x: 0.252586207, y: null}, {x: 0.674233825, y: null}, {x: 0.807727273, y: null}, {x: 0.43516101, y: null}, {x: 0.717622081, y: null}, {x: 0.363636364, y: null}, {x: 0.696245734, y: null}, {x: 0.513239437, y: null}, {x: 0.148484063, y: null}, {x: 0.092592593, y: null}, {x: 0.296751536, y: null}, {x: 0.161997126, y: null}, {x: 0.202476329, y: null}, {x: 0.217691343, y: null}, {x: 0.111269615, y: null}, {x: 0.324576564, y: null}, {x: 0.305457747, y: null}, {x: 0.202011735, y: null}, {x: 0.170222424, y: null}, {x: 0.015, y: null}, {x: 0.438636364, y: null}, {x: 0.213468014, y: null}, {x: 0.176470588, y: null}, {x: 0.06835206, y: null}, {x: 0.206594539, y: null}, {x: 0.274332649, y: null}, {x: 0.177458034, y: null}, {x: 0.116182573, y: null}, {x: 0.666083916, y: null}, {x: 0.707762557, y: null}, {x: 0.429059181, y: null}, {x: 0.43164557, y: null}, {x: 0.418535127, y: null}, {x: 0.405088063, y: null}, {x: 0.548596112, y: null}, {x: 0.156736939, y: null}, {x: 0.656360424, y: null}, {x: 0.468659595, y: null}, {x: 0.39916318, y: null}, {x: 0.282939189, y: null}, {x: 0.313953488, y: null}, {x: 0.795275591, y: null}, {x: 0.417413572, y: null}, {x: 0.715487383, y: null}, {x: 0.354214123, y: null}, {x: 0.710191083, y: null}, {x: 0.416763679, y: null}, {x: 0.860750361, y: null}, {x: 0.895620876, y: null}, {x: 0.798641137, y: null}, {x: 0.898333333, y: null}, {x: 0.796319018, y: null}, {x: 0.699502488, y: null}, {x: 0.591339648, y: null}, {x: 0.572490706, y: null}, {x: 0.698689956, y: null}, {x: 0.596178344, y: null}, {x: 0.722841226, y: null}, {x: 0.939336493, y: null}, {x: 0.509512485, y: null}, {x: 0.212162162, y: null}, {x: 0.641447368, y: null}, {x: 0.475903615, y: null}, {x: 0.31610338, y: null}, {x: 0.28, y: null}, {x: 0.177543186, y: null}, {x: 0.25378614, y: null}, {x: 0.577710843, y: null}, {x: 0.497363796, y: null}, {x: 0.512087912, y: null}, {x: 0.097472924, y: null}, {x: 0.454545455, y: null}, {x: 0.382633588, y: null}, {x: 0.747435897, y: null}, {x: 0.582763338, y: null}, {x: 0.902116402, y: null}, {x: 0.814298169, y: null}, {x: 0.584115524, y: null}, {x: 0.613583138, y: null}, {x: 0.701947813, y: null}, {x: 0.913123, y: null}, {x: 0.609960828, y: null}, {x: 0.542748918, y: null}, {x: 0.359142607, y: null}, {x: 0.4, y: null}, {x: 0.331447964, y: null}, {x: 0.503777148, y: null}, {x: 0.503669725, y: null}, {x: 0.397594175, y: null}, {x: 0.577444682, y: null}, {x: 0.466273187, y: null}, {x: 0.373517787, y: null}, {x: 0.264816557, y: null}, {x: 0.187901318, y: null}, {x: 0.495422177, y: null}, {x: 0.359107421, y: null}, {x: 0.718476583, y: null}, {x: 0.737869198, y: null}, {x: 0.827111984, y: null}, {x: 0.962343096, y: null}, {x: 0.784593438, y: null}, {x: 0.6621881, y: null}, {x: 0.533774834, y: 563.320881}, {x: 0.712809917, y: null}, {x: 0.751282051, y: null}, {x: 0.677623262, y: null}, {x: 0.4171123, y: null}, {x: 0.374291115, y: null}, {x: 0.623728814, y: null}, {x: 0.640659341, y: null}, {x: 0.640378549, y: null}, {x: 0.612301957, y: null}, {x: 0.514124294, y: null}, {x: 0.364261168, y: null}, {x: 0.592823713, y: null}, {x: 0.384830154, y: null}, {x: 0.288368336, y: null}, {x: 0.560229446, y: null}, {x: 0.161290323, y: null}, {x: 0.558045977, y: null}, {x: 0.362085308, y: null}, {x: 0.346335697, y: null}, {x: 0.758349705, y: null}, {x: 0.216393443, y: null}, {x: 0.56954612, y: null}, {x: 0.582934609, y: null}, {x: 0.72122905, y: null}, {x: 0.290647482, y: null}, {x: 0.440602342, y: null}, {x: 0.569943289, y: null}, {x: 0.305949009, y: null}, {x: 0.164930556, y: null}, {x: 0.077361564, y: null}, {x: 0.029735683, y: null}, {x: 0.208357858, y: null}, {x: 0.134852802, y: null}, {x: 0.067017083, y: null}, {x: 0.183571429, y: null}, {x: 0.158490566, y: null}, {x: 0.016352201, y: null}, {x: 0.114345114, y: null}, {x: 0.061079545, y: null}, {x: 0.040195546, y: null}, {x: 0.10138585, y: null}, {x: 0.251503006, y: null}, {x: 0.142676768, y: null}, {x: 0.075, y: null}, {x: 0.100595632, y: null}, {x: 0.0, y: null}, {x: 0.039182283, y: null}, {x: 0.034046693, y: null}, {x: 0.060550459, y: null}, {x: 0.172104405, y: null}, {x: 0.10206995, y: null}, {x: 0.145962733, y: null}, {x: 0.136382365, y: 58.2}, {x: 0.065300896, y: null}, {x: 0.118259224, y: null}, {x: 0.08449848, y: null}, {x: 0.184141547, y: null}, {x: 0.098861284, y: null}, {x: 0.11920904, y: null}, {x: 0.307359307, y: null}, {x: 0.283287671, y: null}, {x: 0.330129745, y: null}, {x: 0.217668126, y: null}, {x: 0.331989247, y: null}, {x: 0.119749447, y: null}, {x: 0.243478261, y: null}, {x: 0.184416601, y: null}, {x: 0.285163777, y: null}, {x: 0.489977728, y: null}, {x: 0.376275028, y: null}, {x: 0.607532957, y: null}, {x: 0.627457744, y: null}, {x: 0.471323112, y: null}, {x: 0.399323998, y: null}, {x: 0.166774822, y: null}, {x: 0.317904374, y: null}, {x: 0.197849462, y: null}, {x: 0.312109153, y: null}, {x: 0.234982332, y: null}, {x: 0.405090138, y: null}, {x: 0.422535211, y: null}, {x: 0.152892562, y: null}, {x: 0.314542484, y: null}, {x: 0.343944864, y: null}, {x: 0.143106457, y: null}, {x: 0.204736211, y: null}, {x: 0.088293651, y: null}, {x: 0.153590426, y: null}, {x: 0.288182446, y: null}, {x: 0.223561644, y: null}, {x: 0.135736538, y: null}, {x: 0.336538462, y: null}, {x: 0.089147287, y: null}, {x: 0.357524013, y: null}, {x: 0.218418908, y: null}, {x: 0.196135266, y: null}, {x: 0.174641148, y: null}, {x: 0.151532033, y: null}, {x: 0.14653081, y: null}, {x: 0.33042394, y: null}, {x: 0.195134849, y: null}, {x: 0.330195024, y: null}, {x: 0.273209549, y: null}, {x: 0.198507463, y: null}, {x: 0.076923077, y: null}, {x: 0.209351754, y: null}, {x: 0.061674009, y: null}, {x: 0.339228296, y: null}, {x: 0.432848589, y: null}, {x: 0.231901841, y: null}, {x: 0.215733591, y: null}, {x: 0.35840708, y: null}, {x: 0.723303525, y: null}, {x: 0.863775199, y: null}, {x: 0.269912931, y: null}, {x: 0.146327684, y: null}, {x: 0.206043956, y: null}, {x: 0.112693758, y: null}, {x: 0.388300127, y: null}, {x: 0.164356436, y: null}, {x: 0.036382536, y: null}, {x: 0.083769634, y: null}, {x: 0.210912907, y: null}, {x: 0.24656782, y: null}, {x: 0.135524798, y: null}, {x: 0.196440794, y: null}, {x: 0.437565036, y: null}, {x: 0.216939079, y: null}, {x: 0.335243553, y: null}, {x: 0.246590909, y: null}, {x: 0.078651685, y: null}, {x: 0.169191919, y: null}, {x: 0.569558102, y: null}, {x: 0.571766562, y: null}, {x: 0.483412322, y: null}, {x: 0.283746557, y: null}, {x: 0.23183391, y: null}, {x: 0.107407407, y: null}, {x: 0.649247823, y: null}, {x: 0.047979798, y: null}, {x: 0.090831191, y: null}, {x: 0.033767487, y: null}, {x: 0.064516129, y: null}, {x: 0.034904014, y: null}, {x: 0.046498599, y: null}, {x: 0.169464429, y: null}, {x: 0.15323741, y: null}, {x: 0.136671177, y: null}, {x: 0.01056338, y: null}, {x: 0.040816327, y: null}, {x: 0.227436823, y: null}, {x: 0.06150207, y: null}, {x: 0.016949153, y: null}, {x: 0.012979351, y: null}, {x: 0.052207294, y: null}, {x: 0.133512064, y: null}, {x: 0.046461372, y: null}, {x: 0.047107177, y: null}, {x: 0.04003268, y: null}, {x: 0.087699317, y: null}, {x: 0.034632035, y: null}, {x: 0.23402195, y: null}, {x: 0.309536494, y: null}, {x: 0.091117042, y: null}, {x: 0.218282112, y: null}, {x: 0.087459235, y: null}, {x: 0.146341463, y: null}, {x: 0.108806405, y: null}, {x: 0.05298913, y: null}, {x: 0.07495069, y: null}, {x: 0.128454452, y: null}, {x: 0.144308943, y: null}, {x: 0.023470839, y: null}, {x: 0.086061424, y: null}, {x: 0.11173577, y: null}, {x: 0.0, y: null}, {x: 0.04389851, y: null}, {x: 0.041025641, y: null}, {x: 0.022518766, y: null}, {x: 0.056775798, y: null}, {x: 0.094940662, y: null}, {x: 0.180946675, y: null}, {x: 0.127600555, y: null}, {x: 0.109302326, y: null}, {x: 0.190625, y: null}, {x: 0.043201455, y: null}, {x: 0.011371713, y: null}, {x: 0.111055023, y: null}, {x: 0.041469194, y: null}, {x: 0.309850746, y: null}, {x: 0.228867624, y: null}, {x: 0.316171617, y: null}, {x: 0.131147541, y: null}, {x: 0.338160136, y: null}, {x: 0.380246914, y: null}, {x: 0.468481375, y: null}, {x: 0.056133056, y: null}, {x: 0.139410188, y: null}, {x: 0.44945055, y: null}, {x: 0.397997497, y: null}, {x: 0.139433551, y: null}, {x: 0.118200134, y: null}, {x: 0.212598425, y: null}, {x: 0.144963145, y: null}, {x: 0.096373057, y: null}, {x: 0.07611336, y: null}, {x: 0.048411498, y: null}, {x: 0.134879725, y: null}, {x: 0.095196122, y: null}, {x: 0.013540961, y: null}, {x: 0.017918677, y: null}, {x: 0.047355164, y: null}, {x: 0.131503482, y: null}, {x: 0.0900369, y: null}, {x: 0.185089974, y: null}, {x: 0.38290788, y: null}, {x: 0.378737542, y: null}, {x: 0.235448005, y: null}, {x: 0.693144723, y: null}, {x: 0.720372836, y: null}, {x: 0.430147059, y: null}, {x: 0.667281106, y: null}, {x: 0.58412483, y: null}, {x: 0.538157151, y: null}, {x: 0.393564356, y: null}, {x: 0.097435897, y: null}, {x: 0.390350877, y: null}, {x: 0.296444954, y: null}, {x: 0.262979684, y: null}, {x: 0.120175439, y: null}, {x: 0.159151194, y: null}, {x: 0.038746439, y: null}, {x: 0.129694836, y: null}, {x: 0.097738877, y: null}, {x: 0.016155989, y: null}, {x: 0.205310881, y: null}, {x: 0.047037263, y: null}, {x: 0.081372549, y: null}, {x: 0.041294643, y: null}, {x: 0.013256484, y: null}, {x: 0.145522388, y: null}, {x: 0.0, y: null}, {x: 0.157942238, y: null}, {x: 0.0, y: null}, {x: 0.04584121, y: null}, {x: 0.527100945, y: null}, {x: 0.544263776, y: null}, {x: 0.287578288, y: null}, {x: 0.360753221, y: null}, {x: 0.241231822, y: null}, {x: 0.362308254, y: null}, {x: 0.245514636, y: null}, {x: 0.055185538, y: null}, {x: 0.160070361, y: null}, {x: 0.021712907, y: null}, {x: 0.117943548, y: null}, {x: 0.511073254, y: null}], 'label': 'Individual Census blocks', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.04731466375, y: 310.0280267892332}, {x: 0.15694694199999998, y: 92.71292869607598}, {x: 0.32998777737499996, y: 192.88421625663003}, {x: 0.720355499125, y: 160.9413618732771}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.04731466375, y: -89.17812087606467}, {x: 0.15694694199999998, y: 12.077999276273715}, {x: 0.32998777737499996, y: 64.61345520509394}, {x: 0.720355499125, y: 53.24555608488909}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.04731466375, y: 709.2341744545311}, {x: 0.15694694199999998, y: 173.34785811587824}, {x: 0.32998777737499996, y: 321.1549773081661}, {x: 0.720355499125, y: 268.6371676616651}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LINGISOPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LINGISOPCT.html index 6950d9a..a1f89c8 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LINGISOPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LINGISOPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.039933382671133444, y: 0.0}, {x: 0.007239188430662021, y: 0.0}, {x: 0.03439701499111111, y: 0.0}, {x: 0.010233046039523212, y: 0.0}, {x: 0.06417378421511842, y: 1399.429818}, {x: 0.0, y: 0.093729}, {x: 0.0, y: 0.0}, {x: 0.003999289046391753, y: 0.0}, {x: 0.0037025601676044712, y: 0.0}, {x: 0.0049289125067713034, y: 0.0}, {x: 0.014966530052618329, y: 0.0}, {x: 0.053468841542742715, y: 0.0}, {x: 0.0044380009851112965, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.013190623724497494, y: 0.0}, {x: 0.003219196753321101, y: 0.0}, {x: 0.01051368202998405, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.010559526850062933, y: 0.0}, {x: 0.0, y: 0.175}, {x: 0.013160244578492393, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0023512580408476657, y: 0.0}, {x: 0.007922240091655434, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.006617795711895911, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.004830918, y: 0.0}, {x: 0.021680217, y: 0.0}, {x: 0.00457222212778131, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.006289308, y: 0.0}, {x: 0.018029193664089345, y: 0.0}, {x: 0.022727273, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.005003563966946377, y: 0.0}, {x: 0.007381747837992064, y: 0.0}, {x: 0.0026478666281785157, y: 0.0}, {x: 0.020994592960277836, y: 0.0}, {x: 0.04859663619715636, y: 33.039}, {x: 0.019027072484068475, y: 0.0}, {x: 0.006608501047441998, y: 0.0}, {x: 0.009474563295847994, y: 0.0}, {x: 0.005156035123618684, y: 0.0}, {x: 0.0257329971814543, y: 0.0}, {x: 0.027968715091375718, y: 0.0}, {x: 0.006477005232674881, y: 999.999999}, {x: 0.026793260918089094, y: 0.0}, {x: 0.1166509261705598, y: 2369.610135}, {x: 0.007053821895085066, y: 0.0}, {x: 0.017680516848688228, y: 0.0}, {x: 0.011623247108056685, y: 0.0}, {x: 0.1241828812766994, y: 1019.716757}, {x: 0.03148950954734647, y: 0.0}, {x: 0.009026674935931558, y: 40.416186}, {x: 0.018363538516596542, y: 0.0}, {x: 0.02868898468697302, y: 0.0}, {x: 0.049340860602952306, y: 0.0}, {x: 0.04678587951239182, y: 0.0}, {x: 0.020653735625, y: 0.0}, {x: 0.026923077000000004, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.02383182411171776, y: 0.0}, {x: 0.010631831016014028, y: 1.335464}, {x: 0.010947437194533328, y: 0.072}, {x: 0.07173570414427947, y: 0.0}, {x: 0.1618207108917046, y: 176.850903}, {x: 0.023259510669214434, y: 0.0}, {x: 0.014476691854901351, y: 0.0}, {x: 0.049766846788247186, y: 0.0}, {x: 0.012166848756099146, y: 0.0}, {x: 0.004885197889594528, y: 0.0}, {x: 0.00849258856401225, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.03625169108335529, y: 0.0}, {x: 0.006658033815681902, y: 0.0}, {x: 0.0033705656971770746, y: 0.0}, {x: 0.01604561046408798, y: 1.346}, {x: 0.007117995342950463, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.26856563273413014, y: 221.159543}, {x: 0.06025114840771245, y: 0.0}, {x: 0.038471136833818524, y: 57.7297}, {x: 0.03091207504829998, y: 0.0}, {x: 0.031097363627661877, y: 172.582673}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0027940542542399254, y: 0.0}, {x: 0.014402191017123683, y: 0.0}, {x: 0.016066746885108757, y: 0.0}, {x: 0.006689511606992075, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.01027114392693288, y: 0.0}, {x: 0.010373444, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0011091516966379984, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.004914005, y: 0.0}, {x: 0.015177066, y: 0.0}, {x: 0.00486618, y: 0.0}, {x: 0.005935631042770927, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.010563306583408944, y: 1.405256}, {x: 0.01174743, y: 0.0}, {x: 0.04831697120752659, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.02782064506193021, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.04359369330501393, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.13103386904457948, y: 1111.110965}, {x: 0.0060930528733311885, y: 0.0}, {x: 0.08232598898342042, y: 0.0}, {x: 0.054127151582998544, y: 360.22096}, {x: 0.16527237713716217, y: 940.76283}, {x: 0.0401107755272884, y: 0.0}, {x: 0.041077128418988834, y: 0.0}, {x: 0.013557809711795092, y: 0.0}, {x: 0.021061820718431736, y: 388.743118}, {x: 0.014089268022739576, y: 0.0}, {x: 0.009282698606127182, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.004524189674520548, y: 0.0}, {x: 0.002310217605359318, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.008953808959475106, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.006537484241581405, y: 0.0}, {x: 0.01897441920597518, y: 0.0}, {x: 0.002073283769218424, y: 0.45}, {x: 0.0, y: 0.0}, {x: 0.009342114893737803, y: 0.0}, {x: 0.0177586806678733, y: 0.0}, {x: 0.02239376402092955, y: 0.0}, {x: 0.0161761439316228, y: 5e-05}, {x: 0.00917344360912634, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.10495939595890612, y: 3939.66886}, {x: 0.030937489959360104, y: 0.0}, {x: 0.012770880244096922, y: 0.0}, {x: 0.011047459562064647, y: 0.0}, {x: 0.02320474781604953, y: 396.4304}, {x: 0.01854185654682542, y: 0.0}, {x: 0.012256470873446095, y: 0.0}, {x: 0.02036621530100158, y: 0.0}, {x: 0.08294701108724732, y: 0.0}, {x: 0.06200026408120236, y: 0.0}, {x: 0.005021096240087448, y: 0.0}, {x: 0.02547953787991869, y: 0.0}, {x: 0.005662731115157227, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.007315573503675296, y: 0.0}, {x: 0.0326145658128064, y: 0.0}, {x: 0.047428084368129814, y: 0.0}, {x: 0.003880759436112311, y: 0.0}, {x: 0.013784081463967373, y: 0.0}, {x: 0.02034349730302353, y: 0.0}, {x: 0.039388738008276636, y: 0.0}, {x: 0.019332446883149626, y: 0.0}, {x: 0.04447142271643541, y: 68.97}, {x: 0.19293470458124237, y: 0.0}, {x: 0.23495687139732585, y: 0.0}, {x: 0.05794651540544533, y: 0.0}, {x: 0.06641627272675799, y: 132.94799999999998}, {x: 0.046547296501121105, y: 57.339039}, {x: 0.046566311633463926, y: 0.0}, {x: 0.03436831986987188, y: 0.0}, {x: 0.02565940415305712, y: 0.0}, {x: 0.009295918980245321, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.03159781908068887, y: 0.0117}, {x: 0.01921898282395814, y: 0.0}, {x: 0.0049555448489847715, y: 0.0}, {x: 0.011186487727253048, y: 0.0}, {x: 0.023488896798661698, y: 0.0}, {x: 0.046869134281923276, y: 0.0}, {x: 0.013956284259535257, y: 0.0}, {x: 0.032872348204917315, y: 0.0}, {x: 0.05442506030433603, y: 0.0}, {x: 0.13039499567032742, y: 0.0}, {x: 0.057443366, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.02206235530011341, y: 0.0}, {x: 0.030428357846463173, y: 0.0}, {x: 0.008839616943860802, y: 0.0002}, {x: null, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.04434519421213818, y: 0.0}, {x: 0.028102384453224532, y: 0.0}, {x: 0.02563644618202608, y: 0.0}, {x: 0.022002409854010023, y: 0.0}, {x: 0.013285772587716321, y: 0.0}, {x: 0.0024730847239138945, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.027393624101815204, y: 0.0}, {x: 0.004283551264465409, y: 0.0}, {x: 0.027603609341902154, y: 0.0}, {x: 0.09226579579172779, y: 0.0}, {x: 0.04714182278413341, y: 0.0}, {x: 0.015648909997591005, y: 0.0}, {x: 0.011477568726863256, y: 0.0}, {x: 0.11535266242254427, y: 0.0}, {x: 0.04115249962362506, y: 0.0}, {x: 0.06119182302005388, y: 0.0}, {x: 0.027253039686177715, y: 0.0}, {x: 0.02840192219996364, y: 0.0}, {x: 0.009011235318208164, y: 0.0}, {x: 0.015148456984382695, y: 0.0}, {x: 0.05880981157813146, y: 0.0}, {x: 0.02575411223839662, y: 0.0}, {x: 0.011259348449295775, y: 3617.0713}, {x: 0.010553417110817129, y: 0.0}, {x: 0.03895164713019016, y: 21.541675}, {x: 0.014039894782260502, y: 0.0}, {x: 0.0017231909731291533, y: 0.0}, {x: 0.0, y: 0.021042}, {x: 0.0039717360743925225, y: 0.0}, {x: 0.001785646170277693, y: 0.0}, {x: 0.0029433224337388837, y: 0.0}, {x: 0.0027818627980613895, y: 0.0}, {x: 0.11527824156377282, y: 0.0}, {x: 0.022000841749398273, y: 0.0}, {x: 0.014303341292447272, y: 0.0}, {x: 0.013482474696282085, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.023929269157045394, y: 0.0}, {x: 0.001981510211919006, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.016662963304749284, y: 0.0}, {x: 0.003465932737315011, y: 0.0}, {x: 0.008751111266540873, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.009801381761360708, y: 0.0}, {x: 0.007878704126139356, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.11563748397268915, y: 1244.3365}, {x: 0.26013115203819526, y: 0.0}, {x: 0.18727500083120094, y: 0.0}, {x: 0.013955568717803497, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0037908745944472406, y: 0.0}, {x: 0.005141264450899032, y: 0.0}, {x: 0.01119886966704851, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.03729849847371731, y: 626.415468}, {x: 0.04198287313932729, y: 26.799356}, {x: 0.011400869255181904, y: 0.0}, {x: 0.028147297120313244, y: 0.0}, {x: 0.05639627348148148, y: 0.0}, {x: 0.04464476063014912, y: 0.0}, {x: 0.007627765, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.016676}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0017972000823892893, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0022553063308917037, y: 0.0}, {x: 0.009843294067691135, y: 0.0}, {x: 0.10777815999275808, y: 563.320881}, {x: 0.0, y: 0.0}, {x: 0.01748011079139427, y: 0.0}, {x: 0.042046843307224996, y: 58.2}, {x: 0.017309658133874955, y: 0.0}, {x: 0.022241111509462154, y: 0.0}, {x: 0.019555328477539248, y: 0.0}, {x: 0.014011625951830444, y: 0.0}, {x: 0.04928325913596892, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.11838571743503093, y: 0.0}, {x: 0.008080379453093811, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0032910312864606007, y: 0.0}, {x: 0.014221929036323437, y: 0.0}, {x: 0.010538568917600582, y: 0.0}, {x: 0.006556882509145448, y: 0.0}, {x: 0.0029564901209637113, y: 0.0}, {x: 0.03019576794169643, y: 0.0}, {x: 0.013132862742070895, y: 0.0}, {x: 0.015010866958796993, y: 0.0}, {x: 0.0019501013783982367, y: 0.0}, {x: 0.08245319825154453, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}], 'label': 'Individual municipalitys', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.005221781507496012, y: 20.908100113300765}, {x: 0.018807056014812654, y: 47.80969365383626}, {x: 0.1478680908743817, y: 732.2265024203282}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.005221781507496012, y: -10.413730382598953}, {x: 0.018807056014812654, y: -1.8915978404878402}, {x: 0.1478680908743817, y: 384.07509208198434}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.005221781507496012, y: 52.22993060920048}, {x: 0.018807056014812654, y: 97.51098514816036}, {x: 0.1478680908743817, y: 1080.377912758672}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.039933382671133444, y: 0.0}, {x: 0.007239188430662021, y: 0.0}, {x: 0.03439701499111111, y: 0.0}, {x: 0.010233046039523212, y: 0.0}, {x: 0.06417378421511842, y: 1399.429818}, {x: 0.0, y: 0.093729}, {x: 0.0, y: 0.0}, {x: 0.003999289046391753, y: 0.0}, {x: 0.0037025601676044712, y: 0.0}, {x: 0.0049289125067713034, y: 0.0}, {x: 0.014966530052618329, y: 0.0}, {x: 0.053468841542742715, y: 0.0}, {x: 0.0044380009851112965, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.013190623724497494, y: 0.0}, {x: 0.003219196753321101, y: 0.0}, {x: 0.01051368202998405, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.010559526850062933, y: 0.0}, {x: 0.0, y: 0.175}, {x: 0.013160244578492393, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0023512580408476657, y: 0.0}, {x: 0.007922240091655434, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.006617795711895911, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.004830918, y: 0.0}, {x: 0.021680217, y: 0.0}, {x: 0.00457222212778131, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.006289308, y: 0.0}, {x: 0.018029193664089345, y: 0.0}, {x: 0.022727273, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.005003563966946377, y: 0.0}, {x: 0.007381747837992064, y: 0.0}, {x: 0.0026478666281785157, y: 0.0}, {x: 0.020994592960277836, y: 0.0}, {x: 0.04859663619715636, y: 33.039}, {x: 0.019027072484068475, y: 0.0}, {x: 0.006608501047441998, y: 0.0}, {x: 0.009474563295847994, y: 0.0}, {x: 0.005156035123618684, y: 0.0}, {x: 0.0257329971814543, y: 0.0}, {x: 0.027968715091375718, y: 0.0}, {x: 0.006477005232674881, y: 999.999999}, {x: 0.026793260918089094, y: 0.0}, {x: 0.1166509261705598, y: 2369.610135}, {x: 0.007053821895085066, y: 0.0}, {x: 0.017680516848688228, y: 0.0}, {x: 0.011623247108056685, y: 0.0}, {x: 0.1241828812766994, y: 1019.716757}, {x: 0.03148950954734647, y: 0.0}, {x: 0.009026674935931558, y: 40.416186}, {x: 0.018363538516596542, y: 0.0}, {x: 0.02868898468697302, y: 0.0}, {x: 0.049340860602952306, y: 0.0}, {x: 0.04678587951239182, y: 0.0}, {x: 0.020653735625, y: 0.0}, {x: 0.026923077000000004, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.02383182411171776, y: 0.0}, {x: 0.010631831016014028, y: 1.335464}, {x: 0.010947437194533328, y: 0.072}, {x: 0.07173570414427947, y: 0.0}, {x: 0.1618207108917046, y: 176.850903}, {x: 0.023259510669214434, y: 0.0}, {x: 0.014476691854901351, y: 0.0}, {x: 0.049766846788247186, y: 0.0}, {x: 0.012166848756099146, y: 0.0}, {x: 0.004885197889594528, y: 0.0}, {x: 0.00849258856401225, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.03625169108335529, y: 0.0}, {x: 0.006658033815681902, y: 0.0}, {x: 0.0033705656971770746, y: 0.0}, {x: 0.01604561046408798, y: 1.346}, {x: 0.007117995342950463, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.26856563273413014, y: 221.159543}, {x: 0.06025114840771245, y: 0.0}, {x: 0.038471136833818524, y: 57.7297}, {x: 0.03091207504829998, y: 0.0}, {x: 0.031097363627661877, y: 172.582673}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0027940542542399254, y: 0.0}, {x: 0.014402191017123683, y: 0.0}, {x: 0.016066746885108757, y: 0.0}, {x: 0.006689511606992075, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.01027114392693288, y: 0.0}, {x: 0.010373444, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0011091516966379984, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.004914005, y: 0.0}, {x: 0.015177066, y: 0.0}, {x: 0.00486618, y: 0.0}, {x: 0.005935631042770927, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.010563306583408944, y: 1.405256}, {x: 0.01174743, y: 0.0}, {x: 0.04831697120752659, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.02782064506193021, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.04359369330501393, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.13103386904457948, y: 1111.110965}, {x: 0.0060930528733311885, y: 0.0}, {x: 0.08232598898342042, y: 0.0}, {x: 0.054127151582998544, y: 360.22096}, {x: 0.16527237713716217, y: 940.76283}, {x: 0.0401107755272884, y: 0.0}, {x: 0.041077128418988834, y: 0.0}, {x: 0.013557809711795092, y: 0.0}, {x: 0.021061820718431736, y: 388.743118}, {x: 0.014089268022739576, y: 0.0}, {x: 0.009282698606127182, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.004524189674520548, y: 0.0}, {x: 0.002310217605359318, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.008953808959475106, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.006537484241581405, y: 0.0}, {x: 0.01897441920597518, y: 0.0}, {x: 0.002073283769218424, y: 0.45}, {x: 0.0, y: 0.0}, {x: 0.009342114893737803, y: 0.0}, {x: 0.0177586806678733, y: 0.0}, {x: 0.02239376402092955, y: 0.0}, {x: 0.0161761439316228, y: 5e-05}, {x: 0.00917344360912634, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.10495939595890612, y: 3939.66886}, {x: 0.030937489959360104, y: 0.0}, {x: 0.012770880244096922, y: 0.0}, {x: 0.011047459562064647, y: 0.0}, {x: 0.02320474781604953, y: 396.4304}, {x: 0.01854185654682542, y: 0.0}, {x: 0.012256470873446095, y: 0.0}, {x: 0.02036621530100158, y: 0.0}, {x: 0.08294701108724732, y: 0.0}, {x: 0.06200026408120236, y: 0.0}, {x: 0.005021096240087448, y: 0.0}, {x: 0.02547953787991869, y: 0.0}, {x: 0.005662731115157227, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.007315573503675296, y: 0.0}, {x: 0.0326145658128064, y: 0.0}, {x: 0.047428084368129814, y: 0.0}, {x: 0.003880759436112311, y: 0.0}, {x: 0.013784081463967373, y: 0.0}, {x: 0.02034349730302353, y: 0.0}, {x: 0.039388738008276636, y: 0.0}, {x: 0.019332446883149626, y: 0.0}, {x: 0.04447142271643541, y: 68.97}, {x: 0.19293470458124237, y: 0.0}, {x: 0.23495687139732585, y: 0.0}, {x: 0.05794651540544533, y: 0.0}, {x: 0.06641627272675799, y: 132.94799999999998}, {x: 0.046547296501121105, y: 57.339039}, {x: 0.046566311633463926, y: 0.0}, {x: 0.03436831986987188, y: 0.0}, {x: 0.02565940415305712, y: 0.0}, {x: 0.009295918980245321, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.03159781908068887, y: 0.0117}, {x: 0.01921898282395814, y: 0.0}, {x: 0.0049555448489847715, y: 0.0}, {x: 0.011186487727253048, y: 0.0}, {x: 0.023488896798661698, y: 0.0}, {x: 0.046869134281923276, y: 0.0}, {x: 0.013956284259535257, y: 0.0}, {x: 0.032872348204917315, y: 0.0}, {x: 0.05442506030433603, y: 0.0}, {x: 0.13039499567032742, y: 0.0}, {x: 0.057443366, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.02206235530011341, y: 0.0}, {x: 0.030428357846463173, y: 0.0}, {x: 0.008839616943860802, y: 0.0002}, {x: null, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.04434519421213818, y: 0.0}, {x: 0.028102384453224532, y: 0.0}, {x: 0.02563644618202608, y: 0.0}, {x: 0.022002409854010023, y: 0.0}, {x: 0.013285772587716321, y: 0.0}, {x: 0.0024730847239138945, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.027393624101815204, y: 0.0}, {x: 0.004283551264465409, y: 0.0}, {x: 0.027603609341902154, y: 0.0}, {x: 0.09226579579172779, y: 0.0}, {x: 0.04714182278413341, y: 0.0}, {x: 0.015648909997591005, y: 0.0}, {x: 0.011477568726863256, y: 0.0}, {x: 0.11535266242254427, y: 0.0}, {x: 0.04115249962362506, y: 0.0}, {x: 0.06119182302005388, y: 0.0}, {x: 0.027253039686177715, y: 0.0}, {x: 0.02840192219996364, y: 0.0}, {x: 0.009011235318208164, y: 0.0}, {x: 0.015148456984382695, y: 0.0}, {x: 0.05880981157813146, y: 0.0}, {x: 0.02575411223839662, y: 0.0}, {x: 0.011259348449295775, y: 3617.0713}, {x: 0.010553417110817129, y: 0.0}, {x: 0.03895164713019016, y: 21.541675}, {x: 0.014039894782260502, y: 0.0}, {x: 0.0017231909731291533, y: 0.0}, {x: 0.0, y: 0.021042}, {x: 0.0039717360743925225, y: 0.0}, {x: 0.001785646170277693, y: 0.0}, {x: 0.0029433224337388837, y: 0.0}, {x: 0.0027818627980613895, y: 0.0}, {x: 0.11527824156377282, y: 0.0}, {x: 0.022000841749398273, y: 0.0}, {x: 0.014303341292447272, y: 0.0}, {x: 0.013482474696282085, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.023929269157045394, y: 0.0}, {x: 0.001981510211919006, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.016662963304749284, y: 0.0}, {x: 0.003465932737315011, y: 0.0}, {x: 0.008751111266540873, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.009801381761360708, y: 0.0}, {x: 0.007878704126139356, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.11563748397268915, y: 1244.3365}, {x: 0.26013115203819526, y: 0.0}, {x: 0.18727500083120094, y: 0.0}, {x: 0.013955568717803497, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0037908745944472406, y: 0.0}, {x: 0.005141264450899032, y: 0.0}, {x: 0.01119886966704851, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.03729849847371731, y: 626.415468}, {x: 0.04198287313932729, y: 26.799356}, {x: 0.011400869255181904, y: 0.0}, {x: 0.028147297120313244, y: 0.0}, {x: 0.05639627348148148, y: 0.0}, {x: 0.04464476063014912, y: 0.0}, {x: 0.007627765, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.016676}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0017972000823892893, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0022553063308917037, y: 0.0}, {x: 0.009843294067691135, y: 0.0}, {x: 0.10777815999275808, y: 563.320881}, {x: 0.0, y: 0.0}, {x: 0.01748011079139427, y: 0.0}, {x: 0.042046843307224996, y: 58.2}, {x: 0.017309658133874955, y: 0.0}, {x: 0.022241111509462154, y: 0.0}, {x: 0.019555328477539248, y: 0.0}, {x: 0.014011625951830444, y: 0.0}, {x: 0.04928325913596892, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.11838571743503093, y: 0.0}, {x: 0.008080379453093811, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0032910312864606007, y: 0.0}, {x: 0.014221929036323437, y: 0.0}, {x: 0.010538568917600582, y: 0.0}, {x: 0.006556882509145448, y: 0.0}, {x: 0.0029564901209637113, y: 0.0}, {x: 0.03019576794169643, y: 0.0}, {x: 0.013132862742070895, y: 0.0}, {x: 0.015010866958796993, y: 0.0}, {x: 0.0019501013783982367, y: 0.0}, {x: 0.08245319825154453, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.0, y: 0.0}], 'label': 'Individual municipalitys', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.005221781507496012, y: 20.025109602506024}, {x: 0.018807056014812654, y: 46.680265688224694}, {x: 0.1478680908743817, y: 726.4406226050788}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.005221781507496012, y: -11.124757488660997}, {x: 0.018807056014812654, y: -5.542602643478844}, {x: 0.1478680908743817, y: 371.88877735499983}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.005221781507496012, y: 51.174976693673045}, {x: 0.018807056014812654, y: 98.90313401992823}, {x: 0.1478680908743817, y: 1080.9924678551579}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LOWINCPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LOWINCPCT.html index 50f64c2..3c8035d 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LOWINCPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_LOWINCPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.27299113695170296, y: 0.0}, {x: 0.25243718798931475, y: 0.0}, {x: 0.2095238096628571, y: 0.0}, {x: 0.16967688223462984, y: 0.0}, {x: 0.20148819060532022, y: 1399.429818}, {x: 0.20886684447848947, y: 0.093729}, {x: 0.16659613215532498, y: 0.0}, {x: 0.1591444981867341, y: 0.0}, {x: 0.17684588079038188, y: 0.0}, {x: 0.2057784433496076, y: 0.0}, {x: 0.18432437442635954, y: 0.0}, {x: 0.1917377925633527, y: 0.0}, {x: 0.11902189100909048, y: 0.0}, {x: 0.17780130288348486, y: 0.0}, {x: 0.18329303374627012, y: 0.0}, {x: 0.20482619646047706, y: 0.0}, {x: 0.2963666967047163, y: 0.0}, {x: 0.19947420319848833, y: 0.0}, {x: 0.1731396128941158, y: 0.0}, {x: 0.16543778783297308, y: 0.175}, {x: 0.16915318051434994, y: 0.0}, {x: 0.16074381822336545, y: 0.0}, {x: 0.3473860239989251, y: 0.0}, {x: 0.3378480603932116, y: 0.0}, {x: 0.13228492134165898, y: 0.0}, {x: 0.3252936727887247, y: 0.0}, {x: 0.1359252561199518, y: 0.0}, {x: 0.17767768611199997, y: 0.0}, {x: 0.19140625, y: 0.0}, {x: 0.263908702, y: 0.0}, {x: 0.108739837, y: 0.0}, {x: 0.102564103, y: 0.0}, {x: 0.147704591, y: 0.0}, {x: 0.22351301107992566, y: 0.0}, {x: 0.27813504861093247, y: 0.0}, {x: 0.197781885, y: 0.0}, {x: 0.132408575, y: 0.0}, {x: 0.26016819580737444, y: 0.0}, {x: 0.13768197673150684, y: 0.0}, {x: 0.197867299, y: 0.0}, {x: 0.19158075581013745, y: 0.0}, {x: 0.243010753, y: 0.0}, {x: 0.211058264, y: 0.0}, {x: 0.179372197, y: 0.0}, {x: 0.150867824, y: 0.0}, {x: 0.15326975469209808, y: 0.0}, {x: 0.08899192757168439, y: 0.0}, {x: 0.1225092426017119, y: 0.0}, {x: 0.1297705992256876, y: 0.0}, {x: 0.13199308108704144, y: 0.0}, {x: 0.282740914986396, y: 33.039}, {x: 0.12498733167687118, y: 0.0}, {x: 0.13733073778628793, y: 0.0}, {x: 0.13606388648796622, y: 0.0}, {x: 0.11155759809201417, y: 0.0}, {x: 0.18269924548424876, y: 0.0}, {x: 0.2224880714045857, y: 0.0}, {x: 0.12225660839983049, y: 999.999999}, {x: 0.14431265298907164, y: 0.0}, {x: 0.40029346852487707, y: 2369.610135}, {x: 0.10313758589254034, y: 0.0}, {x: 0.12791391655514034, y: 0.0}, {x: 0.17068145083374886, y: 0.0}, {x: 0.4032812922509393, y: 1019.716757}, {x: 0.15103726979277082, y: 0.0}, {x: 0.19125475305807982, y: 40.416186}, {x: 0.20080325958859283, y: 0.0}, {x: 0.2699676663693086, y: 0.0}, {x: 0.22364689673864496, y: 0.0}, {x: 0.2174376324653816, y: 0.0}, {x: 0.10366018375, y: 0.0}, {x: 0.066869301, y: 0.0}, {x: 0.066570188, y: 0.0}, {x: 0.10526315799999998, y: 0.0}, {x: 0.1516169674090718, y: 0.0}, {x: 0.06984413049701929, y: 1.335464}, {x: 0.10054775203579369, y: 0.072}, {x: 0.293336106271621, y: 0.0}, {x: 0.3361081896138887, y: 176.850903}, {x: 0.1672001289309271, y: 0.0}, {x: 0.09996892965473048, y: 0.0}, {x: 0.1725015528308928, y: 0.0}, {x: 0.11734310426380846, y: 0.0}, {x: 0.048607718582193454, y: 0.0}, {x: 0.09929170831745789, y: 0.0}, {x: 0.0961108627097303, y: 0.0}, {x: 0.0773673467173392, y: 0.0}, {x: 0.179011864822488, y: 0.0}, {x: 0.055927164839836487, y: 0.0}, {x: 0.13397731980638722, y: 0.0}, {x: 0.2181795258659184, y: 1.346}, {x: 0.1872329873489385, y: 0.0}, {x: 0.1384709965808425, y: 0.0}, {x: 0.4724235007264843, y: 221.159543}, {x: 0.2281167114461557, y: 0.0}, {x: 0.14422046654410578, y: 57.7297}, {x: 0.08794556363245809, y: 0.0}, {x: 0.26832986140740234, y: 172.582673}, {x: 0.16409040223928156, y: 0.0}, {x: 0.07701498933355555, y: 0.0}, {x: 0.06425285659370826, y: 0.0}, {x: 0.08753444727384471, y: 0.0}, {x: 0.16989638955594122, y: 0.0}, {x: 0.14976768401784715, y: 0.0}, {x: 0.1278423820202948, y: 0.0}, {x: 0.09743747971401036, y: 0.0}, {x: 0.0824878762455395, y: 0.0}, {x: 0.284313726, y: 0.0}, {x: 0.188615123, y: 0.0}, {x: 0.202603743, y: 0.0}, {x: 0.293163384, y: 0.0}, {x: 0.168717048, y: 0.0}, {x: 0.271302645, y: 0.0}, {x: 0.2548928280492572, y: 0.0}, {x: 0.1961183159272163, y: 0.0}, {x: 0.196226415, y: 0.0}, {x: 0.265129683, y: 0.0}, {x: 0.271834061, y: 0.0}, {x: 0.3502216638585673, y: 0.0}, {x: 0.25950783, y: 0.0}, {x: 0.139261745, y: 0.0}, {x: 0.211753731, y: 0.0}, {x: 0.23093737127064162, y: 1.405256}, {x: 0.242771084, y: 0.0}, {x: 0.29766600735124077, y: 0.0}, {x: 0.150012357635167, y: 0.0}, {x: 0.31523934752962907, y: 0.0}, {x: 0.20087401824444445, y: 0.0}, {x: 0.131593559, y: 0.0}, {x: 0.18391475730919218, y: 0.0}, {x: 0.2200502454599136, y: 0.0}, {x: 0.4777565248941103, y: 1111.110965}, {x: 0.26216500295632944, y: 0.0}, {x: 0.18486560856023754, y: 0.0}, {x: 0.30841494916579615, y: 360.22096}, {x: 0.4753228200016372, y: 940.76283}, {x: 0.2656695957542919, y: 0.0}, {x: 0.20730710832127855, y: 0.0}, {x: 0.1585337295221696, y: 0.0}, {x: 0.1608362826541913, y: 388.743118}, {x: 0.06158640789131023, y: 0.0}, {x: 0.16683752007121935, y: 0.0}, {x: 0.09230780703486274, y: 0.0}, {x: 0.11471823414342465, y: 0.0}, {x: 0.1970411388948843, y: 0.0}, {x: 0.176139273, y: 0.0}, {x: 0.1960632962030104, y: 0.0}, {x: 0.1998379690764245, y: 0.0}, {x: 0.294639474211483, y: 0.0}, {x: 0.31247244125561685, y: 0.0}, {x: 0.20989992329417428, y: 0.45}, {x: 0.13586164929165304, y: 0.0}, {x: 0.14247676015628882, y: 0.0}, {x: 0.12096530884253394, y: 0.0}, {x: 0.25783188061802653, y: 0.0}, {x: 0.21617414246587754, y: 5e-05}, {x: 0.10150690587966872, y: 0.0}, {x: 0.2884353742557823, y: 0.0}, {x: 0.098654709, y: 0.0}, {x: 0.298219585, y: 0.0}, {x: 0.25948718, y: 0.0}, {x: 0.156905278, y: 0.0}, {x: 0.12832860825305736, y: 0.0}, {x: 0.12365270231638233, y: 0.0}, {x: 0.34673498957553583, y: 3939.66886}, {x: 0.09994344346537934, y: 0.0}, {x: 0.15384319048371248, y: 0.0}, {x: 0.08710332492456586, y: 0.0}, {x: 0.1008064250496964, y: 396.4304}, {x: 0.08771242595091847, y: 0.0}, {x: 0.07279396787813328, y: 0.0}, {x: 0.08975997195044808, y: 0.0}, {x: 0.2327239113289238, y: 0.0}, {x: 0.13996864357484995, y: 0.0}, {x: 0.11238594848464672, y: 0.0}, {x: 0.07722384171119502, y: 0.0}, {x: 0.12683826871399193, y: 0.0}, {x: 0.04969841533392698, y: 0.0}, {x: 0.08589690919919646, y: 0.0}, {x: 0.08440847300098046, y: 0.0}, {x: 0.1416893575578691, y: 0.0}, {x: 0.07848311498764579, y: 0.0}, {x: 0.12003189710750924, y: 0.0}, {x: 0.11250104445269098, y: 0.0}, {x: 0.12146322663045456, y: 0.0}, {x: 0.07908449461954427, y: 0.0}, {x: 0.18302933148776412, y: 68.97}, {x: 0.3203794253595913, y: 0.0}, {x: 0.3049432114731402, y: 0.0}, {x: 0.19910538052319265, y: 0.0}, {x: 0.22321962706557505, y: 132.94799999999998}, {x: 0.10588727144161017, y: 57.339039}, {x: 0.09438464304305884, y: 0.0}, {x: 0.05593369737141185, y: 0.0}, {x: 0.07395985420414321, y: 0.0}, {x: 0.058869252886378315, y: 0.0}, {x: 0.05674906983777565, y: 0.0}, {x: 0.06623712909682664, y: 0.0117}, {x: 0.10887306593552609, y: 0.0}, {x: 0.03712112270108925, y: 0.0}, {x: 0.056050940006493966, y: 0.0}, {x: 0.11600418219828901, y: 0.0}, {x: 0.21506941251442124, y: 0.0}, {x: 0.0912853786588141, y: 0.0}, {x: 0.13143456007082682, y: 0.0}, {x: 0.10387283348211648, y: 0.0}, {x: 0.22486987873836453, y: 0.0}, {x: 0.080193957, y: 0.0}, {x: 0.03608715374784385, y: 0.0}, {x: 0.08223008523128722, y: 0.0}, {x: 0.0999817215821605, y: 0.0}, {x: 0.1954196071749836, y: 0.0002}, {x: null, y: 0.0}, {x: 0.20008314333616634, y: 0.0}, {x: 0.15801071788718438, y: 0.0}, {x: 0.14087111440913444, y: 0.0}, {x: 0.05865493245251755, y: 0.0}, {x: 0.06351693746014342, y: 0.0}, {x: 0.02364470752969121, y: 0.0}, {x: 0.07473460471279844, y: 0.0}, {x: 0.14814725226561878, y: 0.0}, {x: 0.02768007445176082, y: 0.0}, {x: 0.19698510255493382, y: 0.0}, {x: 0.11938882755490565, y: 0.0}, {x: 0.06345309811770199, y: 0.0}, {x: 0.12884139818108034, y: 0.0}, {x: 0.03306355023241984, y: 0.0}, {x: 0.0742672349127409, y: 0.0}, {x: 0.12308948151428672, y: 0.0}, {x: 0.24482712232267015, y: 0.0}, {x: 0.12638999316454871, y: 0.0}, {x: 0.23676957330700815, y: 0.0}, {x: 0.14052797294684416, y: 0.0}, {x: 0.17759435843310808, y: 0.0}, {x: 0.08228521786817918, y: 0.0}, {x: 0.0653447346516356, y: 0.0}, {x: 0.13609367803255476, y: 0.0}, {x: 0.11243618229978904, y: 0.0}, {x: 0.11624743884635083, y: 3617.0713}, {x: 0.07377815666588729, y: 0.0}, {x: 0.18446495239034547, y: 21.541675}, {x: 0.09664054018139923, y: 0.0}, {x: 0.05874165804112491, y: 0.0}, {x: 0.11780230618104134, y: 0.021042}, {x: 0.07903555818915887, y: 0.0}, {x: 0.0805549164244736, y: 0.0}, {x: 0.08764630765802826, y: 0.0}, {x: 0.09250448189484507, y: 0.0}, {x: 0.30815025439350857, y: 0.0}, {x: 0.16285775372278072, y: 0.0}, {x: 0.14028667027972191, y: 0.0}, {x: 0.1180841879263694, y: 0.0}, {x: 0.07464877872898783, y: 0.0}, {x: 0.09864828140566781, y: 0.0}, {x: 0.13466738768482514, y: 0.0}, {x: 0.09448106493369524, y: 0.0}, {x: 0.15319340418138985, y: 0.0}, {x: 0.060741919796687804, y: 0.0}, {x: 0.12728577760545376, y: 0.0}, {x: 0.157733015, y: 0.0}, {x: 0.2385110123431836, y: 0.0}, {x: 0.24373477196341092, y: 0.0}, {x: 0.07651321397314578, y: 0.0}, {x: 0.1300490323111985, y: 0.0}, {x: 0.3174299949349316, y: 1244.3365}, {x: 0.4318491023054641, y: 0.0}, {x: 0.3836653314056802, y: 0.0}, {x: 0.151076381228392, y: 0.0}, {x: 0.11365019844612767, y: 0.0}, {x: 0.2758526586666667, y: 0.0}, {x: 0.12024460569824805, y: 0.0}, {x: 0.30648434793350926, y: 0.0}, {x: 0.10776200587027492, y: 0.0}, {x: 0.22013719790007147, y: 626.415468}, {x: 0.3163349109589605, y: 26.799356}, {x: 0.14963687161641007, y: 0.0}, {x: 0.10603472061165164, y: 0.0}, {x: 0.09219291237037036, y: 0.0}, {x: 0.23833388128451208, y: 0.0}, {x: 0.142641737, y: 0.0}, {x: 0.09186077182661123, y: 0.0}, {x: 0.11755401239965278, y: 0.0}, {x: 0.07652769872415761, y: 0.0}, {x: 0.115360888, y: 0.0}, {x: 0.19886664916597363, y: 0.016676}, {x: 0.2510933140770365, y: 0.0}, {x: 0.199237369, y: 0.0}, {x: 0.28307736525170424, y: 0.0}, {x: 0.15300508668427248, y: 0.0}, {x: 0.18075606006862824, y: 0.0}, {x: 0.05067640432047952, y: 0.0}, {x: 0.09223585323170048, y: 0.0}, {x: 0.17139813273533147, y: 0.0}, {x: 0.34540440048303395, y: 563.320881}, {x: 0.15334006301254852, y: 0.0}, {x: 0.15784006830643052, y: 0.0}, {x: 0.1295649625056773, y: 58.2}, {x: 0.13744229792894147, y: 0.0}, {x: 0.08226002218849603, y: 0.0}, {x: 0.10449106469875041, y: 0.0}, {x: 0.08510305414865126, y: 0.0}, {x: 0.1532454043136426, y: 0.0}, {x: 0.062080914760455796, y: 0.0}, {x: 0.2842732354320165, y: 0.0}, {x: 0.10665144306636726, y: 0.0}, {x: 0.08842705196109656, y: 0.0}, {x: 0.14203706918502396, y: 0.0}, {x: 0.17826504561844597, y: 0.0}, {x: 0.09965524991203742, y: 0.0}, {x: 0.14069767914881476, y: 0.0}, {x: 0.10641073868079577, y: 0.0}, {x: 0.11953057968294643, y: 0.0}, {x: 0.23415369693183635, y: 0.0}, {x: 0.316456044682406, y: 0.0}, {x: 0.11873791795444526, y: 0.0}, {x: 0.40017281298758717, y: 0.0}, {x: 0.175498576, y: 0.0}, {x: 0.18689956331819504, y: 0.0}, {x: 0.1761501514878976, y: 0.0}], 'label': 'Individual municipalitys', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.06345647144329823, y: 17.634192522110922}, {x: 0.12685416308724437, y: 48.657046035079105}, {x: 0.17989982959217435, y: 604.5015071881513}, {x: 0.34355804663043776, y: 636.2212734474932}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.06345647144329823, y: -9.206253620931754}, {x: 0.12685416308724437, y: -5.854010128698029}, {x: 0.17989982959217435, y: -136.00306454647853}, {x: 0.34355804663043776, y: 306.3681397746628}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.06345647144329823, y: 44.4746386651536}, {x: 0.12685416308724437, y: 103.16810219885625}, {x: 0.17989982959217435, y: 1345.0060789227812}, {x: 0.34355804663043776, y: 966.0744071203237}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.27299113695170296, y: 0.0}, {x: 0.25243718798931475, y: 0.0}, {x: 0.2095238096628571, y: 0.0}, {x: 0.16967688223462984, y: 0.0}, {x: 0.20148819060532022, y: 1399.429818}, {x: 0.20886684447848947, y: 0.093729}, {x: 0.16659613215532498, y: 0.0}, {x: 0.1591444981867341, y: 0.0}, {x: 0.17684588079038188, y: 0.0}, {x: 0.2057784433496076, y: 0.0}, {x: 0.18432437442635954, y: 0.0}, {x: 0.1917377925633527, y: 0.0}, {x: 0.11902189100909048, y: 0.0}, {x: 0.17780130288348486, y: 0.0}, {x: 0.18329303374627012, y: 0.0}, {x: 0.20482619646047706, y: 0.0}, {x: 0.2963666967047163, y: 0.0}, {x: 0.19947420319848833, y: 0.0}, {x: 0.1731396128941158, y: 0.0}, {x: 0.16543778783297308, y: 0.175}, {x: 0.16915318051434994, y: 0.0}, {x: 0.16074381822336545, y: 0.0}, {x: 0.3473860239989251, y: 0.0}, {x: 0.3378480603932116, y: 0.0}, {x: 0.13228492134165898, y: 0.0}, {x: 0.3252936727887247, y: 0.0}, {x: 0.1359252561199518, y: 0.0}, {x: 0.17767768611199997, y: 0.0}, {x: 0.19140625, y: 0.0}, {x: 0.263908702, y: 0.0}, {x: 0.108739837, y: 0.0}, {x: 0.102564103, y: 0.0}, {x: 0.147704591, y: 0.0}, {x: 0.22351301107992566, y: 0.0}, {x: 0.27813504861093247, y: 0.0}, {x: 0.197781885, y: 0.0}, {x: 0.132408575, y: 0.0}, {x: 0.26016819580737444, y: 0.0}, {x: 0.13768197673150684, y: 0.0}, {x: 0.197867299, y: 0.0}, {x: 0.19158075581013745, y: 0.0}, {x: 0.243010753, y: 0.0}, {x: 0.211058264, y: 0.0}, {x: 0.179372197, y: 0.0}, {x: 0.150867824, y: 0.0}, {x: 0.15326975469209808, y: 0.0}, {x: 0.08899192757168439, y: 0.0}, {x: 0.1225092426017119, y: 0.0}, {x: 0.1297705992256876, y: 0.0}, {x: 0.13199308108704144, y: 0.0}, {x: 0.282740914986396, y: 33.039}, {x: 0.12498733167687118, y: 0.0}, {x: 0.13733073778628793, y: 0.0}, {x: 0.13606388648796622, y: 0.0}, {x: 0.11155759809201417, y: 0.0}, {x: 0.18269924548424876, y: 0.0}, {x: 0.2224880714045857, y: 0.0}, {x: 0.12225660839983049, y: 999.999999}, {x: 0.14431265298907164, y: 0.0}, {x: 0.40029346852487707, y: 2369.610135}, {x: 0.10313758589254034, y: 0.0}, {x: 0.12791391655514034, y: 0.0}, {x: 0.17068145083374886, y: 0.0}, {x: 0.4032812922509393, y: 1019.716757}, {x: 0.15103726979277082, y: 0.0}, {x: 0.19125475305807982, y: 40.416186}, {x: 0.20080325958859283, y: 0.0}, {x: 0.2699676663693086, y: 0.0}, {x: 0.22364689673864496, y: 0.0}, {x: 0.2174376324653816, y: 0.0}, {x: 0.10366018375, y: 0.0}, {x: 0.066869301, y: 0.0}, {x: 0.066570188, y: 0.0}, {x: 0.10526315799999998, y: 0.0}, {x: 0.1516169674090718, y: 0.0}, {x: 0.06984413049701929, y: 1.335464}, {x: 0.10054775203579369, y: 0.072}, {x: 0.293336106271621, y: 0.0}, {x: 0.3361081896138887, y: 176.850903}, {x: 0.1672001289309271, y: 0.0}, {x: 0.09996892965473048, y: 0.0}, {x: 0.1725015528308928, y: 0.0}, {x: 0.11734310426380846, y: 0.0}, {x: 0.048607718582193454, y: 0.0}, {x: 0.09929170831745789, y: 0.0}, {x: 0.0961108627097303, y: 0.0}, {x: 0.0773673467173392, y: 0.0}, {x: 0.179011864822488, y: 0.0}, {x: 0.055927164839836487, y: 0.0}, {x: 0.13397731980638722, y: 0.0}, {x: 0.2181795258659184, y: 1.346}, {x: 0.1872329873489385, y: 0.0}, {x: 0.1384709965808425, y: 0.0}, {x: 0.4724235007264843, y: 221.159543}, {x: 0.2281167114461557, y: 0.0}, {x: 0.14422046654410578, y: 57.7297}, {x: 0.08794556363245809, y: 0.0}, {x: 0.26832986140740234, y: 172.582673}, {x: 0.16409040223928156, y: 0.0}, {x: 0.07701498933355555, y: 0.0}, {x: 0.06425285659370826, y: 0.0}, {x: 0.08753444727384471, y: 0.0}, {x: 0.16989638955594122, y: 0.0}, {x: 0.14976768401784715, y: 0.0}, {x: 0.1278423820202948, y: 0.0}, {x: 0.09743747971401036, y: 0.0}, {x: 0.0824878762455395, y: 0.0}, {x: 0.284313726, y: 0.0}, {x: 0.188615123, y: 0.0}, {x: 0.202603743, y: 0.0}, {x: 0.293163384, y: 0.0}, {x: 0.168717048, y: 0.0}, {x: 0.271302645, y: 0.0}, {x: 0.2548928280492572, y: 0.0}, {x: 0.1961183159272163, y: 0.0}, {x: 0.196226415, y: 0.0}, {x: 0.265129683, y: 0.0}, {x: 0.271834061, y: 0.0}, {x: 0.3502216638585673, y: 0.0}, {x: 0.25950783, y: 0.0}, {x: 0.139261745, y: 0.0}, {x: 0.211753731, y: 0.0}, {x: 0.23093737127064162, y: 1.405256}, {x: 0.242771084, y: 0.0}, {x: 0.29766600735124077, y: 0.0}, {x: 0.150012357635167, y: 0.0}, {x: 0.31523934752962907, y: 0.0}, {x: 0.20087401824444445, y: 0.0}, {x: 0.131593559, y: 0.0}, {x: 0.18391475730919218, y: 0.0}, {x: 0.2200502454599136, y: 0.0}, {x: 0.4777565248941103, y: 1111.110965}, {x: 0.26216500295632944, y: 0.0}, {x: 0.18486560856023754, y: 0.0}, {x: 0.30841494916579615, y: 360.22096}, {x: 0.4753228200016372, y: 940.76283}, {x: 0.2656695957542919, y: 0.0}, {x: 0.20730710832127855, y: 0.0}, {x: 0.1585337295221696, y: 0.0}, {x: 0.1608362826541913, y: 388.743118}, {x: 0.06158640789131023, y: 0.0}, {x: 0.16683752007121935, y: 0.0}, {x: 0.09230780703486274, y: 0.0}, {x: 0.11471823414342465, y: 0.0}, {x: 0.1970411388948843, y: 0.0}, {x: 0.176139273, y: 0.0}, {x: 0.1960632962030104, y: 0.0}, {x: 0.1998379690764245, y: 0.0}, {x: 0.294639474211483, y: 0.0}, {x: 0.31247244125561685, y: 0.0}, {x: 0.20989992329417428, y: 0.45}, {x: 0.13586164929165304, y: 0.0}, {x: 0.14247676015628882, y: 0.0}, {x: 0.12096530884253394, y: 0.0}, {x: 0.25783188061802653, y: 0.0}, {x: 0.21617414246587754, y: 5e-05}, {x: 0.10150690587966872, y: 0.0}, {x: 0.2884353742557823, y: 0.0}, {x: 0.098654709, y: 0.0}, {x: 0.298219585, y: 0.0}, {x: 0.25948718, y: 0.0}, {x: 0.156905278, y: 0.0}, {x: 0.12832860825305736, y: 0.0}, {x: 0.12365270231638233, y: 0.0}, {x: 0.34673498957553583, y: 3939.66886}, {x: 0.09994344346537934, y: 0.0}, {x: 0.15384319048371248, y: 0.0}, {x: 0.08710332492456586, y: 0.0}, {x: 0.1008064250496964, y: 396.4304}, {x: 0.08771242595091847, y: 0.0}, {x: 0.07279396787813328, y: 0.0}, {x: 0.08975997195044808, y: 0.0}, {x: 0.2327239113289238, y: 0.0}, {x: 0.13996864357484995, y: 0.0}, {x: 0.11238594848464672, y: 0.0}, {x: 0.07722384171119502, y: 0.0}, {x: 0.12683826871399193, y: 0.0}, {x: 0.04969841533392698, y: 0.0}, {x: 0.08589690919919646, y: 0.0}, {x: 0.08440847300098046, y: 0.0}, {x: 0.1416893575578691, y: 0.0}, {x: 0.07848311498764579, y: 0.0}, {x: 0.12003189710750924, y: 0.0}, {x: 0.11250104445269098, y: 0.0}, {x: 0.12146322663045456, y: 0.0}, {x: 0.07908449461954427, y: 0.0}, {x: 0.18302933148776412, y: 68.97}, {x: 0.3203794253595913, y: 0.0}, {x: 0.3049432114731402, y: 0.0}, {x: 0.19910538052319265, y: 0.0}, {x: 0.22321962706557505, y: 132.94799999999998}, {x: 0.10588727144161017, y: 57.339039}, {x: 0.09438464304305884, y: 0.0}, {x: 0.05593369737141185, y: 0.0}, {x: 0.07395985420414321, y: 0.0}, {x: 0.058869252886378315, y: 0.0}, {x: 0.05674906983777565, y: 0.0}, {x: 0.06623712909682664, y: 0.0117}, {x: 0.10887306593552609, y: 0.0}, {x: 0.03712112270108925, y: 0.0}, {x: 0.056050940006493966, y: 0.0}, {x: 0.11600418219828901, y: 0.0}, {x: 0.21506941251442124, y: 0.0}, {x: 0.0912853786588141, y: 0.0}, {x: 0.13143456007082682, y: 0.0}, {x: 0.10387283348211648, y: 0.0}, {x: 0.22486987873836453, y: 0.0}, {x: 0.080193957, y: 0.0}, {x: 0.03608715374784385, y: 0.0}, {x: 0.08223008523128722, y: 0.0}, {x: 0.0999817215821605, y: 0.0}, {x: 0.1954196071749836, y: 0.0002}, {x: null, y: 0.0}, {x: 0.20008314333616634, y: 0.0}, {x: 0.15801071788718438, y: 0.0}, {x: 0.14087111440913444, y: 0.0}, {x: 0.05865493245251755, y: 0.0}, {x: 0.06351693746014342, y: 0.0}, {x: 0.02364470752969121, y: 0.0}, {x: 0.07473460471279844, y: 0.0}, {x: 0.14814725226561878, y: 0.0}, {x: 0.02768007445176082, y: 0.0}, {x: 0.19698510255493382, y: 0.0}, {x: 0.11938882755490565, y: 0.0}, {x: 0.06345309811770199, y: 0.0}, {x: 0.12884139818108034, y: 0.0}, {x: 0.03306355023241984, y: 0.0}, {x: 0.0742672349127409, y: 0.0}, {x: 0.12308948151428672, y: 0.0}, {x: 0.24482712232267015, y: 0.0}, {x: 0.12638999316454871, y: 0.0}, {x: 0.23676957330700815, y: 0.0}, {x: 0.14052797294684416, y: 0.0}, {x: 0.17759435843310808, y: 0.0}, {x: 0.08228521786817918, y: 0.0}, {x: 0.0653447346516356, y: 0.0}, {x: 0.13609367803255476, y: 0.0}, {x: 0.11243618229978904, y: 0.0}, {x: 0.11624743884635083, y: 3617.0713}, {x: 0.07377815666588729, y: 0.0}, {x: 0.18446495239034547, y: 21.541675}, {x: 0.09664054018139923, y: 0.0}, {x: 0.05874165804112491, y: 0.0}, {x: 0.11780230618104134, y: 0.021042}, {x: 0.07903555818915887, y: 0.0}, {x: 0.0805549164244736, y: 0.0}, {x: 0.08764630765802826, y: 0.0}, {x: 0.09250448189484507, y: 0.0}, {x: 0.30815025439350857, y: 0.0}, {x: 0.16285775372278072, y: 0.0}, {x: 0.14028667027972191, y: 0.0}, {x: 0.1180841879263694, y: 0.0}, {x: 0.07464877872898783, y: 0.0}, {x: 0.09864828140566781, y: 0.0}, {x: 0.13466738768482514, y: 0.0}, {x: 0.09448106493369524, y: 0.0}, {x: 0.15319340418138985, y: 0.0}, {x: 0.060741919796687804, y: 0.0}, {x: 0.12728577760545376, y: 0.0}, {x: 0.157733015, y: 0.0}, {x: 0.2385110123431836, y: 0.0}, {x: 0.24373477196341092, y: 0.0}, {x: 0.07651321397314578, y: 0.0}, {x: 0.1300490323111985, y: 0.0}, {x: 0.3174299949349316, y: 1244.3365}, {x: 0.4318491023054641, y: 0.0}, {x: 0.3836653314056802, y: 0.0}, {x: 0.151076381228392, y: 0.0}, {x: 0.11365019844612767, y: 0.0}, {x: 0.2758526586666667, y: 0.0}, {x: 0.12024460569824805, y: 0.0}, {x: 0.30648434793350926, y: 0.0}, {x: 0.10776200587027492, y: 0.0}, {x: 0.22013719790007147, y: 626.415468}, {x: 0.3163349109589605, y: 26.799356}, {x: 0.14963687161641007, y: 0.0}, {x: 0.10603472061165164, y: 0.0}, {x: 0.09219291237037036, y: 0.0}, {x: 0.23833388128451208, y: 0.0}, {x: 0.142641737, y: 0.0}, {x: 0.09186077182661123, y: 0.0}, {x: 0.11755401239965278, y: 0.0}, {x: 0.07652769872415761, y: 0.0}, {x: 0.115360888, y: 0.0}, {x: 0.19886664916597363, y: 0.016676}, {x: 0.2510933140770365, y: 0.0}, {x: 0.199237369, y: 0.0}, {x: 0.28307736525170424, y: 0.0}, {x: 0.15300508668427248, y: 0.0}, {x: 0.18075606006862824, y: 0.0}, {x: 0.05067640432047952, y: 0.0}, {x: 0.09223585323170048, y: 0.0}, {x: 0.17139813273533147, y: 0.0}, {x: 0.34540440048303395, y: 563.320881}, {x: 0.15334006301254852, y: 0.0}, {x: 0.15784006830643052, y: 0.0}, {x: 0.1295649625056773, y: 58.2}, {x: 0.13744229792894147, y: 0.0}, {x: 0.08226002218849603, y: 0.0}, {x: 0.10449106469875041, y: 0.0}, {x: 0.08510305414865126, y: 0.0}, {x: 0.1532454043136426, y: 0.0}, {x: 0.062080914760455796, y: 0.0}, {x: 0.2842732354320165, y: 0.0}, {x: 0.10665144306636726, y: 0.0}, {x: 0.08842705196109656, y: 0.0}, {x: 0.14203706918502396, y: 0.0}, {x: 0.17826504561844597, y: 0.0}, {x: 0.09965524991203742, y: 0.0}, {x: 0.14069767914881476, y: 0.0}, {x: 0.10641073868079577, y: 0.0}, {x: 0.11953057968294643, y: 0.0}, {x: 0.23415369693183635, y: 0.0}, {x: 0.316456044682406, y: 0.0}, {x: 0.11873791795444526, y: 0.0}, {x: 0.40017281298758717, y: 0.0}, {x: 0.175498576, y: 0.0}, {x: 0.18689956331819504, y: 0.0}, {x: 0.1761501514878976, y: 0.0}], 'label': 'Individual municipalitys', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.06345647144329823, y: 16.993237793815602}, {x: 0.12685416308724437, y: 48.2505911235821}, {x: 0.17989982959217435, y: 586.6414353582396}, {x: 0.34355804663043776, y: 640.3420873512839}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.06345647144329823, y: -9.917409191612887}, {x: 0.12685416308724437, y: -6.378868614528393}, {x: 0.17989982959217435, y: -161.31943379554332}, {x: 0.34355804663043776, y: 328.84888181945513}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.06345647144329823, y: 43.903884779244095}, {x: 0.12685416308724437, y: 102.88005086169258}, {x: 0.17989982959217435, y: 1334.6023045120226}, {x: 0.34355804663043776, y: 951.8352928831127}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_MINORPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_MINORPCT.html index 06f9548..2a8da5d 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_MINORPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bymunicipality_MINORPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.14600781690089334, y: 0.0}, {x: 0.14866434363995357, y: 0.0}, {x: 0.0006349206717460317, y: 0.0}, {x: 0.09096612294562945, y: 0.0}, {x: 0.2872972650912279, y: 1399.429818}, {x: 0.027405990992033145, y: 0.093729}, {x: 0.04897772339273727, y: 0.0}, {x: 0.05417233998297996, y: 0.0}, {x: 0.06144496965766373, y: 0.0}, {x: 0.10792416143114107, y: 0.0}, {x: 0.16033064787118162, y: 0.0}, {x: 0.21148149690948728, y: 0.0}, {x: 0.0887425679054592, y: 0.0}, {x: 0.12767025507061186, y: 0.0}, {x: 0.10515788439964587, y: 0.0}, {x: 0.16910091729115598, y: 0.0}, {x: 0.1930280245735703, y: 0.0}, {x: 0.011501807369043706, y: 0.0}, {x: 0.05427942113813719, y: 0.0}, {x: 0.08567498528571428, y: 0.175}, {x: 0.09145919788813969, y: 0.0}, {x: 0.187288356407528, y: 0.0}, {x: 0.15187346427257367, y: 0.0}, {x: 0.057345913484867055, y: 0.0}, {x: 0.07061362944064138, y: 0.0}, {x: 0.12370005494198139, y: 0.0}, {x: 0.09132007242646173, y: 0.0}, {x: 0.07542857172914286, y: 0.0}, {x: 0.025542784, y: 0.0}, {x: 0.072033898, y: 0.0}, {x: 0.162601626, y: 0.0}, {x: 0.049731183, y: 0.0}, {x: 0.111776447, y: 0.0}, {x: 0.09758364347769516, y: 0.0}, {x: 0.0525187566323687, y: 0.0}, {x: 0.075785582, y: 0.0}, {x: 0.022698613, y: 0.0}, {x: 0.10743801645708836, y: 0.0}, {x: 0.036986301345205475, y: 0.0}, {x: 0.059933407, y: 0.0}, {x: 0.10910652919072165, y: 0.0}, {x: 0.062365591, y: 0.0}, {x: 0.103448276, y: 0.0}, {x: 0.049327354, y: 0.0}, {x: 0.116154873, y: 0.0}, {x: 0.061307901923705714, y: 0.0}, {x: 0.18194842399544617, y: 0.0}, {x: 0.1575498195141991, y: 0.0}, {x: 0.11401141677389726, y: 0.0}, {x: 0.08595615365205123, y: 0.0}, {x: 0.24673391142265602, y: 33.039}, {x: 0.07584655766774959, y: 0.0}, {x: 0.03673408686927424, y: 0.0}, {x: 0.04869809984306826, y: 0.0}, {x: 0.06527184303875055, y: 0.0}, {x: 0.22348232161922763, y: 0.0}, {x: 0.18540906717840022, y: 0.0}, {x: 0.06969163553738836, y: 999.999999}, {x: 0.05370524576623647, y: 0.0}, {x: 0.2807476728002667, y: 2369.610135}, {x: 0.06310891360644177, y: 0.0}, {x: 0.0700884686209579, y: 0.0}, {x: 0.03719984268219394, y: 0.0}, {x: 0.42051853165363917, y: 1019.716757}, {x: 0.13253480327743625, y: 0.0}, {x: 0.07794676815941064, y: 40.416186}, {x: 0.07550257135289076, y: 0.0}, {x: 0.2017284992976391, y: 0.0}, {x: 0.16616199835862983, y: 0.0}, {x: 0.18036978767899295, y: 0.0}, {x: 0.14885752700000002, y: 0.0}, {x: 0.040358744, y: 0.0}, {x: 0.445730825, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.06215875692776144, y: 0.0}, {x: 0.14272355328147285, y: 1.335464}, {x: 0.0847117522847226, y: 0.072}, {x: 0.29035350802185456, y: 0.0}, {x: 0.6164372345500128, y: 176.850903}, {x: 0.18195329081429581, y: 0.0}, {x: 0.11752369098539692, y: 0.0}, {x: 0.20049721349991803, y: 0.0}, {x: 0.12439008525255352, y: 0.0}, {x: 0.07022471931924767, y: 0.0}, {x: 0.09509954082174578, y: 0.0}, {x: 0.057964535843093426, y: 0.0}, {x: 0.10687175389752297, y: 0.0}, {x: 0.14637230624305814, y: 0.0}, {x: 0.08602749901337792, y: 0.0}, {x: 0.05189620768234959, y: 0.0}, {x: 0.11095627280019586, y: 1.346}, {x: 0.014153511031573217, y: 0.0}, {x: 0.0985841637399056, y: 0.0}, {x: 0.8686037358248168, y: 221.159543}, {x: 0.43357281788228874, y: 0.0}, {x: 0.19869524064269933, y: 57.7297}, {x: 0.2924537138944394, y: 0.0}, {x: 0.33892752288494826, y: 172.582673}, {x: 0.0843955194165701, y: 0.0}, {x: 0.12399999983066666, y: 0.0}, {x: 0.05950437740762724, y: 0.0}, {x: 0.057258440809709044, y: 0.0}, {x: 0.09487446479665625, y: 0.0}, {x: 0.1593232943439301, y: 0.0}, {x: 0.07362417591052514, y: 0.0}, {x: 0.06404744248687917, y: 0.0}, {x: 0.034409515502124045, y: 0.0}, {x: 0.096975089, y: 0.0}, {x: 0.08185654, y: 0.0}, {x: 0.046116505, y: 0.0}, {x: 0.105202312, y: 0.0}, {x: 0.041593439, y: 0.0}, {x: 0.037073171, y: 0.0}, {x: 0.06059421454104769, y: 0.0}, {x: 0.10244912071714384, y: 0.0}, {x: 0.047932331, y: 0.0}, {x: 0.097491039, y: 0.0}, {x: 0.167030568, y: 0.0}, {x: 0.07583311466452373, y: 0.0}, {x: 0.080824972, y: 0.0}, {x: 0.131991052, y: 0.0}, {x: 0.212686567, y: 0.0}, {x: 0.10537913171872974, y: 1.405256}, {x: 0.062048193, y: 0.0}, {x: 0.19580038190291793, y: 0.0}, {x: 0.09214145383045187, y: 0.0}, {x: 0.13902860734509587, y: 0.0}, {x: 0.09005847968888889, y: 0.0}, {x: 0.029233315, y: 0.0}, {x: 0.10167130911838439, y: 0.0}, {x: 0.11569851188238119, y: 0.0}, {x: 0.7186760593456725, y: 1111.110965}, {x: 0.17291298054165996, y: 0.0}, {x: 0.14945368162707837, y: 0.0}, {x: 0.30016435352136595, y: 360.22096}, {x: 0.5803794179719596, y: 940.76283}, {x: 0.2130594497696229, y: 0.0}, {x: 0.16727282034117918, y: 0.0}, {x: 0.08103745175355145, y: 0.0}, {x: 0.11423687760430169, y: 388.743118}, {x: 0.149228478813752, y: 0.0}, {x: 0.1370682289116929, y: 0.0}, {x: 0.09897816057383291, y: 0.0}, {x: 0.11150684951143837, y: 0.0}, {x: 0.054567600544579785, y: 0.0}, {x: 0.065130261, y: 0.0}, {x: 0.07796217717985333, y: 0.0}, {x: 0.1863354034069673, y: 0.0}, {x: 0.1004271382473428, y: 0.0}, {x: 0.3375414572358511, y: 0.0}, {x: 0.12983469738356604, y: 0.45}, {x: 0.052373158872340425, y: 0.0}, {x: 0.1841405003447756, y: 0.0}, {x: 0.11432880819788838, y: 0.0}, {x: 0.17817608687563227, y: 0.0}, {x: 0.10745933069587356, y: 5e-05}, {x: 0.10782721663478403, y: 0.0}, {x: 0.06213151891020409, y: 0.0}, {x: 0.058710913, y: 0.0}, {x: 0.10798816600000001, y: 0.0}, {x: 0.042051282, y: 0.0}, {x: 0.051079137, y: 0.0}, {x: 0.06083411725776105, y: 0.0}, {x: 0.11865704293558618, y: 0.0}, {x: 0.5215631929184774, y: 3939.66886}, {x: 0.1949583907657752, y: 0.0}, {x: 0.16676968722904564, y: 0.0}, {x: 0.11276602586213207, y: 0.0}, {x: 0.20354804139902372, y: 396.4304}, {x: 0.18546767184958224, y: 0.0}, {x: 0.28029345844854286, y: 0.0}, {x: 0.2604111753173432, y: 0.0}, {x: 0.3434155765964254, y: 0.0}, {x: 0.17251446184635347, y: 0.0}, {x: 0.11368379194812679, y: 0.0}, {x: 0.10251197911078845, y: 0.0}, {x: 0.11918430310050553, y: 0.0}, {x: 0.0647076286224399, y: 0.0}, {x: 0.1309866229984477, y: 0.0}, {x: 0.23531186377773586, y: 0.0}, {x: 0.20318264247545803, y: 0.0}, {x: 0.13032397413952485, y: 0.0}, {x: 0.11343760513382946, y: 0.0}, {x: 0.19571899627843292, y: 0.0}, {x: 0.15461281798704338, y: 0.0}, {x: 0.21877316999861599, y: 0.0}, {x: 0.314138058340499, y: 68.97}, {x: 0.5607041684087414, y: 0.0}, {x: 0.6133895974584894, y: 0.0}, {x: 0.28997068254344216, y: 0.0}, {x: 0.39829257899680814, y: 132.94799999999998}, {x: 0.26764092971080744, y: 57.339039}, {x: 0.274800413969249, y: 0.0}, {x: 0.38545644956107544, y: 0.0}, {x: 0.24215607405088493, y: 0.0}, {x: 0.16055519693021306, y: 0.0}, {x: 0.14956855223777565, y: 0.0}, {x: 0.3164930450148733, y: 0.0117}, {x: 0.16314707540599885, y: 0.0}, {x: 0.18184221683618865, y: 0.0}, {x: 0.22902085287091423, y: 0.0}, {x: 0.2627477555001694, y: 0.0}, {x: 0.35549732152997865, y: 0.0}, {x: 0.19735576928701923, y: 0.0}, {x: 0.2785397817100156, y: 0.0}, {x: 0.20839485335435562, y: 0.0}, {x: 0.43800522583751117, y: 0.0}, {x: 0.279180388, y: 0.0}, {x: 0.14775306428461188, y: 0.0}, {x: 0.11858519976899633, y: 0.0}, {x: 0.3107293001964906, y: 0.0}, {x: 0.2531188444783322, y: 0.0002}, {x: null, y: 0.0}, {x: 0.1377938519699819, y: 0.0}, {x: 0.314764010986199, y: 0.0}, {x: 0.2014238728546984, y: 0.0}, {x: 0.16300902712004012, y: 0.0}, {x: 0.25442077410341823, y: 0.0}, {x: 0.22921615216016286, y: 0.0}, {x: 0.07459882597111546, y: 0.0}, {x: 0.13788300835475528, y: 0.0}, {x: 0.19589141589077402, y: 0.0}, {x: 0.2301078205472226, y: 0.0}, {x: 0.14974842777163522, y: 0.0}, {x: 0.21697995780536536, y: 0.0}, {x: 0.2812270726579696, y: 0.0}, {x: 0.2997363741204095, y: 0.0}, {x: 0.20463062122015527, y: 0.0}, {x: 0.2918220847243648, y: 0.0}, {x: 0.4156199033084638, y: 0.0}, {x: 0.29223884684187335, y: 0.0}, {x: 0.7342540728462822, y: 0.0}, {x: 0.28076516217577574, y: 0.0}, {x: 0.18078240057598255, y: 0.0}, {x: 0.07477022441285086, y: 0.0}, {x: 0.11093914889637707, y: 0.0}, {x: 0.34525285923191407, y: 0.0}, {x: 0.2702531646983123, y: 0.0}, {x: 0.05697823305416134, y: 3617.0713}, {x: 0.0587004676970219, y: 0.0}, {x: 0.12281984931422303, y: 21.541675}, {x: 0.047748564601087944, y: 0.0}, {x: 0.08764326293315998, y: 0.0}, {x: 0.018248968016800638, y: 0.021042}, {x: 0.07682242968205609, y: 0.0}, {x: 0.04195910880248703, y: 0.0}, {x: 0.05106661576610836, y: 0.0}, {x: 0.0644734909956675, y: 0.0}, {x: 0.7100445269027529, y: 0.0}, {x: 0.15942234200014158, y: 0.0}, {x: 0.15623895386756217, y: 0.0}, {x: 0.08739084402348504, y: 0.0}, {x: 0.10055655128582211, y: 0.0}, {x: 0.08987142481579638, y: 0.0}, {x: 0.09911412792004141, y: 0.0}, {x: 0.05829132750743182, y: 0.0}, {x: 0.09067390219689131, y: 0.0}, {x: 0.019379844858703314, y: 0.0}, {x: 0.11102319074490231, y: 0.0}, {x: 0.039195637, y: 0.0}, {x: 0.08135039946602525, y: 0.0}, {x: 0.1675666337390384, y: 0.0}, {x: 0.10315430530349531, y: 0.0}, {x: 0.19273484495441925, y: 0.0}, {x: 0.5818110273833165, y: 1244.3365}, {x: 0.7998919927908096, y: 0.0}, {x: 0.5468199518035726, y: 0.0}, {x: 0.16369120912065993, y: 0.0}, {x: 0.06893617030468084, y: 0.0}, {x: 0.10820332178510317, y: 0.0}, {x: 0.1147994465242047, y: 0.0}, {x: 0.18243848992319953, y: 0.0}, {x: 0.02528227799779087, y: 0.0}, {x: 0.28689438342729745, y: 626.415468}, {x: 0.34668819698141484, y: 26.799356}, {x: 0.12496774744611679, y: 0.0}, {x: 0.182486948532748, y: 0.0}, {x: 0.13988808951851853, y: 0.0}, {x: 0.23918499912667945, y: 0.0}, {x: 0.065243536, y: 0.0}, {x: 0.06715176737775468, y: 0.0}, {x: 0.07899305565520834, y: 0.0}, {x: 0.08966304953169618, y: 0.0}, {x: 0.05552128299999999, y: 0.0}, {x: 0.046103778747604414, y: 0.016676}, {x: 0.08330261740840399, y: 0.0}, {x: 0.033269962, y: 0.0}, {x: 0.030414263411903515, y: 0.0}, {x: 0.05134618218993674, y: 0.0}, {x: 0.08885731014160328, y: 0.0}, {x: 0.14605394592467533, y: 0.0}, {x: 0.12223409128857012, y: 0.0}, {x: 0.1535433072010414, y: 0.0}, {x: 0.46566410375190603, y: 563.320881}, {x: 0.12079082816349192, y: 0.0}, {x: 0.09330797582099133, y: 0.0}, {x: 0.12005496501504302, y: 58.2}, {x: 0.2662781112369598, y: 0.0}, {x: 0.24161686585740375, y: 0.0}, {x: 0.21775072107997434, y: 0.0}, {x: 0.2174373794115607, y: 0.0}, {x: 0.38631170045926644, y: 0.0}, {x: 0.1897069872307789, y: 0.0}, {x: 0.36442963678986195, y: 0.0}, {x: 0.05139720567265469, y: 0.0}, {x: 0.0477726263321911, y: 0.0}, {x: 0.1324553765572486, y: 0.0}, {x: 0.04074542041850916, y: 0.0}, {x: 0.055712327736676615, y: 0.0}, {x: 0.16944688319622475, y: 0.0}, {x: 0.089873038183345, y: 0.0}, {x: 0.09723214305758927, y: 0.0}, {x: 0.20282515996515196, y: 0.0}, {x: 0.1299248117780451, y: 0.0}, {x: 0.08113781881148316, y: 0.0}, {x: 0.4005554610836593, y: 0.0}, {x: 0.038746439, y: 0.0}, {x: 0.05152838422707424, y: 0.0}, {x: 0.05441088218923785, y: 0.0}], 'label': 'Individual municipalitys', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.03621573373881564, y: 96.55553888608553}, {x: 0.09524295642741396, y: 14.953824637798407}, {x: 0.159050582831405, y: 2.4976583870627134}, {x: 0.5343252280552151, y: 734.9471607128572}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.03621573373881564, y: -21.900628204789683}, {x: 0.09524295642741396, y: -8.306620690983253}, {x: 0.159050582831405, y: -0.1651207834080548}, {x: 0.5343252280552151, y: 381.88540128469054}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.03621573373881564, y: 215.01170597696074}, {x: 0.09524295642741396, y: 38.21426996658007}, {x: 0.159050582831405, y: 5.1604375575334815}, {x: 0.5343252280552151, y: 1088.008920141024}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.14600781690089334, y: 0.0}, {x: 0.14866434363995357, y: 0.0}, {x: 0.0006349206717460317, y: 0.0}, {x: 0.09096612294562945, y: 0.0}, {x: 0.2872972650912279, y: 1399.429818}, {x: 0.027405990992033145, y: 0.093729}, {x: 0.04897772339273727, y: 0.0}, {x: 0.05417233998297996, y: 0.0}, {x: 0.06144496965766373, y: 0.0}, {x: 0.10792416143114107, y: 0.0}, {x: 0.16033064787118162, y: 0.0}, {x: 0.21148149690948728, y: 0.0}, {x: 0.0887425679054592, y: 0.0}, {x: 0.12767025507061186, y: 0.0}, {x: 0.10515788439964587, y: 0.0}, {x: 0.16910091729115598, y: 0.0}, {x: 0.1930280245735703, y: 0.0}, {x: 0.011501807369043706, y: 0.0}, {x: 0.05427942113813719, y: 0.0}, {x: 0.08567498528571428, y: 0.175}, {x: 0.09145919788813969, y: 0.0}, {x: 0.187288356407528, y: 0.0}, {x: 0.15187346427257367, y: 0.0}, {x: 0.057345913484867055, y: 0.0}, {x: 0.07061362944064138, y: 0.0}, {x: 0.12370005494198139, y: 0.0}, {x: 0.09132007242646173, y: 0.0}, {x: 0.07542857172914286, y: 0.0}, {x: 0.025542784, y: 0.0}, {x: 0.072033898, y: 0.0}, {x: 0.162601626, y: 0.0}, {x: 0.049731183, y: 0.0}, {x: 0.111776447, y: 0.0}, {x: 0.09758364347769516, y: 0.0}, {x: 0.0525187566323687, y: 0.0}, {x: 0.075785582, y: 0.0}, {x: 0.022698613, y: 0.0}, {x: 0.10743801645708836, y: 0.0}, {x: 0.036986301345205475, y: 0.0}, {x: 0.059933407, y: 0.0}, {x: 0.10910652919072165, y: 0.0}, {x: 0.062365591, y: 0.0}, {x: 0.103448276, y: 0.0}, {x: 0.049327354, y: 0.0}, {x: 0.116154873, y: 0.0}, {x: 0.061307901923705714, y: 0.0}, {x: 0.18194842399544617, y: 0.0}, {x: 0.1575498195141991, y: 0.0}, {x: 0.11401141677389726, y: 0.0}, {x: 0.08595615365205123, y: 0.0}, {x: 0.24673391142265602, y: 33.039}, {x: 0.07584655766774959, y: 0.0}, {x: 0.03673408686927424, y: 0.0}, {x: 0.04869809984306826, y: 0.0}, {x: 0.06527184303875055, y: 0.0}, {x: 0.22348232161922763, y: 0.0}, {x: 0.18540906717840022, y: 0.0}, {x: 0.06969163553738836, y: 999.999999}, {x: 0.05370524576623647, y: 0.0}, {x: 0.2807476728002667, y: 2369.610135}, {x: 0.06310891360644177, y: 0.0}, {x: 0.0700884686209579, y: 0.0}, {x: 0.03719984268219394, y: 0.0}, {x: 0.42051853165363917, y: 1019.716757}, {x: 0.13253480327743625, y: 0.0}, {x: 0.07794676815941064, y: 40.416186}, {x: 0.07550257135289076, y: 0.0}, {x: 0.2017284992976391, y: 0.0}, {x: 0.16616199835862983, y: 0.0}, {x: 0.18036978767899295, y: 0.0}, {x: 0.14885752700000002, y: 0.0}, {x: 0.040358744, y: 0.0}, {x: 0.445730825, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.06215875692776144, y: 0.0}, {x: 0.14272355328147285, y: 1.335464}, {x: 0.0847117522847226, y: 0.072}, {x: 0.29035350802185456, y: 0.0}, {x: 0.6164372345500128, y: 176.850903}, {x: 0.18195329081429581, y: 0.0}, {x: 0.11752369098539692, y: 0.0}, {x: 0.20049721349991803, y: 0.0}, {x: 0.12439008525255352, y: 0.0}, {x: 0.07022471931924767, y: 0.0}, {x: 0.09509954082174578, y: 0.0}, {x: 0.057964535843093426, y: 0.0}, {x: 0.10687175389752297, y: 0.0}, {x: 0.14637230624305814, y: 0.0}, {x: 0.08602749901337792, y: 0.0}, {x: 0.05189620768234959, y: 0.0}, {x: 0.11095627280019586, y: 1.346}, {x: 0.014153511031573217, y: 0.0}, {x: 0.0985841637399056, y: 0.0}, {x: 0.8686037358248168, y: 221.159543}, {x: 0.43357281788228874, y: 0.0}, {x: 0.19869524064269933, y: 57.7297}, {x: 0.2924537138944394, y: 0.0}, {x: 0.33892752288494826, y: 172.582673}, {x: 0.0843955194165701, y: 0.0}, {x: 0.12399999983066666, y: 0.0}, {x: 0.05950437740762724, y: 0.0}, {x: 0.057258440809709044, y: 0.0}, {x: 0.09487446479665625, y: 0.0}, {x: 0.1593232943439301, y: 0.0}, {x: 0.07362417591052514, y: 0.0}, {x: 0.06404744248687917, y: 0.0}, {x: 0.034409515502124045, y: 0.0}, {x: 0.096975089, y: 0.0}, {x: 0.08185654, y: 0.0}, {x: 0.046116505, y: 0.0}, {x: 0.105202312, y: 0.0}, {x: 0.041593439, y: 0.0}, {x: 0.037073171, y: 0.0}, {x: 0.06059421454104769, y: 0.0}, {x: 0.10244912071714384, y: 0.0}, {x: 0.047932331, y: 0.0}, {x: 0.097491039, y: 0.0}, {x: 0.167030568, y: 0.0}, {x: 0.07583311466452373, y: 0.0}, {x: 0.080824972, y: 0.0}, {x: 0.131991052, y: 0.0}, {x: 0.212686567, y: 0.0}, {x: 0.10537913171872974, y: 1.405256}, {x: 0.062048193, y: 0.0}, {x: 0.19580038190291793, y: 0.0}, {x: 0.09214145383045187, y: 0.0}, {x: 0.13902860734509587, y: 0.0}, {x: 0.09005847968888889, y: 0.0}, {x: 0.029233315, y: 0.0}, {x: 0.10167130911838439, y: 0.0}, {x: 0.11569851188238119, y: 0.0}, {x: 0.7186760593456725, y: 1111.110965}, {x: 0.17291298054165996, y: 0.0}, {x: 0.14945368162707837, y: 0.0}, {x: 0.30016435352136595, y: 360.22096}, {x: 0.5803794179719596, y: 940.76283}, {x: 0.2130594497696229, y: 0.0}, {x: 0.16727282034117918, y: 0.0}, {x: 0.08103745175355145, y: 0.0}, {x: 0.11423687760430169, y: 388.743118}, {x: 0.149228478813752, y: 0.0}, {x: 0.1370682289116929, y: 0.0}, {x: 0.09897816057383291, y: 0.0}, {x: 0.11150684951143837, y: 0.0}, {x: 0.054567600544579785, y: 0.0}, {x: 0.065130261, y: 0.0}, {x: 0.07796217717985333, y: 0.0}, {x: 0.1863354034069673, y: 0.0}, {x: 0.1004271382473428, y: 0.0}, {x: 0.3375414572358511, y: 0.0}, {x: 0.12983469738356604, y: 0.45}, {x: 0.052373158872340425, y: 0.0}, {x: 0.1841405003447756, y: 0.0}, {x: 0.11432880819788838, y: 0.0}, {x: 0.17817608687563227, y: 0.0}, {x: 0.10745933069587356, y: 5e-05}, {x: 0.10782721663478403, y: 0.0}, {x: 0.06213151891020409, y: 0.0}, {x: 0.058710913, y: 0.0}, {x: 0.10798816600000001, y: 0.0}, {x: 0.042051282, y: 0.0}, {x: 0.051079137, y: 0.0}, {x: 0.06083411725776105, y: 0.0}, {x: 0.11865704293558618, y: 0.0}, {x: 0.5215631929184774, y: 3939.66886}, {x: 0.1949583907657752, y: 0.0}, {x: 0.16676968722904564, y: 0.0}, {x: 0.11276602586213207, y: 0.0}, {x: 0.20354804139902372, y: 396.4304}, {x: 0.18546767184958224, y: 0.0}, {x: 0.28029345844854286, y: 0.0}, {x: 0.2604111753173432, y: 0.0}, {x: 0.3434155765964254, y: 0.0}, {x: 0.17251446184635347, y: 0.0}, {x: 0.11368379194812679, y: 0.0}, {x: 0.10251197911078845, y: 0.0}, {x: 0.11918430310050553, y: 0.0}, {x: 0.0647076286224399, y: 0.0}, {x: 0.1309866229984477, y: 0.0}, {x: 0.23531186377773586, y: 0.0}, {x: 0.20318264247545803, y: 0.0}, {x: 0.13032397413952485, y: 0.0}, {x: 0.11343760513382946, y: 0.0}, {x: 0.19571899627843292, y: 0.0}, {x: 0.15461281798704338, y: 0.0}, {x: 0.21877316999861599, y: 0.0}, {x: 0.314138058340499, y: 68.97}, {x: 0.5607041684087414, y: 0.0}, {x: 0.6133895974584894, y: 0.0}, {x: 0.28997068254344216, y: 0.0}, {x: 0.39829257899680814, y: 132.94799999999998}, {x: 0.26764092971080744, y: 57.339039}, {x: 0.274800413969249, y: 0.0}, {x: 0.38545644956107544, y: 0.0}, {x: 0.24215607405088493, y: 0.0}, {x: 0.16055519693021306, y: 0.0}, {x: 0.14956855223777565, y: 0.0}, {x: 0.3164930450148733, y: 0.0117}, {x: 0.16314707540599885, y: 0.0}, {x: 0.18184221683618865, y: 0.0}, {x: 0.22902085287091423, y: 0.0}, {x: 0.2627477555001694, y: 0.0}, {x: 0.35549732152997865, y: 0.0}, {x: 0.19735576928701923, y: 0.0}, {x: 0.2785397817100156, y: 0.0}, {x: 0.20839485335435562, y: 0.0}, {x: 0.43800522583751117, y: 0.0}, {x: 0.279180388, y: 0.0}, {x: 0.14775306428461188, y: 0.0}, {x: 0.11858519976899633, y: 0.0}, {x: 0.3107293001964906, y: 0.0}, {x: 0.2531188444783322, y: 0.0002}, {x: null, y: 0.0}, {x: 0.1377938519699819, y: 0.0}, {x: 0.314764010986199, y: 0.0}, {x: 0.2014238728546984, y: 0.0}, {x: 0.16300902712004012, y: 0.0}, {x: 0.25442077410341823, y: 0.0}, {x: 0.22921615216016286, y: 0.0}, {x: 0.07459882597111546, y: 0.0}, {x: 0.13788300835475528, y: 0.0}, {x: 0.19589141589077402, y: 0.0}, {x: 0.2301078205472226, y: 0.0}, {x: 0.14974842777163522, y: 0.0}, {x: 0.21697995780536536, y: 0.0}, {x: 0.2812270726579696, y: 0.0}, {x: 0.2997363741204095, y: 0.0}, {x: 0.20463062122015527, y: 0.0}, {x: 0.2918220847243648, y: 0.0}, {x: 0.4156199033084638, y: 0.0}, {x: 0.29223884684187335, y: 0.0}, {x: 0.7342540728462822, y: 0.0}, {x: 0.28076516217577574, y: 0.0}, {x: 0.18078240057598255, y: 0.0}, {x: 0.07477022441285086, y: 0.0}, {x: 0.11093914889637707, y: 0.0}, {x: 0.34525285923191407, y: 0.0}, {x: 0.2702531646983123, y: 0.0}, {x: 0.05697823305416134, y: 3617.0713}, {x: 0.0587004676970219, y: 0.0}, {x: 0.12281984931422303, y: 21.541675}, {x: 0.047748564601087944, y: 0.0}, {x: 0.08764326293315998, y: 0.0}, {x: 0.018248968016800638, y: 0.021042}, {x: 0.07682242968205609, y: 0.0}, {x: 0.04195910880248703, y: 0.0}, {x: 0.05106661576610836, y: 0.0}, {x: 0.0644734909956675, y: 0.0}, {x: 0.7100445269027529, y: 0.0}, {x: 0.15942234200014158, y: 0.0}, {x: 0.15623895386756217, y: 0.0}, {x: 0.08739084402348504, y: 0.0}, {x: 0.10055655128582211, y: 0.0}, {x: 0.08987142481579638, y: 0.0}, {x: 0.09911412792004141, y: 0.0}, {x: 0.05829132750743182, y: 0.0}, {x: 0.09067390219689131, y: 0.0}, {x: 0.019379844858703314, y: 0.0}, {x: 0.11102319074490231, y: 0.0}, {x: 0.039195637, y: 0.0}, {x: 0.08135039946602525, y: 0.0}, {x: 0.1675666337390384, y: 0.0}, {x: 0.10315430530349531, y: 0.0}, {x: 0.19273484495441925, y: 0.0}, {x: 0.5818110273833165, y: 1244.3365}, {x: 0.7998919927908096, y: 0.0}, {x: 0.5468199518035726, y: 0.0}, {x: 0.16369120912065993, y: 0.0}, {x: 0.06893617030468084, y: 0.0}, {x: 0.10820332178510317, y: 0.0}, {x: 0.1147994465242047, y: 0.0}, {x: 0.18243848992319953, y: 0.0}, {x: 0.02528227799779087, y: 0.0}, {x: 0.28689438342729745, y: 626.415468}, {x: 0.34668819698141484, y: 26.799356}, {x: 0.12496774744611679, y: 0.0}, {x: 0.182486948532748, y: 0.0}, {x: 0.13988808951851853, y: 0.0}, {x: 0.23918499912667945, y: 0.0}, {x: 0.065243536, y: 0.0}, {x: 0.06715176737775468, y: 0.0}, {x: 0.07899305565520834, y: 0.0}, {x: 0.08966304953169618, y: 0.0}, {x: 0.05552128299999999, y: 0.0}, {x: 0.046103778747604414, y: 0.016676}, {x: 0.08330261740840399, y: 0.0}, {x: 0.033269962, y: 0.0}, {x: 0.030414263411903515, y: 0.0}, {x: 0.05134618218993674, y: 0.0}, {x: 0.08885731014160328, y: 0.0}, {x: 0.14605394592467533, y: 0.0}, {x: 0.12223409128857012, y: 0.0}, {x: 0.1535433072010414, y: 0.0}, {x: 0.46566410375190603, y: 563.320881}, {x: 0.12079082816349192, y: 0.0}, {x: 0.09330797582099133, y: 0.0}, {x: 0.12005496501504302, y: 58.2}, {x: 0.2662781112369598, y: 0.0}, {x: 0.24161686585740375, y: 0.0}, {x: 0.21775072107997434, y: 0.0}, {x: 0.2174373794115607, y: 0.0}, {x: 0.38631170045926644, y: 0.0}, {x: 0.1897069872307789, y: 0.0}, {x: 0.36442963678986195, y: 0.0}, {x: 0.05139720567265469, y: 0.0}, {x: 0.0477726263321911, y: 0.0}, {x: 0.1324553765572486, y: 0.0}, {x: 0.04074542041850916, y: 0.0}, {x: 0.055712327736676615, y: 0.0}, {x: 0.16944688319622475, y: 0.0}, {x: 0.089873038183345, y: 0.0}, {x: 0.09723214305758927, y: 0.0}, {x: 0.20282515996515196, y: 0.0}, {x: 0.1299248117780451, y: 0.0}, {x: 0.08113781881148316, y: 0.0}, {x: 0.4005554610836593, y: 0.0}, {x: 0.038746439, y: 0.0}, {x: 0.05152838422707424, y: 0.0}, {x: 0.05441088218923785, y: 0.0}], 'label': 'Individual municipalitys', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.03621573373881564, y: 95.77048481365503}, {x: 0.09524295642741396, y: 14.597109887056702}, {x: 0.159050582831405, y: 2.5507875713846686}, {x: 0.5343252280552151, y: 729.8046260615662}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.03621573373881564, y: -17.246624507547295}, {x: 0.09524295642741396, y: -8.560139096122276}, {x: 0.159050582831405, y: -0.18335070669848408}, {x: 0.5343252280552151, y: 378.53609677055823}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.03621573373881564, y: 208.78759413485736}, {x: 0.09524295642741396, y: 37.75435887023568}, {x: 0.159050582831405, y: 5.284925849467822}, {x: 0.5343252280552151, y: 1081.073155352574}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LINGISOPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LINGISOPCT.html index 42c8db5..7142684 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LINGISOPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LINGISOPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.017938507136190003, y: 0.093729}, {x: 0.0604404827985851, y: 1795.0820099999999}, {x: 0.011372628855576746, y: 21.562717000000003}, {x: 0.008357269645829132, y: 0.175}, {x: 0.002795744772792629, y: 0.0}, {x: 0.06473937415641967, y: 0.0}, {x: 0.016060385614475904, y: 0.0}, {x: 0.031878407541989714, y: 385.927118}, {x: 0.0027227423266345885, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.04086985055267014, y: 963.794416}, {x: 0.10538239607972083, y: 2076.866008}, {x: 0.027863705283657617, y: 999.999999}, {x: 0.017033344512794805, y: 0.0}, {x: 0.027730832180429967, y: 0.0}, {x: 0.08451896590626226, y: 181.412247}, {x: 0.009221347850759952, y: 0.0}, {x: 0.0022311396373056996, y: 0.0}, {x: 0.08362330540239646, y: 4352.648076}, {x: 0.04136295615448386, y: 38.4927}, {x: 0.06870865713776342, y: 2220.396501}, {x: 0.007678460984205858, y: 0.0}, {x: 0.03834981913525486, y: 196.386236}, {x: 0.04334664904408527, y: 0.0}, {x: 0.021166770023758386, y: 653.215024}, {x: 0.056306617179541454, y: 396.44210000000004}, {x: 0.06566918095297263, y: 621.520881}, {x: 0.09740382557425986, y: 427.712621}, {x: 0.07024655969944445, y: 1100.5425}, {x: 0.07584916084444687, y: 0.0}, {x: 0.05013358212462723, y: 3617.0713}, {x: 0.013713630108452652, y: 0.0}], 'label': 'Individual watersheds', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.006564189897616838, y: 6.730062815190076}, {x: 0.024121246566927983, y: 312.09022727799805}, {x: 0.0500429695970901, y: 708.7763460575767}, {x: 0.08517711096763937, y: 1368.190784739534}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.006564189897616838, y: -1.9478364504789099}, {x: 0.024121246566927983, y: 55.79696848669562}, {x: 0.0500429695970901, y: 27.91959174298131}, {x: 0.08517711096763937, y: 541.872336143935}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.006564189897616838, y: 15.407962080859061}, {x: 0.024121246566927983, y: 568.3834860693005}, {x: 0.0500429695970901, y: 1389.633100372172}, {x: 0.08517711096763937, y: 2194.509233335133}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.017938507136190003, y: 0.093729}, {x: 0.0604404827985851, y: 1795.0820099999999}, {x: 0.011372628855576746, y: 21.562717000000003}, {x: 0.008357269645829132, y: 0.175}, {x: 0.002795744772792629, y: 0.0}, {x: 0.06473937415641967, y: 0.0}, {x: 0.016060385614475904, y: 0.0}, {x: 0.031878407541989714, y: 385.927118}, {x: 0.0027227423266345885, y: 0.0}, {x: 0.0, y: 0.0}, {x: 0.04086985055267014, y: 963.794416}, {x: 0.10538239607972083, y: 2076.866008}, {x: 0.027863705283657617, y: 999.999999}, {x: 0.017033344512794805, y: 0.0}, {x: 0.027730832180429967, y: 0.0}, {x: 0.08451896590626226, y: 181.412247}, {x: 0.009221347850759952, y: 0.0}, {x: 0.0022311396373056996, y: 0.0}, {x: 0.08362330540239646, y: 4352.648076}, {x: 0.04136295615448386, y: 38.4927}, {x: 0.06870865713776342, y: 2220.396501}, {x: 0.007678460984205858, y: 0.0}, {x: 0.03834981913525486, y: 196.386236}, {x: 0.04334664904408527, y: 0.0}, {x: 0.021166770023758386, y: 653.215024}, {x: 0.056306617179541454, y: 396.44210000000004}, {x: 0.06566918095297263, y: 621.520881}, {x: 0.09740382557425986, y: 427.712621}, {x: 0.07024655969944445, y: 1100.5425}, {x: 0.07584916084444687, y: 0.0}, {x: 0.05013358212462723, y: 3617.0713}, {x: 0.013713630108452652, y: 0.0}], 'label': 'Individual watersheds', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.006564189897616838, y: 6.978165063127548}, {x: 0.024121246566927983, y: 315.3524883160084}, {x: 0.0500429695970901, y: 700.0873486209347}, {x: 0.08517711096763937, y: 1404.9270162268745}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.006564189897616838, y: -2.053224376761472}, {x: 0.024121246566927983, y: 65.63094187083058}, {x: 0.0500429695970901, y: -1.4049089074162566}, {x: 0.08517711096763937, y: 567.6237615567854}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.006564189897616838, y: 16.009554503016567}, {x: 0.024121246566927983, y: 565.0740347611862}, {x: 0.0500429695970901, y: 1401.5796061492856}, {x: 0.08517711096763937, y: 2242.2302708969637}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LOWINCPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LOWINCPCT.html index 3a51af7..df5f215 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LOWINCPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_LOWINCPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.1811140827446158, y: 0.093729}, {x: 0.27104736884160346, y: 1795.0820099999999}, {x: 0.12123933019190788, y: 21.562717000000003}, {x: 0.24837274078923893, y: 0.175}, {x: 0.27276799742621555, y: 0.0}, {x: 0.20131302981130614, y: 0.0}, {x: 0.25584848784462777, y: 0.0}, {x: 0.2069982605759057, y: 385.927118}, {x: 0.19113901003990943, y: 0.0}, {x: 0.150867824, y: 0.0}, {x: 0.1949600403893936, y: 963.794416}, {x: 0.3451258235151375, y: 2076.866008}, {x: 0.2023376804907226, y: 999.999999}, {x: 0.1336546431220758, y: 0.0}, {x: 0.2012383409523506, y: 0.0}, {x: 0.2355317178581692, y: 181.412247}, {x: 0.0856468044190618, y: 0.0}, {x: 0.0820319162931835, y: 0.0}, {x: 0.2601719928492199, y: 4352.648076}, {x: 0.11901042833498539, y: 38.4927}, {x: 0.32087044790008945, y: 2220.396501}, {x: 0.2909121522587178, y: 0.0}, {x: 0.26012126573701405, y: 196.386236}, {x: 0.29130075764992464, y: 0.0}, {x: 0.18135318972486425, y: 653.215024}, {x: 0.14644745849777466, y: 396.44210000000004}, {x: 0.2471462770654, y: 621.520881}, {x: 0.20556651669543421, y: 427.712621}, {x: 0.2238298031471064, y: 1100.5425}, {x: 0.20639942373530065, y: 0.0}, {x: 0.18046568611740438, y: 3617.0713}, {x: 0.17194491754873106, y: 0.0}], 'label': 'Individual watersheds', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.13018370513420977, y: 154.48019677457458}, {x: 0.19114379628415723, y: 663.9513665642414}, {x: 0.23043439045540137, y: 563.1902053667594}, {x: 0.3010212529164309, y: 2264.3276290192516}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.13018370513420977, y: -27.655939826740962}, {x: 0.19114379628415723, y: -181.0183440191238}, {x: 0.23043439045540137, y: 212.62764520627775}, {x: 0.3010212529164309, y: 1100.715192455595}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.13018370513420977, y: 336.6163333758901}, {x: 0.19114379628415723, y: 1508.9210771476066}, {x: 0.23043439045540137, y: 913.7527655272411}, {x: 0.3010212529164309, y: 3427.9400655829086}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.1811140827446158, y: 0.093729}, {x: 0.27104736884160346, y: 1795.0820099999999}, {x: 0.12123933019190788, y: 21.562717000000003}, {x: 0.24837274078923893, y: 0.175}, {x: 0.27276799742621555, y: 0.0}, {x: 0.20131302981130614, y: 0.0}, {x: 0.25584848784462777, y: 0.0}, {x: 0.2069982605759057, y: 385.927118}, {x: 0.19113901003990943, y: 0.0}, {x: 0.150867824, y: 0.0}, {x: 0.1949600403893936, y: 963.794416}, {x: 0.3451258235151375, y: 2076.866008}, {x: 0.2023376804907226, y: 999.999999}, {x: 0.1336546431220758, y: 0.0}, {x: 0.2012383409523506, y: 0.0}, {x: 0.2355317178581692, y: 181.412247}, {x: 0.0856468044190618, y: 0.0}, {x: 0.0820319162931835, y: 0.0}, {x: 0.2601719928492199, y: 4352.648076}, {x: 0.11901042833498539, y: 38.4927}, {x: 0.32087044790008945, y: 2220.396501}, {x: 0.2909121522587178, y: 0.0}, {x: 0.26012126573701405, y: 196.386236}, {x: 0.29130075764992464, y: 0.0}, {x: 0.18135318972486425, y: 653.215024}, {x: 0.14644745849777466, y: 396.44210000000004}, {x: 0.2471462770654, y: 621.520881}, {x: 0.20556651669543421, y: 427.712621}, {x: 0.2238298031471064, y: 1100.5425}, {x: 0.20639942373530065, y: 0.0}, {x: 0.18046568611740438, y: 3617.0713}, {x: 0.17194491754873106, y: 0.0}], 'label': 'Individual watersheds', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.13018370513420977, y: 157.0880345624045}, {x: 0.19114379628415723, y: 683.9354727062756}, {x: 0.23043439045540137, y: 548.2902132873598}, {x: 0.3010212529164309, y: 2223.5860465804703}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.13018370513420977, y: -24.7057344788671}, {x: 0.19114379628415723, y: -169.08685386362572}, {x: 0.23043439045540137, y: 187.79937029121015}, {x: 0.3010212529164309, y: 1055.087255217917}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.13018370513420977, y: 338.8818036036761}, {x: 0.19114379628415723, y: 1536.957799276177}, {x: 0.23043439045540137, y: 908.7810562835095}, {x: 0.3010212529164309, y: 3392.0848379430236}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_MINORPCT.html b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_MINORPCT.html index e954297..d48ae22 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_MINORPCT.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_EJSCREEN_correlation_bywatershed_MINORPCT.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.1289289088162181, y: 0.093729}, {x: 0.24163639598155615, y: 1795.0820099999999}, {x: 0.07091840553176652, y: 21.562717000000003}, {x: 0.14047379032555443, y: 0.175}, {x: 0.1248862936082925, y: 0.0}, {x: 0.29082319596074074, y: 0.0}, {x: 0.1050815676224639, y: 0.0}, {x: 0.1583332286125611, y: 385.927118}, {x: 0.055759977411548256, y: 0.0}, {x: 0.116154873, y: 0.0}, {x: 0.27638200888740594, y: 963.794416}, {x: 0.24185909493489538, y: 2076.866008}, {x: 0.19935666088160994, y: 999.999999}, {x: 0.05299341160942423, y: 0.0}, {x: 0.1761902976085619, y: 0.0}, {x: 0.3224248941184247, y: 181.412247}, {x: 0.124331982635713, y: 0.0}, {x: 0.06412758224106722, y: 0.0}, {x: 0.4104907716364646, y: 4352.648076}, {x: 0.25816917322476657, y: 38.4927}, {x: 0.38175926652127734, y: 2220.396501}, {x: 0.12034161498560338, y: 0.0}, {x: 0.23574195529715927, y: 196.386236}, {x: 0.24730622177743014, y: 0.0}, {x: 0.20496020336019868, y: 653.215024}, {x: 0.2959446006412626, y: 396.44210000000004}, {x: 0.3220574128056399, y: 621.520881}, {x: 0.37633286150419887, y: 427.712621}, {x: 0.3940953786847133, y: 1100.5425}, {x: 0.47915895754896803, y: 0.0}, {x: 0.323201260760666, y: 3617.0713}, {x: 0.1375108383419024, y: 0.0}], 'label': 'Individual watersheds', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.08887056373728593, y: 7.947833714103754}, {x: 0.1725493975969133, y: 277.60880365760306}, {x: 0.26141194150551794, y: 526.0535904569971}, {x: 0.39081588061566247, y: 1488.7815575159116}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.08887056373728593, y: -2.685746722453483}, {x: 0.1725493975969133, y: 43.79813586937587}, {x: 0.26141194150551794, y: 32.5294687613702}, {x: 0.39081588061566247, y: 669.0095580314385}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.08887056373728593, y: 18.58141415066099}, {x: 0.1725493975969133, y: 511.41947144583025}, {x: 0.26141194150551794, y: 1019.5777121526239}, {x: 0.39081588061566247, y: 2308.553557000385}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] + datasets: [{'data': [{x: 0.1289289088162181, y: 0.093729}, {x: 0.24163639598155615, y: 1795.0820099999999}, {x: 0.07091840553176652, y: 21.562717000000003}, {x: 0.14047379032555443, y: 0.175}, {x: 0.1248862936082925, y: 0.0}, {x: 0.29082319596074074, y: 0.0}, {x: 0.1050815676224639, y: 0.0}, {x: 0.1583332286125611, y: 385.927118}, {x: 0.055759977411548256, y: 0.0}, {x: 0.116154873, y: 0.0}, {x: 0.27638200888740594, y: 963.794416}, {x: 0.24185909493489538, y: 2076.866008}, {x: 0.19935666088160994, y: 999.999999}, {x: 0.05299341160942423, y: 0.0}, {x: 0.1761902976085619, y: 0.0}, {x: 0.3224248941184247, y: 181.412247}, {x: 0.124331982635713, y: 0.0}, {x: 0.06412758224106722, y: 0.0}, {x: 0.4104907716364646, y: 4352.648076}, {x: 0.25816917322476657, y: 38.4927}, {x: 0.38175926652127734, y: 2220.396501}, {x: 0.12034161498560338, y: 0.0}, {x: 0.23574195529715927, y: 196.386236}, {x: 0.24730622177743014, y: 0.0}, {x: 0.20496020336019868, y: 653.215024}, {x: 0.2959446006412626, y: 396.44210000000004}, {x: 0.3220574128056399, y: 621.520881}, {x: 0.37633286150419887, y: 427.712621}, {x: 0.3940953786847133, y: 1100.5425}, {x: 0.47915895754896803, y: 0.0}, {x: 0.323201260760666, y: 3617.0713}, {x: 0.1375108383419024, y: 0.0}], 'label': 'Individual watersheds', 'backgroundColor': 'rgba(50,50,50,0.125)', 'showLine': false, 'yAxisID': 'y', 'fill': false, 'hidden': 'true'},{'data': [{x: 0.08887056373728593, y: 7.743713411902957}, {x: 0.1725493975969133, y: 276.9609760161673}, {x: 0.26141194150551794, y: 521.2601437984007}, {x: 0.39081588061566247, y: 1482.1432073151375}], 'label': 'Average (population weighted & binned)', 'backgroundColor': 'rgba(50,50,200,1)', 'showLine': true, 'borderColor': 'rgba(50,50,200,1)', 'borderWidth': 3, 'yAxisID': 'y', 'fill': false, 'pointRadius': 6},{'data': [{x: 0.08887056373728593, y: -2.677523900695898}, {x: 0.1725493975969133, y: 46.86980624164059}, {x: 0.26141194150551794, y: 23.95472571306061}, {x: 0.39081588061566247, y: 636.3482797890483}], 'label': 'Average lower bound (5% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': false, 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'},{'data': [{x: 0.08887056373728593, y: 18.16495072450181}, {x: 0.1725493975969133, y: 507.052145790694}, {x: 0.26141194150551794, y: 1018.5655618837408}, {x: 0.39081588061566247, y: 2327.9381348412267}], 'label': 'Average upper bound (95% limit)', 'backgroundColor': 'rgba(50,50,200,0.3)', 'showLine': true, 'yAxisID': 'y', 'borderWidth': 1, 'fill': '-1', 'pointBackgroundColor': 'rgba(50,50,200,0.3)', 'pointBorderColor': 'rgba(50,50,200,0.3)'}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_counts_per_month.html b/docs/_includes/charts/dash_MAEEADP_dashboard_counts_per_month.html index 9938575..dbe121e 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_counts_per_month.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_counts_per_month.html @@ -13,8 +13,8 @@ var chart_data = { data: { - labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026", "May 2026"], - datasets: [{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 1.0, 8.0, 0.0, 1.0, 7.0, 19.0, 15.0, 5.0, 1.0, 1.0, 12.0, 30.0, 0.0, 8.0, 4.0, 0.0, 0.0, 0.0, 5.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – System Surcharging Under High Flow Conditions', 'backgroundColor': 'rgba(31, 119, 180,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 2.0, 2.0, 0.0, 2.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0, 0.0, 2.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0], 'label': 'SSO – Failure of Pump Station or Associated Force Main', 'backgroundColor': 'rgba(255, 127, 14,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0], 'label': 'SSO – Discharge Through Wastewater Outfall', 'backgroundColor': 'rgba(44, 160, 44,0.8)', 'yAxisID': 'y'},{'data': [0.0, 196.0, 183.0, 264.0, 233.0, 173.0, 160.0, 214.0, 34.0, 110.0, 204.0, 146.0, 345.0, 657.0, 361.0, 342.0, 105.0, 73.0, 251.0, 273.0, 51.0, 325.0, 149.0, 236.0, 254.0, 168.0, 213.0, 63.0, 19.0, 56.0, 179.0, 68.0, 35.0, 178.0, 95.0, 267.0, 71.0, 222.0, 75.0, 176.0, 188.0, 78.0, 65.0, 9.0, 10.0, 106.0, 0.0, 0.0], 'label': 'CSO – UnTreated', 'backgroundColor': 'rgba(214, 39, 40,0.8)', 'yAxisID': 'y'},{'data': [0.0, 5.0, 4.0, 16.0, 10.0, 10.0, 15.0, 16.0, 2.0, 7.0, 12.0, 10.0, 14.0, 42.0, 19.0, 22.0, 6.0, 4.0, 26.0, 32.0, 5.0, 35.0, 19.0, 13.0, 9.0, 11.0, 16.0, 3.0, 1.0, 5.0, 14.0, 8.0, 8.0, 17.0, 16.0, 31.0, 8.0, 12.0, 5.0, 12.0, 16.0, 8.0, 7.0, 1.0, 2.0, 20.0, 1.0, 0.0], 'label': 'Partially Treated – Blended', 'backgroundColor': 'rgba(148, 103, 189,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 1.0, 1.0, 2.0, 3.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'Partially Treated – Other', 'backgroundColor': 'rgba(140, 86, 75,0.8)', 'yAxisID': 'y'},{'data': [0.0, 11.0, 9.0, 16.0, 18.0, 17.0, 17.0, 28.0, 2.0, 14.0, 13.0, 12.0, 18.0, 53.0, 30.0, 33.0, 10.0, 8.0, 26.0, 37.0, 6.0, 32.0, 16.0, 27.0, 18.0, 8.0, 9.0, 4.0, 2.0, 7.0, 21.0, 10.0, 4.0, 22.0, 10.0, 26.0, 5.0, 15.0, 6.0, 16.0, 23.0, 11.0, 7.0, 1.0, 1.0, 12.0, 0.0, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(227, 119, 194,0.8)', 'yAxisID': 'y'},{'data': [2.9818134227459927, 2.0044141739855794, 2.616262859020171, 5.391519967019915, 5.2484745340037, 2.9598179364021533, 5.779180619008587, 7.363227050526272, 1.7866738518544103, 4.849953734977428, 3.4717122562994716, 3.7805933744996065, 5.067794818036316, 9.130430254261135, 6.545395945462382, 7.294112346440152, 3.2250284255490778, 2.0697368775326006, 7.039747528667467, 7.743386216709642, 1.63976479610582, 8.848222460150135, 4.321511420210335, 5.232397505000315, 3.262279225213264, 3.195808384780778, 4.376995751961096, 2.446513179597271, 1.120856668494856, 3.0691665466330518, 5.303273367829183, 1.679174448563101, 3.9622473594767085, 4.046446202923702, 4.377958524089519, 7.775284127883787, 2.2851700176416103, 3.057190257313136, 2.9936487997402303, 3.4798802163956166, 5.862367203791788, 2.626839800687645, 3.3508169692593692, 3.2227415320849797, 2.162366428527771, 4.511813427188704, 2.3095070203495287, 1.8701324732027147], 'label': 'Precipitation (48-hr lookback)', 'borderColor': 'rgba(100,150,255,1)', 'type': 'line', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y1', 'pointRadius': 1}] + labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026", "May 2026", "Jun 2026"], + datasets: [{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 1.0, 8.0, 0.0, 1.0, 7.0, 19.0, 15.0, 5.0, 1.0, 1.0, 12.0, 30.0, 0.0, 8.0, 4.0, 0.0, 0.0, 0.0, 5.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – System Surcharging Under High Flow Conditions', 'backgroundColor': 'rgba(31, 119, 180,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 2.0, 2.0, 0.0, 2.0, 1.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0, 0.0, 2.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – Failure of Pump Station or Associated Force Main', 'backgroundColor': 'rgba(255, 127, 14,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], 'label': 'SSO – Discharge Through Wastewater Outfall', 'backgroundColor': 'rgba(44, 160, 44,0.8)', 'yAxisID': 'y'},{'data': [0.0, 196.0, 183.0, 264.0, 233.0, 173.0, 160.0, 214.0, 34.0, 110.0, 204.0, 146.0, 345.0, 657.0, 361.0, 342.0, 105.0, 73.0, 251.0, 273.0, 51.0, 325.0, 149.0, 236.0, 254.0, 168.0, 213.0, 63.0, 19.0, 56.0, 179.0, 68.0, 35.0, 178.0, 95.0, 267.0, 71.0, 222.0, 75.0, 176.0, 188.0, 78.0, 65.0, 9.0, 10.0, 106.0, 0.0, 0.0, 0.0], 'label': 'CSO – UnTreated', 'backgroundColor': 'rgba(214, 39, 40,0.8)', 'yAxisID': 'y'},{'data': [0.0, 5.0, 4.0, 16.0, 10.0, 10.0, 15.0, 16.0, 2.0, 7.0, 12.0, 10.0, 14.0, 42.0, 19.0, 22.0, 6.0, 4.0, 26.0, 32.0, 5.0, 35.0, 19.0, 13.0, 9.0, 11.0, 16.0, 3.0, 1.0, 5.0, 14.0, 8.0, 8.0, 17.0, 16.0, 31.0, 8.0, 12.0, 5.0, 12.0, 16.0, 8.0, 7.0, 1.0, 2.0, 20.0, 1.0, 0.0, 0.0], 'label': 'Partially Treated – Blended', 'backgroundColor': 'rgba(148, 103, 189,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 1.0, 1.0, 2.0, 3.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'Partially Treated – Other', 'backgroundColor': 'rgba(140, 86, 75,0.8)', 'yAxisID': 'y'},{'data': [0.0, 11.0, 9.0, 16.0, 18.0, 17.0, 17.0, 28.0, 2.0, 14.0, 13.0, 12.0, 18.0, 53.0, 30.0, 33.0, 10.0, 8.0, 26.0, 37.0, 6.0, 32.0, 16.0, 27.0, 18.0, 8.0, 9.0, 4.0, 2.0, 7.0, 21.0, 10.0, 4.0, 22.0, 10.0, 26.0, 5.0, 15.0, 6.0, 16.0, 23.0, 11.0, 7.0, 1.0, 1.0, 12.0, 0.0, 0.0, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(227, 119, 194,0.8)', 'yAxisID': 'y'},{'data': [2.9818134227459927, 2.0044141739855794, 2.616262859020171, 5.391519967019915, 5.2484745340037, 2.9598179364021533, 5.779180619008587, 7.363227050526272, 1.7866738518544103, 4.849953734977428, 3.4717122562994716, 3.7805933744996065, 5.067794818036316, 9.130430254261135, 6.545395945462382, 7.294112346440152, 3.2250284255490778, 2.0697368775326006, 7.039747528667467, 7.743386216709642, 1.63976479610582, 8.848222460150135, 4.321511420210335, 5.232397505000315, 3.262279225213264, 3.195808384780778, 4.376995751961096, 2.446513179597271, 1.120856668494856, 3.0691665466330518, 5.303273367829183, 1.679174448563101, 3.9622473594767085, 4.046446202923702, 4.377958524089519, 7.775284127883787, 2.2851700176416103, 3.057190257313136, 2.9936487997402303, 3.4798802163956166, 5.862367203791788, 2.626839800687645, 3.3508169692593692, 3.2227415320849793, 2.1623516142905093, 4.512136518848003, 2.3158217094745326, 3.5636791830076593, 0.4192308488835924], 'label': 'Precipitation (48-hr lookback)', 'borderColor': 'rgba(100,150,255,1)', 'type': 'line', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y1', 'pointRadius': 1}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_modeled_vs_metered_fraction.html b/docs/_includes/charts/dash_MAEEADP_dashboard_modeled_vs_metered_fraction.html index 584668f..35f1004 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_modeled_vs_metered_fraction.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_modeled_vs_metered_fraction.html @@ -13,8 +13,8 @@ var chart_data = { data: { - labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026", "May 2026"], - datasets: [{'data': [null, 49.48979591836735, 46.994535519125684, 64.39393939393939, 39.91416309012876, 51.445086705202314, 45.0, 45.794392523364486, 35.294117647058826, 49.09090909090909, 50.98039215686274, 54.109589041095894, 51.30434782608696, 63.62252663622526, 47.64542936288089, 42.98245614035088, 33.33333333333333, 30.136986301369863, 42.62948207171315, 41.02564102564102, 43.13725490196079, 42.15384615384615, 53.02013422818792, 40.67796610169492, 51.574803149606296, 36.30952380952381, 43.1924882629108, 42.857142857142854, 26.31578947368421, 37.5, 43.575418994413404, 42.64705882352941, 22.857142857142858, 47.19101123595505, 35.78947368421053, 54.30711610486891, 45.07042253521127, 47.74774774774775, 49.333333333333336, 51.70454545454546, 50.0, 44.871794871794876, 49.23076923076923, 33.33333333333333, 20.0, 20.754716981132077, null, null], 'label': 'CSO – UnTreated', 'borderColor': 'rgba(31, 119, 180,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 2, 'hidden': false},{'data': [50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, null, null, null, null, null], 'label': 'SSO (annual aggregation)', 'borderColor': 'rgba(255, 127, 14,0.9)', 'fill': false, 'borderWidth': 2, 'borderDash': [5,5], 'yAxisID': 'y', 'pointRadius': 2, 'hidden': false}] + labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026", "May 2026", "Jun 2026"], + datasets: [{'data': [null, 49.48979591836735, 46.994535519125684, 64.39393939393939, 39.91416309012876, 51.445086705202314, 45.0, 45.794392523364486, 35.294117647058826, 49.09090909090909, 50.98039215686274, 54.109589041095894, 51.30434782608696, 63.62252663622526, 47.64542936288089, 42.98245614035088, 33.33333333333333, 30.136986301369863, 42.62948207171315, 41.02564102564102, 43.13725490196079, 42.15384615384615, 53.02013422818792, 40.67796610169492, 51.574803149606296, 36.30952380952381, 43.1924882629108, 42.857142857142854, 26.31578947368421, 37.5, 43.575418994413404, 42.64705882352941, 22.857142857142858, 47.19101123595505, 35.78947368421053, 54.30711610486891, 45.07042253521127, 47.74774774774775, 49.333333333333336, 51.70454545454546, 50.0, 44.871794871794876, 49.23076923076923, 33.33333333333333, 20.0, 20.754716981132077, null, null, null], 'label': 'CSO – UnTreated', 'borderColor': 'rgba(31, 119, 180,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 2, 'hidden': false},{'data': [50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 50.526315789473685, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 46.875, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 52.94117647058824, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, 66.66666666666666, null, null, null, null, null, null], 'label': 'SSO (annual aggregation)', 'borderColor': 'rgba(255, 127, 14,0.9)', 'fill': false, 'borderWidth': 2, 'borderDash': [5,5], 'yAxisID': 'y', 'pointRadius': 2, 'hidden': false}] }, type: 'line', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_rainfall.html b/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_rainfall.html index 188df54..a61a9f7 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_rainfall.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_rainfall.html @@ -13,8 +13,8 @@ var chart_data = { data: { - labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026", "May 2026"], - datasets: [{'data': [0.0, 10.568458, 6.568397, 31.29309, 34.771, 31.424915, 38.858, 75.5506, 0.31, 101.554, 56.136, 61.837, 17.553, 320.421, 134.207, 135.11487, 13.834, 10.97, 268.872, 290.786388, 66.543, 187.965, 43.4258, 92.108, 48.866, 4.233, 8.293, 3.191, 4.293, 3.074, 100.984456, 7.035001, 12.271, 40.819, 4.33, 178.161, 52.04, 34.023, 3.955, 33.15, 83.760058, 5.389, 5.266, 0.231, 0.041, 24.434, 0.0, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(31, 119, 180,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 115.43801, 86.804743, 228.823562, 127.657209, 101.606736, 144.556502, 213.488031, 16.326984, 125.625929, 169.506236, 99.032919, 196.146284, 657.313609, 454.671492, 385.326532, 77.080442, 32.020342, 420.733223, 531.844639, 33.374218, 465.470891, 200.850498, 205.159667, 137.862211, 32.548632, 144.058285, 38.537364, 7.820447, 22.034333, 128.027319, 38.986264, 46.148421, 151.006551, 24.811117, 385.238487, 34.830104, 173.85852, 52.303642, 163.334928, 138.730634, 52.73788, 38.235412, 3.911468, 4.227829, 102.301629, 0.0, 0.0], 'label': 'CSO – UnTreated', 'backgroundColor': 'rgba(255, 127, 14,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 14.889, 18.08, 138.0971, 63.33, 33.16, 211.6397, 302.302, 1.7, 608.08, 159.1951, 119.6757, 84.27, 412.032, 245.088, 215.554, 45.7022, 43.44, 815.5563, 1268.962422, 93.968482, 888.075013, 630.2106, 119.04, 43.689, 34.5576, 71.537063, 15.428172, 4.4, 42.59, 329.0875, 25.1085, 51.82, 129.872273, 50.5703, 603.457475, 38.0952, 94.8393, 25.242, 76.4396, 136.3045, 33.1398, 44.0, 2.218, 0.715, 562.6989, 0.305, 0.0], 'label': 'Partially Treated – Blended', 'backgroundColor': 'rgba(44, 160, 44,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 3.91, 0.39, 0.0, 0.0, 0.0, 0.0, 0.89, 0.0, 0.0, 6.54005, 0.45, 0.016676, 85.38, 28.103008, 0.0, 0.0, 0.0117, 999.999999, 176.53, 0.0, 100.0004, 0.0, 0.0, 0.021042, 0.0, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'Partially Treated – Other', 'backgroundColor': 'rgba(214, 39, 40,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.813515, 0.0, 0.0, 0.0, 0.0095, 0.0, 0.0, 0.0, 0.0, 0.25, 0.2, 0.0, 0.0, 0.0, 0.8418, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0001, 0.0005, 0.0, 5e-05, 0.0, 0.825, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 91.624, 0.0, 0.0], 'label': 'SSO – Discharge Through Wastewater Outfall', 'backgroundColor': 'rgba(148, 103, 189,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0295, 1.025, 0.3362, 0.381, 0.0, 0.003925, 0.05, 0.0, 0.02, 0.75, 0.0, 4e-05, 0.0, 0.0, 0.19338, 0.0, 0.0665, 0.0, 0.0, 0.681, 0.0, 0.0, 0.002, 0.0, 0.00146, 0.0, 0.376, 0.005, 0.001, 0.0, 0.0, 0.0, 0.0053, 0.0, 0.0, 0.0, 0.0, 0.005, 0.00055, 0.0, 0.0, 0.0], 'label': 'SSO – Failure of Pump Station or Associated Force Main', 'backgroundColor': 'rgba(140, 86, 75,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.409, 3.436348, 0.001875, 1.735715, 0.0, 0.03, 0.00941, 1.751925, 0.112426, 0.633088, 0.0015, 5e-05, 15.39388, 40.515623, 0.0, 3.237131, 2.056, 0.0, 0.0, 0.0, 0.001966, 0.0025, 0.0, 0.0, 0.0455, 0.0, 0.0, 0.0, 0.0, 0.02975, 0.0, 0.422013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – System Surcharging Under High Flow Conditions', 'backgroundColor': 'rgba(227, 119, 194,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [2.9818134227459927, 2.0044141739855794, 2.616262859020171, 5.391519967019915, 5.2484745340037, 2.9598179364021533, 5.779180619008587, 7.363227050526272, 1.7866738518544103, 4.849953734977428, 3.4717122562994716, 3.7805933744996065, 5.067794818036316, 9.130430254261135, 6.545395945462382, 7.294112346440152, 3.2250284255490778, 2.0697368775326006, 7.039747528667467, 7.743386216709642, 1.63976479610582, 8.848222460150135, 4.321511420210335, 5.232397505000315, 3.262279225213264, 3.195808384780778, 4.376995751961096, 2.446513179597271, 1.120856668494856, 3.0691665466330518, 5.303273367829183, 1.679174448563101, 3.9622473594767085, 4.046446202923702, 4.377958524089519, 7.775284127883787, 2.2851700176416103, 3.057190257313136, 2.9936487997402303, 3.4798802163956166, 5.862367203791788, 2.626839800687645, 3.3508169692593692, 3.2227415320849797, 2.162366428527771, 4.511813427188704, 2.3095070203495287, 1.8701324732027147], 'label': 'Precipitation (48-hr lookback)', 'borderColor': 'rgba(100,150,255,1)', 'type': 'line', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y1', 'pointRadius': 1}] + labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026", "May 2026", "Jun 2026"], + datasets: [{'data': [0.0, 10.568458, 6.568397, 31.29309, 34.771, 31.424915, 38.858, 75.5506, 0.31, 101.554, 56.136, 61.837, 17.553, 320.421, 134.207, 135.11487, 13.834, 10.97, 268.872, 290.786388, 66.543, 187.965, 43.4258, 92.108, 48.866, 4.233, 8.293, 3.191, 4.293, 3.074, 100.984456, 7.035001, 12.271, 40.819, 4.33, 178.161, 52.04, 34.023, 3.955, 33.15, 83.760058, 5.389, 5.266, 0.231, 0.041, 24.434, 0.0, 0.0, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(31, 119, 180,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 115.43801, 86.804743, 228.823562, 127.657209, 101.606736, 144.556502, 213.488031, 16.326984, 125.625929, 169.506236, 99.032919, 196.146284, 657.313609, 454.671492, 385.326532, 77.080442, 32.020342, 420.733223, 531.844639, 33.374218, 465.470891, 200.850498, 205.159667, 137.862211, 32.548632, 144.058285, 38.537364, 7.820447, 22.034333, 128.027319, 38.986264, 46.148421, 151.006551, 24.811117, 385.238487, 34.830104, 173.85852, 52.303642, 163.334928, 138.730634, 52.73788, 38.235412, 3.911468, 4.227829, 102.301629, 0.0, 0.0, 0.0], 'label': 'CSO – UnTreated', 'backgroundColor': 'rgba(255, 127, 14,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 14.889, 18.08, 138.0971, 63.33, 33.16, 211.6397, 302.302, 1.7, 608.08, 159.1951, 119.6757, 84.27, 412.032, 245.088, 215.554, 45.7022, 43.44, 815.5563, 1268.962422, 93.968482, 888.075013, 630.2106, 119.04, 43.689, 34.5576, 71.537063, 15.428172, 4.4, 42.59, 329.0875, 25.1085, 51.82, 129.872273, 50.5703, 603.457475, 38.0952, 94.8393, 25.242, 76.4396, 136.3045, 33.1398, 44.0, 2.218, 0.715, 562.6989, 0.305, 0.0, 0.0], 'label': 'Partially Treated – Blended', 'backgroundColor': 'rgba(44, 160, 44,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 3.91, 0.39, 0.0, 0.0, 0.0, 0.0, 0.89, 0.0, 0.0, 6.54005, 0.45, 0.016676, 85.38, 28.103008, 0.0, 0.0, 0.0117, 999.999999, 176.53, 0.0, 100.0004, 0.0, 0.0, 0.021042, 0.0, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'Partially Treated – Other', 'backgroundColor': 'rgba(214, 39, 40,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.813515, 0.0, 0.0, 0.0, 0.0095, 0.0, 0.0, 0.0, 0.0, 0.25, 0.2, 0.0, 0.0, 0.0, 0.8418, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0001, 0.0005, 0.0, 5e-05, 0.0, 0.825, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 91.624, 0.0, 0.0, 0.0], 'label': 'SSO – Discharge Through Wastewater Outfall', 'backgroundColor': 'rgba(148, 103, 189,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0295, 1.025, 0.3362, 0.381, 0.0, 0.003925, 0.05, 0.0, 0.02, 0.75, 0.0, 4e-05, 0.0, 0.0, 0.19338, 0.0, 0.0665, 0.0, 0.0, 0.681, 0.0, 0.0, 0.002, 0.0, 0.00146, 0.0, 0.376, 0.005, 0.001, 0.0, 0.0, 0.0, 0.0053, 0.0, 0.0, 0.0, 0.0, 0.005, 0.00055, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – Failure of Pump Station or Associated Force Main', 'backgroundColor': 'rgba(140, 86, 75,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.409, 3.436348, 0.001875, 1.735715, 0.0, 0.03, 0.00941, 1.751925, 0.112426, 0.633088, 0.0015, 5e-05, 15.39388, 40.515623, 0.0, 3.237131, 2.056, 0.0, 0.0, 0.0, 0.001966, 0.0025, 0.0, 0.0, 0.0455, 0.0, 0.0, 0.0, 0.0, 0.02975, 0.0, 0.422013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – System Surcharging Under High Flow Conditions', 'backgroundColor': 'rgba(227, 119, 194,0.8)', 'yAxisID': 'y', 'stack': 'volume'},{'data': [2.9818134227459927, 2.0044141739855794, 2.616262859020171, 5.391519967019915, 5.2484745340037, 2.9598179364021533, 5.779180619008587, 7.363227050526272, 1.7866738518544103, 4.849953734977428, 3.4717122562994716, 3.7805933744996065, 5.067794818036316, 9.130430254261135, 6.545395945462382, 7.294112346440152, 3.2250284255490778, 2.0697368775326006, 7.039747528667467, 7.743386216709642, 1.63976479610582, 8.848222460150135, 4.321511420210335, 5.232397505000315, 3.262279225213264, 3.195808384780778, 4.376995751961096, 2.446513179597271, 1.120856668494856, 3.0691665466330518, 5.303273367829183, 1.679174448563101, 3.9622473594767085, 4.046446202923702, 4.377958524089519, 7.775284127883787, 2.2851700176416103, 3.057190257313136, 2.9936487997402303, 3.4798802163956166, 5.862367203791788, 2.626839800687645, 3.3508169692593692, 3.2227415320849793, 2.1623516142905093, 4.512136518848003, 2.3158217094745326, 3.5636791830076593, 0.4192308488835924], 'label': 'Precipitation (48-hr lookback)', 'borderColor': 'rgba(100,150,255,1)', 'type': 'line', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y1', 'pointRadius': 1}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_watershed.html b/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_watershed.html index 7f05eb1..2949043 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_watershed.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_monthly_volume_watershed.html @@ -13,8 +13,8 @@ var chart_data = { data: { - labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026", "May 2026"], - datasets: [{'data': [0.0, 21.012536, 2.98, 99.441334, 48.52309, 15.29, 99.753667, 43.547355, 0.0, 131.945165, 103.562555, 48.743, 104.706071, 254.11674, 303.726, 167.03089, 16.92, 33.72, 400.403259, 394.916427, 72.7, 259.809818, 218.86, 38.091016, 10.146027, 22.249939, 74.924999, 0.0, 0.0, 32.29, 60.36, 16.32, 12.68, 61.98, 27.97, 227.972475, 25.013892, 63.15, 21.421231, 27.677035, 56.34, 16.110003, 23.12, 0.0, 0.0, 27.77, 0.0, 0.0], 'label': 'MERRIMACK RIVER', 'borderColor': 'rgba(31, 119, 180,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 84.207179, 26.667781, 108.912498, 42.595317, 66.620093, 33.228533, 65.445273, 1.458854, 16.969248, 71.323042, 50.397643, 27.37741, 197.262015, 38.289998, 172.83486, 11.505254, 13.848729, 117.225635, 160.970099, 7.110798, 105.005303, 14.690449, 31.89229, 72.083143, 8.998231, 15.725801, 0.747424, 0.0, 4.36806, 24.928324, 11.124405, 1.510238, 70.310237, 4.046, 160.330501, 57.226083, 76.075702, 13.720035, 61.916514, 41.040993, 6.843374, 9.407481, 0.0, 0.0, 14.190465, 0.0, 0.0], 'label': 'CONNECTICUT R.', 'borderColor': 'rgba(255, 127, 14,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 17.129943, 66.289, 30.365603, 21.177, 69.13, 112.2056, 1.7, 66.424, 63.81, 42.6323, 31.553, 79.274623, 65.212094, 51.542743, 38.600661, 20.054802, 70.727481, 117.958007, 21.308482, 194.773457, 67.45, 56.68, 21.129, 11.75, 35.262977, 16.613172, 4.48, 11.4, 125.08, 9.426, 32.42, 46.661, 11.478, 107.246, 2.66, 38.53, 21.722, 46.187, 46.492, 19.79, 21.86, 2.408, 0.715, 108.0441, 0.0, 0.0], 'label': 'MOUNT HOPE BAY', 'borderColor': 'rgba(44, 160, 44,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 999.999999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'TEN MILE RIVER', 'borderColor': 'rgba(214, 39, 40,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 5.50697, 16.267, 26.620438, 10.166184, 20.424, 41.1909, 0.218, 24.5151, 29.117, 20.765, 26.752, 69.578759, 44.197063, 67.278069, 23.222398, 5.698492, 31.965554, 62.426144, 5.659, 128.783646, 30.7168, 43.001375, 12.407, 4.824, 15.164398, 14.608326, 4.7958, 3.704, 27.79, 5.279, 17.411, 10.756, 2.187, 27.952, 0.0, 10.9748, 4.313, 22.031, 11.1291, 4.235, 6.586, 0.261, 0.0448, 23.2713, 0.0, 0.0], 'label': 'TAUNTON RIVER', 'borderColor': 'rgba(148, 103, 189,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.89, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 362.01, 36.76, 14.84, 0.0, 0.0, 0.0003, 0.0, 0.0, 148.94, 0.0, 9.5, 23.45, 0.18, 249.88, 15.0, 8.18, 0.0, 7.63, 38.98, 0.0, 0.0, 0.0, 0.0, 16.07, 0.0, 0.0], 'label': 'MASSACHUSETTS BAY', 'borderColor': 'rgba(140, 86, 75,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.04, 25.89004, 25.53529, 15.27533, 10.93803, 33.627345, 46.44037, 10.66254, 25.94895, 17.30912, 10.99391, 16.97624, 21.22331, 16.82741, 7.9488, 14.234804, 4.72295, 20.09978, 44.66829, 14.27652, 53.07679, 20.80113, 27.243218, 14.525964, 6.920613, 5.756981, 13.173934, 4.069956, 6.796508, 27.064564, 8.366736, 15.374761, 12.160803, 5.974968, 33.343855, 3.581376, 13.277366, 6.891125, 25.486412, 32.171843, 14.326732, 12.367965, 2.639834, 3.482527, 40.337583, 0.0, 0.0], 'label': 'ACUSHNET RIVER', 'borderColor': 'rgba(227, 119, 194,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 0.01, 0.0, 14.83, 6.07, 17.6, 14.7, 0.0, 47.99, 0.0, 27.3, 0.0, 117.49, 53.73, 22.6, 0.0, 0.0, 72.59, 78.4, 0.0, 69.29, 14.23, 20.72, 18.56, 0.04, 3.48, 0.0, 0.0, 0.0, 44.63, 0.0, 0.0, 12.07, 0.0, 63.22, 8.73, 0.24, 1.22, 15.47, 22.69, 0.0, 0.0, 0.0, 0.0, 3.23, 0.0, 0.0], 'label': 'CHARLES RIVER', 'borderColor': 'rgba(127, 127, 127,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1}] + labels: ["Jun 2022", "Jul 2022", "Aug 2022", "Sep 2022", "Oct 2022", "Nov 2022", "Dec 2022", "Jan 2023", "Feb 2023", "Mar 2023", "Apr 2023", "May 2023", "Jun 2023", "Jul 2023", "Aug 2023", "Sep 2023", "Oct 2023", "Nov 2023", "Dec 2023", "Jan 2024", "Feb 2024", "Mar 2024", "Apr 2024", "May 2024", "Jun 2024", "Jul 2024", "Aug 2024", "Sep 2024", "Oct 2024", "Nov 2024", "Dec 2024", "Jan 2025", "Feb 2025", "Mar 2025", "Apr 2025", "May 2025", "Jun 2025", "Jul 2025", "Aug 2025", "Sep 2025", "Oct 2025", "Nov 2025", "Dec 2025", "Jan 2026", "Feb 2026", "Mar 2026", "Apr 2026", "May 2026", "Jun 2026"], + datasets: [{'data': [0.0, 21.012536, 2.98, 99.441334, 48.52309, 15.29, 99.753667, 43.547355, 0.0, 131.945165, 103.562555, 48.743, 104.706071, 254.11674, 303.726, 167.03089, 16.92, 33.72, 400.403259, 394.916427, 72.7, 259.809818, 218.86, 38.091016, 10.146027, 22.249939, 74.924999, 0.0, 0.0, 32.29, 60.36, 16.32, 12.68, 61.98, 27.97, 227.972475, 25.013892, 63.15, 21.421231, 27.677035, 56.34, 16.110003, 23.12, 0.0, 0.0, 27.77, 0.0, 0.0, 0.0], 'label': 'MERRIMACK RIVER', 'borderColor': 'rgba(31, 119, 180,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 84.207179, 26.667781, 108.912498, 42.595317, 66.620093, 33.228533, 65.445273, 1.458854, 16.969248, 71.323042, 50.397643, 27.37741, 197.262015, 38.289998, 172.83486, 11.505254, 13.848729, 117.225635, 160.970099, 7.110798, 105.005303, 14.690449, 31.89229, 72.083143, 8.998231, 15.725801, 0.747424, 0.0, 4.36806, 24.928324, 11.124405, 1.510238, 70.310237, 4.046, 160.330501, 57.226083, 76.075702, 13.720035, 61.916514, 41.040993, 6.843374, 9.407481, 0.0, 0.0, 14.190465, 0.0, 0.0, 0.0], 'label': 'CONNECTICUT R.', 'borderColor': 'rgba(255, 127, 14,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 17.129943, 66.289, 30.365603, 21.177, 69.13, 112.2056, 1.7, 66.424, 63.81, 42.6323, 31.553, 79.274623, 65.212094, 51.542743, 38.600661, 20.054802, 70.727481, 117.958007, 21.308482, 194.773457, 67.45, 56.68, 21.129, 11.75, 35.262977, 16.613172, 4.48, 11.4, 125.08, 9.426, 32.42, 46.661, 11.478, 107.246, 2.66, 38.53, 21.722, 46.187, 46.492, 19.79, 21.86, 2.408, 0.715, 108.0441, 0.0, 0.0, 0.0], 'label': 'MOUNT HOPE BAY', 'borderColor': 'rgba(44, 160, 44,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 999.999999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'TEN MILE RIVER', 'borderColor': 'rgba(214, 39, 40,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 5.50697, 16.267, 26.620438, 10.166184, 20.424, 41.1909, 0.218, 24.5151, 29.117, 20.765, 26.752, 69.578759, 44.197063, 67.278069, 23.222398, 5.698492, 31.965554, 62.426144, 5.659, 128.783646, 30.7168, 43.001375, 12.407, 4.824, 15.164398, 14.608326, 4.7958, 3.704, 27.79, 5.279, 17.411, 10.756, 2.187, 27.952, 0.0, 10.9748, 4.313, 22.031, 11.1291, 4.235, 6.586, 0.261, 0.0448, 23.2713, 0.0, 0.0, 0.0], 'label': 'TAUNTON RIVER', 'borderColor': 'rgba(148, 103, 189,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.89, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 362.01, 36.76, 14.84, 0.0, 0.0, 0.0003, 0.0, 0.0, 148.94, 0.0, 9.5, 23.45, 0.18, 249.88, 15.0, 8.18, 0.0, 7.63, 38.98, 0.0, 0.0, 0.0, 0.0, 16.07, 0.0, 0.0, 0.0], 'label': 'MASSACHUSETTS BAY', 'borderColor': 'rgba(140, 86, 75,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.04, 25.89004, 25.53529, 15.27533, 10.93803, 33.627345, 46.44037, 10.66254, 25.94895, 17.30912, 10.99391, 16.97624, 21.22331, 16.82741, 7.9488, 14.234804, 4.72295, 20.09978, 44.66829, 14.27652, 53.07679, 20.80113, 27.243218, 14.525964, 6.920613, 5.756981, 13.173934, 4.069956, 6.796508, 27.064564, 8.366736, 15.374761, 12.160803, 5.974968, 33.343855, 3.581376, 13.277366, 6.891125, 25.486412, 32.171843, 14.326732, 12.367965, 2.639834, 3.482527, 40.337583, 0.0, 0.0, 0.0], 'label': 'ACUSHNET RIVER', 'borderColor': 'rgba(227, 119, 194,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1},{'data': [0.0, 0.0, 0.01, 0.0, 14.83, 6.07, 17.6, 14.7, 0.0, 47.99, 0.0, 27.3, 0.0, 117.49, 53.73, 22.6, 0.0, 0.0, 72.59, 78.4, 0.0, 69.29, 14.23, 20.72, 18.56, 0.04, 3.48, 0.0, 0.0, 0.0, 44.63, 0.0, 0.0, 12.07, 0.0, 63.22, 8.73, 0.24, 1.22, 15.47, 22.69, 0.0, 0.0, 0.0, 0.0, 3.23, 0.0, 0.0, 0.0], 'label': 'CHARLES RIVER', 'borderColor': 'rgba(127, 127, 127,0.9)', 'fill': false, 'borderWidth': 2, 'yAxisID': 'y', 'pointRadius': 1}] }, type: 'line', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_cdf.html b/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_cdf.html index a91a4f9..e6c5fb8 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_cdf.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_cdf.html @@ -14,7 +14,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.0, y: 2.4154589371980677}, {x: 0.025, y: 34.989648033126294}, {x: 0.05, y: 43.064182194616976}, {x: 0.07500000000000001, y: 49.13733609385783}, {x: 0.1, y: 53.14009661835749}, {x: 0.125, y: 55.96963423050379}, {x: 0.15000000000000002, y: 58.93719806763285}, {x: 0.17500000000000002, y: 60.73153899240856}, {x: 0.2, y: 64.04416839199449}, {x: 0.225, y: 66.11456176673568}, {x: 0.25, y: 67.6328502415459}, {x: 0.275, y: 69.28916494133885}, {x: 0.30000000000000004, y: 70.53140096618358}, {x: 0.325, y: 72.11870255348516}, {x: 0.35000000000000003, y: 73.70600414078675}, {x: 0.375, y: 75.22429261559697}, {x: 0.4, y: 76.05244996549344}, {x: 0.42500000000000004, y: 77.01863354037268}, {x: 0.45, y: 78.67494824016563}, {x: 0.47500000000000003, y: 79.98619737750172}, {x: 0.5, y: 81.36645962732919}, {x: 0.525, y: 82.47066942719117}, {x: 0.55, y: 83.09178743961353}, {x: 0.5750000000000001, y: 83.85093167701864}, {x: 0.6000000000000001, y: 84.26501035196688}, {x: 0.625, y: 84.9551414768806}, {x: 0.65, y: 85.78329882677708}, {x: 0.675, y: 86.61145617667356}, {x: 0.7000000000000001, y: 87.02553485162181}, {x: 0.7250000000000001, y: 87.85369220151829}, {x: 0.75, y: 88.12974465148378}, {x: 0.775, y: 88.47481021394064}, {x: 0.8, y: 89.16494133885439}, {x: 0.8250000000000001, y: 89.71704623878537}, {x: 0.8500000000000001, y: 90.47619047619048}, {x: 0.875, y: 91.23533471359558}, {x: 0.9, y: 91.51138716356108}, {x: 0.925, y: 92.20151828847482}, {x: 0.9500000000000001, y: 92.40855762594893}, {x: 0.9750000000000001, y: 92.89164941338855}, {x: 1.0, y: 93.16770186335404}, {x: 1.0250000000000001, y: 93.37474120082815}, {x: 1.05, y: 93.71980676328504}, {x: 1.075, y: 94.13388543823326}, {x: 1.1, y: 94.27191166321602}, {x: 1.125, y: 94.40993788819875}, {x: 1.1500000000000001, y: 94.68599033816425}, {x: 1.175, y: 94.75500345065562}, {x: 1.2000000000000002, y: 94.96204278812974}, {x: 1.225, y: 95.16908212560386}, {x: 1.25, y: 95.51414768806073}, {x: 1.2750000000000001, y: 95.8592132505176}, {x: 1.3, y: 95.92822636300897}, {x: 1.3250000000000002, y: 95.99723947550034}, {x: 1.35, y: 96.1352657004831}, {x: 1.375, y: 96.54934437543133}, {x: 1.4000000000000001, y: 96.96342305037957}, {x: 1.425, y: 97.17046238785369}, {x: 1.4500000000000002, y: 97.3775017253278}, {x: 1.475, y: 97.51552795031056}, {x: 1.5, y: 97.51552795031056}, {x: 1.5250000000000001, y: 97.51552795031056}, {x: 1.55, y: 97.58454106280193}, {x: 1.5750000000000002, y: 97.65355417529331}, {x: 1.6, y: 97.79158040027606}, {x: 1.625, y: 97.79158040027606}, {x: 1.6500000000000001, y: 98.06763285024155}, {x: 1.675, y: 98.13664596273291}, {x: 1.7000000000000002, y: 98.13664596273291}, {x: 1.725, y: 98.27467218771567}, {x: 1.75, y: 98.4126984126984}, {x: 1.7750000000000001, y: 98.61973775017253}, {x: 1.8, y: 98.68875086266391}, {x: 1.8250000000000002, y: 98.75776397515527}, {x: 1.85, y: 98.89579020013802}, {x: 1.875, y: 98.89579020013802}, {x: 1.9000000000000001, y: 98.9648033126294}, {x: 1.925, y: 99.10282953761215}, {x: 1.9500000000000002, y: 99.10282953761215}, {x: 1.975, y: 99.10282953761215}, {x: 2.0, y: 99.10282953761215}, {x: 2.025, y: 99.10282953761215}, {x: 2.0500000000000003, y: 99.10282953761215}, {x: 2.075, y: 99.24085576259489}, {x: 2.1, y: 99.30986887508627}, {x: 2.125, y: 99.30986887508627}, {x: 2.15, y: 99.30986887508627}, {x: 2.1750000000000003, y: 99.30986887508627}, {x: 2.2, y: 99.37888198757764}, {x: 2.225, y: 99.44789510006902}, {x: 2.25, y: 99.44789510006902}, {x: 2.275, y: 99.44789510006902}, {x: 2.3000000000000003, y: 99.44789510006902}, {x: 2.325, y: 99.44789510006902}, {x: 2.35, y: 99.51690821256038}, {x: 2.375, y: 99.58592132505176}, {x: 2.4000000000000004, y: 99.58592132505176}, {x: 2.4250000000000003, y: 99.65493443754313}, {x: 2.45, y: 99.72394755003451}, {x: 2.475, y: 99.72394755003451}, {x: 2.5, y: 99.79296066252587}, {x: 2.5250000000000004, y: 99.86197377501725}, {x: 2.5500000000000003, y: 99.86197377501725}, {x: 2.575, y: 99.93098688750862}, {x: 2.6, y: 99.93098688750862}, {x: 2.625, y: 99.93098688750862}, {x: 2.6500000000000004, y: 99.93098688750862}, {x: 2.6750000000000003, y: 99.93098688750862}, {x: 2.7, y: 99.93098688750862}, {x: 2.725, y: 99.93098688750862}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'All days (rainfall distribution)', 'showLine': true, 'borderColor': 'rgba(80,80,80,0.7)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderDash': [6, 4], 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 2.0348837209302326}, {x: 0.025, y: 29.651162790697676}, {x: 0.05, y: 40.406976744186046}, {x: 0.07500000000000001, y: 46.80232558139535}, {x: 0.1, y: 50.58139534883721}, {x: 0.125, y: 53.48837209302325}, {x: 0.15000000000000002, y: 56.68604651162791}, {x: 0.17500000000000002, y: 58.43023255813954}, {x: 0.2, y: 62.5}, {x: 0.225, y: 65.69767441860465}, {x: 0.25, y: 67.44186046511628}, {x: 0.275, y: 68.8953488372093}, {x: 0.30000000000000004, y: 70.05813953488372}, {x: 0.325, y: 71.22093023255815}, {x: 0.35000000000000003, y: 72.67441860465115}, {x: 0.375, y: 74.4186046511628}, {x: 0.4, y: 75.29069767441861}, {x: 0.42500000000000004, y: 76.74418604651163}, {x: 0.45, y: 79.06976744186046}, {x: 0.47500000000000003, y: 81.1046511627907}, {x: 0.5, y: 82.26744186046511}, {x: 0.525, y: 83.72093023255815}, {x: 0.55, y: 84.01162790697676}, {x: 0.5750000000000001, y: 84.88372093023256}, {x: 0.6000000000000001, y: 85.17441860465115}, {x: 0.625, y: 85.17441860465115}, {x: 0.65, y: 86.04651162790698}, {x: 0.675, y: 87.20930232558139}, {x: 0.7000000000000001, y: 87.20930232558139}, {x: 0.7250000000000001, y: 87.5}, {x: 0.75, y: 87.79069767441861}, {x: 0.775, y: 88.66279069767442}, {x: 0.8, y: 89.82558139534885}, {x: 0.8250000000000001, y: 90.40697674418605}, {x: 0.8500000000000001, y: 91.27906976744185}, {x: 0.875, y: 92.44186046511628}, {x: 0.9, y: 92.44186046511628}, {x: 0.925, y: 93.31395348837209}, {x: 0.9500000000000001, y: 93.31395348837209}, {x: 0.9750000000000001, y: 93.6046511627907}, {x: 1.0, y: 93.6046511627907}, {x: 1.0250000000000001, y: 93.6046511627907}, {x: 1.05, y: 94.18604651162791}, {x: 1.075, y: 94.47674418604652}, {x: 1.1, y: 94.47674418604652}, {x: 1.125, y: 94.76744186046511}, {x: 1.1500000000000001, y: 94.76744186046511}, {x: 1.175, y: 94.76744186046511}, {x: 1.2000000000000002, y: 95.34883720930233}, {x: 1.225, y: 95.34883720930233}, {x: 1.25, y: 95.63953488372093}, {x: 1.2750000000000001, y: 95.63953488372093}, {x: 1.3, y: 95.63953488372093}, {x: 1.3250000000000002, y: 95.63953488372093}, {x: 1.35, y: 95.93023255813954}, {x: 1.375, y: 96.51162790697676}, {x: 1.4000000000000001, y: 97.09302325581395}, {x: 1.425, y: 97.67441860465115}, {x: 1.4500000000000002, y: 97.67441860465115}, {x: 1.475, y: 97.96511627906976}, {x: 1.5, y: 97.96511627906976}, {x: 1.5250000000000001, y: 97.96511627906976}, {x: 1.55, y: 98.25581395348837}, {x: 1.5750000000000002, y: 98.25581395348837}, {x: 1.6, y: 98.54651162790698}, {x: 1.625, y: 98.54651162790698}, {x: 1.6500000000000001, y: 99.12790697674419}, {x: 1.675, y: 99.12790697674419}, {x: 1.7000000000000002, y: 99.12790697674419}, {x: 1.725, y: 99.12790697674419}, {x: 1.75, y: 99.12790697674419}, {x: 1.7750000000000001, y: 99.12790697674419}, {x: 1.8, y: 99.12790697674419}, {x: 1.8250000000000002, y: 99.12790697674419}, {x: 1.85, y: 99.4186046511628}, {x: 1.875, y: 99.4186046511628}, {x: 1.9000000000000001, y: 99.4186046511628}, {x: 1.925, y: 99.4186046511628}, {x: 1.9500000000000002, y: 99.4186046511628}, {x: 1.975, y: 99.4186046511628}, {x: 2.0, y: 99.4186046511628}, {x: 2.025, y: 99.4186046511628}, {x: 2.0500000000000003, y: 99.4186046511628}, {x: 2.075, y: 99.70930232558139}, {x: 2.1, y: 99.70930232558139}, {x: 2.125, y: 99.70930232558139}, {x: 2.15, y: 99.70930232558139}, {x: 2.1750000000000003, y: 99.70930232558139}, {x: 2.2, y: 99.70930232558139}, {x: 2.225, y: 99.70930232558139}, {x: 2.25, y: 99.70930232558139}, {x: 2.275, y: 99.70930232558139}, {x: 2.3000000000000003, y: 99.70930232558139}, {x: 2.325, y: 99.70930232558139}, {x: 2.35, y: 99.70930232558139}, {x: 2.375, y: 99.70930232558139}, {x: 2.4000000000000004, y: 99.70930232558139}, {x: 2.4250000000000003, y: 99.70930232558139}, {x: 2.45, y: 100.0}, {x: 2.475, y: 100.0}, {x: 2.5, y: 100.0}, {x: 2.5250000000000004, y: 100.0}, {x: 2.5500000000000003, y: 100.0}, {x: 2.575, y: 100.0}, {x: 2.6, y: 100.0}, {x: 2.625, y: 100.0}, {x: 2.6500000000000004, y: 100.0}, {x: 2.6750000000000003, y: 100.0}, {x: 2.7, y: 100.0}, {x: 2.725, y: 100.0}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'CSO – Untreated', 'showLine': true, 'borderColor': 'rgba(31, 119, 180,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 2.5}, {x: 0.025, y: 29.375}, {x: 0.05, y: 38.75}, {x: 0.07500000000000001, y: 43.75}, {x: 0.1, y: 49.375}, {x: 0.125, y: 53.125}, {x: 0.15000000000000002, y: 55.625}, {x: 0.17500000000000002, y: 58.12500000000001}, {x: 0.2, y: 59.375}, {x: 0.225, y: 63.125}, {x: 0.25, y: 66.25}, {x: 0.275, y: 67.5}, {x: 0.30000000000000004, y: 67.5}, {x: 0.325, y: 69.375}, {x: 0.35000000000000003, y: 71.25}, {x: 0.375, y: 72.5}, {x: 0.4, y: 72.5}, {x: 0.42500000000000004, y: 75.625}, {x: 0.45, y: 80.0}, {x: 0.47500000000000003, y: 83.125}, {x: 0.5, y: 83.75}, {x: 0.525, y: 85.0}, {x: 0.55, y: 85.0}, {x: 0.5750000000000001, y: 85.625}, {x: 0.6000000000000001, y: 85.625}, {x: 0.625, y: 85.625}, {x: 0.65, y: 86.875}, {x: 0.675, y: 88.125}, {x: 0.7000000000000001, y: 88.125}, {x: 0.7250000000000001, y: 88.75}, {x: 0.75, y: 88.75}, {x: 0.775, y: 89.375}, {x: 0.8, y: 90.0}, {x: 0.8250000000000001, y: 91.25}, {x: 0.8500000000000001, y: 92.5}, {x: 0.875, y: 92.5}, {x: 0.9, y: 92.5}, {x: 0.925, y: 93.75}, {x: 0.9500000000000001, y: 93.75}, {x: 0.9750000000000001, y: 94.375}, {x: 1.0, y: 94.375}, {x: 1.0250000000000001, y: 94.375}, {x: 1.05, y: 94.375}, {x: 1.075, y: 95.0}, {x: 1.1, y: 95.0}, {x: 1.125, y: 95.625}, {x: 1.1500000000000001, y: 95.625}, {x: 1.175, y: 95.625}, {x: 1.2000000000000002, y: 96.875}, {x: 1.225, y: 96.875}, {x: 1.25, y: 96.875}, {x: 1.2750000000000001, y: 96.875}, {x: 1.3, y: 96.875}, {x: 1.3250000000000002, y: 96.875}, {x: 1.35, y: 96.875}, {x: 1.375, y: 97.5}, {x: 1.4000000000000001, y: 97.5}, {x: 1.425, y: 98.125}, {x: 1.4500000000000002, y: 98.125}, {x: 1.475, y: 98.125}, {x: 1.5, y: 98.125}, {x: 1.5250000000000001, y: 98.125}, {x: 1.55, y: 98.125}, {x: 1.5750000000000002, y: 98.125}, {x: 1.6, y: 98.125}, {x: 1.625, y: 98.125}, {x: 1.6500000000000001, y: 98.75}, {x: 1.675, y: 98.75}, {x: 1.7000000000000002, y: 98.75}, {x: 1.725, y: 98.75}, {x: 1.75, y: 98.75}, {x: 1.7750000000000001, y: 98.75}, {x: 1.8, y: 98.75}, {x: 1.8250000000000002, y: 98.75}, {x: 1.85, y: 99.375}, {x: 1.875, y: 99.375}, {x: 1.9000000000000001, y: 99.375}, {x: 1.925, y: 99.375}, {x: 1.9500000000000002, y: 99.375}, {x: 1.975, y: 99.375}, {x: 2.0, y: 99.375}, {x: 2.025, y: 99.375}, {x: 2.0500000000000003, y: 99.375}, {x: 2.075, y: 100.0}, {x: 2.1, y: 100.0}, {x: 2.125, y: 100.0}, {x: 2.15, y: 100.0}, {x: 2.1750000000000003, y: 100.0}, {x: 2.2, y: 100.0}, {x: 2.225, y: 100.0}, {x: 2.25, y: 100.0}, {x: 2.275, y: 100.0}, {x: 2.3000000000000003, y: 100.0}, {x: 2.325, y: 100.0}, {x: 2.35, y: 100.0}, {x: 2.375, y: 100.0}, {x: 2.4000000000000004, y: 100.0}, {x: 2.4250000000000003, y: 100.0}, {x: 2.45, y: 100.0}, {x: 2.475, y: 100.0}, {x: 2.5, y: 100.0}, {x: 2.5250000000000004, y: 100.0}, {x: 2.5500000000000003, y: 100.0}, {x: 2.575, y: 100.0}, {x: 2.6, y: 100.0}, {x: 2.625, y: 100.0}, {x: 2.6500000000000004, y: 100.0}, {x: 2.6750000000000003, y: 100.0}, {x: 2.7, y: 100.0}, {x: 2.725, y: 100.0}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'CSO – Treated', 'showLine': true, 'borderColor': 'rgba(255, 127, 14,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 2.941176470588235}, {x: 0.025, y: 32.94117647058823}, {x: 0.05, y: 40.588235294117645}, {x: 0.07500000000000001, y: 45.294117647058826}, {x: 0.1, y: 50.0}, {x: 0.125, y: 52.352941176470594}, {x: 0.15000000000000002, y: 54.11764705882353}, {x: 0.17500000000000002, y: 55.88235294117647}, {x: 0.2, y: 57.647058823529406}, {x: 0.225, y: 61.1764705882353}, {x: 0.25, y: 64.11764705882354}, {x: 0.275, y: 66.47058823529412}, {x: 0.30000000000000004, y: 67.64705882352942}, {x: 0.325, y: 69.41176470588235}, {x: 0.35000000000000003, y: 71.17647058823529}, {x: 0.375, y: 73.52941176470588}, {x: 0.4, y: 74.11764705882354}, {x: 0.42500000000000004, y: 75.88235294117646}, {x: 0.45, y: 78.82352941176471}, {x: 0.47500000000000003, y: 81.76470588235294}, {x: 0.5, y: 82.35294117647058}, {x: 0.525, y: 83.52941176470588}, {x: 0.55, y: 83.52941176470588}, {x: 0.5750000000000001, y: 84.11764705882354}, {x: 0.6000000000000001, y: 84.70588235294117}, {x: 0.625, y: 85.29411764705883}, {x: 0.65, y: 86.47058823529412}, {x: 0.675, y: 87.6470588235294}, {x: 0.7000000000000001, y: 87.6470588235294}, {x: 0.7250000000000001, y: 88.23529411764706}, {x: 0.75, y: 88.23529411764706}, {x: 0.775, y: 88.8235294117647}, {x: 0.8, y: 88.8235294117647}, {x: 0.8250000000000001, y: 89.41176470588236}, {x: 0.8500000000000001, y: 90.58823529411765}, {x: 0.875, y: 91.17647058823529}, {x: 0.9, y: 91.76470588235294}, {x: 0.925, y: 91.76470588235294}, {x: 0.9500000000000001, y: 91.76470588235294}, {x: 0.9750000000000001, y: 92.3529411764706}, {x: 1.0, y: 92.3529411764706}, {x: 1.0250000000000001, y: 92.3529411764706}, {x: 1.05, y: 92.3529411764706}, {x: 1.075, y: 92.94117647058823}, {x: 1.1, y: 92.94117647058823}, {x: 1.125, y: 92.94117647058823}, {x: 1.1500000000000001, y: 92.94117647058823}, {x: 1.175, y: 92.94117647058823}, {x: 1.2000000000000002, y: 93.52941176470588}, {x: 1.225, y: 93.52941176470588}, {x: 1.25, y: 94.70588235294117}, {x: 1.2750000000000001, y: 95.29411764705881}, {x: 1.3, y: 95.29411764705881}, {x: 1.3250000000000002, y: 95.29411764705881}, {x: 1.35, y: 95.29411764705881}, {x: 1.375, y: 95.88235294117648}, {x: 1.4000000000000001, y: 95.88235294117648}, {x: 1.425, y: 96.47058823529412}, {x: 1.4500000000000002, y: 96.47058823529412}, {x: 1.475, y: 97.05882352941177}, {x: 1.5, y: 97.05882352941177}, {x: 1.5250000000000001, y: 97.05882352941177}, {x: 1.55, y: 97.05882352941177}, {x: 1.5750000000000002, y: 97.05882352941177}, {x: 1.6, y: 97.05882352941177}, {x: 1.625, y: 97.05882352941177}, {x: 1.6500000000000001, y: 97.6470588235294}, {x: 1.675, y: 97.6470588235294}, {x: 1.7000000000000002, y: 97.6470588235294}, {x: 1.725, y: 97.6470588235294}, {x: 1.75, y: 97.6470588235294}, {x: 1.7750000000000001, y: 97.6470588235294}, {x: 1.8, y: 97.6470588235294}, {x: 1.8250000000000002, y: 97.6470588235294}, {x: 1.85, y: 98.23529411764706}, {x: 1.875, y: 98.23529411764706}, {x: 1.9000000000000001, y: 98.23529411764706}, {x: 1.925, y: 98.23529411764706}, {x: 1.9500000000000002, y: 98.23529411764706}, {x: 1.975, y: 98.23529411764706}, {x: 2.0, y: 98.23529411764706}, {x: 2.025, y: 98.23529411764706}, {x: 2.0500000000000003, y: 98.23529411764706}, {x: 2.075, y: 98.82352941176471}, {x: 2.1, y: 98.82352941176471}, {x: 2.125, y: 98.82352941176471}, {x: 2.15, y: 98.82352941176471}, {x: 2.1750000000000003, y: 98.82352941176471}, {x: 2.2, y: 98.82352941176471}, {x: 2.225, y: 98.82352941176471}, {x: 2.25, y: 98.82352941176471}, {x: 2.275, y: 98.82352941176471}, {x: 2.3000000000000003, y: 98.82352941176471}, {x: 2.325, y: 98.82352941176471}, {x: 2.35, y: 98.82352941176471}, {x: 2.375, y: 98.82352941176471}, {x: 2.4000000000000004, y: 98.82352941176471}, {x: 2.4250000000000003, y: 98.82352941176471}, {x: 2.45, y: 98.82352941176471}, {x: 2.475, y: 98.82352941176471}, {x: 2.5, y: 98.82352941176471}, {x: 2.5250000000000004, y: 99.41176470588235}, {x: 2.5500000000000003, y: 99.41176470588235}, {x: 2.575, y: 99.41176470588235}, {x: 2.6, y: 99.41176470588235}, {x: 2.625, y: 99.41176470588235}, {x: 2.6500000000000004, y: 99.41176470588235}, {x: 2.6750000000000003, y: 99.41176470588235}, {x: 2.7, y: 99.41176470588235}, {x: 2.725, y: 99.41176470588235}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'Partially Treated', 'showLine': true, 'borderColor': 'rgba(44, 160, 44,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 0.0}, {x: 0.025, y: 9.090909090909092}, {x: 0.05, y: 18.181818181818183}, {x: 0.07500000000000001, y: 22.727272727272727}, {x: 0.1, y: 29.545454545454547}, {x: 0.125, y: 31.818181818181817}, {x: 0.15000000000000002, y: 31.818181818181817}, {x: 0.17500000000000002, y: 31.818181818181817}, {x: 0.2, y: 36.36363636363637}, {x: 0.225, y: 38.63636363636363}, {x: 0.25, y: 40.909090909090914}, {x: 0.275, y: 40.909090909090914}, {x: 0.30000000000000004, y: 43.18181818181818}, {x: 0.325, y: 43.18181818181818}, {x: 0.35000000000000003, y: 47.72727272727273}, {x: 0.375, y: 52.27272727272727}, {x: 0.4, y: 52.27272727272727}, {x: 0.42500000000000004, y: 56.81818181818182}, {x: 0.45, y: 59.09090909090909}, {x: 0.47500000000000003, y: 61.36363636363637}, {x: 0.5, y: 61.36363636363637}, {x: 0.525, y: 63.63636363636363}, {x: 0.55, y: 65.9090909090909}, {x: 0.5750000000000001, y: 70.45454545454545}, {x: 0.6000000000000001, y: 70.45454545454545}, {x: 0.625, y: 70.45454545454545}, {x: 0.65, y: 75.0}, {x: 0.675, y: 75.0}, {x: 0.7000000000000001, y: 75.0}, {x: 0.7250000000000001, y: 75.0}, {x: 0.75, y: 75.0}, {x: 0.775, y: 75.0}, {x: 0.8, y: 77.27272727272727}, {x: 0.8250000000000001, y: 79.54545454545455}, {x: 0.8500000000000001, y: 79.54545454545455}, {x: 0.875, y: 79.54545454545455}, {x: 0.9, y: 79.54545454545455}, {x: 0.925, y: 79.54545454545455}, {x: 0.9500000000000001, y: 79.54545454545455}, {x: 0.9750000000000001, y: 81.81818181818183}, {x: 1.0, y: 81.81818181818183}, {x: 1.0250000000000001, y: 81.81818181818183}, {x: 1.05, y: 81.81818181818183}, {x: 1.075, y: 81.81818181818183}, {x: 1.1, y: 81.81818181818183}, {x: 1.125, y: 81.81818181818183}, {x: 1.1500000000000001, y: 81.81818181818183}, {x: 1.175, y: 84.0909090909091}, {x: 1.2000000000000002, y: 84.0909090909091}, {x: 1.225, y: 84.0909090909091}, {x: 1.25, y: 84.0909090909091}, {x: 1.2750000000000001, y: 84.0909090909091}, {x: 1.3, y: 84.0909090909091}, {x: 1.3250000000000002, y: 84.0909090909091}, {x: 1.35, y: 84.0909090909091}, {x: 1.375, y: 88.63636363636364}, {x: 1.4000000000000001, y: 90.9090909090909}, {x: 1.425, y: 90.9090909090909}, {x: 1.4500000000000002, y: 93.18181818181817}, {x: 1.475, y: 93.18181818181817}, {x: 1.5, y: 93.18181818181817}, {x: 1.5250000000000001, y: 93.18181818181817}, {x: 1.55, y: 95.45454545454545}, {x: 1.5750000000000002, y: 95.45454545454545}, {x: 1.6, y: 95.45454545454545}, {x: 1.625, y: 95.45454545454545}, {x: 1.6500000000000001, y: 97.72727272727273}, {x: 1.675, y: 97.72727272727273}, {x: 1.7000000000000002, y: 97.72727272727273}, {x: 1.725, y: 97.72727272727273}, {x: 1.75, y: 97.72727272727273}, {x: 1.7750000000000001, y: 100.0}, {x: 1.8, y: 100.0}, {x: 1.8250000000000002, y: 100.0}, {x: 1.85, y: 100.0}, {x: 1.875, y: 100.0}, {x: 1.9000000000000001, y: 100.0}, {x: 1.925, y: 100.0}, {x: 1.9500000000000002, y: 100.0}, {x: 1.975, y: 100.0}, {x: 2.0, y: 100.0}, {x: 2.025, y: 100.0}, {x: 2.0500000000000003, y: 100.0}, {x: 2.075, y: 100.0}, {x: 2.1, y: 100.0}, {x: 2.125, y: 100.0}, {x: 2.15, y: 100.0}, {x: 2.1750000000000003, y: 100.0}, {x: 2.2, y: 100.0}, {x: 2.225, y: 100.0}, {x: 2.25, y: 100.0}, {x: 2.275, y: 100.0}, {x: 2.3000000000000003, y: 100.0}, {x: 2.325, y: 100.0}, {x: 2.35, y: 100.0}, {x: 2.375, y: 100.0}, {x: 2.4000000000000004, y: 100.0}, {x: 2.4250000000000003, y: 100.0}, {x: 2.45, y: 100.0}, {x: 2.475, y: 100.0}, {x: 2.5, y: 100.0}, {x: 2.5250000000000004, y: 100.0}, {x: 2.5500000000000003, y: 100.0}, {x: 2.575, y: 100.0}, {x: 2.6, y: 100.0}, {x: 2.625, y: 100.0}, {x: 2.6500000000000004, y: 100.0}, {x: 2.6750000000000003, y: 100.0}, {x: 2.7, y: 100.0}, {x: 2.725, y: 100.0}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'SSO', 'showLine': true, 'borderColor': 'rgba(214, 39, 40,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false}] + datasets: [{'data': [{x: 0.0, y: 2.4439918533604885}, {x: 0.025, y: 34.96266123557366}, {x: 0.05, y: 42.973523421588595}, {x: 0.07500000000000001, y: 49.08350305498982}, {x: 0.1, y: 53.08893414799728}, {x: 0.125, y: 55.94025797691785}, {x: 0.15000000000000002, y: 58.92735913102511}, {x: 0.17500000000000002, y: 60.896130346232184}, {x: 0.2, y: 64.22267481330618}, {x: 0.225, y: 66.32722335369992}, {x: 0.25, y: 67.82077393075356}, {x: 0.275, y: 69.4501018329939}, {x: 0.30000000000000004, y: 70.73998642226749}, {x: 0.325, y: 72.30142566191446}, {x: 0.35000000000000003, y: 73.86286490156144}, {x: 0.375, y: 75.35641547861506}, {x: 0.4, y: 76.17107942973523}, {x: 0.42500000000000004, y: 77.12152070604209}, {x: 0.45, y: 78.8866259334691}, {x: 0.47500000000000003, y: 80.10862186014936}, {x: 0.5, y: 81.4663951120163}, {x: 0.525, y: 82.62050237610319}, {x: 0.55, y: 83.23150033944331}, {x: 0.5750000000000001, y: 83.97827562797013}, {x: 0.6000000000000001, y: 84.3856076035302}, {x: 0.625, y: 85.06449422946368}, {x: 0.65, y: 85.87915818058384}, {x: 0.675, y: 86.693822131704}, {x: 0.7000000000000001, y: 87.1011541072641}, {x: 0.7250000000000001, y: 87.91581805838426}, {x: 0.75, y: 88.18737270875764}, {x: 0.775, y: 88.66259334691107}, {x: 0.8, y: 89.34147997284454}, {x: 0.8250000000000001, y: 89.8845892735913}, {x: 0.8500000000000001, y: 90.63136456211812}, {x: 0.875, y: 91.37813985064494}, {x: 0.9, y: 91.64969450101833}, {x: 0.925, y: 92.3285811269518}, {x: 0.9500000000000001, y: 92.53224711473183}, {x: 0.9750000000000001, y: 93.00746775288526}, {x: 1.0, y: 93.27902240325867}, {x: 1.0250000000000001, y: 93.48268839103869}, {x: 1.05, y: 93.82213170400543}, {x: 1.075, y: 94.22946367956551}, {x: 1.1, y: 94.3652410047522}, {x: 1.125, y: 94.5010183299389}, {x: 1.1500000000000001, y: 94.77257298031229}, {x: 1.175, y: 94.84046164290564}, {x: 1.2000000000000002, y: 95.04412763068567}, {x: 1.225, y: 95.24779361846572}, {x: 1.25, y: 95.58723693143246}, {x: 1.2750000000000001, y: 95.9266802443992}, {x: 1.3, y: 95.99456890699253}, {x: 1.3250000000000002, y: 96.06245756958587}, {x: 1.35, y: 96.19823489477257}, {x: 1.375, y: 96.60556687033267}, {x: 1.4000000000000001, y: 97.01289884589274}, {x: 1.425, y: 97.21656483367278}, {x: 1.4500000000000002, y: 97.42023082145282}, {x: 1.475, y: 97.5560081466395}, {x: 1.5, y: 97.5560081466395}, {x: 1.5250000000000001, y: 97.5560081466395}, {x: 1.55, y: 97.62389680923286}, {x: 1.5750000000000002, y: 97.69178547182621}, {x: 1.6, y: 97.8275627970129}, {x: 1.625, y: 97.8275627970129}, {x: 1.6500000000000001, y: 98.09911744738629}, {x: 1.675, y: 98.16700610997964}, {x: 1.7000000000000002, y: 98.16700610997964}, {x: 1.725, y: 98.30278343516633}, {x: 1.75, y: 98.43856076035303}, {x: 1.7750000000000001, y: 98.64222674813307}, {x: 1.8, y: 98.7101154107264}, {x: 1.8250000000000002, y: 98.77800407331976}, {x: 1.85, y: 98.91378139850644}, {x: 1.875, y: 98.91378139850644}, {x: 1.9000000000000001, y: 98.98167006109979}, {x: 1.925, y: 99.1174473862865}, {x: 1.9500000000000002, y: 99.1174473862865}, {x: 1.975, y: 99.1174473862865}, {x: 2.0, y: 99.1174473862865}, {x: 2.025, y: 99.1174473862865}, {x: 2.0500000000000003, y: 99.1174473862865}, {x: 2.075, y: 99.25322471147318}, {x: 2.1, y: 99.32111337406653}, {x: 2.125, y: 99.32111337406653}, {x: 2.15, y: 99.32111337406653}, {x: 2.1750000000000003, y: 99.32111337406653}, {x: 2.2, y: 99.38900203665987}, {x: 2.225, y: 99.45689069925322}, {x: 2.25, y: 99.45689069925322}, {x: 2.275, y: 99.45689069925322}, {x: 2.3000000000000003, y: 99.45689069925322}, {x: 2.325, y: 99.45689069925322}, {x: 2.35, y: 99.52477936184657}, {x: 2.375, y: 99.59266802443992}, {x: 2.4000000000000004, y: 99.59266802443992}, {x: 2.4250000000000003, y: 99.66055668703326}, {x: 2.45, y: 99.72844534962661}, {x: 2.475, y: 99.72844534962661}, {x: 2.5, y: 99.79633401221996}, {x: 2.5250000000000004, y: 99.8642226748133}, {x: 2.5500000000000003, y: 99.8642226748133}, {x: 2.575, y: 99.93211133740665}, {x: 2.6, y: 99.93211133740665}, {x: 2.625, y: 99.93211133740665}, {x: 2.6500000000000004, y: 99.93211133740665}, {x: 2.6750000000000003, y: 99.93211133740665}, {x: 2.7, y: 99.93211133740665}, {x: 2.725, y: 99.93211133740665}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'All days (rainfall distribution)', 'showLine': true, 'borderColor': 'rgba(80,80,80,0.7)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderDash': [6, 4], 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 2.0348837209302326}, {x: 0.025, y: 29.651162790697676}, {x: 0.05, y: 40.406976744186046}, {x: 0.07500000000000001, y: 46.80232558139535}, {x: 0.1, y: 50.58139534883721}, {x: 0.125, y: 53.48837209302325}, {x: 0.15000000000000002, y: 56.68604651162791}, {x: 0.17500000000000002, y: 58.43023255813954}, {x: 0.2, y: 62.5}, {x: 0.225, y: 65.69767441860465}, {x: 0.25, y: 67.44186046511628}, {x: 0.275, y: 68.8953488372093}, {x: 0.30000000000000004, y: 70.05813953488372}, {x: 0.325, y: 71.22093023255815}, {x: 0.35000000000000003, y: 72.67441860465115}, {x: 0.375, y: 74.4186046511628}, {x: 0.4, y: 75.29069767441861}, {x: 0.42500000000000004, y: 76.74418604651163}, {x: 0.45, y: 79.06976744186046}, {x: 0.47500000000000003, y: 81.1046511627907}, {x: 0.5, y: 82.26744186046511}, {x: 0.525, y: 83.72093023255815}, {x: 0.55, y: 84.01162790697676}, {x: 0.5750000000000001, y: 84.88372093023256}, {x: 0.6000000000000001, y: 85.17441860465115}, {x: 0.625, y: 85.17441860465115}, {x: 0.65, y: 86.04651162790698}, {x: 0.675, y: 87.20930232558139}, {x: 0.7000000000000001, y: 87.20930232558139}, {x: 0.7250000000000001, y: 87.5}, {x: 0.75, y: 87.79069767441861}, {x: 0.775, y: 88.66279069767442}, {x: 0.8, y: 89.82558139534885}, {x: 0.8250000000000001, y: 90.40697674418605}, {x: 0.8500000000000001, y: 91.27906976744185}, {x: 0.875, y: 92.44186046511628}, {x: 0.9, y: 92.44186046511628}, {x: 0.925, y: 93.31395348837209}, {x: 0.9500000000000001, y: 93.31395348837209}, {x: 0.9750000000000001, y: 93.6046511627907}, {x: 1.0, y: 93.6046511627907}, {x: 1.0250000000000001, y: 93.6046511627907}, {x: 1.05, y: 94.18604651162791}, {x: 1.075, y: 94.47674418604652}, {x: 1.1, y: 94.47674418604652}, {x: 1.125, y: 94.76744186046511}, {x: 1.1500000000000001, y: 94.76744186046511}, {x: 1.175, y: 94.76744186046511}, {x: 1.2000000000000002, y: 95.34883720930233}, {x: 1.225, y: 95.34883720930233}, {x: 1.25, y: 95.63953488372093}, {x: 1.2750000000000001, y: 95.63953488372093}, {x: 1.3, y: 95.63953488372093}, {x: 1.3250000000000002, y: 95.63953488372093}, {x: 1.35, y: 95.93023255813954}, {x: 1.375, y: 96.51162790697676}, {x: 1.4000000000000001, y: 97.09302325581395}, {x: 1.425, y: 97.67441860465115}, {x: 1.4500000000000002, y: 97.67441860465115}, {x: 1.475, y: 97.96511627906976}, {x: 1.5, y: 97.96511627906976}, {x: 1.5250000000000001, y: 97.96511627906976}, {x: 1.55, y: 98.25581395348837}, {x: 1.5750000000000002, y: 98.25581395348837}, {x: 1.6, y: 98.54651162790698}, {x: 1.625, y: 98.54651162790698}, {x: 1.6500000000000001, y: 99.12790697674419}, {x: 1.675, y: 99.12790697674419}, {x: 1.7000000000000002, y: 99.12790697674419}, {x: 1.725, y: 99.12790697674419}, {x: 1.75, y: 99.12790697674419}, {x: 1.7750000000000001, y: 99.12790697674419}, {x: 1.8, y: 99.12790697674419}, {x: 1.8250000000000002, y: 99.12790697674419}, {x: 1.85, y: 99.4186046511628}, {x: 1.875, y: 99.4186046511628}, {x: 1.9000000000000001, y: 99.4186046511628}, {x: 1.925, y: 99.4186046511628}, {x: 1.9500000000000002, y: 99.4186046511628}, {x: 1.975, y: 99.4186046511628}, {x: 2.0, y: 99.4186046511628}, {x: 2.025, y: 99.4186046511628}, {x: 2.0500000000000003, y: 99.4186046511628}, {x: 2.075, y: 99.70930232558139}, {x: 2.1, y: 99.70930232558139}, {x: 2.125, y: 99.70930232558139}, {x: 2.15, y: 99.70930232558139}, {x: 2.1750000000000003, y: 99.70930232558139}, {x: 2.2, y: 99.70930232558139}, {x: 2.225, y: 99.70930232558139}, {x: 2.25, y: 99.70930232558139}, {x: 2.275, y: 99.70930232558139}, {x: 2.3000000000000003, y: 99.70930232558139}, {x: 2.325, y: 99.70930232558139}, {x: 2.35, y: 99.70930232558139}, {x: 2.375, y: 99.70930232558139}, {x: 2.4000000000000004, y: 99.70930232558139}, {x: 2.4250000000000003, y: 99.70930232558139}, {x: 2.45, y: 100.0}, {x: 2.475, y: 100.0}, {x: 2.5, y: 100.0}, {x: 2.5250000000000004, y: 100.0}, {x: 2.5500000000000003, y: 100.0}, {x: 2.575, y: 100.0}, {x: 2.6, y: 100.0}, {x: 2.625, y: 100.0}, {x: 2.6500000000000004, y: 100.0}, {x: 2.6750000000000003, y: 100.0}, {x: 2.7, y: 100.0}, {x: 2.725, y: 100.0}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'CSO – Untreated', 'showLine': true, 'borderColor': 'rgba(31, 119, 180,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 2.5}, {x: 0.025, y: 29.375}, {x: 0.05, y: 38.75}, {x: 0.07500000000000001, y: 43.75}, {x: 0.1, y: 49.375}, {x: 0.125, y: 53.125}, {x: 0.15000000000000002, y: 55.625}, {x: 0.17500000000000002, y: 58.12500000000001}, {x: 0.2, y: 59.375}, {x: 0.225, y: 63.125}, {x: 0.25, y: 66.25}, {x: 0.275, y: 67.5}, {x: 0.30000000000000004, y: 67.5}, {x: 0.325, y: 69.375}, {x: 0.35000000000000003, y: 71.25}, {x: 0.375, y: 72.5}, {x: 0.4, y: 72.5}, {x: 0.42500000000000004, y: 75.625}, {x: 0.45, y: 80.0}, {x: 0.47500000000000003, y: 83.125}, {x: 0.5, y: 83.75}, {x: 0.525, y: 85.0}, {x: 0.55, y: 85.0}, {x: 0.5750000000000001, y: 85.625}, {x: 0.6000000000000001, y: 85.625}, {x: 0.625, y: 85.625}, {x: 0.65, y: 86.875}, {x: 0.675, y: 88.125}, {x: 0.7000000000000001, y: 88.125}, {x: 0.7250000000000001, y: 88.75}, {x: 0.75, y: 88.75}, {x: 0.775, y: 89.375}, {x: 0.8, y: 90.0}, {x: 0.8250000000000001, y: 91.25}, {x: 0.8500000000000001, y: 92.5}, {x: 0.875, y: 92.5}, {x: 0.9, y: 92.5}, {x: 0.925, y: 93.75}, {x: 0.9500000000000001, y: 93.75}, {x: 0.9750000000000001, y: 94.375}, {x: 1.0, y: 94.375}, {x: 1.0250000000000001, y: 94.375}, {x: 1.05, y: 94.375}, {x: 1.075, y: 95.0}, {x: 1.1, y: 95.0}, {x: 1.125, y: 95.625}, {x: 1.1500000000000001, y: 95.625}, {x: 1.175, y: 95.625}, {x: 1.2000000000000002, y: 96.875}, {x: 1.225, y: 96.875}, {x: 1.25, y: 96.875}, {x: 1.2750000000000001, y: 96.875}, {x: 1.3, y: 96.875}, {x: 1.3250000000000002, y: 96.875}, {x: 1.35, y: 96.875}, {x: 1.375, y: 97.5}, {x: 1.4000000000000001, y: 97.5}, {x: 1.425, y: 98.125}, {x: 1.4500000000000002, y: 98.125}, {x: 1.475, y: 98.125}, {x: 1.5, y: 98.125}, {x: 1.5250000000000001, y: 98.125}, {x: 1.55, y: 98.125}, {x: 1.5750000000000002, y: 98.125}, {x: 1.6, y: 98.125}, {x: 1.625, y: 98.125}, {x: 1.6500000000000001, y: 98.75}, {x: 1.675, y: 98.75}, {x: 1.7000000000000002, y: 98.75}, {x: 1.725, y: 98.75}, {x: 1.75, y: 98.75}, {x: 1.7750000000000001, y: 98.75}, {x: 1.8, y: 98.75}, {x: 1.8250000000000002, y: 98.75}, {x: 1.85, y: 99.375}, {x: 1.875, y: 99.375}, {x: 1.9000000000000001, y: 99.375}, {x: 1.925, y: 99.375}, {x: 1.9500000000000002, y: 99.375}, {x: 1.975, y: 99.375}, {x: 2.0, y: 99.375}, {x: 2.025, y: 99.375}, {x: 2.0500000000000003, y: 99.375}, {x: 2.075, y: 100.0}, {x: 2.1, y: 100.0}, {x: 2.125, y: 100.0}, {x: 2.15, y: 100.0}, {x: 2.1750000000000003, y: 100.0}, {x: 2.2, y: 100.0}, {x: 2.225, y: 100.0}, {x: 2.25, y: 100.0}, {x: 2.275, y: 100.0}, {x: 2.3000000000000003, y: 100.0}, {x: 2.325, y: 100.0}, {x: 2.35, y: 100.0}, {x: 2.375, y: 100.0}, {x: 2.4000000000000004, y: 100.0}, {x: 2.4250000000000003, y: 100.0}, {x: 2.45, y: 100.0}, {x: 2.475, y: 100.0}, {x: 2.5, y: 100.0}, {x: 2.5250000000000004, y: 100.0}, {x: 2.5500000000000003, y: 100.0}, {x: 2.575, y: 100.0}, {x: 2.6, y: 100.0}, {x: 2.625, y: 100.0}, {x: 2.6500000000000004, y: 100.0}, {x: 2.6750000000000003, y: 100.0}, {x: 2.7, y: 100.0}, {x: 2.725, y: 100.0}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'CSO – Treated', 'showLine': true, 'borderColor': 'rgba(255, 127, 14,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 2.941176470588235}, {x: 0.025, y: 32.94117647058823}, {x: 0.05, y: 40.588235294117645}, {x: 0.07500000000000001, y: 45.294117647058826}, {x: 0.1, y: 50.0}, {x: 0.125, y: 52.352941176470594}, {x: 0.15000000000000002, y: 54.11764705882353}, {x: 0.17500000000000002, y: 55.88235294117647}, {x: 0.2, y: 57.647058823529406}, {x: 0.225, y: 61.1764705882353}, {x: 0.25, y: 64.11764705882354}, {x: 0.275, y: 66.47058823529412}, {x: 0.30000000000000004, y: 67.64705882352942}, {x: 0.325, y: 69.41176470588235}, {x: 0.35000000000000003, y: 71.17647058823529}, {x: 0.375, y: 73.52941176470588}, {x: 0.4, y: 74.11764705882354}, {x: 0.42500000000000004, y: 75.88235294117646}, {x: 0.45, y: 78.82352941176471}, {x: 0.47500000000000003, y: 81.76470588235294}, {x: 0.5, y: 82.35294117647058}, {x: 0.525, y: 83.52941176470588}, {x: 0.55, y: 83.52941176470588}, {x: 0.5750000000000001, y: 84.11764705882354}, {x: 0.6000000000000001, y: 84.70588235294117}, {x: 0.625, y: 85.29411764705883}, {x: 0.65, y: 86.47058823529412}, {x: 0.675, y: 87.6470588235294}, {x: 0.7000000000000001, y: 87.6470588235294}, {x: 0.7250000000000001, y: 88.23529411764706}, {x: 0.75, y: 88.23529411764706}, {x: 0.775, y: 88.8235294117647}, {x: 0.8, y: 88.8235294117647}, {x: 0.8250000000000001, y: 89.41176470588236}, {x: 0.8500000000000001, y: 90.58823529411765}, {x: 0.875, y: 91.17647058823529}, {x: 0.9, y: 91.76470588235294}, {x: 0.925, y: 91.76470588235294}, {x: 0.9500000000000001, y: 91.76470588235294}, {x: 0.9750000000000001, y: 92.3529411764706}, {x: 1.0, y: 92.3529411764706}, {x: 1.0250000000000001, y: 92.3529411764706}, {x: 1.05, y: 92.3529411764706}, {x: 1.075, y: 92.94117647058823}, {x: 1.1, y: 92.94117647058823}, {x: 1.125, y: 92.94117647058823}, {x: 1.1500000000000001, y: 92.94117647058823}, {x: 1.175, y: 92.94117647058823}, {x: 1.2000000000000002, y: 93.52941176470588}, {x: 1.225, y: 93.52941176470588}, {x: 1.25, y: 94.70588235294117}, {x: 1.2750000000000001, y: 95.29411764705881}, {x: 1.3, y: 95.29411764705881}, {x: 1.3250000000000002, y: 95.29411764705881}, {x: 1.35, y: 95.29411764705881}, {x: 1.375, y: 95.88235294117648}, {x: 1.4000000000000001, y: 95.88235294117648}, {x: 1.425, y: 96.47058823529412}, {x: 1.4500000000000002, y: 96.47058823529412}, {x: 1.475, y: 97.05882352941177}, {x: 1.5, y: 97.05882352941177}, {x: 1.5250000000000001, y: 97.05882352941177}, {x: 1.55, y: 97.05882352941177}, {x: 1.5750000000000002, y: 97.05882352941177}, {x: 1.6, y: 97.05882352941177}, {x: 1.625, y: 97.05882352941177}, {x: 1.6500000000000001, y: 97.6470588235294}, {x: 1.675, y: 97.6470588235294}, {x: 1.7000000000000002, y: 97.6470588235294}, {x: 1.725, y: 97.6470588235294}, {x: 1.75, y: 97.6470588235294}, {x: 1.7750000000000001, y: 97.6470588235294}, {x: 1.8, y: 97.6470588235294}, {x: 1.8250000000000002, y: 97.6470588235294}, {x: 1.85, y: 98.23529411764706}, {x: 1.875, y: 98.23529411764706}, {x: 1.9000000000000001, y: 98.23529411764706}, {x: 1.925, y: 98.23529411764706}, {x: 1.9500000000000002, y: 98.23529411764706}, {x: 1.975, y: 98.23529411764706}, {x: 2.0, y: 98.23529411764706}, {x: 2.025, y: 98.23529411764706}, {x: 2.0500000000000003, y: 98.23529411764706}, {x: 2.075, y: 98.82352941176471}, {x: 2.1, y: 98.82352941176471}, {x: 2.125, y: 98.82352941176471}, {x: 2.15, y: 98.82352941176471}, {x: 2.1750000000000003, y: 98.82352941176471}, {x: 2.2, y: 98.82352941176471}, {x: 2.225, y: 98.82352941176471}, {x: 2.25, y: 98.82352941176471}, {x: 2.275, y: 98.82352941176471}, {x: 2.3000000000000003, y: 98.82352941176471}, {x: 2.325, y: 98.82352941176471}, {x: 2.35, y: 98.82352941176471}, {x: 2.375, y: 98.82352941176471}, {x: 2.4000000000000004, y: 98.82352941176471}, {x: 2.4250000000000003, y: 98.82352941176471}, {x: 2.45, y: 98.82352941176471}, {x: 2.475, y: 98.82352941176471}, {x: 2.5, y: 98.82352941176471}, {x: 2.5250000000000004, y: 99.41176470588235}, {x: 2.5500000000000003, y: 99.41176470588235}, {x: 2.575, y: 99.41176470588235}, {x: 2.6, y: 99.41176470588235}, {x: 2.625, y: 99.41176470588235}, {x: 2.6500000000000004, y: 99.41176470588235}, {x: 2.6750000000000003, y: 99.41176470588235}, {x: 2.7, y: 99.41176470588235}, {x: 2.725, y: 99.41176470588235}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'Partially Treated', 'showLine': true, 'borderColor': 'rgba(44, 160, 44,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false},{'data': [{x: 0.0, y: 0.0}, {x: 0.025, y: 9.090909090909092}, {x: 0.05, y: 18.181818181818183}, {x: 0.07500000000000001, y: 22.727272727272727}, {x: 0.1, y: 29.545454545454547}, {x: 0.125, y: 31.818181818181817}, {x: 0.15000000000000002, y: 31.818181818181817}, {x: 0.17500000000000002, y: 31.818181818181817}, {x: 0.2, y: 36.36363636363637}, {x: 0.225, y: 38.63636363636363}, {x: 0.25, y: 40.909090909090914}, {x: 0.275, y: 40.909090909090914}, {x: 0.30000000000000004, y: 43.18181818181818}, {x: 0.325, y: 43.18181818181818}, {x: 0.35000000000000003, y: 47.72727272727273}, {x: 0.375, y: 52.27272727272727}, {x: 0.4, y: 52.27272727272727}, {x: 0.42500000000000004, y: 56.81818181818182}, {x: 0.45, y: 59.09090909090909}, {x: 0.47500000000000003, y: 61.36363636363637}, {x: 0.5, y: 61.36363636363637}, {x: 0.525, y: 63.63636363636363}, {x: 0.55, y: 65.9090909090909}, {x: 0.5750000000000001, y: 70.45454545454545}, {x: 0.6000000000000001, y: 70.45454545454545}, {x: 0.625, y: 70.45454545454545}, {x: 0.65, y: 75.0}, {x: 0.675, y: 75.0}, {x: 0.7000000000000001, y: 75.0}, {x: 0.7250000000000001, y: 75.0}, {x: 0.75, y: 75.0}, {x: 0.775, y: 75.0}, {x: 0.8, y: 77.27272727272727}, {x: 0.8250000000000001, y: 79.54545454545455}, {x: 0.8500000000000001, y: 79.54545454545455}, {x: 0.875, y: 79.54545454545455}, {x: 0.9, y: 79.54545454545455}, {x: 0.925, y: 79.54545454545455}, {x: 0.9500000000000001, y: 79.54545454545455}, {x: 0.9750000000000001, y: 81.81818181818183}, {x: 1.0, y: 81.81818181818183}, {x: 1.0250000000000001, y: 81.81818181818183}, {x: 1.05, y: 81.81818181818183}, {x: 1.075, y: 81.81818181818183}, {x: 1.1, y: 81.81818181818183}, {x: 1.125, y: 81.81818181818183}, {x: 1.1500000000000001, y: 81.81818181818183}, {x: 1.175, y: 84.0909090909091}, {x: 1.2000000000000002, y: 84.0909090909091}, {x: 1.225, y: 84.0909090909091}, {x: 1.25, y: 84.0909090909091}, {x: 1.2750000000000001, y: 84.0909090909091}, {x: 1.3, y: 84.0909090909091}, {x: 1.3250000000000002, y: 84.0909090909091}, {x: 1.35, y: 84.0909090909091}, {x: 1.375, y: 88.63636363636364}, {x: 1.4000000000000001, y: 90.9090909090909}, {x: 1.425, y: 90.9090909090909}, {x: 1.4500000000000002, y: 93.18181818181817}, {x: 1.475, y: 93.18181818181817}, {x: 1.5, y: 93.18181818181817}, {x: 1.5250000000000001, y: 93.18181818181817}, {x: 1.55, y: 95.45454545454545}, {x: 1.5750000000000002, y: 95.45454545454545}, {x: 1.6, y: 95.45454545454545}, {x: 1.625, y: 95.45454545454545}, {x: 1.6500000000000001, y: 97.72727272727273}, {x: 1.675, y: 97.72727272727273}, {x: 1.7000000000000002, y: 97.72727272727273}, {x: 1.725, y: 97.72727272727273}, {x: 1.75, y: 97.72727272727273}, {x: 1.7750000000000001, y: 100.0}, {x: 1.8, y: 100.0}, {x: 1.8250000000000002, y: 100.0}, {x: 1.85, y: 100.0}, {x: 1.875, y: 100.0}, {x: 1.9000000000000001, y: 100.0}, {x: 1.925, y: 100.0}, {x: 1.9500000000000002, y: 100.0}, {x: 1.975, y: 100.0}, {x: 2.0, y: 100.0}, {x: 2.025, y: 100.0}, {x: 2.0500000000000003, y: 100.0}, {x: 2.075, y: 100.0}, {x: 2.1, y: 100.0}, {x: 2.125, y: 100.0}, {x: 2.15, y: 100.0}, {x: 2.1750000000000003, y: 100.0}, {x: 2.2, y: 100.0}, {x: 2.225, y: 100.0}, {x: 2.25, y: 100.0}, {x: 2.275, y: 100.0}, {x: 2.3000000000000003, y: 100.0}, {x: 2.325, y: 100.0}, {x: 2.35, y: 100.0}, {x: 2.375, y: 100.0}, {x: 2.4000000000000004, y: 100.0}, {x: 2.4250000000000003, y: 100.0}, {x: 2.45, y: 100.0}, {x: 2.475, y: 100.0}, {x: 2.5, y: 100.0}, {x: 2.5250000000000004, y: 100.0}, {x: 2.5500000000000003, y: 100.0}, {x: 2.575, y: 100.0}, {x: 2.6, y: 100.0}, {x: 2.625, y: 100.0}, {x: 2.6500000000000004, y: 100.0}, {x: 2.6750000000000003, y: 100.0}, {x: 2.7, y: 100.0}, {x: 2.725, y: 100.0}, {x: 2.75, y: 100.0}, {x: 2.7750000000000004, y: 100.0}, {x: 2.8000000000000003, y: 100.0}, {x: 2.825, y: 100.0}, {x: 2.85, y: 100.0}, {x: 2.875, y: 100.0}, {x: 2.9000000000000004, y: 100.0}, {x: 2.9250000000000003, y: 100.0}, {x: 2.95, y: 100.0}, {x: 2.975, y: 100.0}, {x: 3.0, y: 100.0}], 'label': 'SSO', 'showLine': true, 'borderColor': 'rgba(214, 39, 40,0.85)', 'backgroundColor': 'rgba(0,0,0,0)', 'borderWidth': 2, 'pointRadius': 0, 'fill': false}] }, type: 'scatter', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_freq.html b/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_freq.html index a836ebd..260b2ba 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_freq.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_freq.html @@ -14,7 +14,7 @@ data: { labels: ["None (<0.05 in)", "Light (0.05\u20130.25 in)", "Moderate (0.25\u20130.75 in)", "Heavy (0.75\u20131.5 in)", "Very heavy (>1.5 in)"], - datasets: [{'data': [30.128205128205128, 37.359550561797754, 35.69023569023569, 33.088235294117645, 27.77777777777778], 'label': 'CSO – Untreated', 'backgroundColor': 'rgba(31, 119, 180,0.75)', 'borderColor': 'rgba(31, 119, 180,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [0.4807692307692308, 0.2808988764044944, 0.33670033670033667, 0.7352941176470588, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(255, 127, 14,0.75)', 'borderColor': 'rgba(255, 127, 14,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [1.6025641025641024, 1.9662921348314606, 2.0202020202020203, 5.88235294117647, 5.555555555555555], 'label': 'Partially Treated', 'backgroundColor': 'rgba(44, 160, 44,0.75)', 'borderColor': 'rgba(44, 160, 44,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [1.282051282051282, 1.1235955056179776, 2.0202020202020203, 2.941176470588235, 5.555555555555555], 'label': 'SSO', 'backgroundColor': 'rgba(214, 39, 40,0.75)', 'borderColor': 'rgba(214, 39, 40,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [624, 356, 297, 136, 36], 'label': 'Days in bin', 'type': 'line', 'yAxisID': 'y1', 'backgroundColor': 'rgba(148, 103, 189,0.15)', 'borderColor': 'rgba(148, 103, 189,0.7)', 'pointBackgroundColor': 'rgba(148, 103, 189,0.9)', 'pointRadius': 4, 'fill': false}] + datasets: [{'data': [29.6998420221169, 36.33879781420765, 35.333333333333336, 32.608695652173914, 27.77777777777778], 'label': 'CSO – Untreated', 'backgroundColor': 'rgba(31, 119, 180,0.75)', 'borderColor': 'rgba(31, 119, 180,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [0.47393364928909953, 0.273224043715847, 0.33333333333333337, 0.7246376811594203, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(255, 127, 14,0.75)', 'borderColor': 'rgba(255, 127, 14,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [1.579778830963665, 1.912568306010929, 2.0, 5.797101449275362, 5.555555555555555], 'label': 'Partially Treated', 'backgroundColor': 'rgba(44, 160, 44,0.75)', 'borderColor': 'rgba(44, 160, 44,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [1.263823064770932, 1.092896174863388, 2.0, 2.898550724637681, 5.555555555555555], 'label': 'SSO', 'backgroundColor': 'rgba(214, 39, 40,0.75)', 'borderColor': 'rgba(214, 39, 40,1.0)', 'borderWidth': 1, 'yAxisID': 'y', 'stack': 'discharge'},{'data': [633, 366, 300, 138, 36], 'label': 'Days in bin', 'type': 'line', 'yAxisID': 'y1', 'backgroundColor': 'rgba(148, 103, 189,0.15)', 'borderColor': 'rgba(148, 103, 189,0.7)', 'pointBackgroundColor': 'rgba(148, 103, 189,0.9)', 'pointRadius': 4, 'fill': false}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_scatter.html b/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_scatter.html index 0eba7f5..d701c85 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_scatter.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_rainfall_discharge_scatter.html @@ -11,7 +11,7 @@ data: { labels: [], - datasets: [{'data': [{x: 0.04398744620598642, y: 2.386362}, {x: 0.16146213108924684, y: 0.021273}, {x: 0.012930662557778324, y: 0.292951}, {x: 0.19334818775994964, y: 0.1}, {x: 0.0022244904902832246, y: 0.04}, {x: 0.0, y: 14.988289}, {x: 0.010166666666663824, y: 5.809919}, {x: 0.14897212741751703, y: 0.1348}, {x: 0.002378141437752916, y: 14.006946}, {x: 0.05058153126826132, y: 12.332009}, {x: 0.4275777816634581, y: 0.029377}, {x: 0.05990872852233399, y: 64.235084}, {x: 0.021667367978116293, y: 0.551}, {x: 0.05948071900445252, y: 0.206914}, {x: 0.043937681159417416, y: 0.459}, {x: 0.177012769838854, y: 1.347}, {x: 0.18013581155686129, y: 0.567375}, {x: 0.11958786797501943, y: 37.910347}, {x: 0.17501242937852823, y: 0.021439}, {x: 0.3003201783723494, y: 0.83}, {x: 0.030151688708386828, y: 15.203807}, {x: 0.08265066756802143, y: 21.031316}, {x: 0.4053757354252066, y: 5.08615}, {x: 0.0037341772151870244, y: 3.983965}, {x: 0.009029126213589424, y: 89.991602}, {x: 0.3464190633205077, y: 13.669269}, {x: 0.0024671881790498352, y: 1.02853}, {x: 0.17081355932203113, y: 40.40906}, {x: 0.004428231218875864, y: 14.806652}, {x: 0.07978846462193644, y: 2.544}, {x: 0.4755151908540771, y: 0.57}, {x: 0.497006261030336, y: 45.501642}, {x: 1.037925925925923, y: 0.0}, {x: 0.0023188203877829135, y: 8.105}, {x: 0.1352962573591224, y: 0.21}, {x: 0.0005016722407997134, y: 7.370675}, {x: 0.3125106583072071, y: 13.222176}, {x: 0.04458591549295481, y: 13.821422}, {x: 0.009634618973899915, y: 19.88247}, {x: 0.07980808788130471, y: 14.428166}, {x: 0.45309253525971493, y: 3.231572}, {x: 0.04039738562091201, y: 6.06003}, {x: 0.0016939091002753713, y: 3.29512}, {x: 0.01852856841661107, y: 10.510136}, {x: 0.2340433205802617, y: 0.00016}, {x: 0.448749999999997, y: 6.904942}, {x: 0.0007039143156818135, y: 0.06162}, {x: 6.514657980167368e-05, y: 45.491973}, {x: 0.04928104575163102, y: 3.808293}, {x: 0.862169244509395, y: 2.21405}, {x: 0.3899601847427905, y: 2.17717}, {x: 0.2606462585033984, y: 13.596332}, {x: 0.027734396231539712, y: 5.484528}, {x: 0.5042960911371209, y: 17.675047}, {x: 0.7055882615288527, y: 6.67505}, {x: 0.013637118298549014, y: 24.786637}, {x: 0.020018895826484015, y: 41.664277}, {x: 0.5714212554031168, y: 0.001139}, {x: 0.00020338983050529138, y: 31.401484}, {x: 0.024374999999996892, y: 30.957375}, {x: 1.2257061688311657, y: 0.9154}, {x: 1.6362224731789916, y: 0.00173}, {x: 0.0, y: 2.795936}, {x: 0.03992395437262039, y: 0.73266}, {x: 0.44779124366861267, y: 1.976917}, {x: 0.06656267384342125, y: 0.833941}, {x: 0.7914620277071627, y: 1.455466}, {x: 0.3538597186447363, y: 0.370801}, {x: 0.006226382324112592, y: 27.038811}, {x: 0.07880732624457679, y: 14.99121}, {x: 0.2677423632705292, y: 0.56528}, {x: 0.1005571415126862, y: 22.982991}, {x: 0.09854013603380829, y: 1.03359}, {x: 1.1777329192546553, y: 21.446277}, {x: 0.19162623623810088, y: 8.733693}, {x: 1.0403218884120138, y: 0.000304}, {x: 1.3667586206896518, y: 68.579833}, {x: 0.406848226424419, y: 42.742257}, {x: 1.3900428767628012, y: 0.004}, {x: 0.004839513316292991, y: 0.051}, {x: 0.04199886569872629, y: 0.24484}, {x: 0.0008299283757118914, y: 0.03496}, {x: 0.0018263804651622278, y: 1.297309}, {x: 0.13415774581773768, y: 0.04134}, {x: 0.05171891906888669, y: 7.25509}, {x: 0.2435396919024921, y: 0.670365}, {x: 0.06092956694872748, y: 1.62298}, {x: 0.5062574098261798, y: 2.071931}, {x: 0.3190022010271428, y: 19.71011}, {x: 0.0012320886660476804, y: 0.221445}, {x: 0.20879614428797016, y: 50.08257}, {x: 0.10718367346938448, y: 48.827787}, {x: 1.4185483276643958, y: 0.768}, {x: 2.440360809178741, y: 0.023}, {x: 0.009094076655049091, y: 0.09641}, {x: 0.00010135135134819137, y: 0.00869}, {x: 0.05399730367374139, y: 1.734085}, {x: 0.2047433918579942, y: 1.632385}, {x: 0.2079412041613677, y: 0.009516}, {x: 0.022968502086145835, y: 5.540923}, {x: 0.29735157945502455, y: 0.664795}, {x: 0.017643366111844833, y: 0.08735}, {x: 0.0, y: 4.199654}, {x: 0.0025783972125403357, y: 4.136761}, {x: 0.0002439323664352387, y: 7.991253}, {x: 0.013672320587211038, y: 46.862818}, {x: 0.10873748006379258, y: 22.555311}, {x: 0.09991374269005518, y: 77.407371}, {x: 0.7837780406589522, y: 0.327422}, {x: 2.0588966661233226, y: 3.117997}, {x: 0.01117165795845219, y: 1.02383}, {x: 0.0, y: 76.370564}, {x: 0.1283225806451582, y: 15.337338}, {x: 0.01200855310049569, y: 0.460828}, {x: 3.1948881786028757e-05, y: 4.107151}, {x: 0.02653124999999689, y: 0.447444}, {x: 0.1863053904923567, y: 0.5519}, {x: 0.12614911837578757, y: 0.231244}, {x: 0.06704557091653539, y: 5.294564}, {x: 0.07186694172253419, y: 2.706549}, {x: 0.2664448638004563, y: 0.1}, {x: 0.34443030303029976, y: 0.448397}, {x: 0.16176195286194958, y: 0.8062}, {x: 0.22994903994903668, y: 13.132424}, {x: 0.2736503054778885, y: 0.024727}, {x: 0.5240919540229853, y: 4.223861}, {x: 0.47353568007662505, y: 12.376726}, {x: 0.863527686818823, y: 2.608493}, {x: 0.013314348995408891, y: 6.448695}, {x: 0.40361468161720826, y: 54.985995}, {x: 0.37101638349514243, y: 22.999942}, {x: 0.9584617248061983, y: 59.631272}, {x: 0.004290674603171392, y: 38.245635}, {x: 0.23709302325581078, y: 29.923282}, {x: 1.4594999496627372, y: 19.988466}, {x: 0.7535597484276698, y: 0.0056}, {x: 0.03469177489177169, y: 22.112844}, {x: 0.03744279529993489, y: 4.108909}, {x: 0.07624667258207309, y: 14.393118}, {x: 1.3538986383668274, y: 0.48107}, {x: 0.9177496306089089, y: 12.755603}, {x: 0.07410527996593239, y: 28.413219}, {x: 0.5772989392478269, y: 1.19653}, {x: 0.8042620676177415, y: 100.785405}, {x: 0.7951160626359444, y: 0.021538}, {x: 1.8386041299345517, y: 1.794867}, {x: 0.2062108931141549, y: 0.0}, {x: 0.1985696971008658, y: 89.318126}, {x: 0.0769010940178143, y: 0.072}, {x: 0.856395255890167, y: 0.009781}, {x: 0.0030894512653438914, y: 55.749592}, {x: 0.06911280412877539, y: 0.1441}, {x: 0.4160995903486904, y: 22.673727}, {x: 0.21288039148742138, y: 140.908629}, {x: 0.294385409336145, y: 0.02}, {x: 0.013451937383162381, y: 0.271819}, {x: 0.017611849700659682, y: 129.800005}, {x: 1.6291390754838995, y: 74.413025}, {x: 0.43470569013134, y: 6.493684}, {x: 0.2271787574763619, y: 17.27786}, {x: 0.4419805194805163, y: 89.667368}, {x: 0.9036271929824528, y: 1.190627}, {x: 0.021458763187034192, y: 1.35948}, {x: 0.2019805825242687, y: 0.235754}, {x: 0.010199964845887392, y: 19.665016}, {x: 0.6741912698718163, y: 0.27}, {x: 0.04193644772396269, y: 0.624938}, {x: 0.04900504089549709, y: 10.406746}, {x: 0.2916187004484845, y: 0.00673}, {x: 0.0011391406780306126, y: 1.158494}, {x: 0.04795774784190439, y: 2.987236}, {x: 0.4107686482030013, y: 55.978054}, {x: 0.63965517241379, y: 68.086431}, {x: 0.842413414276105, y: 0.04951}, {x: 1.4162005466839274, y: 4.902946}, {x: 0.5665817098822434, y: 0.285999}, {x: 0.21864110682512108, y: 100.362695}, {x: 0.0007277552451021914, y: 4.354436}, {x: 0.03894509676016209, y: 1.590639}, {x: 0.4301465233223481, y: 1.259388}, {x: 0.005076027559987291, y: 69.139044}, {x: 0.13522911654450528, y: 14.904492}, {x: 0.0021999999999967918, y: 0.108}, {x: 0.009110798122062492, y: 3.577282}, {x: 0.3863792124195349, y: 0.16886}, {x: 0.012867425510542436, y: 0.04904}, {x: 0.045663126828108136, y: 6.769284}, {x: 0.03688074404943684, y: 32.034277}, {x: 1.3780991507430969, y: 0.16583}, {x: 0.0015309058989510804, y: 0.02}, {x: 0.0004883222172434804, y: 1.321154}, {x: 0.03639095373248308, y: 10.03245}, {x: 0.9237381324360021, y: 0.007318}, {x: 0.00535123042505258, y: 0.181439}, {x: 0.1322420634920602, y: 0.082722}, {x: 0.007245370677636494, y: 17.278725}, {x: 0.00017780974735299277, y: 1.228166}, {x: 0.007270955873450693, y: 5.599912}, {x: 0.08200407912673069, y: 0.569479}, {x: 0.18439853184939298, y: 0.005424}, {x: 0.00036266381967788036, y: 25.419251}, {x: 0.07530258259655319, y: 69.364677}, {x: 0.00036764705882016936, y: 2.72}, {x: 0.0005519480519446693, y: 81.933924}, {x: 0.04397130289065427, y: 131.266567}, {x: 1.540725856386694, y: 8.1}, {x: 0.03753451031676497, y: 1.435439}, {x: 0.03225225225224887, y: 10.250246}, {x: 0.4662999999999966, y: 0.001301}, {x: 0.01099327427821177, y: 1.50235}, {x: 1.0699467696482587, y: 153.432602}, {x: 0.5715691948421124, y: 165.064711}, {x: 0.02928781028424299, y: 80.659813}, {x: 0.3416163003662971, y: 10.438263}, {x: 0.004975457111298795, y: 18.897537}, {x: 0.20095013644256698, y: 0.111817}, {x: 0.7702742027830991, y: 12.253912}, {x: 0.6479750657698606, y: 8.852955}, {x: 0.02921565037944029, y: 0.0}, {x: 0.02451737451737139, y: 2.05363}, {x: 0.0009558823529379914, y: 1.81508}, {x: 0.00010989010988699137, y: 19.00464}, {x: 0.013443223443220291, y: 6.512919}, {x: 0.4693672316384149, y: 0.55}, {x: 0.3606009030424905, y: 9.368536}, {x: 0.104782608695649, y: 0.05}, {x: 1.1193698187777104, y: 4.687424}, {x: 0.053590358875909995, y: 37.842971}, {x: 0.36287438625204266, y: 3.157449}, {x: 1.5864069441197073, y: 15.557648}, {x: 0.1561755053819868, y: 0.078}, {x: 0.06024544293824889, y: 39.074916}, {x: 0.05571663081625421, y: 2.073886}, {x: 1.3297104858022548, y: 0.328}, {x: 0.014796283441017792, y: 5.262768}, {x: 0.1942765544241072, y: 0.048014}, {x: 0.005345452578041492, y: 4.330398}, {x: 0.0883567006335638, y: 3.844331}, {x: 0.011983612077671091, y: 0.361349}, {x: 0.1872619590471816, y: 0.279198}, {x: 0.0017434210526283914, y: 0.755196}, {x: 0.05537888198757449, y: 0.953377}, {x: 0.4722573196544463, y: 7.258815}, {x: 0.05137342475012959, y: 1.57481}, {x: 0.3344376387993377, y: 0.063592}, {x: 0.056552262608807996, y: 0.243365}, {x: 0.3627221247807535, y: 0.054}, {x: 0.04798167475458919, y: 2.258552}, {x: 0.7769665638793125, y: 3.497437}, {x: 0.009035708667607325, y: 1.076285}, {x: 0.03080194518125229, y: 0.011493}, {x: 0.1845803713527819, y: 0.079057}, {x: 0.0022582078185785916, y: 34.150032}, {x: 0.04217541429631139, y: 0.000367}, {x: 0.00019088123840694453, y: 0.599335}, {x: 0.002817463516887891, y: 1.87477}, {x: 0.12773861370018808, y: 7.500272}, {x: 0.44757278706789233, y: 3.956328}, {x: 0.7383619664331937, y: 0.885436}, {x: 0.12355399362461525, y: 4.209}, {x: 0.010965290930710903, y: 11.537352}, {x: 0.0022066338169510025, y: 1.567161}, {x: 0.1828076227029228, y: 0.140609}, {x: 0.4938162385485869, y: 0.05}, {x: 0.17568365773266226, y: 0.7}, {x: 0.04375308145091996, y: 1.822583}, {x: 0.4338808903514755, y: 1.777898}, {x: 0.2858656840812356, y: 0.310627}, {x: 0.12055982711061565, y: 1.352369}, {x: 0.02876558292609629, y: 0.078324}, {x: 0.2163272200772169, y: 0.058985}, {x: 0.01112806840121029, y: 1.153856}, {x: 0.46915024277364875, y: 2.434355}, {x: 0.3283461538461506, y: 0.140918}, {x: 0.466241928540677, y: 0.541152}, {x: 0.5497809209492346, y: 0.127064}, {x: 0.8699140989729193, y: 0.136644}, {x: 0.7723585434173637, y: 0.676583}, {x: 0.5229908316549146, y: 0.145146}, {x: 0.046979744159454884, y: 16.469719}, {x: 0.3991397990388784, y: 0.27723}, {x: 0.13211555338858777, y: 2.641118}, {x: 0.0017270833333301915, y: 6.091944}, {x: 0.0002184829110696069, y: 0.098404}, {x: 0.03704598894854099, y: 0.22}, {x: 0.3142550354271125, y: 4.873268}, {x: 0.005730897009963591, y: 6.432674}, {x: 0.01078702131672949, y: 0.5828}, {x: 0.025770622114328793, y: 0.087195}, {x: 0.003785238914227017, y: 0.000417}, {x: 0.127115512259875, y: 0.016161}, {x: 0.0028546109172756335, y: 0.399984}, {x: 0.10509620406542813, y: 0.04}, {x: 1.1949181700540425, y: 0.331269}, {x: 0.2129642738174518, y: 8.333192}, {x: 0.03716431675762816, y: 1.762442}, {x: 0.09600323141933605, y: 1.368648}, {x: 0.0007451188454981354, y: 0.058895}, {x: 0.6741146089522845, y: 0.000427}, {x: 0.0011510735773003354, y: 0.699472}, {x: 0.06287773569023293, y: 0.022202}, {x: 0.00023489932885633548, y: 0.623608}, {x: 0.8495805006755796, y: 0.13583}, {x: 0.012756087981144136, y: 7.090504}, {x: 0.012670134201537836, y: 0.282527}, {x: 0.015910621674409636, y: 0.017117}, {x: 0.10700314865679361, y: 14.635388}, {x: 0.1688076144700199, y: 13.73283}, {x: 0.029195137071219124, y: 12.226141}, {x: 0.06228465244726202, y: 0.005483}, {x: 0.00020668356033925691, y: 2.418181}, {x: 0.13181617647058544, y: 0.019932}, {x: 0.027616438356161524, y: 0.158714}, {x: 0.012033713315544124, y: 9.241567}, {x: 0.23991554054053774, y: 6.523465}, {x: 0.0, y: 20.601979}, {x: 0.671402048655567, y: 0.000164}, {x: 0.0021245421245393243, y: 0.259201}, {x: 0.26685157874834275, y: 10.850603}, {x: 0.05440928270041912, y: 0.001449}, {x: 0.1853256704980814, y: 9.3e-05}, {x: 0.053179933665005424, y: 3.909926}, {x: 0.0, y: 0.364366}, {x: 0.08245528455284251, y: 3.785017}, {x: 0.11073643410852421, y: 0.004309}, {x: 0.5149517389074866, y: 0.035073}, {x: 0.6427251027314451, y: 0.0304}, {x: 0.4823971395734871, y: 0.008664}, {x: 0.0, y: 0.000341}, {x: 0.0021982758620660136, y: 0.085089}, {x: 0.026017371339452915, y: 3.288873}, {x: 0.06389601855430702, y: 0.243703}, {x: 0.6575481874447362, y: 20.218979}, {x: 0.8154699612403071, y: 0.003033}, {x: 0.8437385782615837, y: 8.390245}, {x: 0.018417986899659313, y: 0.2678}, {x: 0.007090845562540613, y: 7.345282}, {x: 0.015804022250745814, y: 24.768891}, {x: 0.3603407945150203, y: 0.0}, {x: 0.0007922333653860135, y: 2.070048}, {x: 0.1628441060381238, y: 17.897952}, {x: 0.2002332419778434, y: 16.403819}, {x: 0.04557614839582541, y: 0.282169}, {x: 3.71747211867045e-05, y: 1.035405}], 'label': 'CSO – Untreated', 'backgroundColor': 'rgba(31, 119, 180,0.45)', 'pointRadius': 3, 'yAxisID': 'y'},{'data': [{x: 0.04398744620598642, y: 0.51}, {x: 0.012930662557778324, y: 0.047198}, {x: 0.0, y: 0.165}, {x: 0.010166666666663824, y: 0.006283}, {x: 0.14897212741751703, y: 5.539}, {x: 0.002378141437752916, y: 3.523}, {x: 0.05990872852233399, y: 0.777977}, {x: 0.11958786797501943, y: 1.25}, {x: 0.08265066756802143, y: 1.612397}, {x: 0.4053757354252066, y: 2.636}, {x: 0.0037341772151870244, y: 1.07}, {x: 0.3464190633205077, y: 18.54409}, {x: 0.17081355932203113, y: 1.04}, {x: 0.004428231218875864, y: 0.19}, {x: 0.07978846462193644, y: 0.379}, {x: 0.497006261030336, y: 8.598}, {x: 0.0023188203877829135, y: 0.7}, {x: 0.0005016722407997134, y: 0.968}, {x: 0.3125106583072071, y: 4.322}, {x: 0.04458591549295481, y: 7.199}, {x: 0.009634618973899915, y: 3.592}, {x: 0.07980808788130471, y: 17.43}, {x: 0.45309253525971493, y: 0.18}, {x: 0.448749999999997, y: 0.89}, {x: 6.514657980167368e-05, y: 10.160915}, {x: 0.04928104575163102, y: 0.1}, {x: 0.2606462585033984, y: 4.86}, {x: 0.027734396231539712, y: 0.94}, {x: 0.5042960911371209, y: 13.054}, {x: 0.7055882615288527, y: 0.207}, {x: 0.013637118298549014, y: 1.337}, {x: 0.020018895826484015, y: 17.09}, {x: 0.00020338983050529138, y: 3.892}, {x: 0.024374999999996892, y: 16.11}, {x: 0.0, y: 0.222}, {x: 0.44779124366861267, y: 0.191}, {x: 0.06656267384342125, y: 0.0006}, {x: 0.006226382324112592, y: 3.154}, {x: 0.1005571415126862, y: 11.131}, {x: 0.09854013603380829, y: 0.924}, {x: 1.1777329192546553, y: 0.95}, {x: 0.19162623623810088, y: 7.735}, {x: 1.3667586206896518, y: 18.589}, {x: 0.406848226424419, y: 32.876}, {x: 0.2435396919024921, y: 0.31}, {x: 0.5062574098261798, y: 1.6}, {x: 0.3190022010271428, y: 1.417}, {x: 0.20879614428797016, y: 4.627}, {x: 0.10718367346938448, y: 93.37}, {x: 0.2079412041613677, y: 0.54}, {x: 0.022968502086145835, y: 4.617}, {x: 0.013672320587211038, y: 26.066}, {x: 0.09991374269005518, y: 25.453}, {x: 2.0588966661233226, y: 0.389}, {x: 0.01117165795845219, y: 0.013}, {x: 0.0, y: 32.385}, {x: 0.1283225806451582, y: 20.86}, {x: 3.1948881786028757e-05, y: 0.02}, {x: 0.07186694172253419, y: 0.17}, {x: 0.34443030303029976, y: 0.01}, {x: 0.22994903994903668, y: 1.1}, {x: 0.47353568007662505, y: 3.807}, {x: 0.40361468161720826, y: 0.012}, {x: 0.37101638349514243, y: 2.032}, {x: 0.9584617248061983, y: 7.29}, {x: 1.105131626462513, y: 3.112}, {x: 0.004290674603171392, y: 4.273}, {x: 0.23709302325581078, y: 10.205}, {x: 0.03744279529993489, y: 1.034}, {x: 0.07624667258207309, y: 30.176}, {x: 0.9177496306089089, y: 2.215}, {x: 0.07410527996593239, y: 5.481}, {x: 0.8042620676177415, y: 51.652}, {x: 1.8386041299345517, y: 6.344}, {x: 0.1985696971008658, y: 56.802}, {x: 0.0030894512653438914, y: 7.67}, {x: 0.4160995903486904, y: 1.116}, {x: 0.21288039148742138, y: 122.186}, {x: 0.017611849700659682, y: 67.975}, {x: 1.6291390754838995, y: 2.263}, {x: 0.43470569013134, y: 0.04}, {x: 0.2271787574763619, y: 5.646}, {x: 0.4419805194805163, y: 15.613}, {x: 0.9036271929824528, y: 0.61}, {x: 0.010199964845887392, y: 38.805}, {x: 0.6741912698718163, y: 0.16}, {x: 0.04900504089549709, y: 3.095}, {x: 0.0011391406780306126, y: 3.977}, {x: 0.04795774784190439, y: 1.496}, {x: 0.4107686482030013, y: 4.943}, {x: 0.63965517241379, y: 5.179}, {x: 1.4162005466839274, y: 0.83}, {x: 0.21864110682512108, y: 60.28}, {x: 0.4301465233223481, y: 1.186}, {x: 0.005076027559987291, y: 32.41887}, {x: 0.13522911654450528, y: 1.63}, {x: 0.009110798122062492, y: 3.07}, {x: 0.03688074404943684, y: 2.35}, {x: 0.1322420634920602, y: 5.83}, {x: 0.007245370677636494, y: 1.639}, {x: 0.007270955873450693, y: 3.501}, {x: 0.08200407912673069, y: 0.21}, {x: 0.00036266381967788036, y: 35.52}, {x: 0.07530258259655319, y: 56.27}, {x: 0.0005519480519446693, y: 5.224}, {x: 0.04397130289065427, y: 160.701}, {x: 0.03225225225224887, y: 2.343}, {x: 1.0699467696482587, y: 28.786}, {x: 0.5715691948421124, y: 108.015588}, {x: 0.02928781028424299, y: 63.1}, {x: 0.3416163003662971, y: 2.333}, {x: 0.004975457111298795, y: 2.787}, {x: 0.20095013644256698, y: 2.013}, {x: 0.7702742027830991, y: 6.299}, {x: 0.6479750657698606, y: 1.6458}, {x: 0.00010989010988699137, y: 2.29}, {x: 0.013443223443220291, y: 2.22}, {x: 0.4693672316384149, y: 0.479}, {x: 0.36287438625204266, y: 0.75}, {x: 0.1561755053819868, y: 0.4}, {x: 0.06024544293824889, y: 5.51}, {x: 0.4722573196544463, y: 1.318}, {x: 0.05137342475012959, y: 1.301}, {x: 0.04798167475458919, y: 1.306}, {x: 0.7769665638793125, y: 3.412}, {x: 0.0022582078185785916, y: 1.35}, {x: 0.44757278706789233, y: 1.339}, {x: 0.12355399362461525, y: 6.5}, {x: 0.010965290930710903, y: 0.134}, {x: 0.4338808903514755, y: 0.299}, {x: 0.46915024277364875, y: 0.568}, {x: 0.03704598894854099, y: 0.268}, {x: 0.3142550354271125, y: 1.571}, {x: 0.005730897009963591, y: 1.352}, {x: 0.01078702131672949, y: 4.293}, {x: 0.10509620406542813, y: 0.474}, {x: 1.1949181700540425, y: 0.413}, {x: 0.2129642738174518, y: 1.457}, {x: 0.0008724120000396354, y: 3.164}, {x: 0.00023489932885633548, y: 20.774}, {x: 0.8495805006755796, y: 7.847}, {x: 0.012756087981144136, y: 3.78}, {x: 0.012670134201537836, y: 0.137}, {x: 0.10700314865679361, y: 0.471}, {x: 0.1688076144700199, y: 0.013}, {x: 0.029195137071219124, y: 3.623}, {x: 0.00020668356033925691, y: 0.249}, {x: 0.027616438356161524, y: 0.044}, {x: 0.012033713315544124, y: 0.852}, {x: 0.23991554054053774, y: 1.067}, {x: 0.0, y: 1.864}, {x: 0.26685157874834275, y: 2.335}, {x: 0.053179933665005424, y: 0.231}, {x: 0.08245528455284251, y: 0.041}, {x: 0.6575481874447362, y: 10.696}, {x: 0.8154699612403071, y: 1.118}, {x: 0.8437385782615837, y: 0.815}, {x: 0.0747574913668233, y: 0.272}, {x: 0.015804022250745814, y: 6.61}, {x: 0.1628441060381238, y: 4.923}], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(255, 127, 14,0.45)', 'pointRadius': 3, 'yAxisID': 'y'},{'data': [{x: 0.010166666666663824, y: 1.0}, {x: 0.05058153126826132, y: 5.879}, {x: 0.05990872852233399, y: 8.01}, {x: 0.043937681159417416, y: 2.98}, {x: 0.11958786797501943, y: 11.5}, {x: 0.030151688708386828, y: 0.4}, {x: 0.0037341772151870244, y: 3.2}, {x: 0.009029126213589424, y: 73.07}, {x: 0.3464190633205077, y: 7.72}, {x: 0.0024671881790498352, y: 0.06}, {x: 0.17081355932203113, y: 5.79}, {x: 0.004428231218875864, y: 9.93}, {x: 0.497006261030336, y: 37.4014}, {x: 0.0023188203877829135, y: 1.8}, {x: 0.0005016722407997134, y: 7.74}, {x: 0.3125106583072071, y: 3.3}, {x: 0.04458591549295481, y: 2.5}, {x: 0.009634618973899915, y: 27.29}, {x: 0.07980808788130471, y: 11.97}, {x: 0.45309253525971493, y: 7.38}, {x: 0.0016939091002753713, y: 0.15}, {x: 0.448749999999997, y: 3.0}, {x: 6.514657980167368e-05, y: 1.27}, {x: 0.04928104575163102, y: 0.82}, {x: 0.862169244509395, y: 0.22}, {x: 0.2606462585033984, y: 5.15}, {x: 0.027734396231539712, y: 3.33}, {x: 0.5042960911371209, y: 22.37}, {x: 0.7055882615288527, y: 3.6}, {x: 0.013637118298549014, y: 19.44}, {x: 0.020018895826484015, y: 60.19}, {x: 0.00020338983050529138, y: 75.45}, {x: 0.024374999999996892, y: 35.91}, {x: 0.0, y: 0.86}, {x: 0.44779124366861267, y: 1.66}, {x: 0.06656267384342125, y: 0.49}, {x: 0.006226382324112592, y: 10.53}, {x: 0.1005571415126862, y: 16.48}, {x: 0.09854013603380829, y: 3.09}, {x: 1.1777329192546553, y: 22.1}, {x: 0.19162623623810088, y: 39.49}, {x: 1.3667586206896518, y: 47.782}, {x: 0.406848226424419, y: 159.68}, {x: 0.004839513316292991, y: 0.89}, {x: 0.05171891906888669, y: 0.4}, {x: 0.2435396919024921, y: 1.3}, {x: 0.5062574098261798, y: 2.81}, {x: 0.3190022010271428, y: 11.32}, {x: 0.20879614428797016, y: 168.87}, {x: 0.10718367346938448, y: 424.03}, {x: 0.2047433918579942, y: 1.05}, {x: 0.022968502086145835, y: 10.05}, {x: 0.29735157945502455, y: 0.25}, {x: 0.0, y: 0.667}, {x: 0.013672320587211038, y: 46.34}, {x: 0.09991374269005518, y: 101.8881}, {x: 2.0588966661233226, y: 15.7}, {x: 0.01117165795845219, y: 1.4}, {x: 0.0, y: 61.65}, {x: 0.1283225806451582, y: 36.013}, {x: 0.01200855310049569, y: 4.8}, {x: 3.1948881786028757e-05, y: 5.35}, {x: 0.06704557091653539, y: 6.98}, {x: 0.22994903994903668, y: 3.73}, {x: 0.2736503054778885, y: 0.45}, {x: 0.47353568007662505, y: 2.26}, {x: 0.013314348995408891, y: 8.28}, {x: 0.14959447159145028, y: 2.87}, {x: 0.40361468161720826, y: 9.89}, {x: 0.37101638349514243, y: 18.78}, {x: 0.9584617248061983, y: 26.13}, {x: 0.004290674603171392, y: 36.7}, {x: 0.23709302325581078, y: 0.13}, {x: 1.4594999496627372, y: 6.65}, {x: 0.07624667258207309, y: 16.085}, {x: 0.07410527996593239, y: 14.34}, {x: 0.5772989392478269, y: 0.81}, {x: 0.8042620676177415, y: 48.98}, {x: 1.8386041299345517, y: 0.06}, {x: 0.1985696971008658, y: 58.91}, {x: 0.0030894512653438914, y: 10.24}, {x: 0.21288039148742138, y: 18.781}, {x: 0.017611849700659682, y: 81.05}, {x: 1.6291390754838995, y: 14.69}, {x: 0.43470569013134, y: 0.16}, {x: 0.2271787574763619, y: 13.86}, {x: 0.4419805194805163, y: 97.728}, {x: 0.021458763187034192, y: 1.4}, {x: 0.010199964845887392, y: 67.63}, {x: 0.6741912698718163, y: 6.8}, {x: 0.6011719317356541, y: 37.08}, {x: 0.04900504089549709, y: 10.07}, {x: 0.0011391406780306126, y: 5.06}, {x: 0.4107686482030013, y: 6.54}, {x: 0.63965517241379, y: 15.31}, {x: 1.4162005466839274, y: 7.32}, {x: 0.21864110682512108, y: 114.1}, {x: 0.4301465233223481, y: 1.55}, {x: 0.8487853595994921, y: 27.98}, {x: 0.2025848468170946, y: 0.072}, {x: 0.005076027559987291, y: 14.93}, {x: 0.13522911654450528, y: 5.5}, {x: 0.03688074404943684, y: 10.64}, {x: 0.00535123042505258, y: 0.61}, {x: 0.007245370677636494, y: 36.63}, {x: 0.007270955873450693, y: 6.2}, {x: 0.08200407912673069, y: 8.87}, {x: 0.00036266381967788036, y: 10.21}, {x: 0.07530258259655319, y: 185.44}, {x: 0.0005519480519446693, y: 140.5}, {x: 0.04397130289065427, y: 318.905}, {x: 2.740869001547984, y: 11.254}, {x: 1.2440761986301334, y: 15.34}, {x: 0.03225225225224887, y: 12.54}, {x: 0.4662999999999966, y: 4.56}, {x: 1.0699467696482587, y: 497.34}, {x: 0.5715691948421124, y: 8.236964}, {x: 2.5219945455659705, y: 165.15}, {x: 0.02928781028424299, y: 276.452483}, {x: 0.8945985440877835, y: 25.21}, {x: 0.3416163003662971, y: 23.01}, {x: 0.004975457111298795, y: 26.58}, {x: 0.7702742027830991, y: 48.43}, {x: 0.6479750657698606, y: 30.02}, {x: 0.3541714877679464, y: 12.32333}, {x: 3.703703703392842e-05, y: 176.53}, {x: 0.0009558823529379914, y: 0.428482}, {x: 0.013443223443220291, y: 16.95}, {x: 0.4693672316384149, y: 3.7}, {x: 1.2271076389976068, y: 0.025053}, {x: 0.3739465799621084, y: 9.0}, {x: 0.08624999999999679, y: 100.0004}, {x: 0.2746508643841853, y: 0.19}, {x: 0.010965290930710903, y: 2.21}, {x: 0.2858656840812356, y: 6.84}, {x: 0.3407139176364464, y: 0.021042}, {x: 0.46915024277364875, y: 4.2}, {x: 0.3991397990388784, y: 0.2}, {x: 3.0030030026921405e-05, y: 0.0003}, {x: 0.03704598894854099, y: 1.898429}, {x: 0.3142550354271125, y: 8.761175}, {x: 0.005730897009963591, y: 4.768568}, {x: 0.01078702131672949, y: 4.4}, {x: 0.0028546109172756335, y: 6.5}, {x: 0.2129642738174518, y: 4.9}, {x: 0.03716431675762816, y: 0.0}, {x: 0.10700314865679361, y: 4.29}, {x: 0.1688076144700199, y: 8.44}, {x: 0.029195137071219124, y: 13.69}, {x: 0.00020668356033925691, y: 2.369}, {x: 0.012033713315544124, y: 4.011}, {x: 0.23991554054053774, y: 8.77}, {x: 0.0, y: 18.12}, {x: 0.26685157874834275, y: 17.11}, {x: 0.053179933665005424, y: 2.218}, {x: 0.0, y: 0.177}, {x: 0.08245528455284251, y: 0.538}, {x: 0.6575481874447362, y: 69.45}, {x: 0.8437385782615837, y: 5.139}, {x: 0.0747574913668233, y: 0.98332}, {x: 0.018417986899659313, y: 3.0293}, {x: 0.0027392977392947135, y: 391.22}, {x: 0.007090845562540613, y: 8.88}, {x: 0.1986045020761972, y: 2.7048}, {x: 0.015804022250745814, y: 54.52498}, {x: 0.3603407945150203, y: 4.8415}, {x: 1.2717136015325643, y: 2.716}, {x: 0.1628441060381238, y: 19.187}, {x: 3.71747211867045e-05, y: 0.023}, {x: 0.022605301379808186, y: 0.305}], 'label': 'Partially Treated', 'backgroundColor': 'rgba(44, 160, 44,0.45)', 'pointRadius': 3, 'yAxisID': 'y'},{'data': [{x: 0.5714212554031168, y: 0.028}, {x: 1.1642063579498825, y: 0.409}, {x: 1.3667586206896518, y: 0.048}, {x: 0.406848226424419, y: 2.786598}, {x: 1.3900428767628012, y: 0.258}, {x: 1.3599532710280342, y: 0.258}, {x: 0.058823231858729494, y: 0.0002}, {x: 0.02988642743014759, y: 0.001875}, {x: 0.004839513316292991, y: 0.336}, {x: 0.5014874448916969, y: 5e-05}, {x: 0.10718367346938448, y: 0.387165}, {x: 0.33999550075392443, y: 0.067}, {x: 0.7837780406589522, y: 0.03}, {x: 0.3367617310562065, y: 2.5e-05}, {x: 1.7575225806451582, y: 0.0039}, {x: 0.1863053904923567, y: 0.00375}, {x: 0.40361468161720826, y: 0.0031}, {x: 0.37101638349514243, y: 0.00016}, {x: 0.9584617248061983, y: 0.0524}, {x: 0.23709302325581078, y: 0.0016}, {x: 0.07624667258207309, y: 0.15606}, {x: 0.07410527996593239, y: 0.00086}, {x: 0.8042620676177415, y: 0.09001}, {x: 0.1985696971008658, y: 1.45868}, {x: 0.0769010940178143, y: 0.016}, {x: 0.21288039148742138, y: 0.028715}, {x: 0.017611849700659682, y: 0.102521}, {x: 1.6291390754838995, y: 0.001717}, {x: 0.4419805194805163, y: 0.008188}, {x: 0.63965517241379, y: 0.001158}, {x: 0.2967167220376492, y: 0.05769}, {x: 0.005076027559987291, y: 0.75}, {x: 0.6253151071749422, y: 0.0015}, {x: 0.4638893728222964, y: 5e-05}, {x: 0.07530258259655319, y: 0.003}, {x: 0.04397130289065427, y: 14.548}, {x: 1.540725856386694, y: 0.305}, {x: 0.5715691948421124, y: 38.004923}, {x: 0.02928781028424299, y: 1.5546}, {x: 0.5391113175748641, y: 0.03675}, {x: 0.02876558292609629, y: 0.006}, {x: 1.4406608300907884, y: 0.005}, {x: 0.009121951219509213, y: 0.00055}, {x: 0.3603407945150203, y: 91.624}], 'label': 'SSO', 'backgroundColor': 'rgba(214, 39, 40,0.45)', 'pointRadius': 3, 'yAxisID': 'y'}] + datasets: [{'data': [{x: 0.04398744620598642, y: 2.386362}, {x: 0.16146213108924684, y: 0.021273}, {x: 0.012930662557778324, y: 0.292951}, {x: 0.19334818775994964, y: 0.1}, {x: 0.0022244904902832246, y: 0.04}, {x: 0.0, y: 14.988289}, {x: 0.010166666666663824, y: 5.809919}, {x: 0.14897212741751703, y: 0.1348}, {x: 0.002378141437752916, y: 14.006946}, {x: 0.05058153126826132, y: 12.332009}, {x: 0.4275777816634581, y: 0.029377}, {x: 0.05990872852233399, y: 64.235084}, {x: 0.021667367978116293, y: 0.551}, {x: 0.05948071900445252, y: 0.206914}, {x: 0.043937681159417416, y: 0.459}, {x: 0.177012769838854, y: 1.347}, {x: 0.18013581155686129, y: 0.567375}, {x: 0.11958786797501943, y: 37.910347}, {x: 0.17501242937852823, y: 0.021439}, {x: 0.3003201783723494, y: 0.83}, {x: 0.030151688708386828, y: 15.203807}, {x: 0.08265066756802143, y: 21.031316}, {x: 0.4053757354252066, y: 5.08615}, {x: 0.0037341772151870244, y: 3.983965}, {x: 0.009029126213589424, y: 89.991602}, {x: 0.3464190633205077, y: 13.669269}, {x: 0.0024671881790498352, y: 1.02853}, {x: 0.17081355932203113, y: 40.40906}, {x: 0.004428231218875864, y: 14.806652}, {x: 0.07978846462193644, y: 2.544}, {x: 0.4755151908540771, y: 0.57}, {x: 0.497006261030336, y: 45.501642}, {x: 1.037925925925923, y: 0.0}, {x: 0.0023188203877829135, y: 8.105}, {x: 0.1352962573591224, y: 0.21}, {x: 0.0005016722407997134, y: 7.370675}, {x: 0.3125106583072071, y: 13.222176}, {x: 0.04458591549295481, y: 13.821422}, {x: 0.009634618973899915, y: 19.88247}, {x: 0.07980808788130471, y: 14.428166}, {x: 0.45309253525971493, y: 3.231572}, {x: 0.04039738562091201, y: 6.06003}, {x: 0.0016939091002753713, y: 3.29512}, {x: 0.01852856841661107, y: 10.510136}, {x: 0.2340433205802617, y: 0.00016}, {x: 0.448749999999997, y: 6.904942}, {x: 0.0007039143156818135, y: 0.06162}, {x: 6.514657980167368e-05, y: 45.491973}, {x: 0.04928104575163102, y: 3.808293}, {x: 0.862169244509395, y: 2.21405}, {x: 0.3899601847427905, y: 2.17717}, {x: 0.2606462585033984, y: 13.596332}, {x: 0.027734396231539712, y: 5.484528}, {x: 0.5042960911371209, y: 17.675047}, {x: 0.7055882615288527, y: 6.67505}, {x: 0.013637118298549014, y: 24.786637}, {x: 0.020018895826484015, y: 41.664277}, {x: 0.5714212554031168, y: 0.001139}, {x: 0.00020338983050529138, y: 31.401484}, {x: 0.024374999999996892, y: 30.957375}, {x: 1.2257061688311657, y: 0.9154}, {x: 1.6362224731789916, y: 0.00173}, {x: 0.0, y: 2.795936}, {x: 0.03992395437262039, y: 0.73266}, {x: 0.44779124366861267, y: 1.976917}, {x: 0.06656267384342125, y: 0.833941}, {x: 0.7914620277071627, y: 1.455466}, {x: 0.3538597186447363, y: 0.370801}, {x: 0.006226382324112592, y: 27.038811}, {x: 0.07880732624457679, y: 14.99121}, {x: 0.2677423632705292, y: 0.56528}, {x: 0.1005571415126862, y: 22.982991}, {x: 0.09854013603380829, y: 1.03359}, {x: 1.1777329192546553, y: 21.446277}, {x: 0.19162623623810088, y: 8.733693}, {x: 1.0403218884120138, y: 0.000304}, {x: 1.3667586206896518, y: 68.579833}, {x: 0.406848226424419, y: 42.742257}, {x: 1.3900428767628012, y: 0.004}, {x: 0.004839513316292991, y: 0.051}, {x: 0.04199886569872629, y: 0.24484}, {x: 0.0008299283757118914, y: 0.03496}, {x: 0.0018263804651622278, y: 1.297309}, {x: 0.13415774581773768, y: 0.04134}, {x: 0.05171891906888669, y: 7.25509}, {x: 0.2435396919024921, y: 0.670365}, {x: 0.06092956694872748, y: 1.62298}, {x: 0.5062574098261798, y: 2.071931}, {x: 0.3190022010271428, y: 19.71011}, {x: 0.0012320886660476804, y: 0.221445}, {x: 0.20879614428797016, y: 50.08257}, {x: 0.10718367346938448, y: 48.827787}, {x: 1.4185483276643958, y: 0.768}, {x: 2.440360809178741, y: 0.023}, {x: 0.009094076655049091, y: 0.09641}, {x: 0.00010135135134819137, y: 0.00869}, {x: 0.05399730367374139, y: 1.734085}, {x: 0.2047433918579942, y: 1.632385}, {x: 0.2079412041613677, y: 0.009516}, {x: 0.022968502086145835, y: 5.540923}, {x: 0.29735157945502455, y: 0.664795}, {x: 0.017643366111844833, y: 0.08735}, {x: 0.0, y: 4.199654}, {x: 0.0025783972125403357, y: 4.136761}, {x: 0.0002439323664352387, y: 7.991253}, {x: 0.013672320587211038, y: 46.862818}, {x: 0.10873748006379258, y: 22.555311}, {x: 0.09991374269005518, y: 77.407371}, {x: 0.7837780406589522, y: 0.327422}, {x: 2.0588966661233226, y: 3.117997}, {x: 0.01117165795845219, y: 1.02383}, {x: 0.0, y: 76.370564}, {x: 0.1283225806451582, y: 15.337338}, {x: 0.01200855310049569, y: 0.460828}, {x: 3.1948881786028757e-05, y: 4.107151}, {x: 0.02653124999999689, y: 0.447444}, {x: 0.1863053904923567, y: 0.5519}, {x: 0.12614911837578757, y: 0.231244}, {x: 0.06704557091653539, y: 5.294564}, {x: 0.07186694172253419, y: 2.706549}, {x: 0.2664448638004563, y: 0.1}, {x: 0.34443030303029976, y: 0.448397}, {x: 0.16176195286194958, y: 0.8062}, {x: 0.22994903994903668, y: 13.132424}, {x: 0.2736503054778885, y: 0.024727}, {x: 0.5240919540229853, y: 4.223861}, {x: 0.47353568007662505, y: 12.376726}, {x: 0.863527686818823, y: 2.608493}, {x: 0.013314348995408891, y: 6.448695}, {x: 0.40361468161720826, y: 54.985995}, {x: 0.37101638349514243, y: 22.999942}, {x: 0.9584617248061983, y: 59.631272}, {x: 0.004290674603171392, y: 38.245635}, {x: 0.23709302325581078, y: 29.923282}, {x: 1.4594999496627372, y: 19.988466}, {x: 0.7535597484276698, y: 0.0056}, {x: 0.03469177489177169, y: 22.112844}, {x: 0.03744279529993489, y: 4.108909}, {x: 0.07624667258207309, y: 14.393118}, {x: 1.3538986383668274, y: 0.48107}, {x: 0.9177496306089089, y: 12.755603}, {x: 0.07410527996593239, y: 28.413219}, {x: 0.5772989392478269, y: 1.19653}, {x: 0.8042620676177415, y: 100.785405}, {x: 0.7951160626359444, y: 0.021538}, {x: 1.8386041299345517, y: 1.794867}, {x: 0.2062108931141549, y: 0.0}, {x: 0.1985696971008658, y: 89.318126}, {x: 0.0769010940178143, y: 0.072}, {x: 0.856395255890167, y: 0.009781}, {x: 0.0030894512653438914, y: 55.749592}, {x: 0.06911280412877539, y: 0.1441}, {x: 0.4160995903486904, y: 22.673727}, {x: 0.21288039148742138, y: 140.908629}, {x: 0.294385409336145, y: 0.02}, {x: 0.013451937383162381, y: 0.271819}, {x: 0.017611849700659682, y: 129.800005}, {x: 1.6291390754838995, y: 74.413025}, {x: 0.43470569013134, y: 6.493684}, {x: 0.2271787574763619, y: 17.27786}, {x: 0.4419805194805163, y: 89.667368}, {x: 0.9036271929824528, y: 1.190627}, {x: 0.021458763187034192, y: 1.35948}, {x: 0.2019805825242687, y: 0.235754}, {x: 0.010199964845887392, y: 19.665016}, {x: 0.6741912698718163, y: 0.27}, {x: 0.04193644772396269, y: 0.624938}, {x: 0.04900504089549709, y: 10.406746}, {x: 0.2916187004484845, y: 0.00673}, {x: 0.0011391406780306126, y: 1.158494}, {x: 0.04795774784190439, y: 2.987236}, {x: 0.4107686482030013, y: 55.978054}, {x: 0.63965517241379, y: 68.086431}, {x: 0.842413414276105, y: 0.04951}, {x: 1.4162005466839274, y: 4.902946}, {x: 0.5665817098822434, y: 0.285999}, {x: 0.21864110682512108, y: 100.362695}, {x: 0.0007277552451021914, y: 4.354436}, {x: 0.03894509676016209, y: 1.590639}, {x: 0.4301465233223481, y: 1.259388}, {x: 0.005076027559987291, y: 69.139044}, {x: 0.13522911654450528, y: 14.904492}, {x: 0.0021999999999967918, y: 0.108}, {x: 0.009110798122062492, y: 3.577282}, {x: 0.3863792124195349, y: 0.16886}, {x: 0.012867425510542436, y: 0.04904}, {x: 0.045663126828108136, y: 6.769284}, {x: 0.03688074404943684, y: 32.034277}, {x: 1.3780991507430969, y: 0.16583}, {x: 0.0015309058989510804, y: 0.02}, {x: 0.0004883222172434804, y: 1.321154}, {x: 0.03639095373248308, y: 10.03245}, {x: 0.9237381324360021, y: 0.007318}, {x: 0.00535123042505258, y: 0.181439}, {x: 0.1322420634920602, y: 0.082722}, {x: 0.007245370677636494, y: 17.278725}, {x: 0.00017780974735299277, y: 1.228166}, {x: 0.007270955873450693, y: 5.599912}, {x: 0.08200407912673069, y: 0.569479}, {x: 0.18439853184939298, y: 0.005424}, {x: 0.00036266381967788036, y: 25.419251}, {x: 0.07530258259655319, y: 69.364677}, {x: 0.00036764705882016936, y: 2.72}, {x: 0.0005519480519446693, y: 81.933924}, {x: 0.04397130289065427, y: 131.266567}, {x: 1.540725856386694, y: 8.1}, {x: 0.03753451031676497, y: 1.435439}, {x: 0.03225225225224887, y: 10.250246}, {x: 0.4662999999999966, y: 0.001301}, {x: 0.01099327427821177, y: 1.50235}, {x: 1.0699467696482587, y: 153.432602}, {x: 0.5715691948421124, y: 165.064711}, {x: 0.02928781028424299, y: 80.659813}, {x: 0.3416163003662971, y: 10.438263}, {x: 0.004975457111298795, y: 18.897537}, {x: 0.20095013644256698, y: 0.111817}, {x: 0.7702742027830991, y: 12.253912}, {x: 0.6479750657698606, y: 8.852955}, {x: 0.02921565037944029, y: 0.0}, {x: 0.02451737451737139, y: 2.05363}, {x: 0.0009558823529379914, y: 1.81508}, {x: 0.00010989010988699137, y: 19.00464}, {x: 0.013443223443220291, y: 6.512919}, {x: 0.4693672316384149, y: 0.55}, {x: 0.3606009030424905, y: 9.368536}, {x: 0.104782608695649, y: 0.05}, {x: 1.1193698187777104, y: 4.687424}, {x: 0.053590358875909995, y: 37.842971}, {x: 0.36287438625204266, y: 3.157449}, {x: 1.5864069441197073, y: 15.557648}, {x: 0.1561755053819868, y: 0.078}, {x: 0.06024544293824889, y: 39.074916}, {x: 0.05571663081625421, y: 2.073886}, {x: 1.3297104858022548, y: 0.328}, {x: 0.014796283441017792, y: 5.262768}, {x: 0.1942765544241072, y: 0.048014}, {x: 0.005345452578041492, y: 4.330398}, {x: 0.0883567006335638, y: 3.844331}, {x: 0.011983612077671091, y: 0.361349}, {x: 0.1872619590471816, y: 0.279198}, {x: 0.0017434210526283914, y: 0.755196}, {x: 0.05537888198757449, y: 0.953377}, {x: 0.4722573196544463, y: 7.258815}, {x: 0.05137342475012959, y: 1.57481}, {x: 0.3344376387993377, y: 0.063592}, {x: 0.056552262608807996, y: 0.243365}, {x: 0.3627221247807535, y: 0.054}, {x: 0.04798167475458919, y: 2.258552}, {x: 0.7769665638793125, y: 3.497437}, {x: 0.009035708667607325, y: 1.076285}, {x: 0.03080194518125229, y: 0.011493}, {x: 0.1845803713527819, y: 0.079057}, {x: 0.0022582078185785916, y: 34.150032}, {x: 0.04217541429631139, y: 0.000367}, {x: 0.00019088123840694453, y: 0.599335}, {x: 0.002817463516887891, y: 1.87477}, {x: 0.12773861370018808, y: 7.500272}, {x: 0.44757278706789233, y: 3.956328}, {x: 0.7383619664331937, y: 0.885436}, {x: 0.12355399362461525, y: 4.209}, {x: 0.010965290930710903, y: 11.537352}, {x: 0.0022066338169510025, y: 1.567161}, {x: 0.1828076227029228, y: 0.140609}, {x: 0.4938162385485869, y: 0.05}, {x: 0.17568365773266226, y: 0.7}, {x: 0.04375308145091996, y: 1.822583}, {x: 0.4338808903514755, y: 1.777898}, {x: 0.2858656840812356, y: 0.310627}, {x: 0.12055982711061565, y: 1.352369}, {x: 0.02876558292609629, y: 0.078324}, {x: 0.2163272200772169, y: 0.058985}, {x: 0.01112806840121029, y: 1.153856}, {x: 0.46915024277364875, y: 2.434355}, {x: 0.3283461538461506, y: 0.140918}, {x: 0.466241928540677, y: 0.541152}, {x: 0.5497809209492346, y: 0.127064}, {x: 0.8699140989729193, y: 0.136644}, {x: 0.7723585434173637, y: 0.676583}, {x: 0.5229908316549146, y: 0.145146}, {x: 0.046979744159454884, y: 16.469719}, {x: 0.3991397990388784, y: 0.27723}, {x: 0.13211555338858777, y: 2.641118}, {x: 0.0017270833333301915, y: 6.091944}, {x: 0.0002184829110696069, y: 0.098404}, {x: 0.03704598894854099, y: 0.22}, {x: 0.3142550354271125, y: 4.873268}, {x: 0.005730897009963591, y: 6.432674}, {x: 0.01078702131672949, y: 0.5828}, {x: 0.025770622114328793, y: 0.087195}, {x: 0.003785238914227017, y: 0.000417}, {x: 0.127115512259875, y: 0.016161}, {x: 0.0028546109172756335, y: 0.399984}, {x: 0.10509620406542813, y: 0.04}, {x: 1.1949181700540425, y: 0.331269}, {x: 0.2129642738174518, y: 8.333192}, {x: 0.03716431675762816, y: 1.762442}, {x: 0.09600323141933605, y: 1.368648}, {x: 0.0007451188454981354, y: 0.058895}, {x: 0.6741146089522845, y: 0.000427}, {x: 0.0011510735773003354, y: 0.699472}, {x: 0.06287773569023293, y: 0.022202}, {x: 0.00023489932885633548, y: 0.623608}, {x: 0.8495805006755796, y: 0.13583}, {x: 0.012756087981144136, y: 7.090504}, {x: 0.012670134201537836, y: 0.282527}, {x: 0.015910621674409636, y: 0.017117}, {x: 0.10700314865679361, y: 14.635388}, {x: 0.1688076144700199, y: 13.73283}, {x: 0.029195137071219124, y: 12.226141}, {x: 0.06228465244726202, y: 0.005483}, {x: 0.00020668356033925691, y: 2.418181}, {x: 0.13181617647058544, y: 0.019932}, {x: 0.027616438356161524, y: 0.158714}, {x: 0.012033713315544124, y: 9.241567}, {x: 0.23991554054053774, y: 6.523465}, {x: 0.0, y: 20.601979}, {x: 0.671402048655567, y: 0.000164}, {x: 0.0021245421245393243, y: 0.259201}, {x: 0.26685157874834275, y: 10.850603}, {x: 0.05440928270041912, y: 0.001449}, {x: 0.1853256704980814, y: 9.3e-05}, {x: 0.053179933665005424, y: 3.909926}, {x: 0.0, y: 0.364366}, {x: 0.08245528455284251, y: 3.785017}, {x: 0.11073643410852421, y: 0.004309}, {x: 0.5149517389074866, y: 0.035073}, {x: 0.6427251027314449, y: 0.0304}, {x: 0.4823971395734871, y: 0.008664}, {x: 0.0, y: 0.000341}, {x: 0.0025213675213646134, y: 0.085089}, {x: 0.026340462998751514, y: 3.288873}, {x: 0.06389601855430702, y: 0.243703}, {x: 0.6575481874447362, y: 20.218979}, {x: 0.8154699612403071, y: 0.003033}, {x: 0.8437385782615836, y: 8.390245}, {x: 0.018417986899659313, y: 0.2678}, {x: 0.007090845562540613, y: 7.345282}, {x: 0.015804022250745814, y: 24.768891}, {x: 0.3603407945150202, y: 0.0}, {x: 0.0007922333653860135, y: 2.070048}, {x: 0.1628441060381238, y: 17.897952}, {x: 0.2002332419778434, y: 16.403819}, {x: 0.04557614839582541, y: 0.282169}, {x: 3.71747211867045e-05, y: 1.035405}], 'label': 'CSO – Untreated', 'backgroundColor': 'rgba(31, 119, 180,0.45)', 'pointRadius': 3, 'yAxisID': 'y'},{'data': [{x: 0.04398744620598642, y: 0.51}, {x: 0.012930662557778324, y: 0.047198}, {x: 0.0, y: 0.165}, {x: 0.010166666666663824, y: 0.006283}, {x: 0.14897212741751703, y: 5.539}, {x: 0.002378141437752916, y: 3.523}, {x: 0.05990872852233399, y: 0.777977}, {x: 0.11958786797501943, y: 1.25}, {x: 0.08265066756802143, y: 1.612397}, {x: 0.4053757354252066, y: 2.636}, {x: 0.0037341772151870244, y: 1.07}, {x: 0.3464190633205077, y: 18.54409}, {x: 0.17081355932203113, y: 1.04}, {x: 0.004428231218875864, y: 0.19}, {x: 0.07978846462193644, y: 0.379}, {x: 0.497006261030336, y: 8.598}, {x: 0.0023188203877829135, y: 0.7}, {x: 0.0005016722407997134, y: 0.968}, {x: 0.3125106583072071, y: 4.322}, {x: 0.04458591549295481, y: 7.199}, {x: 0.009634618973899915, y: 3.592}, {x: 0.07980808788130471, y: 17.43}, {x: 0.45309253525971493, y: 0.18}, {x: 0.448749999999997, y: 0.89}, {x: 6.514657980167368e-05, y: 10.160915}, {x: 0.04928104575163102, y: 0.1}, {x: 0.2606462585033984, y: 4.86}, {x: 0.027734396231539712, y: 0.94}, {x: 0.5042960911371209, y: 13.054}, {x: 0.7055882615288527, y: 0.207}, {x: 0.013637118298549014, y: 1.337}, {x: 0.020018895826484015, y: 17.09}, {x: 0.00020338983050529138, y: 3.892}, {x: 0.024374999999996892, y: 16.11}, {x: 0.0, y: 0.222}, {x: 0.44779124366861267, y: 0.191}, {x: 0.06656267384342125, y: 0.0006}, {x: 0.006226382324112592, y: 3.154}, {x: 0.1005571415126862, y: 11.131}, {x: 0.09854013603380829, y: 0.924}, {x: 1.1777329192546553, y: 0.95}, {x: 0.19162623623810088, y: 7.735}, {x: 1.3667586206896518, y: 18.589}, {x: 0.406848226424419, y: 32.876}, {x: 0.2435396919024921, y: 0.31}, {x: 0.5062574098261798, y: 1.6}, {x: 0.3190022010271428, y: 1.417}, {x: 0.20879614428797016, y: 4.627}, {x: 0.10718367346938448, y: 93.37}, {x: 0.2079412041613677, y: 0.54}, {x: 0.022968502086145835, y: 4.617}, {x: 0.013672320587211038, y: 26.066}, {x: 0.09991374269005518, y: 25.453}, {x: 2.0588966661233226, y: 0.389}, {x: 0.01117165795845219, y: 0.013}, {x: 0.0, y: 32.385}, {x: 0.1283225806451582, y: 20.86}, {x: 3.1948881786028757e-05, y: 0.02}, {x: 0.07186694172253419, y: 0.17}, {x: 0.34443030303029976, y: 0.01}, {x: 0.22994903994903668, y: 1.1}, {x: 0.47353568007662505, y: 3.807}, {x: 0.40361468161720826, y: 0.012}, {x: 0.37101638349514243, y: 2.032}, {x: 0.9584617248061983, y: 7.29}, {x: 1.105131626462513, y: 3.112}, {x: 0.004290674603171392, y: 4.273}, {x: 0.23709302325581078, y: 10.205}, {x: 0.03744279529993489, y: 1.034}, {x: 0.07624667258207309, y: 30.176}, {x: 0.9177496306089089, y: 2.215}, {x: 0.07410527996593239, y: 5.481}, {x: 0.8042620676177415, y: 51.652}, {x: 1.8386041299345517, y: 6.344}, {x: 0.1985696971008658, y: 56.802}, {x: 0.0030894512653438914, y: 7.67}, {x: 0.4160995903486904, y: 1.116}, {x: 0.21288039148742138, y: 122.186}, {x: 0.017611849700659682, y: 67.975}, {x: 1.6291390754838995, y: 2.263}, {x: 0.43470569013134, y: 0.04}, {x: 0.2271787574763619, y: 5.646}, {x: 0.4419805194805163, y: 15.613}, {x: 0.9036271929824528, y: 0.61}, {x: 0.010199964845887392, y: 38.805}, {x: 0.6741912698718163, y: 0.16}, {x: 0.04900504089549709, y: 3.095}, {x: 0.0011391406780306126, y: 3.977}, {x: 0.04795774784190439, y: 1.496}, {x: 0.4107686482030013, y: 4.943}, {x: 0.63965517241379, y: 5.179}, {x: 1.4162005466839274, y: 0.83}, {x: 0.21864110682512108, y: 60.28}, {x: 0.4301465233223481, y: 1.186}, {x: 0.005076027559987291, y: 32.41887}, {x: 0.13522911654450528, y: 1.63}, {x: 0.009110798122062492, y: 3.07}, {x: 0.03688074404943684, y: 2.35}, {x: 0.1322420634920602, y: 5.83}, {x: 0.007245370677636494, y: 1.639}, {x: 0.007270955873450693, y: 3.501}, {x: 0.08200407912673069, y: 0.21}, {x: 0.00036266381967788036, y: 35.52}, {x: 0.07530258259655319, y: 56.27}, {x: 0.0005519480519446693, y: 5.224}, {x: 0.04397130289065427, y: 160.701}, {x: 0.03225225225224887, y: 2.343}, {x: 1.0699467696482587, y: 28.786}, {x: 0.5715691948421124, y: 108.015588}, {x: 0.02928781028424299, y: 63.1}, {x: 0.3416163003662971, y: 2.333}, {x: 0.004975457111298795, y: 2.787}, {x: 0.20095013644256698, y: 2.013}, {x: 0.7702742027830991, y: 6.299}, {x: 0.6479750657698606, y: 1.6458}, {x: 0.00010989010988699137, y: 2.29}, {x: 0.013443223443220291, y: 2.22}, {x: 0.4693672316384149, y: 0.479}, {x: 0.36287438625204266, y: 0.75}, {x: 0.1561755053819868, y: 0.4}, {x: 0.06024544293824889, y: 5.51}, {x: 0.4722573196544463, y: 1.318}, {x: 0.05137342475012959, y: 1.301}, {x: 0.04798167475458919, y: 1.306}, {x: 0.7769665638793125, y: 3.412}, {x: 0.0022582078185785916, y: 1.35}, {x: 0.44757278706789233, y: 1.339}, {x: 0.12355399362461525, y: 6.5}, {x: 0.010965290930710903, y: 0.134}, {x: 0.4338808903514755, y: 0.299}, {x: 0.46915024277364875, y: 0.568}, {x: 0.03704598894854099, y: 0.268}, {x: 0.3142550354271125, y: 1.571}, {x: 0.005730897009963591, y: 1.352}, {x: 0.01078702131672949, y: 4.293}, {x: 0.10509620406542813, y: 0.474}, {x: 1.1949181700540425, y: 0.413}, {x: 0.2129642738174518, y: 1.457}, {x: 0.0008724120000396354, y: 3.164}, {x: 0.00023489932885633548, y: 20.774}, {x: 0.8495805006755796, y: 7.847}, {x: 0.012756087981144136, y: 3.78}, {x: 0.012670134201537836, y: 0.137}, {x: 0.10700314865679361, y: 0.471}, {x: 0.1688076144700199, y: 0.013}, {x: 0.029195137071219124, y: 3.623}, {x: 0.00020668356033925691, y: 0.249}, {x: 0.027616438356161524, y: 0.044}, {x: 0.012033713315544124, y: 0.852}, {x: 0.23991554054053774, y: 1.067}, {x: 0.0, y: 1.864}, {x: 0.26685157874834275, y: 2.335}, {x: 0.053179933665005424, y: 0.231}, {x: 0.08245528455284251, y: 0.041}, {x: 0.6575481874447362, y: 10.696}, {x: 0.8154699612403071, y: 1.118}, {x: 0.8437385782615836, y: 0.815}, {x: 0.0747574913668233, y: 0.272}, {x: 0.015804022250745814, y: 6.61}, {x: 0.1628441060381238, y: 4.923}], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(255, 127, 14,0.45)', 'pointRadius': 3, 'yAxisID': 'y'},{'data': [{x: 0.010166666666663824, y: 1.0}, {x: 0.05058153126826132, y: 5.879}, {x: 0.05990872852233399, y: 8.01}, {x: 0.043937681159417416, y: 2.98}, {x: 0.11958786797501943, y: 11.5}, {x: 0.030151688708386828, y: 0.4}, {x: 0.0037341772151870244, y: 3.2}, {x: 0.009029126213589424, y: 73.07}, {x: 0.3464190633205077, y: 7.72}, {x: 0.0024671881790498352, y: 0.06}, {x: 0.17081355932203113, y: 5.79}, {x: 0.004428231218875864, y: 9.93}, {x: 0.497006261030336, y: 37.4014}, {x: 0.0023188203877829135, y: 1.8}, {x: 0.0005016722407997134, y: 7.74}, {x: 0.3125106583072071, y: 3.3}, {x: 0.04458591549295481, y: 2.5}, {x: 0.009634618973899915, y: 27.29}, {x: 0.07980808788130471, y: 11.97}, {x: 0.45309253525971493, y: 7.38}, {x: 0.0016939091002753713, y: 0.15}, {x: 0.448749999999997, y: 3.0}, {x: 6.514657980167368e-05, y: 1.27}, {x: 0.04928104575163102, y: 0.82}, {x: 0.862169244509395, y: 0.22}, {x: 0.2606462585033984, y: 5.15}, {x: 0.027734396231539712, y: 3.33}, {x: 0.5042960911371209, y: 22.37}, {x: 0.7055882615288527, y: 3.6}, {x: 0.013637118298549014, y: 19.44}, {x: 0.020018895826484015, y: 60.19}, {x: 0.00020338983050529138, y: 75.45}, {x: 0.024374999999996892, y: 35.91}, {x: 0.0, y: 0.86}, {x: 0.44779124366861267, y: 1.66}, {x: 0.06656267384342125, y: 0.49}, {x: 0.006226382324112592, y: 10.53}, {x: 0.1005571415126862, y: 16.48}, {x: 0.09854013603380829, y: 3.09}, {x: 1.1777329192546553, y: 22.1}, {x: 0.19162623623810088, y: 39.49}, {x: 1.3667586206896518, y: 47.782}, {x: 0.406848226424419, y: 159.68}, {x: 0.004839513316292991, y: 0.89}, {x: 0.05171891906888669, y: 0.4}, {x: 0.2435396919024921, y: 1.3}, {x: 0.5062574098261798, y: 2.81}, {x: 0.3190022010271428, y: 11.32}, {x: 0.20879614428797016, y: 168.87}, {x: 0.10718367346938448, y: 424.03}, {x: 0.2047433918579942, y: 1.05}, {x: 0.022968502086145835, y: 10.05}, {x: 0.29735157945502455, y: 0.25}, {x: 0.0, y: 0.667}, {x: 0.013672320587211038, y: 46.34}, {x: 0.09991374269005518, y: 101.8881}, {x: 2.0588966661233226, y: 15.7}, {x: 0.01117165795845219, y: 1.4}, {x: 0.0, y: 61.65}, {x: 0.1283225806451582, y: 36.013}, {x: 0.01200855310049569, y: 4.8}, {x: 3.1948881786028757e-05, y: 5.35}, {x: 0.06704557091653539, y: 6.98}, {x: 0.22994903994903668, y: 3.73}, {x: 0.2736503054778885, y: 0.45}, {x: 0.47353568007662505, y: 2.26}, {x: 0.013314348995408891, y: 8.28}, {x: 0.14959447159145028, y: 2.87}, {x: 0.40361468161720826, y: 9.89}, {x: 0.37101638349514243, y: 18.78}, {x: 0.9584617248061983, y: 26.13}, {x: 0.004290674603171392, y: 36.7}, {x: 0.23709302325581078, y: 0.13}, {x: 1.4594999496627372, y: 6.65}, {x: 0.07624667258207309, y: 16.085}, {x: 0.07410527996593239, y: 14.34}, {x: 0.5772989392478269, y: 0.81}, {x: 0.8042620676177415, y: 48.98}, {x: 1.8386041299345517, y: 0.06}, {x: 0.1985696971008658, y: 58.91}, {x: 0.0030894512653438914, y: 10.24}, {x: 0.21288039148742138, y: 18.781}, {x: 0.017611849700659682, y: 81.05}, {x: 1.6291390754838995, y: 14.69}, {x: 0.43470569013134, y: 0.16}, {x: 0.2271787574763619, y: 13.86}, {x: 0.4419805194805163, y: 97.728}, {x: 0.021458763187034192, y: 1.4}, {x: 0.010199964845887392, y: 67.63}, {x: 0.6741912698718163, y: 6.8}, {x: 0.6011719317356541, y: 37.08}, {x: 0.04900504089549709, y: 10.07}, {x: 0.0011391406780306126, y: 5.06}, {x: 0.4107686482030013, y: 6.54}, {x: 0.63965517241379, y: 15.31}, {x: 1.4162005466839274, y: 7.32}, {x: 0.21864110682512108, y: 114.1}, {x: 0.4301465233223481, y: 1.55}, {x: 0.8487853595994921, y: 27.98}, {x: 0.2025848468170946, y: 0.072}, {x: 0.005076027559987291, y: 14.93}, {x: 0.13522911654450528, y: 5.5}, {x: 0.03688074404943684, y: 10.64}, {x: 0.00535123042505258, y: 0.61}, {x: 0.007245370677636494, y: 36.63}, {x: 0.007270955873450693, y: 6.2}, {x: 0.08200407912673069, y: 8.87}, {x: 0.00036266381967788036, y: 10.21}, {x: 0.07530258259655319, y: 185.44}, {x: 0.0005519480519446693, y: 140.5}, {x: 0.04397130289065427, y: 318.905}, {x: 2.740869001547984, y: 11.254}, {x: 1.2440761986301334, y: 15.34}, {x: 0.03225225225224887, y: 12.54}, {x: 0.4662999999999966, y: 4.56}, {x: 1.0699467696482587, y: 497.34}, {x: 0.5715691948421124, y: 8.236964}, {x: 2.5219945455659705, y: 165.15}, {x: 0.02928781028424299, y: 276.452483}, {x: 0.8945985440877835, y: 25.21}, {x: 0.3416163003662971, y: 23.01}, {x: 0.004975457111298795, y: 26.58}, {x: 0.7702742027830991, y: 48.43}, {x: 0.6479750657698606, y: 30.02}, {x: 0.3541714877679464, y: 12.32333}, {x: 3.703703703392842e-05, y: 176.53}, {x: 0.0009558823529379914, y: 0.428482}, {x: 0.013443223443220291, y: 16.95}, {x: 0.4693672316384149, y: 3.7}, {x: 1.2271076389976068, y: 0.025053}, {x: 0.3739465799621084, y: 9.0}, {x: 0.08624999999999679, y: 100.0004}, {x: 0.2746508643841853, y: 0.19}, {x: 0.010965290930710903, y: 2.21}, {x: 0.2858656840812356, y: 6.84}, {x: 0.3407139176364464, y: 0.021042}, {x: 0.46915024277364875, y: 4.2}, {x: 0.3991397990388784, y: 0.2}, {x: 3.0030030026921405e-05, y: 0.0003}, {x: 0.03704598894854099, y: 1.898429}, {x: 0.3142550354271125, y: 8.761175}, {x: 0.005730897009963591, y: 4.768568}, {x: 0.01078702131672949, y: 4.4}, {x: 0.0028546109172756335, y: 6.5}, {x: 0.2129642738174518, y: 4.9}, {x: 0.03716431675762816, y: 0.0}, {x: 0.10700314865679361, y: 4.29}, {x: 0.1688076144700199, y: 8.44}, {x: 0.029195137071219124, y: 13.69}, {x: 0.00020668356033925691, y: 2.369}, {x: 0.012033713315544124, y: 4.011}, {x: 0.23991554054053774, y: 8.77}, {x: 0.0, y: 18.12}, {x: 0.26685157874834275, y: 17.11}, {x: 0.053179933665005424, y: 2.218}, {x: 0.0, y: 0.177}, {x: 0.08245528455284251, y: 0.538}, {x: 0.6575481874447362, y: 69.45}, {x: 0.8437385782615836, y: 5.139}, {x: 0.0747574913668233, y: 0.98332}, {x: 0.018417986899659313, y: 3.0293}, {x: 0.0027392977392947135, y: 391.22}, {x: 0.007090845562540613, y: 8.88}, {x: 0.1986045020761972, y: 2.7048}, {x: 0.015804022250745814, y: 54.52498}, {x: 0.3603407945150202, y: 4.8415}, {x: 1.271713601532564, y: 2.716}, {x: 0.1628441060381238, y: 19.187}, {x: 3.71747211867045e-05, y: 0.023}, {x: 0.022428884683545085, y: 0.305}], 'label': 'Partially Treated', 'backgroundColor': 'rgba(44, 160, 44,0.45)', 'pointRadius': 3, 'yAxisID': 'y'},{'data': [{x: 0.5714212554031168, y: 0.028}, {x: 1.1642063579498825, y: 0.409}, {x: 1.3667586206896518, y: 0.048}, {x: 0.406848226424419, y: 2.786598}, {x: 1.3900428767628012, y: 0.258}, {x: 1.3599532710280342, y: 0.258}, {x: 0.058823231858729494, y: 0.0002}, {x: 0.02988642743014759, y: 0.001875}, {x: 0.004839513316292991, y: 0.336}, {x: 0.5014874448916969, y: 5e-05}, {x: 0.10718367346938448, y: 0.387165}, {x: 0.33999550075392443, y: 0.067}, {x: 0.7837780406589522, y: 0.03}, {x: 0.3367617310562065, y: 2.5e-05}, {x: 1.7575225806451582, y: 0.0039}, {x: 0.1863053904923567, y: 0.00375}, {x: 0.40361468161720826, y: 0.0031}, {x: 0.37101638349514243, y: 0.00016}, {x: 0.9584617248061983, y: 0.0524}, {x: 0.23709302325581078, y: 0.0016}, {x: 0.07624667258207309, y: 0.15606}, {x: 0.07410527996593239, y: 0.00086}, {x: 0.8042620676177415, y: 0.09001}, {x: 0.1985696971008658, y: 1.45868}, {x: 0.0769010940178143, y: 0.016}, {x: 0.21288039148742138, y: 0.028715}, {x: 0.017611849700659682, y: 0.102521}, {x: 1.6291390754838995, y: 0.001717}, {x: 0.4419805194805163, y: 0.008188}, {x: 0.63965517241379, y: 0.001158}, {x: 0.2967167220376492, y: 0.05769}, {x: 0.005076027559987291, y: 0.75}, {x: 0.6253151071749422, y: 0.0015}, {x: 0.4638893728222964, y: 5e-05}, {x: 0.07530258259655319, y: 0.003}, {x: 0.04397130289065427, y: 14.548}, {x: 1.540725856386694, y: 0.305}, {x: 0.5715691948421124, y: 38.004923}, {x: 0.02928781028424299, y: 1.5546}, {x: 0.5391113175748641, y: 0.03675}, {x: 0.02876558292609629, y: 0.006}, {x: 1.4406608300907882, y: 0.005}, {x: 0.009121951219509213, y: 0.00055}, {x: 0.3603407945150202, y: 91.624}], 'label': 'SSO', 'backgroundColor': 'rgba(214, 39, 40,0.45)', 'pointRadius': 3, 'yAxisID': 'y'}] }, type: 'scatter', options: { @@ -75,7 +75,7 @@ data: { labels: ["0.00", "0.25", "0.50", "0.75", "1.00", "1.25", "1.50", "1.75", "2.00", "2.25", "2.50", "2.75+"], - datasets: [{'data': [980, 199, 98, 73, 34, 29, 13, 10, 5, 5, 3, 0], 'label': 'Days', 'backgroundColor': 'rgba(128,128,128,0.5)', 'borderColor': 'rgba(128,128,128,0.8)', 'borderWidth': 1}] + datasets: [{'data': [999, 201, 99, 75, 34, 29, 13, 10, 5, 5, 3, 0], 'label': 'Days', 'backgroundColor': 'rgba(128,128,128,0.5)', 'borderColor': 'rgba(128,128,128,0.8)', 'borderWidth': 1}] }, type: 'bar', options: { diff --git a/docs/_includes/charts/dash_MAEEADP_dashboard_volume_per_month.html b/docs/_includes/charts/dash_MAEEADP_dashboard_volume_per_month.html index 4cb08a3..28af0a1 100644 --- a/docs/_includes/charts/dash_MAEEADP_dashboard_volume_per_month.html +++ b/docs/_includes/charts/dash_MAEEADP_dashboard_volume_per_month.html @@ -13,8 +13,8 @@ var chart_data = { data: { - labels: ["2022-06-01 00:00:00", "2022-07-01 00:00:00", "2022-08-01 00:00:00", "2022-09-01 00:00:00", "2022-10-01 00:00:00", "2022-11-01 00:00:00", "2022-12-01 00:00:00", "2023-01-01 00:00:00", "2023-02-01 00:00:00", "2023-03-01 00:00:00", "2023-04-01 00:00:00", "2023-05-01 00:00:00", "2023-06-01 00:00:00", "2023-07-01 00:00:00", "2023-08-01 00:00:00", "2023-09-01 00:00:00", "2023-10-01 00:00:00", "2023-11-01 00:00:00", "2023-12-01 00:00:00", "2024-01-01 00:00:00", "2024-02-01 00:00:00", "2024-03-01 00:00:00", "2024-04-01 00:00:00", "2024-05-01 00:00:00", "2024-06-01 00:00:00", "2024-07-01 00:00:00", "2024-08-01 00:00:00", "2024-09-01 00:00:00", "2024-10-01 00:00:00", "2024-11-01 00:00:00", "2024-12-01 00:00:00", "2025-01-01 00:00:00", "2025-02-01 00:00:00", "2025-03-01 00:00:00", "2025-04-01 00:00:00", "2025-05-01 00:00:00", "2025-06-01 00:00:00", "2025-07-01 00:00:00", "2025-08-01 00:00:00", "2025-09-01 00:00:00", "2025-10-01 00:00:00", "2025-11-01 00:00:00", "2025-12-01 00:00:00", "2026-01-01 00:00:00", "2026-02-01 00:00:00", "2026-03-01 00:00:00", "2026-04-01 00:00:00", "2026-05-01 00:00:00"], - datasets: [{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.409, 3.436348, 0.001875, 1.735715, 0.0, 0.03, 0.00941, 1.751925, 0.112426, 0.633088, 0.0015, 5e-05, 15.39388, 40.515623, 0.0, 3.237131, 2.0559999999999996, 0.0, 0.0, 0.0, 0.001966, 0.0025, 0.0, 0.0, 0.0455, 0.0, 0.0, 0.0, 0.0, 0.02975, 0.0, 0.42201299999999997, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – System Surcharging Under High Flow Conditions', 'backgroundColor': 'rgba(31, 119, 180,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.029500000000000002, 1.025, 0.3362, 0.381, 0.0, 0.003925, 0.05, 0.0, 0.02, 0.75, 0.0, 4e-05, 0.0, 0.0, 0.19338, 0.0, 0.0665, 0.0, 0.0, 0.681, 0.0, 0.0, 0.002, 0.0, 0.00146, 0.0, 0.376, 0.005, 0.001, 0.0, 0.0, 0.0, 0.0053, 0.0, 0.0, 0.0, 0.0, 0.005, 0.00055, 0.0, 0.0, 0.0], 'label': 'SSO – Failure of Pump Station or Associated Force Main', 'backgroundColor': 'rgba(255, 127, 14,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.813515, 0.0, 0.0, 0.0, 0.0095, 0.0, 0.0, 0.0, 0.0, 0.25, 0.2, 0.0, 0.0, 0.0, 0.8418, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0001, 0.0005, 0.0, 5e-05, 0.0, 0.825, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 91.624, 0.0, 0.0], 'label': 'SSO – Discharge Through Wastewater Outfall', 'backgroundColor': 'rgba(44, 160, 44,0.8)', 'yAxisID': 'y'},{'data': [0.0, 115.43801, 86.804743, 228.823562, 127.657209, 101.606736, 144.556502, 213.488031, 16.326984, 125.625929, 169.506236, 99.03291899999999, 196.146284, 657.3136089999999, 454.671492, 385.326532, 77.080442, 32.020342, 420.733223, 531.844639, 33.374218, 465.470891, 200.850498, 205.159667, 137.862211, 32.548632, 144.058285, 38.537364000000004, 7.820447000000001, 22.034333, 128.027319, 38.986264, 46.148421, 151.006551, 24.811117, 385.238487, 34.830104, 173.85852, 52.303641999999996, 163.334928, 138.730634, 52.737880000000004, 38.235412000000004, 3.911468, 4.227829, 102.301629, 0.0, 0.0], 'label': 'CSO – UnTreated', 'backgroundColor': 'rgba(214, 39, 40,0.8)', 'yAxisID': 'y'},{'data': [0.0, 14.889, 18.080000000000002, 138.0971, 63.33, 33.160000000000004, 211.6397, 302.302, 1.7000000000000002, 608.0799999999999, 159.1951, 119.67569999999999, 84.27, 412.032, 245.088, 215.554, 45.7022, 43.440000000000005, 815.5563, 1268.9624219999998, 93.968482, 888.075013, 630.2106, 119.03999999999999, 43.689, 34.5576, 71.537063, 15.428172, 4.4, 42.59, 329.08750000000003, 25.1085, 51.81999999999999, 129.872273, 50.5703, 603.457475, 38.0952, 94.8393, 25.242, 76.4396, 136.3045, 33.1398, 44.0, 2.218, 0.7150000000000001, 562.6989000000001, 0.305, 0.0], 'label': 'Partially Treated – Blended', 'backgroundColor': 'rgba(148, 103, 189,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 3.91, 0.39, 0.0, 0.0, 0.0, 0.0, 0.89, 0.0, 0.0, 6.54005, 0.45, 0.016676, 85.38, 28.103008, 0.0, 0.0, 0.0117, 999.999999, 176.53, 0.0, 100.0004, 0.0, 0.0, 0.021042, 0.0, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'Partially Treated – Other', 'backgroundColor': 'rgba(140, 86, 75,0.8)', 'yAxisID': 'y'},{'data': [0.0, 10.568458, 6.568397, 31.293090000000003, 34.771, 31.424915, 38.858, 75.5506, 0.31, 101.55400000000002, 56.135999999999996, 61.836999999999996, 17.553, 320.421, 134.207, 135.11487, 13.834, 10.969999999999999, 268.872, 290.786388, 66.543, 187.965, 43.4258, 92.108, 48.866, 4.2330000000000005, 8.293000000000001, 3.191, 4.293, 3.0740000000000003, 100.984456, 7.035001, 12.270999999999999, 40.819, 4.33, 178.161, 52.04, 34.022999999999996, 3.9549999999999996, 33.15, 83.760058, 5.389, 5.266, 0.231, 0.041, 24.434, 0.0, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(227, 119, 194,0.8)', 'yAxisID': 'y'}] + labels: ["2022-06-01 00:00:00", "2022-07-01 00:00:00", "2022-08-01 00:00:00", "2022-09-01 00:00:00", "2022-10-01 00:00:00", "2022-11-01 00:00:00", "2022-12-01 00:00:00", "2023-01-01 00:00:00", "2023-02-01 00:00:00", "2023-03-01 00:00:00", "2023-04-01 00:00:00", "2023-05-01 00:00:00", "2023-06-01 00:00:00", "2023-07-01 00:00:00", "2023-08-01 00:00:00", "2023-09-01 00:00:00", "2023-10-01 00:00:00", "2023-11-01 00:00:00", "2023-12-01 00:00:00", "2024-01-01 00:00:00", "2024-02-01 00:00:00", "2024-03-01 00:00:00", "2024-04-01 00:00:00", "2024-05-01 00:00:00", "2024-06-01 00:00:00", "2024-07-01 00:00:00", "2024-08-01 00:00:00", "2024-09-01 00:00:00", "2024-10-01 00:00:00", "2024-11-01 00:00:00", "2024-12-01 00:00:00", "2025-01-01 00:00:00", "2025-02-01 00:00:00", "2025-03-01 00:00:00", "2025-04-01 00:00:00", "2025-05-01 00:00:00", "2025-06-01 00:00:00", "2025-07-01 00:00:00", "2025-08-01 00:00:00", "2025-09-01 00:00:00", "2025-10-01 00:00:00", "2025-11-01 00:00:00", "2025-12-01 00:00:00", "2026-01-01 00:00:00", "2026-02-01 00:00:00", "2026-03-01 00:00:00", "2026-04-01 00:00:00", "2026-05-01 00:00:00", "2026-06-01 00:00:00"], + datasets: [{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.409, 3.436348, 0.001875, 1.735715, 0.0, 0.03, 0.00941, 1.751925, 0.112426, 0.633088, 0.0015, 5e-05, 15.39388, 40.515623, 0.0, 3.237131, 2.0559999999999996, 0.0, 0.0, 0.0, 0.001966, 0.0025, 0.0, 0.0, 0.0455, 0.0, 0.0, 0.0, 0.0, 0.02975, 0.0, 0.42201299999999997, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – System Surcharging Under High Flow Conditions', 'backgroundColor': 'rgba(31, 119, 180,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.029500000000000002, 1.025, 0.3362, 0.381, 0.0, 0.003925, 0.05, 0.0, 0.02, 0.75, 0.0, 4e-05, 0.0, 0.0, 0.19338, 0.0, 0.0665, 0.0, 0.0, 0.681, 0.0, 0.0, 0.002, 0.0, 0.00146, 0.0, 0.376, 0.005, 0.001, 0.0, 0.0, 0.0, 0.0053, 0.0, 0.0, 0.0, 0.0, 0.005, 0.00055, 0.0, 0.0, 0.0, 0.0], 'label': 'SSO – Failure of Pump Station or Associated Force Main', 'backgroundColor': 'rgba(255, 127, 14,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.813515, 0.0, 0.0, 0.0, 0.0095, 0.0, 0.0, 0.0, 0.0, 0.25, 0.2, 0.0, 0.0, 0.0, 0.8418, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0001, 0.0005, 0.0, 5e-05, 0.0, 0.825, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 91.624, 0.0, 0.0, 0.0], 'label': 'SSO – Discharge Through Wastewater Outfall', 'backgroundColor': 'rgba(44, 160, 44,0.8)', 'yAxisID': 'y'},{'data': [0.0, 115.43801, 86.804743, 228.823562, 127.657209, 101.606736, 144.556502, 213.488031, 16.326984, 125.625929, 169.506236, 99.03291899999999, 196.146284, 657.3136089999999, 454.671492, 385.326532, 77.080442, 32.020342, 420.733223, 531.844639, 33.374218, 465.470891, 200.850498, 205.159667, 137.862211, 32.548632, 144.058285, 38.537364000000004, 7.820447000000001, 22.034333, 128.027319, 38.986264, 46.148421, 151.006551, 24.811117, 385.238487, 34.830104, 173.85852, 52.303641999999996, 163.334928, 138.730634, 52.737880000000004, 38.235412000000004, 3.911468, 4.227829, 102.301629, 0.0, 0.0, 0.0], 'label': 'CSO – UnTreated', 'backgroundColor': 'rgba(214, 39, 40,0.8)', 'yAxisID': 'y'},{'data': [0.0, 14.889, 18.080000000000002, 138.0971, 63.33, 33.160000000000004, 211.6397, 302.302, 1.7000000000000002, 608.0799999999999, 159.1951, 119.67569999999999, 84.27, 412.032, 245.088, 215.554, 45.7022, 43.440000000000005, 815.5563, 1268.9624219999998, 93.968482, 888.075013, 630.2106, 119.03999999999999, 43.689, 34.5576, 71.537063, 15.428172, 4.4, 42.59, 329.08750000000003, 25.1085, 51.81999999999999, 129.872273, 50.5703, 603.457475, 38.0952, 94.8393, 25.242, 76.4396, 136.3045, 33.1398, 44.0, 2.218, 0.7150000000000001, 562.6989000000001, 0.305, 0.0, 0.0], 'label': 'Partially Treated – Blended', 'backgroundColor': 'rgba(148, 103, 189,0.8)', 'yAxisID': 'y'},{'data': [0.0, 0.0, 3.91, 0.39, 0.0, 0.0, 0.0, 0.0, 0.89, 0.0, 0.0, 6.54005, 0.45, 0.016676, 85.38, 28.103008, 0.0, 0.0, 0.0117, 999.999999, 176.53, 0.0, 100.0004, 0.0, 0.0, 0.021042, 0.0, 0.0003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], 'label': 'Partially Treated – Other', 'backgroundColor': 'rgba(140, 86, 75,0.8)', 'yAxisID': 'y'},{'data': [0.0, 10.568458, 6.568397, 31.293090000000003, 34.771, 31.424915, 38.858, 75.5506, 0.31, 101.55400000000002, 56.135999999999996, 61.836999999999996, 17.553, 320.421, 134.207, 135.11487, 13.834, 10.969999999999999, 268.872, 290.786388, 66.543, 187.965, 43.4258, 92.108, 48.866, 4.2330000000000005, 8.293000000000001, 3.191, 4.293, 3.0740000000000003, 100.984456, 7.035001, 12.270999999999999, 40.819, 4.33, 178.161, 52.04, 34.022999999999996, 3.9549999999999996, 33.15, 83.760058, 5.389, 5.266, 0.231, 0.041, 24.434, 0.0, 0.0, 0.0], 'label': 'CSO – Treated', 'backgroundColor': 'rgba(227, 119, 194,0.8)', 'yAxisID': 'y'}] }, type: 'bar', options: { diff --git a/docs/assets/db_semantic_context.txt b/docs/assets/db_semantic_context.txt index d0dd5d4..dc7335e 100644 --- a/docs/assets/db_semantic_context.txt +++ b/docs/assets/db_semantic_context.txt @@ -1,5 +1,5 @@ # AMEND Database Semantic Context -Generated: 2026-04-29 +Generated: 2026-06-05 ## Global Data Notes @@ -81,6 +81,90 @@ Generated: 2026-04-29 FROM MS4_AnnualReports m JOIN MAEEADP_CSO c ON m.municipality_normalized = c.municipality WHERE m.extraction_confidence != 'low' AND c.eventType LIKE 'CSO%' GROUP BY 1 +- **Lobbying spend on environmental bills by year** (proportional allocation): + -- For each (entity, client, year): env_fraction = env_bills / total_bills; env_spend = compensation × env_fraction + -- Use (bill_id, general_court) to join MA_Lobbying_Bills → MA_Lobbying_Bills_Scored (avoids H/S collision) + WITH bill_counts AS ( + SELECT entity_name, client_name, year, COUNT(DISTINCT bill_id) AS n_all + FROM MA_Lobbying_Bills WHERE bill_id IS NOT NULL GROUP BY entity_name, client_name, year + ), env_counts AS ( + SELECT l.entity_name, l.client_name, l.year, COUNT(DISTINCT l.bill_id) AS n_env + FROM MA_Lobbying_Bills l + JOIN MA_Lobbying_Bills_Scored s ON l.bill_id = s.bill_id AND l.general_court = s.general_court + WHERE s.is_environmental = 1 + GROUP BY l.entity_name, l.client_name, l.year + ) + SELECT e.year, SUM(e.compensation * CAST(ec.n_env AS FLOAT) / bc.n_all) AS env_spend + FROM MA_Lobbying_Employers e + JOIN bill_counts bc ON e.entity_name = bc.entity_name AND e.client_name = bc.client_name AND e.year = bc.year + JOIN env_counts ec ON e.entity_name = ec.entity_name AND e.client_name = ec.client_name AND e.year = ec.year + GROUP BY e.year ORDER BY e.year + NOTE: compensation is in MA_Lobbying_Employers (column name is "compensation", NOT "total_expenditure"). + NOTE: is_environmental is in MA_Lobbying_Bills_Scored, NOT in MA_Legislature_Bills. + NOTE: Join key between MA_Lobbying_Bills and MA_Lobbying_Employers is (entity_name, client_name, year) — three columns. + NOTE: ALWAYS join MA_Lobbying_Bills to MA_Lobbying_Bills_Scored via (bill_id, general_court) not (bill_number, general_court). + +- **Top clients (employers) by total lobbying spend** (most recent year): + SELECT e.client_name, SUM(e.compensation) AS total_spend + FROM MA_Lobbying_Employers e + WHERE e.year = (SELECT MAX(year) FROM MA_Lobbying_Employers) + AND e.client_name != 'Total salaries received' + GROUP BY e.client_name + ORDER BY total_spend DESC LIMIT 15 + NOTE: use client_name (paying employer), NOT entity_name (lobbying firm). + +- **Top clients on environmental bills** (most recent year): + SELECT e.client_name, SUM(e.compensation) AS total_spend + FROM MA_Lobbying_Employers e + WHERE e.year = (SELECT MAX(year) FROM MA_Lobbying_Employers) + AND EXISTS ( + SELECT 1 FROM MA_Lobbying_Bills l + JOIN MA_Lobbying_Bills_Scored s ON l.bill_id = s.bill_id AND l.general_court = s.general_court + WHERE l.entity_name = e.entity_name AND l.client_name = e.client_name + AND l.year = e.year AND s.is_environmental = 1 + ) + GROUP BY e.client_name ORDER BY total_spend DESC LIMIT 15 + +- **Lobbying activity by topic cluster** (how many clients per cluster): + SELECT c.label, COUNT(DISTINCT l.client_name) AS n_clients, COUNT(DISTINCT l.bill_id) AS n_bills + FROM MA_Lobbying_Bills l + JOIN MA_Lobbying_Bills_Scored s ON l.bill_id = s.bill_id AND l.general_court = s.general_court + JOIN MA_Bill_Cluster_Labels c ON s.cluster_id = c.cluster_id + GROUP BY c.label ORDER BY n_clients DESC + +- **Lobbying spend vs. enforcement count by year** (dual-axis): + WITH spend AS ( + SELECT year, SUM(compensation) AS lobbying_spend FROM MA_Lobbying_Employers + WHERE client_name != 'Total salaries received' GROUP BY year + ), enforcement AS ( + SELECT strftime('%Y', EnforcementDate) AS year, COUNT(*) AS n_actions FROM MAEEADP_Enforcement GROUP BY 1 + ) + SELECT s.year, s.lobbying_spend, e.n_actions FROM spend s LEFT JOIN enforcement e ON s.year = e.year ORDER BY s.year + +- **Support vs. oppose positions on environmental bills by year**: + SELECT l.year, l.position, COUNT(DISTINCT l.client_name) AS n_clients + FROM MA_Lobbying_Bills l + JOIN MA_Lobbying_Bills_Scored s ON l.bill_id = s.bill_id AND l.general_court = s.general_court + WHERE s.is_environmental = 1 AND l.position IN ('Support', 'Oppose', 'Neutral') + GROUP BY l.year, l.position ORDER BY l.year, l.position + NOTE: position column is on MA_Lobbying_Bills, not MA_Lobbying_Employers. + +- **Bill passage rate by lobbying intensity**: + SELECT + CASE WHEN client_count >= 10 THEN 'Heavily lobbied (10+ clients)' + WHEN client_count >= 3 THEN 'Moderately lobbied (3–9 clients)' + ELSE 'Lightly lobbied (1–2 clients)' END AS lobby_tier, + AVG(CAST(b.passed AS FLOAT)) AS pass_rate, + COUNT(*) AS n_bills + FROM ( + SELECT l.bill_id, l.general_court, COUNT(DISTINCT l.client_name) AS client_count + FROM MA_Lobbying_Bills l WHERE l.bill_id IS NOT NULL GROUP BY l.bill_id, l.general_court + ) counts + JOIN MA_Lobbying_Bills_Scored s ON counts.bill_id = s.bill_id AND counts.general_court = s.general_court + JOIN MA_Legislature_Bills b ON counts.bill_id = b.bill_id AND counts.general_court = b.general_court + WHERE s.is_environmental = 1 + GROUP BY lobby_tier + - **CSO discharges to 303(d) impaired waters** (two-step join): MAEEADP_CSO JOIN CSO_303d_Mapping ON MAEEADP_CSO.waterBody = CSO_303d_Mapping.csoWaterBody JOIN EPA_303d_Impairments ON CSO_303d_Mapping.waterbody303d = EPA_303d_Impairments.waterbody @@ -1116,6 +1200,185 @@ EEA00PES00000000L8 KENNETH FIALKOSKY AL-0028553 AL PESTICIDE CREDENTIAL PESTIC --- +### MA_Bill_Cluster_Labels (25 rows) +Topic cluster labels for MA lobbying bill clusters derived from k-means on Gemini embeddings. One row per cluster_id (0–24); 25 clusters total. Key fields: cluster_id (join key to MA_Lobbying_Bills_Scored.cluster_id), label (3–5 word topic description, e.g. "Massachusetts Clean Energy Transition"), n_bills (total bills in cluster), n_env_bills (environmental bills in cluster). IMPORTANT: this table has NO bill_number or general_court column — it is a lookup table only. To get bills by topic, join MA_Lobbying_Bills_Scored on cluster_id, then join MA_Lobbying_Bills. + +```sql +CREATE TABLE "MA_Bill_Cluster_Labels" ( + "index" BIGINT, + cluster_id BIGINT, + label TEXT, + n_bills BIGINT, + n_env_bills BIGINT +) +``` + +/* 5 rows from MA_Bill_Cluster_Labels: +cluster_id label n_bills n_env_bills +0 Community and Environmental Policy 1983 49 +1 Patient Safety, Staff Autonomy, Transparency 1289 1 +2 Solid Waste Reduction and Recycling 463 178 +3 Student Education and Well-being 1572 7 +4 Infrastructure Investment and Economic Growth 1124 8 +*/ + +**Column notes:** +- `cluster_id`: Integer cluster ID (0–24). Join key to MA_Lobbying_Bills_Scored.cluster_id. +- `label`: 3–5 word topic label generated by Gemini 2.5 Flash (e.g. "Clean Energy Policy"). +- `n_bills`: Total number of bills assigned to this cluster. +- `n_env_bills`: Number of bills in this cluster flagged is_environmental=1. + +--- + +### MA_Legislature_Bills (31,511 rows) +MA Legislature OpenAPI: one row per bill. Key fields: bill_id (full prefixed ID, e.g. H1234, S5678), bill_number (integer), bill_prefix (H/S/HD/SD), general_court (session number), title (bill title), sponsor_name, status (final status text), passed (1 if signed/enacted, 0 otherwise). PREFERRED join to MA_Lobbying_Bills: JOIN ON (bill_id, general_court) — do NOT use (bill_number, general_court) as H and S bills can share the same integer. NOTE: environmental relevance scoring lives in MA_Lobbying_Bills_Scored, not here. + +```sql +CREATE TABLE "MA_Legislature_Bills" ( + "index" BIGINT, + bill_id TEXT, + bill_number BIGINT, + bill_prefix TEXT, + general_court BIGINT, + title TEXT, + sponsor_name TEXT, + status TEXT, + passed BIGINT +) +``` + +/* 5 rows from MA_Legislature_Bills: +bill_id bill_number bill_prefix general_court title sponsor_name status passed +H4999 4999 H 193 An Act promoting access to midwifery care and out-of-hospital birth options Midwifery Care and Out-of-Hospital options Signed by the Governor, Chapter 186 of the Acts of 2024 1 +H4773 4773 H 193 An Act promoting access to midwifery care and out-of-hospital birth options House Committee on Ways and Means Published as amended, see H4785 0 +S1405 1405 S 193 An Act relative to newborn screenings for congenital cytomegalovirus Joan B. Lovely No further action taken 0 +S607 607 S 193 An Act to increase access to nurse-midwifery services Brendan P. Crighton No further action taken 0 +H1069 1069 H 193 An Act to increase access to nurse-midwifery services Kay Khan Senate concurred 0 +*/ + +**Column notes:** +- `bill_id`: Full chamber-prefixed bill ID (e.g. H1234, S5678). PREFERRED join key — use (bill_id, general_court) to join to MA_Lobbying_Bills and MA_Lobbying_Bills_Scored. +- `bill_number`: Integer bill number. WARNING: H and S bills can share the same integer — always use bill_id for joins, not bill_number alone. +- `bill_prefix`: Chamber prefix: H, S, HD, or SD. +- `general_court`: Session number. 185=2009-10, 186=2011-12, ..., 192=2021-22, 193=2023-24, 194=2025-26. +- `passed`: 1 if the bill was signed into law or enacted; 0 if it died or is still pending. + +--- + +### MA_Lobbying_Bills (225,178 rows) +MA SoS lobbying disclosures: fact table linking employers to bills they lobbied. One row per (entity_name, client_name, general_court, bill_number, year). CRITICAL DISTINCTION: entity_name = lobbying firm; client_name = paying employer. Key fields: entity_name, client_name, year, general_court, bill_number, bill_id, bill_prefix, bill_title, position ("Support", "Oppose", "Neutral", or empty), chamber, amount (per-bill spend if reported). bill_id is a derived column combining bill_prefix + bill_number (e.g. H1234, S5678). bill_prefix is derived from chamber: "House Bill"/"HB" → "H"; "Senate Bill"/"SB" → "S"; "House Docket"/"HD" → "HD"; "Senate Docket"/"SD" → "SD". PREFERRED join to MA_Lobbying_Bills_Scored: use (bill_id, general_court) — do NOT use (bill_number, general_court) alone as H and S bills can share the same integer bill_number. Join to MA_Legislature_Bills on (bill_id, general_court) for passed status. Join to MA_Lobbying_Employers on (entity_name, client_name, year) for total compensation. IMPORTANT: this table has NO single spending column — compensation lives in MA_Lobbying_Employers. + +```sql +CREATE TABLE "MA_Lobbying_Bills" ( + "index" BIGINT, + entity_name TEXT, + client_name TEXT, + year BIGINT, + general_court BIGINT, + chamber TEXT, + bill_number BIGINT, + bill_title TEXT, + position TEXT, + amount FLOAT, + entity_name_norm TEXT, + client_name_norm TEXT, + bill_prefix TEXT, + bill_id TEXT +) +``` + +/* 5 rows from MA_Lobbying_Bills: +entity_name client_name year general_court chamber bill_number bill_title position amount entity_name_norm client_name_norm bill_prefix bill_id +Robert Alan Baker Smaller Business Association of New England 2014 188 House Bill 4165 An Act Promoting Economic Growth Across the Commonwealth. Sought funding for manufacturing grant and layoff aversion program. met with key legislators from Economic Development committee and Ways and Means. Support 170000.0 ROBERT ALAN BAKER SMALLER BUSINESS ASSOCIATION OF NEW ENGLAND H H4165 +Law Office of Attorney James F McGrail Outfront Media, LLC 2018 190 Executive NULL Matters in connection with Outfront Media Group LLC's participation in the request for proposals for advertising rights on the Massachusetts Bay Transportation Authority. Support 90000.0 ATTORNEY JAMES F MCGRAIL OUTFRONT MEDIA NULL NULL +Northwind Strategies New England Independent Transmission Company, LLC 2014 188 Executive NULL Advised regarding potential energy legislation and central procurement. Represented client and met with the Executive Office of Environment & Energy. Support 90000.0 NORTHWIND STRATEGIES NEW ENGLAND INDEPENDENT TRANSMISSION COMPANY NULL NULL +Northwind Strategies Boston Beer 2014 188 House Bill 267 Represented client before members of the Joint Committee on Consumer Protection and Professional Licensure and met with Representatives Peisch, Mariano, Moran, and Haddad. Support 67500.0 NORTHWIND STRATEGIES BOSTON BEER H H267 +Northwind Strategies GTECH Corporation 2014 188 Executive NULL Represented client and advised relative to current and future activities with the Massachusetts Lottery and the State Treasury. Support 66000.0 NORTHWIND STRATEGIES GTECH NULL NULL +*/ + +**Column notes:** +- `entity_name`: Lobbying firm. IMPORTANT: use client_name (not entity_name) to identify the paying employer. +- `client_name`: Paying employer. Join key to MA_Lobbying_Employers.client_name. Use this for all employer-level analysis. +- `bill_number`: Integer bill number (e.g. 1234). WARNING: H and S bills can share the same integer — always combine with bill_id (or bill_prefix) to distinguish them. +- `bill_id`: Derived chamber-prefixed bill ID (e.g. H1234, S5678). PREFERRED join key to MA_Lobbying_Bills_Scored and MA_Legislature_Bills: JOIN ON (bill_id, general_court). NULL for rows where chamber is not H/S/HD/SD. +- `bill_prefix`: Derived bill chamber prefix: "H", "S", "HD", or "SD". NULL for non-standard chamber values (Executive, FY, etc.). +- `general_court`: MA legislative session (e.g. 193 = 2023–2024). Joins to MA_Legislature_Bills.general_court. +- `chamber`: Raw chamber string from SoS portal: "House Bill", "Senate Bill", "House Docket", "Senate Docket", "HB", "SB", "Executive", "FY", etc. +- `position`: Lobbying position: "Support", "Oppose", "Neutral", or empty string. Use for coalition/opposition analysis. +- `year`: Filing year. Join to MA_Lobbying_Employers on (entity_name, client_name, year) for compensation. +- `amount`: Per-bill spend in dollars (often NULL — use MA_Lobbying_Employers.compensation for spending analysis). + +--- + +### MA_Lobbying_Bills_Scored (31,702 rows) +Environmental relevance scores for MA lobbying bills, derived from Gemini embeddings. One row per unique (bill_number, general_court). Key fields: bill_number, general_court, bill_title, bill_id (e.g. H1234), env_relevance_score (float; differential cosine similarity to env vs non-env example bills; higher = more environmentally relevant), is_environmental (1 if env_relevance_score >= 0.05), cluster_id (integer topic cluster 0–24; -1 = unassigned; 25 clusters total). Join to MA_Lobbying_Bills on (bill_number, general_court) to find which clients lobbied env bills. Join to MA_Bill_Cluster_Labels on cluster_id for human-readable cluster topic labels. IMPORTANT: is_environmental is per-bill; no cluster is purely environmental. + +```sql +CREATE TABLE "MA_Lobbying_Bills_Scored" ( + "index" BIGINT, + bill_number BIGINT, + general_court BIGINT, + bill_title TEXT, + bill_id TEXT, + env_relevance_score FLOAT, + is_environmental BIGINT, + cluster_id BIGINT +) +``` + +/* 5 rows from MA_Lobbying_Bills_Scored: +bill_number general_court bill_title bill_id env_relevance_score is_environmental cluster_id +3678 194 An Act relative to chemical recycling HD3678 0.1475381851196289 1 -1 +4563 193 An Act relative to landfills and areas of critical environmental concern H4563 0.1332122683525085 1 0 +2945 190 An Act relative to landfills and areas of critical environmental concern H2945 0.1287276148796081 1 21 +894 191 An Act relative to landfills and areas of critical environmental concern H894 0.1287276148796081 1 10 +930 192 An Act relative to landfills and areas of critical environmental concern H930 0.1287275552749633 1 -1 +*/ + +**Column notes:** +- `bill_number`: MA bill number. Join key to MA_Lobbying_Bills and MA_Legislature_Bills. +- `general_court`: MA legislative session number. Join key to MA_Lobbying_Bills. +- `bill_id`: Chamber-prefixed bill ID (e.g. H1234, S567). Used for Legislature API lookups. +- `env_relevance_score`: Differential cosine similarity: max_sim(env_examples) - max_sim(non_env_examples). Positive = more env-like than non-env. Threshold for is_environmental is 0.05. +- `is_environmental`: 1 if env_relevance_score >= 0.05. Use this to filter to environmentally relevant bills. +- `cluster_id`: Topic cluster integer (0–24; 25 clusters). -1 means unassigned. Join to MA_Bill_Cluster_Labels for label. + +--- + +### MA_Lobbying_Employers (12,244 rows) +MA Secretary of State lobbying disclosures: one row per (lobbying firm, client/employer, year). CRITICAL DISTINCTION: entity_name = the lobbying firm (e.g. "Smith & Jones Lobbying LLC"); client_name = the actual employer paying for lobbying (e.g. "National Grid USA"). Always use client_name for employer-level analysis. Key fields: entity_name, client_name, year, compensation (total dollars paid by client to firm that year), reg_type (registration type). Data covers 2009–present; older years have sparse compensation data. Join to MA_Lobbying_Bills on (entity_name, client_name, year) to see which bills a client lobbied. IMPORTANT: this table has NO spending column called total_expenditure — the column is compensation. + +```sql +CREATE TABLE "MA_Lobbying_Employers" ( + "index" BIGINT, + entity_name TEXT, + client_name TEXT, + year BIGINT, + reg_type TEXT, + compensation FLOAT, + entity_name_norm TEXT, + client_name_norm TEXT +) +``` + +/* 5 rows from MA_Lobbying_Employers: +entity_name client_name year reg_type compensation entity_name_norm client_name_norm +21c, LLC EDUCATION TRUST, INC. (THE) 2024 Lobbyist Entity 7500.0 21C EDUCATION TRUST +21c, LLC Amplify Education, Inc. 2024 Lobbyist Entity 22500.0 21C AMPLIFY EDUCATION +21c, LLC The Massachusetts Alliance for Early College, Inc. 2024 Lobbyist Entity 15000.0 21C MASSACHUSETTS ALLIANCE FOR EARLY COLLEGE +21c, LLC Benjamin Franklin Cummings Institute of Technology 2024 Lobbyist Entity 12500.0 21C BENJAMIN FRANKLIN CUMMINGS INSTITUTE OF TECHNOLOGY +21c, LLC Total salaries received 2024 Lobbyist Entity 57500.0 21C TOTAL SALARIES RECEIVED +*/ + +**Column notes:** +- `entity_name`: Lobbying firm name (e.g. "Smith Advocacy LLC"). NOT the employer — use client_name for employer analysis. +- `client_name`: Paying employer/client (e.g. "National Grid USA"). Use this for employer-level analysis, NOT entity_name. +- `year`: Calendar year of the filing. Compensation data is sparse before 2019; 2019–present is complete. +- `compensation`: Total dollars paid by client_name to entity_name for lobbying that year. IMPORTANT: the column is "compensation", NOT "total_expenditure". +- `reg_type`: Registration type (e.g. "Lobbying Entity"). Use to filter out non-employer rows if needed. + +--- + ### MA_precipitation_daily (9,862 rows) Daily precipitation averages across Massachusetts weather stations (NOAA ACIS). Key fields: date (YYYY-MM-DD), precip_in_avg (inches), n_stations. diff --git a/docs/data/EEADP_CSO_sample.csv b/docs/data/EEADP_CSO_sample.csv index f0e2794..0f9ea40 100644 --- a/docs/data/EEADP_CSO_sample.csv +++ b/docs/data/EEADP_CSO_sample.csv @@ -1,11 +1,11 @@ incidentId,incidentNumber,incidentDate,incidentTime,amPm,reporterClass,eventType,permiteeClass,permiteeName,permiteeId,outfallId,municipality,reportingType,location,latitude,longitude,waterBody,waterBodyDescription,volumnOfEvent,rainfallData,hours,minutes,month,additionalInformation,submittedDate,parentIncidentId,Year -b56b2ecb-87cf-4a1f-91f3-dbddf7c6772f,23005329,2023-07-16 00:00:00,20:35,,Verified Data Report,CSO – UnTreated,CSO,CITY OF NEW BEDFORD,MA0100781,NEW007,NEW BEDFORD,,CAPITAL AND ROD. FRENCH BLVD,,,CLARK COVE,,134430.0,1.68,0.0,25.0,,23004420,2023-08-15 11:25:14.900,,2023.0 -83f2707f-88c5-4202-a24b-862e6a1296df,23005154,2023-07-03 00:00:00,02:50,,Verified Data Report,CSO – UnTreated,CSO,CITY OF NEW BEDFORD,MA0100781,NEW005,NEW BEDFORD,,DUDLEY & RFB,,,CLARK COVE,,27890.0,0.43,0.0,5.0,,23003914,2023-08-14 10:18:25.263,,2023.0 -5c50ba01-c4e5-41a0-9acf-b2a42319dbe9,24011478,2024-09-26 07:18:18,23:25,,Verified Data Report,CSO – UnTreated,CSO,CITY OF NEW BEDFORD,MA0100781,NEW031,NEW BEDFORD,,CONWAY ST AT BUZZARDS BAY,,,INNER NEW BEDFORD HARBOR,,1603075.0,1.4,3.0,35.0,,,2024-10-15 16:00:22.570,,2024.0 -c272a918-9a14-42fc-aaa9-002e22532298,26015797,2026-03-23 00:00:00,04:40,,Public Notification Report,CSO – UnTreated,CSO,CITY OF NEW BEDFORD,MA0100781,NEW027,NEW BEDFORD,Initial-Ceased,MILL RD AT ACUSHNET RIVER,,,ACUSHNET RIVER,,,,,,,,2026-03-23 09:00:45.960,,2026.0 -80635ba2-2989-484a-b7a5-fa3ef0e63c50,25013190,2025-03-06 13:48:08,00:00,,Verified Data Report,CSO – UnTreated,CSO,CITY OF CHICOPEE,MA0101508,CHI37,CHICOPEE,,EAST MAIN ST #227,,,CHICOPEE R.,,6931.0,1.38,3.0,15.0,,,2025-05-19 09:44:29.727,,2025.0 -370abcf1-9c0d-4dcd-9c5d-a994d3609253,23002322,2023-01-26 15:54:20,01:20,,Public Notification Report,CSO – UnTreated,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOW008,LOWELL,Initial-Ceased,WEST STREET,,,MERRIMACK RIVER,,,,,,,,2023-01-26 16:04:56.043,,2023.0 -053deb9e-3335-4f5f-940b-51c29fefe27f,23005278,2023-07-10 00:00:00,10:57,,Verified Data Report,CSO – UnTreated,CSO,CITY OF FITCHBURG,MA0100986,FIT064,FITCHBURG,,CHAMBER BEHIND 672 WATER ST.,,,NASHUA RIVER,,586000.0,2.11,7.0,38.0,,,2023-08-15 08:52:36.693,,2023.0 -44353f66-06bb-4a19-a4a8-4ab954e2f890,22000036,2022-07-13 21:01:32,5:30,PM,Public Notification Report,SSO – System Surcharging Under High Flow Conditions,Non-CSO,"WATERTOWN, CITY OF",,,WATERTOWN,Initial-Ceased,Other,,,Other,,,,,,,,2022-07-13 21:20:54.737,,2022.0 -df8043de-9e3f-4798-ac7f-8398190d88cc,25013024,2025-04-08 11:20:12,03:35,,Verified Data Report,CSO – UnTreated,CSO,CITY OF NEW BEDFORD,MA0100781,NEW003,NEW BEDFORD,,COVE RD & PADNARAM AVE,,,CLARK COVE,,131320.0,1.37,1.0,25.0,,,2025-05-07 15:52:23.247,,2025.0 -62ffa854-c5bd-4831-821b-530ef487d74b,23007105,2023-12-11 14:35:59,00:00,,Public Notification Report,CSO – UnTreated,CSO,CITY OF CHICOPEE,MA0101508,CHI27,CHICOPEE,Initial-Ceased,"PARKING LOT, TOPORS GARAGE & FRONT ST",,,CHICOPEE R.,,,,,,,,2023-12-13 14:40:03.990,,2023.0 +943cacdf-458e-46ee-bf73-eb2f44a59fe7,25014783,2025-10-12 13:26:29,20:25,,Public Notification Report,CSO – UnTreated,CSO,LYNN WATER & SEWER COMMISSION,MA0100552,LYNN003,LYNN,Initial-Ceased,SUMMER STREET@SAUGUS RIVER,,,SAUGUS RIVER,,,,,,,,2025-10-15 09:28:28.183,,2025.0 +81c31981-3e08-41f8-8522-dbb45814a322,23002674,2023-03-14 17:00:50,02:50,,Public Notification Report,CSO – Treated,CSO,MASSACHUSETTS WATER RESOURCES AUTHORITY,MA0103284,MWR205,SOMERVILLE,Initial-Ceased,EAST BNK MYSTIC 150 FT SW OF MDC LOCKS,,,MYSTIC RIVER,,,,,,,,2023-03-14 17:55:27.570,,2023.0 +06312e7f-2599-4cff-a2a0-01e9a2199bb3,22000696-1,2022-10-01 00:00:00,11:18,AM,Verified Data Report,CSO – UnTreated,CSO,CITY OF FALL RIVER,MA0100382,FAL004,FALL RIVER,,BIRCH ST,,,MOUNT HOPE BAY,,14534.0,1.04,0.0,35.0,,,2022-11-14 08:29:43.097,,2022.0 +c4baed03-9e19-43d0-8e3b-98c6d6ce1cdd,25014844,2025-09-26 00:54:32,09:50,,Verified Data Report,CSO – UnTreated,CSO,CITY OF NEW BEDFORD,MA0100781,NEW010,NEW BEDFORD,,BELLEVUE ST & RFB,,,CLARK COVE,,15493.0,1.43,0.0,20.0,,,2025-10-15 15:48:06.077,,2025.0 +e4e44737-d9d1-41ae-ab5e-a97af1516f70,23005763,2023-09-08 07:51:40,14:30,,Public Notification Report,CSO – UnTreated,CSO,CITY OF HAVERHILL,MA0101621,HAV021H,HAVERHILL,Initial-Ceased,WINTER AND HALE,,,LITTLE RIVER,,,,,,,,2023-09-11 08:00:39.613,,2023.0 +04a77987-b537-4769-af65-b1bfd692797d,25012463,2025-03-17 16:22:08,03:35,,Public Notification Report,CSO – UnTreated,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPR034,SPRINGFIELD,Initial-Ceased,MAIN ST.,,,CHICOPEE R.,,,,,,,,2025-03-17 13:16:36.210,,2025.0 +abf239dd-d060-4a50-9b19-58906beb413b,25014427,2025-08-17 01:02:08,17:00,,Verified Data Report,CSO – UnTreated,CSO,TOWN OF MONTAGUE,MA0100137,MON002,MONTAGUE,,OFF POWER ST ADJACENT TO POWER CANAL,,,POWER CANAL CONNECTICUT RIVER,,1100.0,0.31,0.0,15.0,,,2025-09-09 14:37:23.887,,2025.0 +ab574f25-e084-475a-bfdc-9c9ef4c29993,25014400,2025-09-06 13:06:52,15:25,,Public Notification Report,CSO – UnTreated,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPR008,SPRINGFIELD,Initial-Ceased,WASHBURN ST.,,,CONNECTICUT R.,,,,,,,,2025-09-08 09:30:50.650,,2025.0 +27655e85-91fd-4b3c-889e-3ac3523a2ca4,26015772,2026-03-16 00:00:00,19:50,,Public Notification Report,CSO – UnTreated,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPR042,SPRINGFIELD,Initial-Ceased,SPRINGFIELD WWTP BYPASS AT BONDI'S ISLAND,,,CONNECTICUT RIVER,,,,,,,,2026-03-17 09:51:16.400,,2026.0 +ee03a013-b0b9-4cb6-b9d4-7258e645f607,24008644,2024-03-28 21:53:42,17:00,,Public Notification Report,CSO – UnTreated,CSO,LYNN WATER & SEWER COMMISSION,MA0100552,LYNN005,LYNN,Initial-Ongoing,180 LYNNWAY,,,LYNN HARBOR,,,,,,,,2024-03-28 21:58:44.403,,2024.0 diff --git a/docs/data/EEADP_drinkingWater_annual.csv b/docs/data/EEADP_drinkingWater_annual.csv index a83dc2a..e848227 100644 --- a/docs/data/EEADP_drinkingWater_annual.csv +++ b/docs/data/EEADP_drinkingWater_annual.csv @@ -167040,7 +167040,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,AMERICAN INSTITUTE FOR ECONOMIC RESEARCH,SECCON,F,2 2026,AMERICAN INSTITUTE FOR ECONOMIC RESEARCH,SECCON,R,2 2026,AMERICAN LEGION POST #266,SECCON,F,4 -2026,AMESBURY DPW WATER DIV.,CHLRTE,F,12 +2026,AMESBURY DPW WATER DIV.,CHLRTE,F,15 2026,AMESBURY DPW WATER DIV.,HAA5,F,24 2026,AMESBURY DPW WATER DIV.,INORG,F,13 2026,AMESBURY DPW WATER DIV.,PFAS,F,19 @@ -167499,13 +167499,13 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,CHASE CORPORATION,PFAS,F,19 2026,CHASE CORPORATION,SECCON,F,4 2026,CHASE CORPORATION,SECCON,R,4 -2026,CHASE CORPORATION,VOC,F,60 +2026,CHASE CORPORATION,VOC,F,120 2026,CHATHAM WATER DEPARTMENT,INORG,F,3 2026,CHATHAM WATER DEPARTMENT,NITRAT,F,1 2026,CHATHAM WATER DEPARTMENT,PFAS,F,76 2026,CHATHAM WATER DEPARTMENT,PFAS,R,38 2026,CHATHAM WATER DEPARTMENT,RADIO,F,3 -2026,CHATHAM WATER DEPARTMENT,SECCON,F,37 +2026,CHATHAM WATER DEPARTMENT,SECCON,F,39 2026,CHATHAM WATER DEPARTMENT,SOC,F,45 2026,CHATHAM WATER DEPARTMENT,SODIUM,F,3 2026,CHATHAM WATER DEPARTMENT,VOC,F,56 @@ -167677,11 +167677,13 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,DARTMOUTH WATER DIVISION,SECCON,F,3 2026,DARTMOUTH WATER DIVISION,THM,F,20 2026,DARTMOUTH WATER DIVISION,VOC,F,177 +2026,DCR CLARKSBURG STATE FOREST,SECCON,F,2 +2026,DCR CLARKSBURG STATE FOREST,SECCON,R,2 2026,DCR FREETOWN STATE FOREST,SECCON,F,1 2026,DCR NOTCH VISITORS CENTER,NITRAT,F,1 2026,DCR NOTCH VISITORS CENTER,NITRIT,F,1 2026,DCR NOTCH VISITORS CENTER,SODIUM,F,1 -2026,DCR QUABBIN ADMINISTRATION BUILDING,VOC,F,56 +2026,DCR QUABBIN ADMINISTRATION BUILDING,VOC,F,118 2026,DCR WACHUSETT MT STATE RESERVATION,INORG,F,1 2026,DCR WACHUSETT MT STATE RESERVATION,INORG,R,1 2026,DCR WILLARD BROOK STATE FOREST,INORG,F,1 @@ -167901,6 +167903,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,FOXGLOVE APARTMENTS,INORG,R,8 2026,FOXGLOVE APARTMENTS,PFAS,F,19 2026,FOXGLOVE APARTMENTS,VOC,F,62 +2026,FRANCESCOS ITALIAN RESTAURANT,NITRIT,F,1 2026,FRANKLIN WATER DEPARTMENT,HAA5,F,24 2026,FRANKLIN WATER DEPARTMENT,NITRAT,F,4 2026,FRANKLIN WATER DEPARTMENT,NITRAT,R,2 @@ -167933,9 +167936,9 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,GALE BROOK SCHOOL,VOC,F,55 2026,GARDNER WATER DEPARTMENT,HAA5,F,24 2026,GARDNER WATER DEPARTMENT,INORG,F,13 -2026,GARDNER WATER DEPARTMENT,NITRAT,F,74 -2026,GARDNER WATER DEPARTMENT,SECCON,F,124 -2026,GARDNER WATER DEPARTMENT,SODIUM,F,4 +2026,GARDNER WATER DEPARTMENT,NITRAT,F,82 +2026,GARDNER WATER DEPARTMENT,SECCON,F,138 +2026,GARDNER WATER DEPARTMENT,SODIUM,F,5 2026,GARDNER WATER DEPARTMENT,THM,F,20 2026,GARDNER WATER DEPARTMENT,TOC,F,1 2026,GARDNER WATER DEPARTMENT,TOC,R,1 @@ -168126,12 +168129,14 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,HOLMES PARK WATER DISTRICT,HAA5,F,6 2026,HOLMES PARK WATER DISTRICT,THM,F,5 2026,HOLY CROSS CONTEMPLATIVE CENTER,INORG,F,1 +2026,HOLY CROSS CONTEMPLATIVE CENTER,RADIO,F,1 +2026,HOLY CROSS CONTEMPLATIVE CENTER,RADIO,R,4 2026,HOLY VIRGIN MARY SPIRITUAL VINEYARD,VOC,F,60 2026,HOLY VIRGIN MARY SPIRITUAL VINEYARD,VOC,R,120 -2026,HOLYOKE WATER WORKS,HAA5,F,24 +2026,HOLYOKE WATER WORKS,HAA5,F,48 2026,HOLYOKE WATER WORKS,PFAS,F,38 2026,HOLYOKE WATER WORKS,SOC,F,180 -2026,HOLYOKE WATER WORKS,THM,F,20 +2026,HOLYOKE WATER WORKS,THM,F,40 2026,HOPEDALE WATER DEPARTMENT,HAA5,F,12 2026,HOPEDALE WATER DEPARTMENT,PFAS,F,19 2026,HOPEDALE WATER DEPARTMENT,SECCON,F,2 @@ -168245,7 +168250,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,"KARL STORZ ENDOVISION, INC.",NITRAT,R,2 2026,"KARL STORZ ENDOVISION, INC.",PFAS,F,38 2026,"KARL STORZ ENDOVISION, INC.",PFAS,R,38 -2026,"KARL STORZ ENDOVISION, INC.",SECCON,F,7 +2026,"KARL STORZ ENDOVISION, INC.",SECCON,F,8 2026,"KARL STORZ ENDOVISION, INC.",SECCON,R,4 2026,"KARL STORZ ENDOVISION, INC.",VOC,F,60 2026,"KARL STORZ ENDOVISION, INC.",VOC,R,120 @@ -168448,6 +168453,9 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,MARSHFIELD WATER DEPARTMENT,NITRIT,F,13 2026,MARSHFIELD WATER DEPARTMENT,PFAS,F,133 2026,MARSHFIELD WATER DEPARTMENT,VOC,F,767 +2026,MASAC PLYMOUTH,NITRAT,F,2 +2026,MASAC PLYMOUTH,NITRIT,F,2 +2026,MASAC PLYMOUTH,SECCON,F,2 2026,MASHPEE WATER DISTRICT,NITRAT,F,6 2026,MASHPEE WATER DISTRICT,NITRIT,F,6 2026,MASHPEE WATER DISTRICT,PCE,F,11 @@ -168600,6 +168608,8 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,MOBIL GAS LANCASTER,INORG,R,1 2026,MOBIL GAS LANCASTER,SECCON,F,2 2026,MOBIL GAS LANCASTER,SECCON,R,2 +2026,MOBY DICKS RESTAURANT,NITRAT,F,1 +2026,MOBY DICKS RESTAURANT,SECCON,F,1 2026,MOHAWK PARK,NITRAT,F,1 2026,MOHAWK PARK,NITRIT,F,1 2026,MONROE WATER DISTRICT,HAA5,F,6 @@ -169023,7 +169033,8 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,ROYALSTON COMMUNITY SCHOOL,SECCON,F,14 2026,ROYALSTON COMMUNITY SCHOOL,SECCON,R,2 2026,RUPP REALTY TRUST,PFAS,F,38 -2026,RUPP REALTY TRUST,SECCON,F,2 +2026,RUPP REALTY TRUST,SECCON,F,4 +2026,RUSSELL WATER DEPT,VOC,F,56 2026,RUTLAND SPORTSMANS CLUB,SECCON,F,2 2026,RUTLAND WATER DEPARTMENT,HAA5,F,12 2026,RUTLAND WATER DEPARTMENT,PCE,F,3 @@ -169144,6 +169155,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,SOUTH ROYALSTON IMPROVEMENT CORP,VOC,F,64 2026,SOUTHAMPTON WATER DEPT,SECCON,F,5 2026,SOUTHAMPTON WATER DEPT,VOC,F,56 +2026,SOUTHBOROUGH DPW WATER DIVISION (MWRA),VOC,F,192 2026,SOUTHBRIDGE TOOL AND MANUFACTURING,NITRAT,F,1 2026,SOUTHBRIDGE TOOL AND MANUFACTURING,RADIO,F,1 2026,SOUTHBRIDGE TOOL AND MANUFACTURING,RADIO,R,1 @@ -169204,7 +169216,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,STILES AND HART BRICK COMPANY,SECCON,F,2 2026,STILES AND HART BRICK COMPANY,VOC,F,112 2026,STOCKBRIDGE WATER DEPT,HAA5,F,6 -2026,STOCKBRIDGE WATER DEPT,INORG,F,1 +2026,STOCKBRIDGE WATER DEPT,INORG,F,2 2026,STOCKBRIDGE WATER DEPT,THM,F,5 2026,STONES THROW CONDOS,PFAS,F,19 2026,STONES THROW CONDOS,SECCON,F,1 @@ -169536,7 +169548,7 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,WAYLAND WATER DEPARTMENT,NITRAT,F,4 2026,WAYLAND WATER DEPARTMENT,NITRAT,R,6 2026,WAYLAND WATER DEPARTMENT,NITRIT,F,3 -2026,WAYLAND WATER DEPARTMENT,PFAS,F,190 +2026,WAYLAND WATER DEPARTMENT,PFAS,F,209 2026,WAYLAND WATER DEPARTMENT,PFAS,R,399 2026,WAYLAND WATER DEPARTMENT,SECCON,F,1 2026,WAYLAND WATER DEPARTMENT,SECCON,R,3 @@ -169649,7 +169661,8 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result 2026,WESTPORT HARBOR WATER ASSOCIATION INC,PFAS,F,19 2026,WESTPORT SCHOOL ADMINISTRATION,PFAS,F,19 2026,WESTPORT SCHOOLS COMPLEX,PFAS,F,19 -2026,WESTPORT SCHOOLS COMPLEX,SECCON,F,1 +2026,WESTPORT SCHOOLS COMPLEX,SECCON,F,2 +2026,WESTPORT SCHOOLS COMPLEX,VOC,F,55 2026,WEYMOUTH WATER DEPARTMENT,HAA5,F,48 2026,WEYMOUTH WATER DEPARTMENT,INORG,F,6 2026,WEYMOUTH WATER DEPARTMENT,THM,F,40 diff --git a/docs/data/EEADP_drinkingWater_annual_sample.csv b/docs/data/EEADP_drinkingWater_annual_sample.csv index f839cab..c7fc93c 100644 --- a/docs/data/EEADP_drinkingWater_annual_sample.csv +++ b/docs/data/EEADP_drinkingWater_annual_sample.csv @@ -1,11 +1,11 @@ Year,PWSName,ContaminantGroup,RaworFinished,Result -2015,ROCHESTER GOLF CLUB,NITRAT,F,1 -2002,LENOX DPW WATER DIVISION,NITRAT,F,1 -2010,CHARLEMONT 4FAMILY STORE,SODIUM,F,1 -2025,FIVE BRIDGE INN,NITRAT,F,1 -2003,ORLEANS/EASTHAM ELKS LODGE,NITRAT,F,1 -2002,THE HOME FOR LITTLE WANDERERS,NITRAT,F,1 -2024,STOW SHOPPING CENTER,SECCON,R,4 -2008,FRANCESCOS ITALIAN RESTAURANT,NITRIT,F,1 -2011,WEST TISBURY TOWN HALL,NITRAT,F,1 -2026,TURNERS FALLS WATER DEPT,SECCON,F,1 +2024,THE NEW TESTAMENT CHURCH,INORG,F,1 +2015,STOW LOWER VILLAGE/ BEEF AND ALE,NITRAT,F,1 +1995,DEM SAVOY MT ST FOREST SOUTH POND CAMP,NITRAT,F,1 +2023,NEEDHAM WATER DEPT,INORG,F,1 +1994,INSIGHT MEDITATION SOCIETY,NITRIT,F,1 +2017,HAMPSHIRE REGIONAL HIGH SCHOOL,SECCON,F,2 +2015,KING PHILLIP RESTAURANT,NITRAT,F,1 +2025,DICKYS CLAM SHACK,INORG,F,5 +2023,LAWRENCE WATER WORKS,SECCON,F,1 +2026,CARRIAGE HOUSE CONDOMINIUM,PFAS,F,19 diff --git a/docs/data/EEADP_drinkingWater_sample.csv b/docs/data/EEADP_drinkingWater_sample.csv index 5d7e61b..8457f7d 100644 --- a/docs/data/EEADP_drinkingWater_sample.csv +++ b/docs/data/EEADP_drinkingWater_sample.csv @@ -1,11 +1,11 @@ DefContamLimitWithUnits,ResultWithUnit,ResultQualifierDescription,ReportingLimit,Id,PWSId,PWSName,Town,Class,ContaminantGroup,ChemicalName,CollectedDate,RaworFinished,Result,LocationName,SampleLocCode,LowerDetectLimit,AnalMeasQualif,AnalMeasQualifDesc,Rdl,Method,DetectionLimit,DefContamLimit,DefContamLimituom,RequiredDetectionLimit,LabRequiredDetectionLimit -,ND,,0.5000 UG/L,578706,2226011,PINEWOOD ON THE GREEN CONDOS,OXFORD,COM,VOC,"1,1-DICHLOROETHANE",2023-08-14,F,ND,AFTER TREATMENT (02G/03G),MULT,UG/L,,,0.5,EPA 524.2,0.5,,,0.5,0.5000 UG/L -,ND,,Not Recorded,3797056,4018000,TOWN OF AVON,AVON,COM,SOC,ALDICARB SULFOXIDE,2004-06-10,F,ND,MEMORIAL GP WELL # 1,10003,UG/L,,,,EPA 531.1,4.4,,,4.4,4.4000 UG/L -20 NG/L,ND,,1 NG/L,3660128,3128000,HAVERHILL WATER DEPT,HAVERHILL,COM,PFAS,PERFLUORODECANOIC ACID - PFDA,2026-01-04,F,ND,"WTP FINISHED (1S,3S,5S,7S)",10432,NG/L,,,1.0,EPA 537.1,0.061,20.0,NG/L,2.0,0.0610 NG/L -5 UG/L,ND,,0.5000 UG/L,3623878,1283012,WHEATLEIGH INN,STOCKBRIDGE,NC,VOC,PARA-DICHLOROBENZENE,2023-10-03,F,ND,POINT OF ENTRY POST TREATMENT,10000,UG/L,,,0.5,EPA 524.2,0.1,5.0,UG/L,0.5,0.1000 UG/L -,ND,,Not Recorded,6206604,1283017,HERON POND AT STOCKBRIDGE,STOCKBRIDGE,COM,VOC,BROMOCHLOROMETHANE,2015-07-30,F,ND,POINT OF ENTRY POST TREATMENT,10005,UG/L,,,,EPA 524.2,0.5,,,0.5,0.5000 UG/L -,0.0596 MG/L,,Not Recorded,1136905,1024013,COLD SPRING COUNTRY CLUB,BELCHERTOWN,NTNC,SECCON,MANGANESE,2017-04-20,F,0.0596,POINT OF ENTRY POST TREATMENT,10001,MG/L,,,,EPA 200.7,0.004,,,0.05,0.0040 MG/L -10 MG/L,2.02 MG/L,,Not Recorded,5552594,2037013,APPLEWOOD COMMUNITY CORPORATION,BOXBOROUGH,COM,NITRAT,NITRATE,2005-05-09,F,2.02,WELL #2 - FINISHED ENTRY POINT,02G,MG/L,,,,SM 4500-NO3-F,0.05,10.0,MG/L,1.0,0.0500 MG/L -,1.58 UG/L,,1 UG/L,1932891,3229000,PEABODY WATER DEPT.,PEABODY,COM,HAA5,MONOCHLOROACETIC ACID,2023-05-17,F,1.58,3 CENTENNIAL DRIVE,10302,UG/L,,,1.0,EPA 552.3,1.0,,,5.0,1.0000 UG/L -0.2000 UG/L,ND,,Not Recorded,1922903,3330019,HAYSTACK ESTATES,WESTFORD,COM,SOC,DIBROMOCHLOROPROPANE,2009-04-23,F,ND,TREATED WATER: WELL #1 & #2,MULT,UG/L,,,,EPA 504.1,0.02,0.2,UG/L,0.02,0.0200 UG/L -2 UG/L,ND,,Not Recorded,2617422,4001000,ABINGTON/ROCKLAND JOINT WTR. WORKS,ROCKLAND,COM,SOC,CHLORDANE,2003-12-15,F,ND,"MYERS AVE.WELLS MULTIPLE 01G,02G,03G,04G",10005,UG/L,,,,EPA 505,0.2,2.0,UG/L,0.2,0.2000 UG/L +10 MG/L,0.073 MG/L,,Not Recorded,655471,6000000,MWRA,BOSTON,COM,NITRAT,NITRATE,2020-08-06,F,0.073,"FRAMINGHAM - 1055 WORCESTER RD, FRAMINGHAM FIRE STATION",10032,MG/L,,,,EPA 353.2,0.005,10.0,MG/L,1.0,0.0050 MG/L +,ND,,Not Recorded,2937991,4351000,YARMOUTH WATER DEPARTMENT,YARMOUTH,COM,SOC,ALDICARB SULFONE,2018-06-07,F,ND,WELL 18 AND 19,10029,UG/L,,,,EPA 531.2,0.8,,,4.4,0.8000 UG/L +80 UG/L,52.9 UG/L,,0.5000 UG/L,196755,1061000,CHICOPEE WATER DEPT (MWRA),CHICOPEE,COM,THM,TOTAL TRIHALOMETHANES,2024-06-26,F,52.9,SUNOCO A-PLUS 810 MEADOW STREET,032,UG/L,,,0.5,EPA 524.2,0.0999,80.0,UG/L,1.0,0.0999 UG/L +,ND,,Not Recorded,1077404,4126000,HARWICH WATER DEPARTMENT,HARWICH,COM,VOC,BROMOCHLOROMETHANE,2019-08-15,R,ND,MAIN STATION WELL 3,11029,UG/L,,,,EPA 524.2,0.5,,,0.5,0.5000 UG/L +5 UG/L,ND,,0.5000 UG/L,5395301,2037017,1414 MASS AVE BOXBOROUGH,BOXBOROUGH,NTNC,VOC,BENZENE,2025-05-19,R,ND,RAW WATER: WELL #2,RW-02G,UG/L,,,0.5,EPA 524.2,0.12,5.0,UG/L,0.5,0.1200 UG/L +1000 UG/L,ND,,Not Recorded,484813,1015000,ATHOL DPW WATER DIVISION,ATHOL,COM,VOC,TOLUENE,2015-04-21,R,ND,SOURCE - PRE-TREATMENT,10004,UG/L,,,,EPA 524.2,0.5,1000.0,UG/L,0.5,0.5000 UG/L +10 MG/L,0.0354 MG/L,,0.0050 MG/L,3147681,3229000,PEABODY WATER DEPT.,PEABODY,COM,NITRAT,NITRATE,2025-09-22,F,0.0354,117 NEWBURY STREET,PE 23,MG/L,,,0.005,EPA 353.2,0.00391,10.0,MG/L,1.0,0.0039 MG/L +10 MG/L,ND,,Not Recorded,6002101,2294000,TEMPLETON MUNIC. LIGHT AND WATER PLANT,TEMPLETON,COM,NITRAT,NITRATE,2012-04-10,F,ND,FINISHED: SAWYER STREET WELL,06G,MG/L,,,,EPA 300.0,0.5,10.0,MG/L,1.0,0.5000 MG/L +,ND,,Not Recorded,3054094,2286029,WEDGEWOOD PINES COUNTRY CLUB,STOW,NC,VOC,"1,1,1,2-TETRACHLOROETHANE",2017-09-19,F,ND,WELL #1,01G,UG/L,,,,EPA 524.2,0.5,,,0.5,0.5000 UG/L +,ND,,Not Recorded,5337001,4076000,DIGHTON WATER DISTRICT,DIGHTON,COM,VOC,P-ISOPROPYLTOLUENE,2016-02-17,F,ND,END DATE 8/13/24,10008,UG/L,,,,EPA 524.2,0.5,,,0.5,0.5000 UG/L diff --git a/docs/data/EEADP_enforcement.csv b/docs/data/EEADP_enforcement.csv index 692f3e8..1964625 100644 --- a/docs/data/EEADP_enforcement.csv +++ b/docs/data/EEADP_enforcement.csv @@ -55179,10 +55179,15 @@ Id,Town,Program,EnforcementType,PenaltyAssessed,FacilityId,FacilityName,Enforcem 3998156,WAREHAM,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,414814,GULF MART,2026-04-15 3998218,NORTON,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,2262.0,558847,SOUTH SHORE MILLWORK,2026-04-08 3997359,MONTAGUE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,160956,MONTAGUE MACHINE CO,2026-04-16 +3997412,WILLIAMSTOWN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,175343,A&A MART,2026-05-13 3999059,ATTLEBORO,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,372409,NGM SERVICES INC,2026-04-21 3999061,DRACUT,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,174419,DRACUT AUTO CLINIC CITGO,2026-04-21 3999067,NORTH ATTLEBOROUGH,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,172787,NORTH ATTLEBORO WWTF,2026-04-21 3999069,BOSTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,417548,G&D AUTO CLINIC,2026-04-21 +3999177,HAVERHILL,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,340342,BROCO OIL INC,2026-04-24 +3999180,,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,664049,REICHERT & SONS FUEL OIL,2026-04-24 +3999182,CHICOPEE,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,393828,CENTRAL OIL,2026-04-24 +3999230,CARVER,WATER SUPPLY/DRINKING WATER,Unilateral Administrative Order,0.0,555957,THE BERRY GUYS,2026-04-24 3999360,LYNN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,269563,PETROIL MARKET,2026-04-21 3999362,MEDFORD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,317337,SUPER PETROLEUM,2026-04-21 3999365,CANTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,322591,SHELL 77,2026-04-21 @@ -55200,17 +55205,44 @@ Id,Town,Program,EnforcementType,PenaltyAssessed,FacilityId,FacilityName,Enforcem 3999397,BOSTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,522595,SUFFOLK COUNTY SHERIFF,2026-04-21 3999453,ANDOVER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673745,HAZARDOUS PRO LLC,2026-04-16 3999456,NEW BEDFORD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673747,I.D.G. ENVIRONMENTAL SERVICES LLC,2026-04-16 -3999177,HAVERHILL,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,340342,BROCO OIL INC,2026-04-24 -3999180,,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,664049,REICHERT & SONS FUEL OIL,2026-04-24 -3999182,CHICOPEE,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,393828,CENTRAL OIL,2026-04-24 -3999230,CARVER,WATER SUPPLY/DRINKING WATER,Unilateral Administrative Order,0.0,555957,THE BERRY GUYS,2026-04-24 +3999578,CHICOPEE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673763,BLUE PARK MANAGEMENT LLC,2026-04-22 +3999594,DRACUT,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,174419,DRACUT AUTO CLINIC CITGO,2026-04-21 +3999609,RAYNHAM,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,412706,ROYAL FUEL,2026-04-21 +3999611,NORTHAMPTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,329997,KING STREET CONVENIENCE STORE,2026-04-21 +3999613,MALDEN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,507541,HOLY CROSS CEMETERY,2026-04-21 +3999616,BOSTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,158025,HARBOR FUELS,2026-04-21 +3999618,WALTHAM,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,432621,NEW WORLD GAS & VARIETY,2026-04-21 +3999620,QUINCY,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,420126,BLUE HILL GAS,2026-04-21 +3999622,PLYMOUTH,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,388701,DEPT OF CORRECTION MCI PLYMOUTH,2026-04-21 +3999625,BOSTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,166405,SANTANDER BANK NA,2026-04-21 +3999627,WINTHROP,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,209315,CRYSTAL COVE MARINA,2026-04-21 +3999631,GILL,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,406343,FM KUZMESKUS INC,2026-04-21 +3999633,WORCESTER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,395035,PLEASANT STREET GULF,2026-04-21 +3999638,EDGARTOWN,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,507147,KATAMA AIRFIELD,2026-04-21 +3999640,SAUGUS,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,168639,ANGELOS,2026-04-21 +3999642,BROCKTON,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,392866,KWIK FUELS,2026-04-21 +3999644,PEABODY,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,360134,ANTOINES SERVICE,2026-04-21 +3999647,NEW BEDFORD,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,395855,COUNTY STREET MOBIL INC,2026-04-21 +3999649,SPRINGFIELD,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,175181,DAILY MART,2026-04-21 +3999651,EVERETT,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,372860,AUTO TECH PRO INC,2026-04-21 +3999655,SOMERVILLE,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,168768,PCJ AUTO SERVICE INC,2026-04-21 +3999657,MEDFIELD,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,517564,GULF RESOURCES INC DBA MEDFIELD COMMONS,2026-04-21 +3999659,REVERE,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,305827,POINT OF PINES YACHT CLUB INC,2026-04-21 +3999661,RUTLAND,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,175156,SAVEWAY CONVENIENCE,2026-04-21 +3999663,BARNSTABLE,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,401038,NORTH STREET AUTOMOTIVE INC,2026-04-21 +3999665,SOUTHBRIDGE,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,508404,LEBLANC OIL LLC,2026-04-21 +3999667,NATICK,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,223383,146 PETROLEUM,2026-04-21 +3999669,TAUNTON,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,507139,DANA STREET INC,2026-04-21 +3999671,PEABODY,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,360134,ANTOINES SERVICE,2026-04-21 +3999675,WATERTOWN,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,223427,MAIN STREET MOBILE EXXON,2026-04-21 +3999677,NORTHBOROUGH,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,372088,NORTHBORO CENTER GASOLINE INC,2026-04-21 +3999679,NORTHBRIDGE,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,396523,ULTRAMART CONVENIENCE,2026-04-21 4000169,REVERE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,618802,"EZ DISPOSAL SERVICE, INC.",2026-04-29 4000178,BROCKTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,162945,CROWN UNIFORM AND LINEN SERVICE,2026-04-29 4000181,FALMOUTH,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,163701,SEACREST BEACH HOTEL,2026-04-29 4000267,AYER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,540078,VULCANFORMS INC,2026-04-29 4000644,SPRINGFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,130246,APMAR USA INC,2026-04-30 4000742,WALPOLE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,312906,1A AUTO CLINIC,2026-04-29 -4002334,ACUSHNET,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,,6191,ACUSHNET MANUFACTURED HOMES,2026-04-30 4000843,WEST SPRINGFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,149149,AGRI MARK INC,2026-05-01 4001553,CARLISLE,WATER SUPPLY/DRINKING WATER,Unilateral Administrative Order,0.0,333202,GLEASON PUBLIC LIBRARY,2026-05-01 4001582,,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673605,"C&L AM, LLC",2026-05-06 @@ -55221,14 +55253,15 @@ Id,Town,Program,EnforcementType,PenaltyAssessed,FacilityId,FacilityName,Enforcem 4001656,PEABODY,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,131114,ROUSSELOT PEABODY INC,2026-05-06 4001659,WOBURN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,576415,"TIGHE WAREHOUSING & DISTRIBUTION, INC.",2026-05-06 4001661,ABINGTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,474997,TROUPE WASTE SERVICES INC,2026-05-06 +4002146,SCITUATE,WATER SUPPLY/DRINKING WATER,Administrative Consent Order With Penalty,13220.0,7295,SCITUATE WATER DIVISION,2026-05-08 +4002334,ACUSHNET,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,,6191,ACUSHNET MANUFACTURED HOMES,2026-04-30 4003040,SOUTHWICK,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,633129,WGI 2,2026-05-06 4003051,HOLYOKE,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,13645.0,172610,HOLYOKE LANDFILL,2026-05-01 -4003376,NORTH ANDOVER,REGULATED ACTIVITY(S),Administrative Consent Order No Penalty,,589569,6K INC,2026-05-05 -4003651,WAKEFIELD,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,23573.0,543136,NATGUN,2026-05-07 -3997412,WILLIAMSTOWN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,175343,A&A MART,2026-05-13 -4002146,SCITUATE,WATER SUPPLY/DRINKING WATER,Administrative Consent Order With Penalty,13220.0,7295,SCITUATE WATER DIVISION,2026-05-08 4003069,LANCASTER,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,0.0,6005,LANCASTER WATER DEPARTMENT,2026-05-11 +4003099,ATTLEBORO,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,424692,EMPIRE PROTOTYPE DEVELOPMENT INC,2026-04-29 4003354,ASHLAND,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,42993.0,130141,NYACOL PRODUCTS INC,2026-05-11 +4003376,NORTH ANDOVER,REGULATED ACTIVITY(S),Administrative Consent Order No Penalty,,589569,6K INC,2026-05-05 +4003651,WAKEFIELD,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,23573.0,543136,NATGUN,2026-05-07 4003721,EASTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,162978,STONEHILL COLLEGE,2026-05-13 4003723,FALL RIVER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,668502,ICE CUBE COLD STORAGE,2026-05-13 4003769,BILLERICA,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673693,BOYD CORPORATION INC,2026-05-13 @@ -55239,15 +55272,99 @@ Id,Town,Program,EnforcementType,PenaltyAssessed,FacilityId,FacilityName,Enforcem 4004158,SALEM,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,570711,KEOLIS COMMUTER SERVICES,2026-05-13 4004160,DANVERS,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,576424,SAVERS 1139,2026-05-13 4004162,WESTBOROUGH,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673792,WASTE MANAGEMENT OF MASSACHUSETTS,2026-05-13 +4004502,WEYMOUTH,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,,534035,SOUTHFIELD REDEVELOPEMENT AUTHORITY,2026-05-15 4004565,AMESBURY,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,674053,APEX ABATEMENT AND DEMOLITION LCC,2026-05-14 4004622,WAYLAND,WATER SUPPLY/DRINKING WATER,Unilateral Administrative Order,0.0,6176,WAYLAND WATER DEPARTMENT,2026-05-13 -4004502,WEYMOUTH,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,,534035,SOUTHFIELD REDEVELOPEMENT AUTHORITY,2026-05-15 4005116,UXBRIDGE,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,0.0,6453,GIA RESTAURANT,2026-05-20 4005172,MANSFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,600490,NEXTPHASE MEDICAL DEVICES MA LLC,2026-05-20 4005325,QUINCY,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,513382,NATIONAL FIRE PROTECTION ASSOCIATION,2026-05-20 4005327,AMESBURY,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,343658,AMESBURY MOBIL,2026-05-20 4005329,METHUEN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,434094,Z & D AUTO REPAIR,2026-05-20 4005612,FITCHBURG,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,,5986,FITCHBURG DPW DIVISION OF WATER SUPPLY,2026-05-22 +4005627,,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,1720.0,458781,TRADEBE TRANSPORTATION LLC,2026-05-05 +4005645,ATTLEBORO,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,364268,STORM DUDS RAINGEAR,2026-05-07 +4006181,MANSFIELD,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,1150.0,131052,FUTURE FOAM,2026-05-26 +4006195,PLYMPTON,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,920.0,463229,SYSCO BOSTON LLC,2026-05-26 4006230,WEST SPRINGFIELD,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,1000.0,371279,HAMPDEN GAS MART INC,2026-05-21 4006247,SOUTHWICK,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,673784,EASY SOLUTIONS LLC,2026-05-21 4006252,PITTSFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,466714,BARILE ENVIRONMENTAL INC,2026-05-20 +4006293,RANDOLPH,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,161703,FLEXCON INDUSTRIES,2026-05-26 +4006342,SHEFFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,131189,PLASKOLITE MASSACHUSETTS LLC,2026-05-27 +4006346,WEST SPRINGFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,131229,CYALUME TECHNOLOGIES INC,2026-05-27 +4006496,,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,670389,PRESTIGE ABATEMENT & CONSTRUCTION LLC,2026-05-28 +4006498,FRANKLIN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,614092,BANNER ENVIRONMENTAL SERVICES INC,2026-05-28 +4006504,AMESBURY,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,415268,RICHDALE CONVENIENCE STORES,2026-05-26 +4006507,LAWRENCE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,393002,PIT STOP GAS,2026-05-26 +4006509,METHUEN,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,391546,SUPER PETROLEUM,2026-05-26 +4006511,DEERFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,175363,DEERFIELD CONVENIENCE,2026-05-26 +4006513,CHICOPEE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,174497,GALLAGHERS OLD FASHIONED SERVICE,2026-05-26 +4006516,CHICOPEE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,168348,CHICOPEE FOOD STOP 010,2026-05-26 +4006518,SPRINGFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,419735,CITGO GAS,2026-05-26 +4006520,GARDNER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,160279,GARDNER DPW,2026-05-26 +4006524,BROCKTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,377545,A ONE FUEL & FOOD,2026-05-26 +4006526,FITCHBURG,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,159302,JOHNNYS SUNOCO,2026-05-26 +4006528,SPRINGFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,298915,DB COMPANIES INC,2026-05-26 +4006530,DUDLEY,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,161539,SHEPHERD HILL REG HS,2026-05-26 +4006532,WORCESTER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,650853,WORCESTER PULLMAN STATION,2026-05-26 +4006544,MANSFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,401040,MANSFIELD GULF AND SERVICE,2026-05-26 +4006547,WESTPORT,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,376845,SUPREME GAS,2026-05-26 +4006550,SPRINGFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,223121,SPRINGFIELD CIRCLE K,2026-05-26 +4006553,BROCKTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,593987,COPELAND CHEVROLET,2026-05-26 +4006633,AUBURN,REGULATED ACTIVITY(S),Penalty Assessment Notice,97227.0,664773,AUBURN MOTEL,2026-05-27 +4006790,LUNENBURG,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,0.0,6015,LUNENBURG WATER DISTRICT,2026-05-29 +4006797,BOSTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,210263,CITGO,2026-05-26 +4006799,BOSTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,372535,PETRO PLUS SUPER STATION INC,2026-05-26 +4006804,BURLINGTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,293879,BURLINGTON TOWN OF,2026-05-26 +4006809,DENNIS,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,371972,SOUTH DENNIS MOBIL,2026-05-26 +4006811,SOMERSET,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,168942,WILBUR GAS & REPAIR,2026-05-26 +4006813,SHELBURNE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,160272,DAVENPORTS SERVICE STATION,2026-05-26 +4006815,CHICOPEE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,208718,PENSKE TRUCK LEASING CO LP,2026-05-26 +4006817,WESTFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,265333,AMG RETAIL I 561,2026-05-26 +4006819,SWAMPSCOTT,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,209482,GIBBS SERVICE STATION,2026-05-26 +4006822,BILLERICA,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,569660,HERB CHAMBERS PLANK STREET,2026-05-26 +4006824,EVERETT,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,168780,GLENDALE GAS & SERVICE INC,2026-05-26 +4006828,EVERETT,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,389772,FERRY STREET GAS & SERVICE,2026-05-26 +4006830,BILLERICA,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,159370,AMA TRANSPORTATION CO INC,2026-05-26 +4006833,MEDFORD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,497328,OAK GROVE CEMETERY,2026-05-26 +4006835,NEWTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,370406,NEWTONVILLE GAS AND REPAIR,2026-05-26 +4006837,READING,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,394898,6 ELEVEN VARIETY & GAS,2026-05-26 +4006839,QUINCY,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,377604,QUINCY GAS,2026-05-26 +4006841,WEYMOUTH,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,175053,AIDA SERVICE INC DBA EAST WEYMOUTH CITGO,2026-05-26 +4006843,BRIDGEWATER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,175431,PALMIERI ENTERPRISES INC,2026-05-26 +4006845,CARVER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,175459,TOMS AUTO,2026-05-26 +4006847,HALIFAX,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,362648,DAVIS AUTOMOTIVE CENTER INC,2026-05-26 +4006851,SCITUATE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,185699,MILL WHARF MARINA,2026-05-26 +4006853,FITCHBURG,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,174256,PATRIOT GAS AND CONVENIENCE,2026-05-26 +4006855,ORLEANS,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,415099,NAUSET MARINE EAST CORP,2026-05-26 +4006858,NANTUCKET,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,167235,NANTUCKET HIGH SCHOOL,2026-05-26 +4006861,HOLLISTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,509139,P COAN CORP,2026-05-25 +4006863,SPRINGFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,223191,H&M FOOD & FUEL,2026-05-26 +4006865,NORTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,583506,PENSKE TRUCK LEASING CO LP,2026-05-26 +4006913,SPRINGFIELD,REGULATED ACTIVITY(S),Administrative Consent Order No Penalty,,648160,HELENA KOS,2026-05-26 +4006916,BERNARDSTON,REGULATED ACTIVITY(S),Penalty Assessment Notice,2150.0,160832,FEED COMMODITIES INTERNATIONAL INC,2026-05-28 +4007100,GRANVILLE,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,444061,GRANVILLE CHEESE STORE INC,2026-05-26 +4007102,REVERE,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,432168,NOUR MARKET,2026-05-26 +4007104,SWANSEA,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,209166,COLUMBUS ENERGIES INC,2026-05-26 +4007106,BOSTON,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,223350,NIKITAS METRO AUTO SERVICE INC,2026-05-26 +4007108,BROCKTON,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,412121,HERITAGE GAS & MARKET,2026-05-26 +4007110,FALL RIVER,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,400664,SUPREME GAS,2026-05-26 +4007112,WEBSTER,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,500.0,508445,POINT BREEZE MARINA,2026-05-26 +4007114,ARLINGTON,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,330626,BROWNS AUTOMOTIVE SERVICES INC,2026-05-26 +4007120,SOUTHBRIDGE,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,508404,LEBLANC OIL LLC,2026-05-26 +4007123,BOSTON,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,156821,STEWARD CARNEY HOSPITAL INC DBA,2026-05-26 +4007127,CHARLTON,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,182551,KARL STORZ ENDOVISION INC,2026-05-26 +4007137,PLYMOUTH,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,653914,BRUCE GARRETT,2026-05-22 +4007159,MARLBOROUGH,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,168525,MARLBOROUGH FUEL & REPAIRS,2026-05-26 +4007161,FAIRHAVEN,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,168931,FAIRHAVEN GETTY,2026-05-26 +4007163,NEW BEDFORD,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,174336,CIDADES SERVICE STATION INC,2026-05-26 +4007165,STOW,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,313946,GREAT ROAD FUELS,2026-05-26 +4007167,SHREWSBURY,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,372092,SAMS MOBIL SERVICE CENTER,2026-05-26 +4007169,WESTBOROUGH,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,372105,MOBIL 1141,2026-05-26 +4007171,DIGHTON,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,397817,DIGHTON GULF EXPRESS,2026-05-26 +4007173,BOSTON,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,558185,AVIS BUDGET CONRAC QTA 1,2026-05-26 +4007175,ARLINGTON,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,330626,BROWNS AUTOMOTIVE SERVICES INC,2026-05-26 +4007180,SOUTHBOROUGH,REGULATED ACTIVITY(S),Reporting Penalty Assessment Notice,1000.0,364397,EAGLE LEASING CO,2026-05-26 +4007366,BOSTON,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,5000.0,613553,AEROGEL TECHNOLOGIES,2026-05-11 +4007393,BOSTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,674206,HERITAGE ON THE GARDEN,2026-06-02 +4007397,WORCESTER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,523137,COORSTEK WORCESTER,2026-06-02 +4007399,ORANGE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,674111,"G.L.M., INC.",2026-06-02 diff --git a/docs/data/EEADP_enforcement_sample.csv b/docs/data/EEADP_enforcement_sample.csv index 2e24eae..0865f31 100644 --- a/docs/data/EEADP_enforcement_sample.csv +++ b/docs/data/EEADP_enforcement_sample.csv @@ -1,11 +1,11 @@ Id,Town,Program,EnforcementType,PenaltyAssessed,FacilityId,FacilityName,EnforcementDate -2683380,SUTTON,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,,257116,DCR PURGATORY CHASM STATE RESERVATION,2014-09-22 -972552,WORCESTER,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,204918,LEONARD J LORUSSO,1996-04-18 -1231355,BOSTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,174070,COLT PRESS INC,1999-11-04 -1970973,ADAMS,REGULATED ACTIVITY(S),Unilateral Administrative Order,,161215,HOLLAND COMPANY INC,2007-03-14 -2990263,OXFORD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,384909,APG NEW ENGLAND OXFORD,2018-08-02 -3228044,HOPKINTON,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,0.0,6350,NEW ENGLAND LABORERS TRAINING ACADEMY,2021-01-26 -1688209,LEOMINSTER,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,13787.0,395468,BLAKE PROPERTY,2005-03-01 -3157534,LAWRENCE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,174443,SANCHEZ SUNOCO,2021-01-22 -1006236,WESTWOOD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,282537,DADE BEHRING INC,1996-08-16 -3088064,LUNENBURG,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,175004,ELECTRIC AVE SERVICE STATION,2019-11-21 +3255495,WAKEFIELD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,169768,WESTROCK CP LLC,2022-06-15 +2985998,CHARLTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,602728,LUNDGREN PROPERTY,2018-07-13 +3318532,HOLBROOK,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,322462,HOLBROOK GAS,2023-03-20 +3318510,ABINGTON,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,155406,CHRISTIE TRANSFER INC,2023-03-20 +3997484,STURBRIDGE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,660181,STURBRIDGE NOBLE LLC,2026-04-15 +1360404,TAUNTON,REGULATED ACTIVITY(S),Administrative Consent Order With Penalty,5000.0,163073,B AND J MANUFACTURING CORP,2001-07-13 +2514110,NEW BEDFORD,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,426415,SOUTH COAST ENDODONTICS,2012-10-19 +2384002,LANCASTER,WATER SUPPLY/DRINKING WATER,Notice Of Non-Compliance,,6005,LANCASTER WATER DEPARTMENT,2011-07-22 +3358588,CHICOPEE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,612564,CHICOPEE CITY OF,2022-09-09 +3159180,BARNSTABLE,REGULATED ACTIVITY(S),Notice Of Non-Compliance,,159659,MIDWAY GARAGE,2021-01-29 diff --git a/docs/data/EEADP_facility.csv b/docs/data/EEADP_facility.csv index bb21737..ffaf370 100644 --- a/docs/data/EEADP_facility.csv +++ b/docs/data/EEADP_facility.csv @@ -322,7 +322,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 6203,165 COMMERCE PARK RD,BREWSTER,PUBLIC WATER SUPPLY SYSTEM,BREWSTER WATER DEPARTMENT,WATER SUPPLY/DRINKING WATER,4041000,True 6204,25 SOUTH STREET,BRIDGEWATER,PUBLIC WATER SUPPLY SYSTEM,BRIDGEWATER WATER DEPARTMENT,WATER SUPPLY/DRINKING WATER,4042000,True 6205,"45 SCHOOL ST, CITY HALL, 3RD FLOOR, DPW",BROCKTON,PUBLIC WATER SUPPLY SYSTEM,BROCKTON WATER DEPARTMENT,WATER SUPPLY/DRINKING WATER,4044000,True -6206,3610 SOUTH MEADOW VLG,CARVER,PUBLIC WATER SUPPLY SYSTEM,SOUTH MEADOW VILLAGE,WATER SUPPLY/DRINKING WATER,4052001,True +6206,361 SOUTH MEADOW VLG,CARVER,PUBLIC WATER SUPPLY SYSTEM,SOUTH MEADOW VILLAGE,WATER SUPPLY/DRINKING WATER,4052001,True 6207,WAREHAM RD,CARVER,PUBLIC WATER SUPPLY SYSTEM,PINETREE VILLAGE,WATER SUPPLY/DRINKING WATER,4052025,True 6208,75 CRANBERRY RD,CARVER,PUBLIC WATER SUPPLY SYSTEM,CRANBERRY VILLAGE RESIDENTS ASSOCIATION,WATER SUPPLY/DRINKING WATER,4052026,True 6209,221 CROWELL RD,CHATHAM,PUBLIC WATER SUPPLY SYSTEM,CHATHAM WATER DEPARTMENT,WATER SUPPLY/DRINKING WATER,4055000,True @@ -381,7 +381,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 6280,WEST RD,WELLFLEET,PUBLIC WATER SUPPLY SYSTEM,MASSASOIT HILLS TRAILER PARK,WATER SUPPLY/DRINKING WATER,4318056,True 6281,PLEASANT POINT ROAD,WELLFLEET,PUBLIC WATER SUPPLY SYSTEM,PLEASANT WATER,WATER SUPPLY/DRINKING WATER,4318091,True 6282,29 CYR ST,WEST BRIDGEWATER,PUBLIC WATER SUPPLY SYSTEM,WEST BRIDGEWATER WATER DEPT,WATER SUPPLY/DRINKING WATER,4322000,True -6284,848 STATE ROAD,WESTPORT,PUBLIC WATER SUPPLY SYSTEM,MAYNARD STATE LLC,WATER SUPPLY/DRINKING WATER,4334078,True 6285,100 ESSEX ST,WHITMAN,PUBLIC WATER SUPPLY SYSTEM,WHITMAN WATER SYSTEM,WATER SUPPLY/DRINKING WATER,4338000,True 6286,360 TAUNTON STREET,WRENTHAM,PUBLIC WATER SUPPLY SYSTEM,WRENTHAM WATER DIVISION,WATER SUPPLY/DRINKING WATER,4350000,True 6288,99 BUCK ISLAND RD,YARMOUTH,PUBLIC WATER SUPPLY SYSTEM,YARMOUTH WATER DEPARTMENT,WATER SUPPLY/DRINKING WATER,4351000,True @@ -523,7 +522,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 6616,742 KEENE ST,DUXBURY,PUBLIC WATER SUPPLY SYSTEM,CAMP WING DUXBURY STOCKADE,WATER SUPPLY/DRINKING WATER,4082001,True 6618,4100 STATE HIGHWAY,EASTHAM,PUBLIC WATER SUPPLY SYSTEM,4100 HOLDINGS LLC,WATER SUPPLY/DRINKING WATER,4086001,True 6622,3800 STATE HIGHWAY,EASTHAM,PUBLIC WATER SUPPLY SYSTEM,SHERATON FOUR POINTS,WATER SUPPLY/DRINKING WATER,4086005,True -6634,5950 RTE 6 STATE HWY,EASTHAM,PUBLIC WATER SUPPLY SYSTEM,BLUE DOLPHIN INN,WATER SUPPLY/DRINKING WATER,4086018,True 6635,RTE 6 AT ORCHARD RD,EASTHAM,PUBLIC WATER SUPPLY SYSTEM,ARNOLDS RESTAURANT,WATER SUPPLY/DRINKING WATER,4086020,True 6638,RR1 BOX 146,EASTHAM,PUBLIC WATER SUPPLY SYSTEM,THE CRANBERRY COTTAGES,WATER SUPPLY/DRINKING WATER,4086025,True 6650,48 THEATRE DR,FALMOUTH,PUBLIC WATER SUPPLY SYSTEM,CAPE COD COUNTRY CLUB,WATER SUPPLY/DRINKING WATER,4096004,True @@ -610,7 +608,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 6818,70 MAIN STREET,WELLFLEET,PUBLIC WATER SUPPLY SYSTEM,THE COPPER SWAN,WATER SUPPLY/DRINKING WATER,4318073,True 6819,1631 STATE HWY,WELLFLEET,PUBLIC WATER SUPPLY SYSTEM,DRUMMER COVE COTTAGES,WATER SUPPLY/DRINKING WATER,4318074,True 6820,50 BRIAR LN,WELLFLEET,PUBLIC WATER SUPPLY SYSTEM,THE BOX LUNCH,WATER SUPPLY/DRINKING WATER,4318075,True -6821,15 LECOUNT HOLLOW RD,WELLFLEET,PUBLIC WATER SUPPLY SYSTEM,P.B. BOULANGERIE BISTRO,WATER SUPPLY/DRINKING WATER,4318077,True +6821,15 LECOUNT HOLLOW RD,WELLFLEET,PUBLIC WATER SUPPLY SYSTEM,CHEZ CHLOE BISTRO,WATER SUPPLY/DRINKING WATER,4318077,True 6823,3225 STATE HWY,WELLFLEET,PUBLIC WATER SUPPLY SYSTEM,MOBY DICKS RESTAURANT,WATER SUPPLY/DRINKING WATER,4318080,True 6824,1120 CAHOON HOLLOW RD,WELLFLEET,PUBLIC WATER SUPPLY SYSTEM,THE WELLFLEET BEACHCOMBER,WATER SUPPLY/DRINKING WATER,4318081,True 6825,RTE 6,TRURO,PUBLIC WATER SUPPLY SYSTEM,CCNS TRURO PILGRIM HEIGHTS,WATER SUPPLY/DRINKING WATER,4318082,True @@ -630,7 +628,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 6855,1133 AMERICAN LEGION HWY,WESTPORT,PUBLIC WATER SUPPLY SYSTEM,LEXI LUS PLACE,WATER SUPPLY/DRINKING WATER,4334030,True 6856,JOHN REED ROAD,WESTPORT,PUBLIC WATER SUPPLY SYSTEM,DCR HORSENECK BEACH STATE RESERVATION,WATER SUPPLY/DRINKING WATER,4334031,True 6857,JOHN REED ROAD,WESTPORT,PUBLIC WATER SUPPLY SYSTEM,DCR HORSENECK BEACH CAMPGROUND,WATER SUPPLY/DRINKING WATER,4334032,True -6860,719 STATE RD,WESTPORT,PUBLIC WATER SUPPLY SYSTEM,LICKETY SPLITS,WATER SUPPLY/DRINKING WATER,4334037,True 6862,140 CHARLOTTE WHITE ROAD EXT.,WESTPORT,PUBLIC WATER SUPPLY SYSTEM,"COMPTON CLAMBAKES, LLC",WATER SUPPLY/DRINKING WATER,4334042,True 6865,438 MAIN RD,WESTPORT,PUBLIC WATER SUPPLY SYSTEM,BITTERSWEET FARM INC,WATER SUPPLY/DRINKING WATER,4334065,True 6868,829 AM LEGION HWY,WESTPORT,PUBLIC WATER SUPPLY SYSTEM,WESTPORT LEGION LLC,WATER SUPPLY/DRINKING WATER,4334075,True @@ -1604,7 +1601,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 131282,34 KENDRICK ST,WRENTHAM,DEP REGULATED FACILITY,WRENTHAM STEEL PROD,REGULATED ACTIVITY(S),042058599,False 131283,867 MIDDLE RD,ACUSHNET,DEP REGULATED FACILITY,DW WHITE CONSTRUCTION INC,REGULATED ACTIVITY(S),042300001,True 131284,2359 PURCHASE ST,NEW BEDFORD,DEP REGULATED FACILITY,EXECUTIVE AUTO,REGULATED ACTIVITY(S),042533274,True -131285,347 DARTMOUTH ST,NEW BEDFORD,DEP REGULATED FACILITY,SAFE GUARD TRANSMISSIONS,REGULATED ACTIVITY(S),,True +131285,347 DARTMOUTH ST,NEW BEDFORD,DEP REGULATED FACILITY,MASTER AUTO SERVICES INC,REGULATED ACTIVITY(S),,True 131287,200 RIVERSIDE AVE,NEW BEDFORD,DEP REGULATED FACILITY,PRECIX,REGULATED ACTIVITY(S),133976048,False 131288,14 FOREST RD,ACTON,DEP REGULATED FACILITY,ACTON HIGHWAY DEPT,REGULATED ACTIVITY(S),,True 131291,162 ORNE ST,NORTH ATTLEBOROUGH,DEP REGULATED FACILITY,NORTH ATTLEBORO TAPS INC,REGULATED ACTIVITY(S),042430198,False @@ -3131,7 +3128,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 155317,105 COUNTY RD,IPSWICH,DEP REGULATED FACILITY,BRAKE AND CLUTCH INC,REGULATED ACTIVITY(S),,True 155320,37-39 NEWBURY ST,LAWRENCE,DEP REGULATED FACILITY,FUSCOS SERVICE STATION INC,REGULATED ACTIVITY(S),,True 155321,354 WATER ST,LAWRENCE,DEP REGULATED FACILITY,HODGSON SERVICE,REGULATED ACTIVITY(S),042433506,True -155323,665 HAVERHILL ST,LAWRENCE,DEP REGULATED FACILITY,LARRYS SERVICE,REGULATED ACTIVITY(S),042746651,True +155323,665 HAVERHILL ST,LAWRENCE,DEP REGULATED FACILITY,MASS AUTO SERVICE,REGULATED ACTIVITY(S),,True 155325,320 SOUTH BROADWAY,LAWRENCE,DEP REGULATED FACILITY,CUMBERLAND FARMS 2508,REGULATED ACTIVITY(S),042843586,True 155330,675 LENOX RD,PITTSFIELD,DEP REGULATED FACILITY,NORTHS SERVICES,REGULATED ACTIVITY(S),,True 155331,275 MASSACHUSETTS AVE,LEXINGTON,DEP REGULATED FACILITY,ARLEX OIL CORP,REGULATED ACTIVITY(S),041040678,True @@ -4946,7 +4943,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 163091,119 COVE ST,FALL RIVER,DEP REGULATED FACILITY,FR FLORIST SUPPLY C,REGULATED ACTIVITY(S),54383,True 163092,104 ANAWAN ST,FALL RIVER,DEP REGULATED FACILITY,SHANE LANDING LLC,REGULATED ACTIVITY(S),046334553,True 163095,207 POCASSET ST,FALL RIVER,DEP REGULATED FACILITY,HERALD NEWS,REGULATED ACTIVITY(S),841711503,True -163097,245 TRIPP ST,FALL RIVER,DEP REGULATED FACILITY,PREFERRED CONCRETE CORP,REGULATED ACTIVITY(S),043466455,True +163097,245 TRIPP ST,FALL RIVER,DEP REGULATED FACILITY,FALL RIVER READY MIX CONCRETE LLC,REGULATED ACTIVITY(S),043466455,True 163098,69 ALDEN ST,FALL RIVER,DEP REGULATED FACILITY,WAMPANOAG REALTY,REGULATED ACTIVITY(S),54397,True 163101,1550 PHINNEYS LN,BARNSTABLE,DEP REGULATED FACILITY,CAPE COD AGGREGATES CORP,REGULATED ACTIVITY(S),042739365,True 163102,396 GIFFORD ST,FALMOUTH,DEP REGULATED FACILITY,LAWRENCE LYNCH HMA CORP,REGULATED ACTIVITY(S),275299920,True @@ -7295,7 +7292,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 174417,33 STATE ST,BELCHERTOWN,DEP REGULATED FACILITY,SHELL,REGULATED ACTIVITY(S),,True 174418,293 CHELMSFORD ST,CHELMSFORD,DEP REGULATED FACILITY,GAS EXPRESS,REGULATED ACTIVITY(S),461080592,True 174419,500 NASHUA RD,DRACUT,DEP REGULATED FACILITY,DRACUT AUTO CLINIC CITGO,REGULATED ACTIVITY(S),,True -174420,341 STURBRIDGE RD,BRIMFIELD,DEP REGULATED FACILITY,MK FUEL INC,REGULATED ACTIVITY(S),,False +174420,341 STURBRIDGE RD,BRIMFIELD,DEP REGULATED FACILITY,MK FUEL INC,REGULATED ACTIVITY(S),,True 174422,206 NEWBURY ST,CHICOPEE,DEP REGULATED FACILITY,RACEWAYY,REGULATED ACTIVITY(S),000964471,True 174424,215 WATER ST,HAVERHILL,DEP REGULATED FACILITY,MIKES SUNOCO,REGULATED ACTIVITY(S),001528098,True 174427,332 SUFFIELD ST,AGAWAM,DEP REGULATED FACILITY,SHAMIM ENTERPRISES INC,REGULATED ACTIVITY(S),204932160,True @@ -7348,7 +7345,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 174524,30 WATER ST,WAKEFIELD,DEP REGULATED FACILITY,WATER STREET TEXACO,REGULATED ACTIVITY(S),,False 174525,425 CENTER ST,LUDLOW,DEP REGULATED FACILITY,NOURIA 1035,REGULATED ACTIVITY(S),813456314,True 174526,360 MIDDLESEX AVE,WILMINGTON,DEP REGULATED FACILITY,D&D CITGO,REGULATED ACTIVITY(S),,False -174529,27 PALMER RD,MONSON,DEP REGULATED FACILITY,NECG 628,REGULATED ACTIVITY(S),454353794,False +174529,27 PALMER RD,MONSON,DEP REGULATED FACILITY,FOOD STOP #628,REGULATED ACTIVITY(S),454353794,False 174532,2-4 WEST ST,READING,DEP REGULATED FACILITY,JOHN HANSON CORP,REGULATED ACTIVITY(S),,True 174533,140 SAMOSET ST,PLYMOUTH,DEP REGULATED FACILITY,RAPID REFILL 101,REGULATED ACTIVITY(S),,True 174534,72 KING ST,NORTHAMPTON,DEP REGULATED FACILITY,ERNIES GARAGE,REGULATED ACTIVITY(S),042422341,True @@ -7638,7 +7635,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 175145,333 EAST MAIN ST,SOUTHBRIDGE,DEP REGULATED FACILITY,EDWARDS SERVICE,REGULATED ACTIVITY(S),462074894,True 175152,27 GOSHEN RD,WILLIAMSBURG,DEP REGULATED FACILITY,BACONS PACKAGE STORE,REGULATED ACTIVITY(S),042640269,False 175156,249 MAIN ST,RUTLAND,DEP REGULATED FACILITY,SAVEWAY CONVENIENCE,REGULATED ACTIVITY(S),,True -175157,1100 PAGE BLVD,SPRINGFIELD,DEP REGULATED FACILITY,NECG 638,REGULATED ACTIVITY(S),454353794,True +175157,1100 PAGE BLVD,SPRINGFIELD,DEP REGULATED FACILITY,FOOD STOP #638,REGULATED ACTIVITY(S),454353794,True 175164,93 HAMILTON ST,SOUTHBRIDGE,DEP REGULATED FACILITY,FLOODS AUTOMOTIVE & TIRE CENTER INC,REGULATED ACTIVITY(S),042164088,True 175166,176 WORCESTER ST,SOUTHBRIDGE,DEP REGULATED FACILITY,SOUTHBRIDGE GAS & SERVICE,REGULATED ACTIVITY(S),043335099,True 175167,372 STATE RD,WHATELY,DEP REGULATED FACILITY,NOURIA 1069,REGULATED ACTIVITY(S),813456314,True @@ -8475,7 +8472,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 193835,341 WASHINGTON ST,NEWTON,DEP REGULATED FACILITY,G&N ONE HOUR CLEANER INC,REGULATED ACTIVITY(S),042759376,False 193836,179 BEAR HILL RD,WALTHAM,DEP REGULATED FACILITY,CFC INC,REGULATED ACTIVITY(S),,False 193964,156 OAK ST,BOSTON,CROSS CONNECTION,IVEX CORP,WATER SUPPLY/DRINKING WATER,18286,False -193968,30 CAPTAINS QUARTERS COURT,EASTHAM,PUBLIC WATER SUPPLY SYSTEM,CAPTAINS QUARTERS MOTEL AND CONF. CTR.,WATER SUPPLY/DRINKING WATER,4086046,True 193971,80 DEPOT RD,EASTHAM,PUBLIC WATER SUPPLY SYSTEM,GIBSON COTTAGES,WATER SUPPLY/DRINKING WATER,4086047,True 193973,43 LONGSTREET LN,EASTHAM,PUBLIC WATER SUPPLY SYSTEM,SEAMAN COTTAGES LLC,WATER SUPPLY/DRINKING WATER,4086048,True 204296,55 HAYDEN AVE,LEXINGTON,DEP REGULATED FACILITY,WR GRACE CO,REGULATED ACTIVITY(S),,False @@ -8931,7 +8927,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 209598,120 PLAIN ST,LOWELL,DEP REGULATED FACILITY,MAHONEYS OIL COMPANY INC,REGULATED ACTIVITY(S),042386424,True 209601,522 MAIN ST,WEYMOUTH,DEP REGULATED FACILITY,GETTY PETROLEUM MARKETING INC,REGULATED ACTIVITY(S),112232705,False 209607,627 NEWPORT AVE,QUINCY,DEP REGULATED FACILITY,QUINCY SERVICE CENTER,REGULATED ACTIVITY(S),043312077,True -209613,348-350 SALEM ST,MEDFORD,DEP REGULATED FACILITY,MEDFORD AUTO CLINIC,REGULATED ACTIVITY(S),043159961,True +209613,348-350 SALEM ST,MEDFORD,DEP REGULATED FACILITY,MEDFORD AUTO CLINIC,REGULATED ACTIVITY(S),,True 209625,37 KENOZA AVE,HAVERHILL,DEP REGULATED FACILITY,KENOZA GAS,REGULATED ACTIVITY(S),,True 209632,2 SOUTH AVE,NATICK,DEP REGULATED FACILITY,ABES AUTO REPAIR,REGULATED ACTIVITY(S),,True 209661,365 PLANTATION ST,WORCESTER,DEP REGULATED FACILITY,BIOTECH ONE,REGULATED ACTIVITY(S),043170910,True @@ -9318,6 +9314,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 223218,138 LAWRENCE ST,NORTHBOROUGH,DEP REGULATED FACILITY,MASSDOT HIGHWAY DIVISION 39,REGULATED ACTIVITY(S),223122,True 223225,570 SUMMER ST,BARRE,DEP REGULATED FACILITY,CONDOR CAPITAL CORP,REGULATED ACTIVITY(S),041842830,False 223227,232 EAST MAIN ST,EAST BROOKFIELD,DEP REGULATED FACILITY,SHERMAN OIL CO INC,REGULATED ACTIVITY(S),042307688,True +223229,141 MAIN ST,GRAFTON,DEP REGULATED FACILITY,DEORSEYS GARAGE,REGULATED ACTIVITY(S),,True 223231,164 VISCOLOID AVE,LEOMINSTER,DEP REGULATED FACILITY,MASSACHUSETTS ELECTRIC COMPANY,REGULATED ACTIVITY(S),041988940,True 223233,120 MASSACHUSETTS STATE HWY,FITCHBURG,DEP REGULATED FACILITY,AL PRIME ENERGY 128,REGULATED ACTIVITY(S),043113749,True 223237,73 MAIN ST,MEDWAY,DEP REGULATED FACILITY,AOUDE AUTO REPAIR,REGULATED ACTIVITY(S),043082241,True @@ -9824,7 +9821,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 251572,218 WORCESTER ST,NATICK,RELEASE,FORMER EXXON FACILTY,WASTE SITE CLEANUP,,True 251611,151 OLD COLONY AVE,BOSTON,RELEASE,HESS STATION 21517 FMR MERIT STATION,WASTE SITE CLEANUP,,True 251643,SURFSIDE SEWER STA,NANTUCKET,DEP REGULATED FACILITY,NANTUCKET DPW,REGULATED ACTIVITY(S),,True -251682,1 TECHNOLOGY PARK DR,WESTFORD,DEP REGULATED FACILITY,WESTFORD TECHNOLOGY PARK WWTF PHASE I,REGULATED ACTIVITY(S),,True +251682,1 TECHNOLOGY PARK DR,WESTFORD,DEP REGULATED FACILITY,WESTFORD TECHNOLOGY PARK,REGULATED ACTIVITY(S),,True 251705,455 EAST STATE ST,GRANBY,PUBLIC WATER SUPPLY SYSTEM,CINDYS DRIVE IN,WATER SUPPLY/DRINKING WATER,1111020,True 251707,77 WEST STATE ST,GRANBY,PUBLIC WATER SUPPLY SYSTEM,HALON PLAZA,WATER SUPPLY/DRINKING WATER,1111027,True 251709,74 PLEASANT ST,GRANBY,PUBLIC WATER SUPPLY SYSTEM,AMERICAN LEGION POST #266,WATER SUPPLY/DRINKING WATER,1111028,True @@ -10016,7 +10013,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 262080,792 TRUMAN HWY,BOSTON,DEP REGULATED FACILITY,MA0023,REGULATED ACTIVITY(S),,True 262095,HARVARD ST,CAMBRIDGE,DEP REGULATED FACILITY,CAMBRIDGE HOUSING AUTHORITY,REGULATED ACTIVITY(S),261964,True 262099,300 CANAL ST,LAWRENCE,DEP REGULATED FACILITY,"ROYAL POWDER COATING, INC.",REGULATED ACTIVITY(S),,False -262106,30 WEST STATE ST,GRANBY,DEP REGULATED FACILITY,NECG 624,REGULATED ACTIVITY(S),454353794,True +262106,30 WEST STATE ST,GRANBY,DEP REGULATED FACILITY,FOOD STOP #624,REGULATED ACTIVITY(S),454353794,True 262143,80 PROSPECT ST,MILFORD,DEP REGULATED FACILITY,MILFORD BP GETTY,REGULATED ACTIVITY(S),320054136,True 262157,1 1/2 SYLVAN ST,PEABODY,DEP REGULATED FACILITY,MA0047,REGULATED ACTIVITY(S),,True 262169,663 WASHINGTON ST,STOUGHTON,DEP REGULATED FACILITY,US GAS & AUTO REPAIR INC,REGULATED ACTIVITY(S),,True @@ -11650,7 +11647,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 281687,16 SUNCREST DR,ANDOVER,DEP REGULATED FACILITY,ALLARD ALBERT,REGULATED ACTIVITY(S),,True 281715,960 WORCESTER RD,NATICK,DEP REGULATED FACILITY,BERNARDI HONDA VW INC,REGULATED ACTIVITY(S),888888888,True 281719,1 JACOBS WAY,LAWRENCE,DEP REGULATED FACILITY,BF GOODRICH,REGULATED ACTIVITY(S),,False -281725,85 QUINCY AVENUE,BRAINTREE,PUBLIC WATER SUPPLY SYSTEM,TRI TOWN WATER BOARD,WATER SUPPLY/DRINKING WATER,4040002,True +281725,300 KING HILL ROAD,BRAINTREE,PUBLIC WATER SUPPLY SYSTEM,TRI TOWN WATER BOARD,WATER SUPPLY/DRINKING WATER,4040002,True 281748,EUTIS ST,MARSHFIELD,DEP REGULATED FACILITY,EUSTIS STREET EXTENSION,REGULATED ACTIVITY(S),,True 281756,STOCKHOLM RD,ROCKPORT,DEP REGULATED FACILITY,WOODLAND ACRES,REGULATED ACTIVITY(S),,True 281760,SOUTH WESTFIELD ST,AGAWAM,DEP REGULATED FACILITY,MA STATE POLICE TRAINING ACADEMY,REGULATED ACTIVITY(S),,True @@ -14529,7 +14526,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 298980,40 KINGSBURY ST,WELLESLEY,DEP REGULATED FACILITY,WELLESLEY PUBLIC SCHOOLS,REGULATED ACTIVITY(S),046001343,True 298984,VARIOUS STS,DRACUT,DEP REGULATED FACILITY,DRACUT SEWER DEPARTMENT,REGULATED ACTIVITY(S),,True 298988,11 OLD BOSTON RD,TEWKSBURY,DEP REGULATED FACILITY,TEWKSBURY TOWERS II,REGULATED ACTIVITY(S),,True -298992,580 ANDOVER ST,LAWRENCE,DEP REGULATED FACILITY,ANDOVER STREET CITGO,REGULATED ACTIVITY(S),,True +298992,580 ANDOVER ST,LAWRENCE,DEP REGULATED FACILITY,COMO GAS & SERVICE,REGULATED ACTIVITY(S),,True 299003,TREMONT RD,CARVER,DEP REGULATED FACILITY,SK WAINIO BOGS INC,REGULATED ACTIVITY(S),,True 299005,80 UXBRIDGE RD,MENDON,DEP REGULATED FACILITY,SHEA RES 80 UXBRIDGE RD MENDON,REGULATED ACTIVITY(S),,True 299009,24 LAND CT,SAUGUS,DEP REGULATED FACILITY,PERTRUZZELLI DOMINIC,REGULATED ACTIVITY(S),,True @@ -17894,6 +17891,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 316909,98 MAIN ST,BECKET,DEP REGULATED FACILITY,MA DOT BECKET,REGULATED ACTIVITY(S),,True 316914,430 FRONT ST,MARION,DEP REGULATED FACILITY,SHERMAN BRIGGS CRANBERRY CO,REGULATED ACTIVITY(S),043429156,True 316919,69 WEIR ST,TAUNTON,DEP REGULATED FACILITY,SILVER CITY GAS,REGULATED ACTIVITY(S),,True +316922,35 SCUDDER AVE,BARNSTABLE,DEP REGULATED FACILITY,RESORT AND CONFERENCE CENTER AT HYANNIS,REGULATED ACTIVITY(S),,True 316932,209 PICKERING ST,,DEP REGULATED FACILITY,WASTE MANAGEMENT NEW ENGLAND ENVIRONMENT,REGULATED ACTIVITY(S),043509618,False 316942,SPRING ST,MARSHFIELD,DEP REGULATED FACILITY,MARSHFIELD PUBLIC WORKS,REGULATED ACTIVITY(S),,True 316944,JOSEPHS WAY,NEW BEDFORD,DEP REGULATED FACILITY,COASTAL CONCEPTS INC,REGULATED ACTIVITY(S),,True @@ -23717,7 +23715,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 355012,10 GREGORY ISLAND LN,ESSEX,DEP REGULATED FACILITY,JOAN DIFLURI,REGULATED ACTIVITY(S),,True 355025,638 PATRIOTS RD,TEMPLETON,DEP REGULATED FACILITY,BOUDREAU FINISHING,REGULATED ACTIVITY(S),,False 355028,8 REDSKIN TRL,GROTON,DEP REGULATED FACILITY,8 REDSKIN TRAIL,REGULATED ACTIVITY(S),,True -355030,110 NORFOLK ST,WALPOLE,DEP REGULATED FACILITY,ROLLS ROYCE NAVAL MARINE INC,REGULATED ACTIVITY(S),042236767,True +355030,110 NORFOLK ST,WALPOLE,DEP REGULATED FACILITY,BIRD JOHNSON PROPELLER COMPANY LLC,REGULATED ACTIVITY(S),844235872,True 355034,18 RENMAR AVE,WALPOLE,DEP REGULATED FACILITY,ROLLS ROYCE NAVAL MARINE INC,REGULATED ACTIVITY(S),351624,False 355038,555 PLEASANT ST,WATERTOWN,DEP REGULATED FACILITY,555 WATERTOWN LLC,REGULATED ACTIVITY(S),,False 355046,INNER HARBOR BTM,BOSTON,DEP REGULATED FACILITY,BOSTON HARBOR CABLE PROJECT,REGULATED ACTIVITY(S),,True @@ -26848,7 +26846,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 375691,662 664 MAIN ST,BOLTON,DEP REGULATED FACILITY,662 664 MAIN ST,REGULATED ACTIVITY(S),,True 375702,POND ST,ASHLAND,DEP REGULATED FACILITY,POND STREET GRAVITY SEWER,REGULATED ACTIVITY(S),,True 375711,6 WEYMOUTH ST,HOLBROOK,DEP REGULATED FACILITY,PRO BUILT TRANSMISSIONS INC,REGULATED ACTIVITY(S),,False -375713,230 WOOD RD,BRAINTREE,DEP REGULATED FACILITY,BRAINTREE PRINTING INC,REGULATED ACTIVITY(S),043194956,True +375713,230 WOOD RD,BRAINTREE,DEP REGULATED FACILITY,BRAINTREE PRINTING INC,REGULATED ACTIVITY(S),043194956,False 375715,MARBLE RD,GLOUCESTER,DEP REGULATED FACILITY,MARBLE ROAD IMPROVEMENT,REGULATED ACTIVITY(S),,True 375724,691 GRAFTON ST,WORCESTER,DEP REGULATED FACILITY,TGL INC,REGULATED ACTIVITY(S),,True 375727,MAIN ST,MANCHESTER,DEP REGULATED FACILITY,HAZLETON ENV - DRINKING WATER ADDITIVE,REGULATED ACTIVITY(S),,True @@ -32478,7 +32476,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 408192,37 COMMERCIAL ST,BRAINTREE,DEP REGULATED FACILITY,MARCH 4TH LLC,REGULATED ACTIVITY(S),,True 408200,100 FORTA DR,,DEP REGULATED FACILITY,FORTA CORPORATION,REGULATED ACTIVITY(S),,True 408211,18 ROVER ST,EVERETT,DEP REGULATED FACILITY,DISTRIGAS OF MASSACHUSETTS LLC,REGULATED ACTIVITY(S),,True -408214,53 AYER RD,LITTLETON,DEP REGULATED FACILITY,ROOFBLOK LIMITED,REGULATED ACTIVITY(S),,True +408214,53 AYER RD,LITTLETON,DEP REGULATED FACILITY,ROOFBLOK LIMITED,REGULATED ACTIVITY(S),,False 408222,16 TROTTER DR,MEDWAY,DEP REGULATED FACILITY,HOISTING & PORTABLE ENGINEERS LOCAL 4,REGULATED ACTIVITY(S),,True 408226,9 HARBOR AVE,WAREHAM,DEP REGULATED FACILITY,CAROL AND DAVID LUCE,REGULATED ACTIVITY(S),,True 408251,65 HARTWELL ST,WEST BOYLSTON,DEP REGULATED FACILITY,LOWELL CORPORATION,REGULATED ACTIVITY(S),,True @@ -36891,7 +36889,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 427963,1645 FALMOUTH RD,BARNSTABLE,DEP REGULATED FACILITY,HARRIS DENTAL CENTERVILLE,REGULATED ACTIVITY(S),37466,True 427969,337 GIFFORD ST,FALMOUTH,DEP REGULATED FACILITY,J&C GAGNON DMD PC,REGULATED ACTIVITY(S),37560,True 427971,154 MAIN ST,NORTHBOROUGH,DEP REGULATED FACILITY,ADVANCED DENTAL,REGULATED ACTIVITY(S),37645,False -427972,164 DEAN ST,TAUNTON,DEP REGULATED FACILITY,RIVERA DENTAL PLLC,REGULATED ACTIVITY(S),37651,True +427972,164 DEAN ST,TAUNTON,DEP REGULATED FACILITY,AESTHETIC DENTAL OF TAUNTON LLC,REGULATED ACTIVITY(S),37651,True 427973,29 FARRAGUT RD,BOSTON,DEP REGULATED FACILITY,SOUTH BOSTON DENTAL ASSOCIATES INC,REGULATED ACTIVITY(S),46579,True 427974,54 CHURCH ST,LOWELL,DEP REGULATED FACILITY,CHARLES A KOKINOS DMD,REGULATED ACTIVITY(S),46902,True 427979,1 TECHNOLOGY PARK DR,BOURNE,DEP REGULATED FACILITY,BOURNE DENTAL ASSOCIATES LLC,REGULATED ACTIVITY(S),,True @@ -38833,7 +38831,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 443229,253 NORTH MAIN ST,NATICK,RELEASE,NO LOCATION AID,WASTE SITE CLEANUP,,True 443231,1 APACHE DR,HUBBARDSTON,DEP REGULATED FACILITY,1 APACHE DR,REGULATED ACTIVITY(S),,True 443238,29 ASH ST,WEST NEWBURY,DEP REGULATED FACILITY,JASON PARADIS,REGULATED ACTIVITY(S),,True -443243,83 GILMORE DR,SUTTON,DEP REGULATED FACILITY,NEW ENGLAND DISPOSAL TECHNOLOGIES INC,REGULATED ACTIVITY(S),043279939,True +443243,83 GILMORE DR,SUTTON,DEP REGULATED FACILITY,VEOLIA ES TECHNICAL SOLUTIONS LLC,REGULATED ACTIVITY(S),043279939,True 443251,PETERS WAY,GRAFTON,DEP REGULATED FACILITY,PETERS ESTATES SUBDIVISION,REGULATED ACTIVITY(S),,True 443255,MORRISSEY BLVD,BOSTON,DEP REGULATED FACILITY,MORRISSEY BOULEVARD DRAINAGE CONDUITE PR,REGULATED ACTIVITY(S),,True 443260,29 NEWCOMB PL,TAUNTON,DEP REGULATED FACILITY,AJ ANDREWS,REGULATED ACTIVITY(S),,True @@ -41693,7 +41691,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 470982,376 HALE ST,BEVERLY,DEP REGULATED FACILITY,ENDICOTT COLLEGE,REGULATED ACTIVITY(S),,True 470984,10 ST GERMAIN AVE,BLACKSTONE,DEP REGULATED FACILITY,10 ST GERMAIN AVE,REGULATED ACTIVITY(S),,True 470986,49 MAYFLOWER AVE,TAUNTON,DEP REGULATED FACILITY,MIKE BARAN,REGULATED ACTIVITY(S),,True -471003,875 STATE RD,WESTPORT,PUBLIC WATER SUPPLY SYSTEM,COAKSETT COMMONS,WATER SUPPLY/DRINKING WATER,4334091,True 471082,35 SOUTH LAUREL DR,SHUTESBURY,DEP REGULATED FACILITY,GRYBKO LYNDA RESIDENCE,REGULATED ACTIVITY(S),,True 471086,98-146 PENN ST,QUINCY,DEP REGULATED FACILITY,LOWES HOME CENTERS INC,REGULATED ACTIVITY(S),,True 471088,1 SANDY WAY,AYER,DEP REGULATED FACILITY,JULIE MURRAY,REGULATED ACTIVITY(S),,True @@ -44864,7 +44861,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 529713,12 INTEGRA DR UNITS 9 AND 10,CONCORD,DEP REGULATED FACILITY,B & D ASSOCIATES INC,REGULATED ACTIVITY(S),,False 529715,WHITING ST,NORTH ATTLEBOROUGH,DEP REGULATED FACILITY,NORTH ATTLEBOROUGH CONSERVATION COMM,REGULATED ACTIVITY(S),,True 529719,2208 PLAINVILLE PIKE,,DEP REGULATED FACILITY,C L VINAGRO CORP,REGULATED ACTIVITY(S),800524705,True -529760,299 LITTLETON RD,WESTFORD,DEP REGULATED FACILITY,BOCH HONDA WEST,REGULATED ACTIVITY(S),888888888,True +529760,299 LITTLETON RD,WESTFORD,DEP REGULATED FACILITY,NUCAR HONDA OF WESTFORD,REGULATED ACTIVITY(S),888888888,True 529766,64 RIVER ROAD W,BERLIN,DEP REGULATED FACILITY,NOURIA 1010,REGULATED ACTIVITY(S),,True 529794,14 LOMAR PARK DR,PEPPERELL,DEP REGULATED FACILITY,MURPHY WELDING,REGULATED ACTIVITY(S),,True 529798,9 NORTH POND RD,SOUTHWICK,DEP REGULATED FACILITY,DAVID GRECO,REGULATED ACTIVITY(S),,True @@ -44917,7 +44914,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 530162,38 LAKE ATTITASH RD,AMESBURY,DEP REGULATED FACILITY,JAMES & MARGUERITE SCHAEPE,REGULATED ACTIVITY(S),,True 530164,52 HIDEAWAY LN,WAREHAM,DEP REGULATED FACILITY,HATCH THEODORE,REGULATED ACTIVITY(S),,True 530166,137 TEATICKET HWY,FALMOUTH,DEP REGULATED FACILITY,FALMOUTH MALL,REGULATED ACTIVITY(S),,True -530168,283-303 LITTLETON RD,WESTFORD,DEP REGULATED FACILITY,BOCH HONDA WEST,REGULATED ACTIVITY(S),,True +530168,283-303 LITTLETON RD,WESTFORD,DEP REGULATED FACILITY,BOCH HONDA WEST,REGULATED ACTIVITY(S),,False 530179,13 CAPE RD,TAUNTON,DEP REGULATED FACILITY,PRESTIGE CAR WASH,REGULATED ACTIVITY(S),,True 530182,295 MCEVOY RD,NEW BRAINTREE,DEP REGULATED FACILITY,TANNER HILLER AIRPORT,REGULATED ACTIVITY(S),,False 530185,2B HARBORSIDE DR,BOSTON,DEP REGULATED FACILITY,TBF NO 1,REGULATED ACTIVITY(S),,True @@ -47329,7 +47326,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 561184,135 NORTH MAIN ST,WEST BROOKFIELD,DEP REGULATED FACILITY,JAMES TALVY FARM,REGULATED ACTIVITY(S),,True 561216,WYMAN ST,WOBURN,DEP REGULATED FACILITY,WYMAN FARMS ESTATES,REGULATED ACTIVITY(S),,True 561219,53 BRIGHAM ST,MARLBOROUGH,DEP REGULATED FACILITY,AMBRI,REGULATED ACTIVITY(S),273220023,False -561221,15 SECOND ST,PALMER,DEP REGULATED FACILITY,INNOVATIVE PLASTIC SYSTEMS INC,REGULATED ACTIVITY(S),,True +561221,15 SECOND ST,PALMER,DEP REGULATED FACILITY,INNOVATIVE PLASTIC SYSTEMS INC,REGULATED ACTIVITY(S),,False 561242,11 BAY STATE CT,BREWSTER,DEP REGULATED FACILITY,EAST BREWSTER DENTAL LLC,REGULATED ACTIVITY(S),,True 561244,225 CENTRE ST,BOSTON,DEP REGULATED FACILITY,225 CENTRE STREET,REGULATED ACTIVITY(S),,True 561249,39 WATER ST,AMESBURY,DEP REGULATED FACILITY,AMESBURY FORMER MANUFACTURED GAS PLANT,REGULATED ACTIVITY(S),,True @@ -48108,6 +48105,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 573222,929 STATE RD,PLYMOUTH,DEP REGULATED FACILITY,ASBESTOS MAN REMOVAL COMPANY INC,REGULATED ACTIVITY(S),,True 573236,900 BEACON ST,BOSTON,DEP REGULATED FACILITY,900 BEACON STREET,REGULATED ACTIVITY(S),,True 573239,72 PULLMAN ST,WORCESTER,DEP REGULATED FACILITY,PRICE CHOPPER OPERATING CO OF MASS INC,REGULATED ACTIVITY(S),141454167,True +573272,53 OTIS ST,WESTBOROUGH,DEP REGULATED FACILITY,COLUMBIA TECH,REGULATED ACTIVITY(S),,True 573274,219 BABCOCK TAVERN RD,WARE,DEP REGULATED FACILITY,BOND SAND & GRAVEL,REGULATED ACTIVITY(S),,True 573293,PEDESTRIAN BRG REPLACEMENT,MAYNARD,DEP REGULATED FACILITY,PEDESTRIAN BRIDGE REPLACEMENT,REGULATED ACTIVITY(S),,True 573295,FORMER B AND M LINE,ACTON,DEP REGULATED FACILITY,RAILROAD TRESTEL REHABILITATION,REGULATED ACTIVITY(S),,True @@ -51899,6 +51897,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 625486,47 SPY POND LN,ARLINGTON,DEP REGULATED FACILITY,47 SPY POND LANE,REGULATED ACTIVITY(S),,True 625513,3400 MILLINGTON RD,,DEP REGULATED FACILITY,KERRY INC.,REGULATED ACTIVITY(S),,True 625515,10880 LIN PAGE PLACE,,DEP REGULATED FACILITY,"KEEFE COMMISSARY NETWORK, L.L.C.",REGULATED ACTIVITY(S),,True +625529,197 VASSAL LN,CAMBRIDGE,DEP REGULATED FACILITY,TOBIN MONTESSORI AND VASSAL LN UPPER SCH,REGULATED ACTIVITY(S),,True 625537,0 NORTH KING ST,NORTHAMPTON,DEP REGULATED FACILITY,FORMER LANE CONSTRUCTION ASPHALT PLANT,REGULATED ACTIVITY(S),,True 625540,1105 MAIN ST,MILLIS,DEP REGULATED FACILITY,SAV ON,REGULATED ACTIVITY(S),,True 625572,"200 FRIBERG PARKWAY, SUITE 4001",WESTBOROUGH,DEP REGULATED FACILITY,"UNITED HAULING, INC.",REGULATED ACTIVITY(S),,True @@ -52170,7 +52169,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 631129,359 TURNPIKE RD,SOUTHBOROUGH,DEP REGULATED FACILITY,WENDYS,REGULATED ACTIVITY(S),,True 631147,100 TERMINAL ST.,BOSTON,DEP REGULATED FACILITY,JF MORAN TERMINAL DREDGING,REGULATED ACTIVITY(S),,True 631165,59 MAIN STREET,WAREHAM,DEP REGULATED FACILITY,"WARREN QOZB, LLC",REGULATED ACTIVITY(S),,True -631362,351 NORTH MAIN ST,ANDOVER,DEP REGULATED FACILITY,PREMIER DENTAL CONCEPTS-PETER WOJTKUN DM,REGULATED ACTIVITY(S),,True +631362,351 NORTH MAIN ST,ANDOVER,DEP REGULATED FACILITY,PREMIER DENTAL CONCEPTS OF ANDOVER,REGULATED ACTIVITY(S),,True 631366,40 GRAMMYS LANE,CHATHAM,DEP REGULATED FACILITY,WILLIAM T. YOUNG IRREVOCABLE TRUST,REGULATED ACTIVITY(S),,True 631373,144-146 WESTFORD CIR,SPRINGFIELD,DEP REGULATED FACILITY,LEON BLAKE,REGULATED ACTIVITY(S),,True 631450,CHEQUESSETT NECK ROAD,WELLFLEET,DEP REGULATED FACILITY,TOWN OF WELLFLEET HERRING RIVER RESTORAT,REGULATED ACTIVITY(S),,True @@ -52381,7 +52380,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 637181,0 WENDELL ROAD,SHUTESBURY,DEP REGULATED FACILITY,KOLASINSKI DUMP,REGULATED ACTIVITY(S),,True 637199,0 JENNISON ROAD,SHUTESBURY,DEP REGULATED FACILITY,JENNISON ROAD DUMP,REGULATED ACTIVITY(S),,True 637225,1615 NORTH MAIN ST.,PALMER,DEP REGULATED FACILITY,"PALMER PACKAGE STORE, INC.",REGULATED ACTIVITY(S),,True -637280,1100 INNOVATION WAY,FREETOWN,DEP REGULATED FACILITY,CANNATECH MEDICINALS INNOVATION,REGULATED ACTIVITY(S),,True +637280,1100 INNOVATION WAY,FALL RIVER,DEP REGULATED FACILITY,MAYFLOWER MEDICINALS,REGULATED ACTIVITY(S),,True 637384,59 ROSEDALE ROAD,WATERTOWN,DEP REGULATED FACILITY,"CAREFUL MOVERS, LLC",REGULATED ACTIVITY(S),,True 637414,286 WEBSTER STREET,DOUGLAS,DEP REGULATED FACILITY,FLYING GOOSE LLC,REGULATED ACTIVITY(S),001423713,True 637431,45 GREEN ST,HOLLISTON,DEP REGULATED FACILITY,MINGLEWOOD DEVELOPMENT LLC PROPERTY,REGULATED ACTIVITY(S),,True @@ -52960,6 +52959,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 660336,200 WINDY TERRACE,,DEP REGULATED FACILITY,PHOENIX MANAGEMENT INC,REGULATED ACTIVITY(S),,True 660354,3 FARMHOUSE LANE,MARLBOROUGH,DEP REGULATED FACILITY,ORCHARDS APARTMENTS,REGULATED ACTIVITY(S),,True 660393,WASHINGTON RD,BRIMFIELD,DEP REGULATED FACILITY,CSX RAILROAD,REGULATED ACTIVITY(S),,True +660500,7 CARVER ST,GRANBY,DEP REGULATED FACILITY,RED FIRE FARM,REGULATED ACTIVITY(S),,True 660520,4113 WILMETTE AVENUE,,DEP REGULATED FACILITY,JJ&W SOLUTIONS LLC,REGULATED ACTIVITY(S),,True 660565,194 CENTRAL ST,GARDNER,DEP REGULATED FACILITY,WAKEFIELD PLACE,REGULATED ACTIVITY(S),,True 660570,"180 WELLS AVE., SUITE 100",NEWTON,DEP REGULATED FACILITY,INTRUM CORP.,REGULATED ACTIVITY(S),,True @@ -53185,6 +53185,7 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 665554,3200 HACKBERRY ROAD,,DEP REGULATED FACILITY,"7-ELEVEN, INC.",REGULATED ACTIVITY(S),,True 665585,6406 IVY LANE,,DEP REGULATED FACILITY,BOZZUTO MANAGEMENT COMPANY,REGULATED ACTIVITY(S),,True 665587,108 SOUTH STREET,NORTHAMPTON,DEP REGULATED FACILITY,SMITH COLLEGE BULK MATERIALS STORAGE,REGULATED ACTIVITY(S),,True +665629,1101 KIRKBRIDE DR,DANVERS,DEP REGULATED FACILITY,BRADLEE DANVERS LLC,REGULATED ACTIVITY(S),,True 665661,216 NEWBURY ST,PEABODY,DEP REGULATED FACILITY,"BRADFORD CARPET CO., INC.",REGULATED ACTIVITY(S),,True 665686,115 BIRCHLAND ST,SPRINGFIELD,DEP REGULATED FACILITY,SAREEN PROPERTIES LLC,REGULATED ACTIVITY(S),,True 665745,40 LOWELL RD,SALEM,DEP REGULATED FACILITY,"K-TOWN DISPOSAL, LLC",REGULATED ACTIVITY(S),,True @@ -53454,7 +53455,6 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 671821,96 ARSENAL YARDS BLVD,WATERTOWN,DEP REGULATED FACILITY,ROCHE BROS. SUPERMARKET,REGULATED ACTIVITY(S),,True 671874,100 BOWLES ROAD,AGAWAM,DEP REGULATED FACILITY,KITTREDGE EQUIPMENT,REGULATED ACTIVITY(S),,True 671947,1800 HYDE PARK AVE.,BOSTON,PUBLIC WATER SUPPLY SYSTEM,ROCKY MOUNTAIN SPRING WATER VENDING,WATER SUPPLY/DRINKING WATER,3035022,True -671988,120 ELMGROVE PARK,ROCHESTER,DEP REGULATED FACILITY,NORTHSTAR DEMOLITION AND REMEDIATION INC,REGULATED ACTIVITY(S),,True 671998,237 HINCKLEY ROAD,BARNSTABLE,DEP REGULATED FACILITY,"GARBAGE GONE, INC.",REGULATED ACTIVITY(S),,True 672006,200 WALNUT ST.,SAUGUS,DEP REGULATED FACILITY,EASTERN PROPERTY MANAGEMENT GROUP INC.,REGULATED ACTIVITY(S),,True 672027,1277 BROADWAY,SAUGUS,DEP REGULATED FACILITY,SIMON PROPERTY GROUP INC,REGULATED ACTIVITY(S),,True @@ -53517,5 +53517,12 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active 673951,422 RIVER ST,NORTH ADAMS,DEP REGULATED FACILITY,CENTRAL RADIO APPLIANCE WAREHOUSE,REGULATED ACTIVITY(S),,True 674007,2065 MAIN ROAD,WESTPORT,PUBLIC WATER SUPPLY SYSTEM,WESTPORT SEA FARMS,WATER SUPPLY/DRINKING WATER,4334098,True 674053,100 MAIN ST,AMESBURY,DEP REGULATED FACILITY,APEX ABATEMENT AND DEMOLITION LCC,REGULATED ACTIVITY(S),,True +674111,249 DANIEL WEBSTER HIGHWAY,ORANGE,DEP REGULATED FACILITY,"G.L.M., INC.",REGULATED ACTIVITY(S),,True 674170,564 JOHN FITCH HWY,FITCHBURG,DEP REGULATED FACILITY,MEINEKE CAR CARE CENTER 2927,REGULATED ACTIVITY(S),,True +674178,43 NASHUA RD,PEPPERELL,DEP REGULATED FACILITY,DREWS POWDER COATING LLC,REGULATED ACTIVITY(S),,True +674206,75 PARK PLAZA,BOSTON,DEP REGULATED FACILITY,HERITAGE ON THE GARDEN,REGULATED ACTIVITY(S),,True +674261,60 INDUSTRIAL ROWE,GARDNER,DEP REGULATED FACILITY,ROOFBLOK LIMITED,REGULATED ACTIVITY(S),,True +674345,335 ROCHDALE ST,AUBURN,DEP REGULATED FACILITY,TOWN OF AUBURN PROPERTY,REGULATED ACTIVITY(S),,True +674359,31 DRAPER ST,WOBURN,DEP REGULATED FACILITY,SUPERIOR ENVIRONMENTAL SERVICES LLC,REGULATED ACTIVITY(S),,True +674405,145 CHURCH STREET,CARLISLE,PUBLIC WATER SUPPLY SYSTEM,CARLISLE VILLAGE COURT,WATER SUPPLY/DRINKING WATER,3051025,True 999999,,,RELEASE,WSC PHONE RECORDS,WASTE SITE CLEANUP,,True diff --git a/docs/data/EEADP_facility_sample.csv b/docs/data/EEADP_facility_sample.csv index 9be1b3d..2ffecf4 100644 --- a/docs/data/EEADP_facility_sample.csv +++ b/docs/data/EEADP_facility_sample.csv @@ -1,11 +1,11 @@ Id,StreetName,Town,FacilityType,FacilityName,Program,ProgramSpecificId,Active -393497,21 DOWD RD,MONTEREY,DEP REGULATED FACILITY,EDELSTEIN PATRICIA,REGULATED ACTIVITY(S),,True -399571,45 SHOREWOOD DR,FALMOUTH,DEP REGULATED FACILITY,HURLEY PAUL AND CHRISTINE,REGULATED ACTIVITY(S),,True -461665,108 SUNNY HILL RD,LUNENBURG,DEP REGULATED FACILITY,108 SUNNY HILL RD,REGULATED ACTIVITY(S),,True -671695,139 HILLCREST RD,MARSHFIELD,DEP REGULATED FACILITY,139 HILLCREST ROAD MARSHFIELD - RESIDENT,REGULATED ACTIVITY(S),,True -322961,14 EAST MAIN ST,YARMOUTH,DEP REGULATED FACILITY,RACING MART,REGULATED ACTIVITY(S),000865222,True -284544,50 EAST MILL ST,PITTSFIELD,DEP REGULATED FACILITY,HARRIS STREET CORP,REGULATED ACTIVITY(S),,True -291810,105 FREMONT ST,WORCESTER,DEP REGULATED FACILITY,AABEC,REGULATED ACTIVITY(S),,True -130385,YEMMA RD,GROVELAND,DEP REGULATED FACILITY,AGGREGATE INDUSTRIES NORTHEAST REGION,REGULATED ACTIVITY(S),042079391,True -339181,165 NOBSCOT RD,SUDBURY,DEP REGULATED FACILITY,SPRINGHOUSE POND,REGULATED ACTIVITY(S),,True -337323,MAPLE MEADOWS LN,AGAWAM,DEP REGULATED FACILITY,SILVER BROOK ESTATES SEWER EXTENSION,REGULATED ACTIVITY(S),,True +571045,188 MILL VILLAGE RD,DEERFIELD,DEP REGULATED FACILITY,BARWAY FARM ORGANICS RECYCLERY,REGULATED ACTIVITY(S),001133992,True +453381,NEILSON RD,NEW SALEM,DEP REGULATED FACILITY,NEILSON RD RECONSTRUCTION,REGULATED ACTIVITY(S),,True +177057,255 HUDSON RD,STOW,DEP REGULATED FACILITY,RADANT TECHNOLOGIES,REGULATED ACTIVITY(S),042842251,True +541429,10 LAUREL BANK RD,MONTEREY,DEP REGULATED FACILITY,ELISE A. BLOUSTEIN,REGULATED ACTIVITY(S),,True +173625,34 SOUTH MAIN ST,ATTLEBORO,DEP REGULATED FACILITY,ATTLEBORO SUN PUBLISHING CORP,REGULATED ACTIVITY(S),510109476,True +439943,109 RED ACRE RD,STOW,PUBLIC WATER SUPPLY SYSTEM,KIDS A LOT (DAYCARE),WATER SUPPLY/DRINKING WATER,2286023,True +491463,SOUTH COVE DR,BECKET,DEP REGULATED FACILITY,NOSS JACQUELYN RESIDENCE,REGULATED ACTIVITY(S),,True +508964,47 HENDERSON RD,BEVERLY,DEP REGULATED FACILITY,NORTH ATLANTIC AIR,REGULATED ACTIVITY(S),042580261,True +343525,LK WINNECUNNET,NORTON,DEP REGULATED FACILITY,NORTON WATER & SEWER DEPT,REGULATED ACTIVITY(S),,True +419422,WEST MAIN ST,MILLBURY,DEP REGULATED FACILITY,LAUREL HEIGHTS/LAKE SINGLETARY,REGULATED ACTIVITY(S),,True diff --git a/docs/data/EEADP_inspection.csv b/docs/data/EEADP_inspection.csv index d86130e..517d48e 100644 --- a/docs/data/EEADP_inspection.csv +++ b/docs/data/EEADP_inspection.csv @@ -84265,6 +84265,12 @@ Id,Town,Program,FacilityId,FacilityName,InspectionType,InspectionDate 3999527,BOSTON,REGULATED ACTIVITY(S),167305,MARINEMAX RUSSO BOSTON,Drive By Inspection,2026-04-21 3999549,GRAFTON,WATER SUPPLY/DRINKING WATER,5988,GRAFTON WATER DISTRICT,SANITARY SURVEY,2026-04-23 3999523,SUDBURY,REGULATED ACTIVITY(S),406464,SUDBURY GAS,Unannounced Single-Media Inspection,2026-04-27 +3999746,CHICOPEE,REGULATED ACTIVITY(S),292380,NEWARK PAPERBOARD PRODUCTS CARAUSTAR,Unannounced Multimedia Inspection,2026-04-28 +3999793,WESTBOROUGH,REGULATED ACTIVITY(S),191625,EL HARVEY & SONS INC,ReInspection,2026-04-27 +3999832,FALL RIVER,REGULATED ACTIVITY(S),637280,MAYFLOWER MEDICINALS,Announced Multimedia Inspection,2026-04-27 +3999837,LAKEVILLE,WATER SUPPLY/DRINKING WATER,6671,ST. MARTHA AND MARY CHURCH,SANITARY SURVEY,2026-04-28 +3999838,BROCKTON,WATER SUPPLY/DRINKING WATER,581743,V A BOSTON HEALTHCARE SYSTEM BROCKTON,SANITARY SURVEY,2026-04-28 +3999839,LAKEVILLE,WATER SUPPLY/DRINKING WATER,229646,COUNTY LAKE PROPERTIES,SANITARY SURVEY,2026-04-28 4000074,FALL RIVER,REGULATED ACTIVITY(S),132278,BFI FALL RIVER LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-04-28 4000091,DARTMOUTH,REGULATED ACTIVITY(S),172449,CRAPO HILL LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-04-28 4000152,RAYNHAM,REGULATED ACTIVITY(S),376957,WASTE MANAGEMENT REGIONAL PROCESSING FAC,Solid Waste Inspect with Enforcement Potential,2026-04-28 @@ -84286,23 +84292,35 @@ Id,Town,Program,FacilityId,FacilityName,InspectionType,InspectionDate 4000744,LAWRENCE,REGULATED ACTIVITY(S),162774,JAYBIRD AND MAIS INC,Limited Inspect for Compliance Indicators/Field Presence,2026-04-28 4000747,WRENTHAM,REGULATED ACTIVITY(S),193363,ATLANTIC SINTERED INC,Limited Inspect for Compliance Indicators/Field Presence,2026-04-29 4000763,TAUNTON,REGULATED ACTIVITY(S),589189,FOUNDERS SCIENCE GROUP LLC,Announced Multimedia Inspection,2026-04-29 -4000840,MASHPEE,WATER SUPPLY/DRINKING WATER,7270,MASHPEE WATER DISTRICT,SANITARY SURVEY,2026-04-30 4000785,WARE,REGULATED ACTIVITY(S),131241,KANZAKI SPECIALTY PAPERS INC,Unannounced Multimedia Inspection,2026-05-01 4000793,DENNIS,REGULATED ACTIVITY(S),173242,S&J EXCO INC,Solid Waste Inspect with Enforcement Potential,2026-05-01 +4000840,MASHPEE,WATER SUPPLY/DRINKING WATER,7270,MASHPEE WATER DISTRICT,SANITARY SURVEY,2026-04-30 +4000999,SHREWSBURY,REGULATED ACTIVITY(S),170204,WORCESTER SAND & STONE,Drive By Inspection,2026-04-29 4001022,PLYMOUTH,WATER SUPPLY/DRINKING WATER,671747,THE STORE AT SANDY POND,BWR/BRP Announced Inspection Related Activity,2026-05-01 4001023,MANSFIELD,WATER SUPPLY/DRINKING WATER,6235,MANSFIELD WATER DIVISION,BWR/BRP Announced Inspection Related Activity,2026-05-04 4001108,WAKEFIELD,REGULATED ACTIVITY(S),384769,JG MACLELLAN CONCRETE CO INC,Drive By Inspection,2026-05-04 +4001347,SHARON,WATER SUPPLY/DRINKING WATER,6270,SHARON WATER DEPT,Level 2 Assessment rTCR,2026-04-29 4001405,AYER,REGULATED ACTIVITY(S),159519,FBS TIRE RECYCLING INC,Solid Waste Inspect with Enforcement Potential,2026-05-05 4001457,DANVERS,REGULATED ACTIVITY(S),132348,HIGH STREET SERVICE INC,Unannounced Single-Media Inspection,2026-05-05 4001467,ERVING,REGULATED ACTIVITY(S),172505,ERVING PAPER MILLS SLUDGE LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-05 4001475,ERVING,REGULATED ACTIVITY(S),179468,ERVING PAPER SLUDGE LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-05 +4001477,GREENFIELD,REGULATED ACTIVITY(S),172555,GREENFIELD LANDFILL & TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-04-30 +4001481,WHATELY,REGULATED ACTIVITY(S),173091,WHATELY LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-04-30 4001483,WHATELY,REGULATED ACTIVITY(S),173091,WHATELY LANDFILL,Solid Waste Visit Limited Enforcement Potential,2026-05-01 +4001578,BURLINGTON,REGULATED ACTIVITY(S),662255,NTH CYCLE,ReInspection,2026-04-28 +4001590,LANESBOROUGH,REGULATED ACTIVITY(S),140215,SAYERS AUTO WRECKING INC,Multiple Visits to Identify/Document a Problem,2026-04-27 +4001592,WASHINGTON,REGULATED ACTIVITY(S),671052,WASHINGTON MOUNTAIN ROAD,Solid Waste Inspect with Enforcement Potential,2026-04-27 +4001594,LEE,REGULATED ACTIVITY(S),279141,FORMER WESTFIELD RIVER PAPER LANDFILLS,Solid Waste Inspect with Enforcement Potential,2026-04-27 +4001601,WHATELY,REGULATED ACTIVITY(S),173091,WHATELY LANDFILL,Solid Waste Visit Limited Enforcement Potential,2026-04-30 4001664,HEATH,REGULATED ACTIVITY(S),172589,TRI TOWN LANDFILL,Solid Waste Visit Limited Enforcement Potential,2026-05-06 4001666,GREENFIELD,REGULATED ACTIVITY(S),172555,GREENFIELD LANDFILL & TRANSFER STATION,Multiple Visits to Identify/Document a Problem,2026-05-06 +4001671,LUDLOW,REGULATED ACTIVITY(S),673869,AMERICAN CONCRETE & ASPHALT INC,Solid Waste Inspect with Enforcement Potential,2026-04-30 +4001675,LUDLOW,REGULATED ACTIVITY(S),673869,AMERICAN CONCRETE & ASPHALT INC,Solid Waste Inspect with Enforcement Potential,2026-04-27 4001685,HOLLISTON,REGULATED ACTIVITY(S),333360,HOLLISTON TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-05 4001717,TEMPLETON,REGULATED ACTIVITY(S),398178,TEMPLETON AUTO,Multiple Visits to Identify/Document a Problem,2026-05-06 4001857,BOURNE,WATER SUPPLY/DRINKING WATER,392748,BARNSTABLE COUNTY JAIL,SANITARY SURVEY,2026-05-07 4001968,WESTWOOD,REGULATED ACTIVITY(S),174735,GMG 7106,Unannounced Single-Media Inspection,2026-05-07 +4001970,MALDEN,WATER SUPPLY/DRINKING WATER,301855,THE WATER STORE OF MALDEN (VND),SANITARY SURVEY,2026-04-27 4001976,MILLVILLE,REGULATED ACTIVITY(S),172745,MILLVILLE LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-07 4001988,CARVER,WATER SUPPLY/DRINKING WATER,555957,THE BERRY GUYS,TECHNICAL ASSISTANCE (NON-SPECIFIC),2026-05-07 4002006,EAST LONGMEADOW,REGULATED ACTIVITY(S),360268,ALLEN STREET LANDFILL,Solid Waste Pre-Permit Limited Enforcement Potential,2026-05-07 @@ -84313,6 +84331,7 @@ Id,Town,Program,FacilityId,FacilityName,InspectionType,InspectionDate 4002271,LAKEVILLE,WATER SUPPLY/DRINKING WATER,6670,POQUOY BROOK GOLF COURSE,SANITARY SURVEY,2026-05-06 4002362,KINGSTON,WATER SUPPLY/DRINKING WATER,453523,SACRED HEART EARLY CHILDHOOD CENTER,SANITARY SURVEY,2026-05-08 4002992,AVON,REGULATED ACTIVITY(S),133368,ACCU ROUNDS INC,Announced Multimedia Inspection,2026-05-08 +4003071,LYNN,REGULATED ACTIVITY(S),642898,MVM ARMORY GARAGE,Unannounced Multimedia Inspection,2026-05-06 4003239,ADAMS,REGULATED ACTIVITY(S),130060,SPECIALTY MINERALS INC,Solid Waste Inspect with Enforcement Potential,2026-05-08 4003271,ADAMS,REGULATED ACTIVITY(S),172270,ADAMS SOLID WASTE FACILITY,Solid Waste Inspect with Enforcement Potential,2026-05-08 4003274,NORTH ADAMS,REGULATED ACTIVITY(S),132275,NORTH ADAMS LANDFILL & TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-08 @@ -84320,12 +84339,14 @@ Id,Town,Program,FacilityId,FacilityName,InspectionType,InspectionDate 4003281,CHESHIRE,REGULATED ACTIVITY(S),274552,CHESHIRE SOLID WASTE FACILITY,Solid Waste Inspect with Enforcement Potential,2026-05-08 4003284,CHESHIRE,REGULATED ACTIVITY(S),172411,CHESHIRE LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-08 4003311,HOPKINTON,WATER SUPPLY/DRINKING WATER,7259,THE PRESERVE AT HOPKINTON CONDO,SANITARY SURVEY,2026-05-08 +4003381,EVERETT,REGULATED ACTIVITY(S),142332,PROLERIZED NEW ENGLAND COMPANY LLC,Drive By Inspection,2026-05-05 4003400,COLRAIN,REGULATED ACTIVITY(S),172432,COLRAIN LANDFILL AND TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-08 4003403,COLRAIN,REGULATED ACTIVITY(S),172433,COLRAIN BRUSH LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-08 4003405,ASHFIELD,REGULATED ACTIVITY(S),173175,ASHFIELD LANDFILL & TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-08 4003408,WILLIAMSBURG,REGULATED ACTIVITY(S),173098,WILLIAMSBURG LANDFILLS & TRANSFER STA,Solid Waste Inspect with Enforcement Potential,2026-05-08 4003422,BOSTON,REGULATED ACTIVITY(S),281786,BOSTON SHIP REPAIR,Compliance Evaluation-Review of Compliance Data & Reports,2026-05-12 4003532,BRIDGEWATER,REGULATED ACTIVITY(S),169033,BRIDGEWATER FARM SUPPLY,Solid Waste Inspect with Enforcement Potential,2026-05-12 +4003582,SOUTHBRIDGE,REGULATED ACTIVITY(S),172948,SOUTHBRIDGE LANDFILL NEW,Solid Waste Visit Limited Enforcement Potential,2026-04-28 4003588,EVERETT,REGULATED ACTIVITY(S),389772,FERRY STREET GAS & SERVICE,Unannounced Single-Media Inspection,2026-05-12 4003590,LAKEVILLE,WATER SUPPLY/DRINKING WATER,7205,FRATERNAL ORDER OF EAGLES,SANITARY SURVEY,2026-05-12 4003591,LAKEVILLE,WATER SUPPLY/DRINKING WATER,6674,J AND J SEAFOOD,SANITARY SURVEY,2026-05-12 @@ -84334,6 +84355,7 @@ Id,Town,Program,FacilityId,FacilityName,InspectionType,InspectionDate 4003711,AYER,REGULATED ACTIVITY(S),433187,DEVENS RECYCLING CENTER,Solid Waste Inspect with Enforcement Potential,2026-05-12 4003804,CHARLTON,REGULATED ACTIVITY(S),182551,KARL STORZ ENDOVISION INC,Unannounced Multimedia Inspection,2026-05-13 4003836,MARLBOROUGH,REGULATED ACTIVITY(S),130595,DUPONT ELECTRONIC MATERALS INTERNATIONAL,Unannounced Multimedia Inspection,2026-05-13 +4003939,STURBRIDGE,REGULATED ACTIVITY(S),360272,STURBRIDGE LANDFILL & TRANSFER STATION,Announced Single-Media Inspection,2026-04-28 4004082,NANTUCKET,WATER SUPPLY/DRINKING WATER,6249,WANNACOMET WATER COMPANY,Level 1 Assessment rTCR,2026-05-14 4004087,WALES,REGULATED ACTIVITY(S),173024,WALES LANDFILL & TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-14 4004091,BRIMFIELD,REGULATED ACTIVITY(S),172377,BRIMFIELD LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-14 @@ -84342,16 +84364,18 @@ Id,Town,Program,FacilityId,FacilityName,InspectionType,InspectionDate 4004111,OXFORD,REGULATED ACTIVITY(S),291781,OXFORD TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-12 4004133,SPENCER,REGULATED ACTIVITY(S),173206,SPENCER LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-13 4004135,SPENCER,REGULATED ACTIVITY(S),172954,SPENCER TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-13 +4004149,DEERFIELD,WATER SUPPLY/DRINKING WATER,5844,PAN AM SOUTHERN RAILROAD,SANITARY SURVEY,2026-05-01 4004165,WESTFIELD,REGULATED ACTIVITY(S),175997,DIRATS LABORATORIES,Unannounced Multimedia Inspection,2026-05-13 4004191,FAIRHAVEN,REGULATED ACTIVITY(S),168931,FAIRHAVEN GETTY,Unannounced Single-Media Inspection,2026-05-13 4004198,RANDOLPH,REGULATED ACTIVITY(S),161703,FLEXCON INDUSTRIES,Announced Multimedia Inspection,2026-05-14 4004217,BRAINTREE,REGULATED ACTIVITY(S),173140,BRAINTREE TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-14 4004401,SAUGUS,REGULATED ACTIVITY(S),172914,WHEELABRATOR SAUGUS INC,Solid Waste Inspect with Enforcement Potential,2026-05-12 4004403,SAUGUS,REGULATED ACTIVITY(S),172914,WHEELABRATOR SAUGUS INC,Solid Waste Inspect with Enforcement Potential,2026-05-14 +4004449,BOSTON,REGULATED ACTIVITY(S),412519,SPECTACLE ISLAND,Solid Waste Inspect with Enforcement Potential,2026-05-06 4004474,SPRINGFIELD,REGULATED ACTIVITY(S),596046,GEG CONSTRUCTION INC,Solid Waste Inspect with Enforcement Potential,2026-05-13 -4004541,PEABODY,WATER SUPPLY/DRINKING WATER,6152,PEABODY WATER DEPT.,SANITARY SURVEY PARTIAL,2026-05-12 4004477,GREENFIELD,REGULATED ACTIVITY(S),172555,GREENFIELD LANDFILL & TRANSFER STATION,ReInspection,2026-05-15 4004511,REHOBOTH,WATER SUPPLY/DRINKING WATER,6724,I ALIVE RESTAURANT,Level 1 Assessment rTCR,2026-05-15 +4004541,PEABODY,WATER SUPPLY/DRINKING WATER,6152,PEABODY WATER DEPT.,SANITARY SURVEY PARTIAL,2026-05-12 4004658,FAIRHAVEN,WATER SUPPLY/DRINKING WATER,6219,FAIRHAVEN WATER DEPT,SANITARY SURVEY,2026-05-18 4004660,SALEM,REGULATED ACTIVITY(S),554591,SALEM HARBOR POWER DEVELOPMENT LP,Compliance Evaluation-Review of Compliance Data & Reports,2026-05-18 4004694,PEABODY,WATER SUPPLY/DRINKING WATER,6152,PEABODY WATER DEPT.,SANITARY SURVEY,2026-05-18 @@ -84361,12 +84385,19 @@ Id,Town,Program,FacilityId,FacilityName,InspectionType,InspectionDate 4004881,RUTLAND,REGULATED ACTIVITY(S),515785,RUTLAND AD 1 LLC,Solid Waste Inspect with Enforcement Potential,2026-05-19 4004883,SPENCER,REGULATED ACTIVITY(S),591207,SPENCER AD 1 LLC,Solid Waste Inspect with Enforcement Potential,2026-05-19 4004924,CAMBRIDGE,REGULATED ACTIVITY(S),317175,MASSACHUSETTS INSTITUTE OF TECHNOLOGY,Compliance Evaluation-Review of Compliance Data & Reports,2026-05-19 +4005111,BELCHERTOWN,WATER SUPPLY/DRINKING WATER,5819,BELCHERTOWN WATER DISTRICT,SANITARY SURVEY,2026-05-07 +4005131,HINSDALE,WATER SUPPLY/DRINKING WATER,5865,HINSDALE WATER DEPT,SANITARY SURVEY,2026-05-01 4005132,MATTAPOISETT,WATER SUPPLY/DRINKING WATER,454412,MATTAPOISETT RIVER VALLEY W.D.,SANITARY SURVEY,2026-05-20 4005167,WESTFIELD,REGULATED ACTIVITY(S),130989,SAVAGE ARMS INC,Unannounced Multimedia Inspection,2026-05-20 -4005207,BOURNE,REGULATED ACTIVITY(S),172357,BOURNE LANDFILL & TRANSFER STATION,Solid Waste Pre-Permit Limited Enforcement Potential,2026-05-19 +4005207,BOURNE,REGULATED ACTIVITY(S),172357,BOURNE LANDFILL & TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-19 4005231,SOUTHBRIDGE,REGULATED ACTIVITY(S),172948,SOUTHBRIDGE LANDFILL NEW,Announced Multimedia Inspection,2026-05-20 +4005340,SUDBURY,WATER SUPPLY/DRINKING WATER,6166,SUDBURY WATER DISTRICT,BWR/BRP Announced Inspection Related Activity,2026-05-11 +4005341,BOXFORD,WATER SUPPLY/DRINKING WATER,6503,THE VILLAGE STORE BLDG.,SANITARY SURVEY,2026-05-15 +4005342,TEMPLETON,REGULATED ACTIVITY(S),434216,USA AUTO RECYCLING INC,Unannounced Multimedia Inspection,2026-05-20 +4005414,LYNNFIELD,WATER SUPPLY/DRINKING WATER,6127,LYNNFIELD CENTER WATER DISTRICT,PERMIT (QUALIFICATION/REVIEW/COMPLIANCE),2026-05-21 4005501,WORCESTER,REGULATED ACTIVITY(S),378393,BALLARD-GRANITE ST FACILITY,Solid Waste Inspect with Enforcement Potential,2026-05-21 4005549,BOXFORD,REGULATED ACTIVITY(S),172360,BOXFORD LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-20 +4005551,BOSTON,REGULATED ACTIVITY(S),412519,SPECTACLE ISLAND,Solid Waste Inspect with Enforcement Potential,2026-05-06 4005553,WILMINGTON,REGULATED ACTIVITY(S),635060,887 WOBURN,Solid Waste Visit Limited Enforcement Potential,2026-05-21 4005587,DANVERS,REGULATED ACTIVITY(S),173131,DANVERS TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-21 4005589,PEABODY,REGULATED ACTIVITY(S),329134,ALLIED WASTE SYSTEMS DBA,Solid Waste Inspect with Enforcement Potential,2026-05-21 @@ -84375,16 +84406,23 @@ Id,Town,Program,FacilityId,FacilityName,InspectionType,InspectionDate 4005599,PLAINFIELD,REGULATED ACTIVITY(S),173198,PLAINFIELD TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-21 4005601,SAVOY,REGULATED ACTIVITY(S),172915,SAVOY LANDFILL AND TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-21 4005605,DALTON,REGULATED ACTIVITY(S),172443,WARREN FARMS LANDFILL,Multiple Visits to Identify/Document a Problem,2026-05-21 +4005607,BRIMFIELD,REGULATED ACTIVITY(S),160270,BRIMFIELD STATE FOREST,Solid Waste Inspect with Enforcement Potential,2026-05-13 +4005626,ROWLEY,REGULATED ACTIVITY(S),539126,CHOICE GRAPHICS INCORPORATED,Unannounced Single-Media Inspection,2026-05-14 4005707,SPRINGFIELD,REGULATED ACTIVITY(S),395004,BALISE COLLISION REPAIR CENTER,Unannounced Multimedia Inspection,2026-05-21 4005711,TOWNSEND,REGULATED ACTIVITY(S),173015,TOWNSEND LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-21 4005740,TOWNSEND,REGULATED ACTIVITY(S),173014,TOWNSEND DUMP,Solid Waste Inspect with Enforcement Potential,2026-05-21 4005743,WESTMINSTER,REGULATED ACTIVITY(S),204856,NE RENEWABLE POWER FITCHBURG LLC,Limited Inspect for Compliance Indicators/Field Presence,2026-05-22 +4005940,FITCHBURG,REGULATED ACTIVITY(S),674170,MEINEKE CAR CARE CENTER 2927,Unannounced Multimedia Inspection,2026-05-21 +4005962,NEW BEDFORD,REGULATED ACTIVITY(S),316818,ACUSHNET COMPANY BPIII,Announced Multimedia Inspection,2026-05-21 +4006239,PEABODY,REGULATED ACTIVITY(S),535305,PINTO RECYCLING INC,Solid Waste Inspect with Enforcement Potential,2026-05-11 4006285,PEABODY,REGULATED ACTIVITY(S),131118,PEABODY MUNICIPAL LIGHT PLANT,Unannounced Single-Media Inspection,2026-05-26 4006320,WESTWOOD,REGULATED ACTIVITY(S),369417,NANO C LLC,Limited Inspect for Compliance Indicators/Field Presence,2026-05-26 +4006332,NEWBURYPORT,REGULATED ACTIVITY(S),131134,ITW SHINEMARK,Unannounced Multimedia Inspection,2026-05-21 4006404,FREETOWN,WATER SUPPLY/DRINKING WATER,6659,FORGE POND CAMPGROUND INC,SANITARY SURVEY,2026-05-27 4006405,FREETOWN,WATER SUPPLY/DRINKING WATER,187553,"CAMP WELCH, THOMAS CHEW MEMORIAL",SANITARY SURVEY,2026-05-27 4006411,MALDEN,REGULATED ACTIVITY(S),333370,ANDYS SERVICE CENTER INC,Unannounced Single-Media Inspection,2026-05-27 4006489,YARMOUTH,REGULATED ACTIVITY(S),332165,YARMOUTH BARNSTABLE REG TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-28 +4006596,BOSTON,REGULATED ACTIVITY(S),331666,CASELLA RECYCLING LLC BLD 14,Solid Waste Inspect with Enforcement Potential,2026-05-19 4006629,SPRINGFIELD,REGULATED ACTIVITY(S),422690,FP MCNAMARA RUBBISH REMOVAL INC,Solid Waste Inspect with Enforcement Potential,2026-05-27 4006641,LYNN,REGULATED ACTIVITY(S),507518,CITY OF LYNN SEAPORT MARINA,Unannounced Single-Media Inspection,2026-05-28 4006644,NORTH ADAMS,REGULATED ACTIVITY(S),130571,MORRISON BERKSHIRE INC,Unannounced Multimedia Inspection,2026-05-28 @@ -84392,8 +84430,11 @@ Id,Town,Program,FacilityId,FacilityName,InspectionType,InspectionDate 4006652,WESTBOROUGH,REGULATED ACTIVITY(S),191625,EL HARVEY & SONS INC,Solid Waste Inspect with Enforcement Potential,2026-05-28 4006655,IPSWICH,REGULATED ACTIVITY(S),161814,BROX INDUSTRIES INC,Drive By Inspection,2026-05-28 4006665,NORFOLK,REGULATED ACTIVITY(S),130568,CAMGER COATINGS SYSTEMS INC,Unannounced Multimedia Inspection,2026-05-28 +4006674,PITTSFIELD,REGULATED ACTIVITY(S),161192,PITTSFIELD GENERATING COMPANY LP,Drive By Inspection,2026-05-19 +4006706,MILLBURY,REGULATED ACTIVITY(S),132293,WHEELABRATOR MILLBURY INC,Solid Waste Inspect with Enforcement Potential,2026-05-08 4006708,HAVERHILL,REGULATED ACTIVITY(S),132291,REWORLD HAVERHILL INC,Solid Waste Inspect with Enforcement Potential,2026-05-27 4006710,LYNN,REGULATED ACTIVITY(S),364596,COVANTA 4RECOVERY LP,Solid Waste Inspect with Enforcement Potential,2026-05-27 +4006712,WESTMINSTER,REGULATED ACTIVITY(S),133373,FITCHBURG WESTMINSTER SLF,Solid Waste Inspect with Enforcement Potential,2026-05-21 4006715,SHIRLEY,WATER SUPPLY/DRINKING WATER,281497,WOODLAND RIDGE,SANITARY SURVEY,2026-05-28 4006718,HOPKINTON,WATER SUPPLY/DRINKING WATER,7256,VILLAGE AT HIGHLAND PARK,SANITARY SURVEY,2026-05-28 4006775,HUNTINGTON,REGULATED ACTIVITY(S),374550,J&R SERVICE,Unannounced Multimedia Inspection,2026-05-28 @@ -84404,3 +84445,101 @@ Id,Town,Program,FacilityId,FacilityName,InspectionType,InspectionDate 4006886,BROCKTON,REGULATED ACTIVITY(S),523140,LYNE LABORATORY,Announced Multimedia Inspection,2026-05-29 4006909,CANTON,WATER SUPPLY/DRINKING WATER,6092,CANTON WATER DEPT,SANITARY SURVEY,2026-05-28 4006947,MANSFIELD,WATER SUPPLY/DRINKING WATER,6235,MANSFIELD WATER DIVISION,BWR/BRP Announced Inspection Related Activity,2026-05-29 +4007139,FALL RIVER,REGULATED ACTIVITY(S),130815,BORDEN AND REMINGTON CORP,Announced Multimedia Inspection,2026-05-14 +4007205,HAMILTON,WATER SUPPLY/DRINKING WATER,6117,HAMILTON WATER DEPT,PERMIT (QUALIFICATION/REVIEW/COMPLIANCE),2026-05-29 +4007240,BREWSTER,WATER SUPPLY/DRINKING WATER,6203,BREWSTER WATER DEPARTMENT,SANITARY SURVEY,2026-05-13 +4007251,LUDLOW,REGULATED ACTIVITY(S),673869,AMERICAN CONCRETE & ASPHALT INC,Solid Waste Inspect with Enforcement Potential,2026-06-01 +4007253,LUDLOW,REGULATED ACTIVITY(S),316225,LUDLOW DPW AND TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-06-01 +4007258,CHESTER,REGULATED ACTIVITY(S),172413,CHESTER WOOD WASTE LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-27 +4007266,ROYALSTON,REGULATED ACTIVITY(S),172895,ROYALSTON LANDFILL AND TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-28 +4007271,ROYALSTON,REGULATED ACTIVITY(S),396048,FORMER ROYALSTON LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-28 +4007273,WARWICK,REGULATED ACTIVITY(S),173042,WARWICK LF AND TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-28 +4007282,HOPKINTON,REGULATED ACTIVITY(S),359971,EL HARVEY & SONS INC,Solid Waste Inspect with Enforcement Potential,2026-06-01 +4007285,WEST BROOKFIELD,WATER SUPPLY/DRINKING WATER,6069,MADDEN ESTATES,FACILITY SELF REPORTING,2026-04-30 +4007288,PEPPERELL,REGULATED ACTIVITY(S),674178,DREWS POWDER COATING LLC,Unannounced Multimedia Inspection,2026-05-27 +4007291,HOPKINTON,REGULATED ACTIVITY(S),359971,EL HARVEY & SONS INC,Solid Waste Inspect with Enforcement Potential,2026-06-01 +4007303,PEPPERELL,REGULATED ACTIVITY(S),674178,DREWS POWDER COATING LLC,Drive By Inspection,2026-05-21 +4007306,PEPPERELL,REGULATED ACTIVITY(S),674178,DREWS POWDER COATING LLC,Drive By Inspection,2026-05-26 +4007313,CHARLTON,WATER SUPPLY/DRINKING WATER,254747,PRINDLE POND CONFERENCE CENTER,FACILITY SELF REPORTING,2026-04-30 +4007395,WESTBOROUGH,REGULATED ACTIVITY(S),191625,EL HARVEY & SONS INC,Solid Waste Inspect with Enforcement Potential,2026-06-01 +4007401,WESTBOROUGH,REGULATED ACTIVITY(S),191625,EL HARVEY & SONS INC,Solid Waste Inspect with Enforcement Potential,2026-06-01 +4007431,LEOMINSTER,REGULATED ACTIVITY(S),604854,UNITED MATERIAL MANAGEMENT OF LEOMINSTER,Solid Waste Inspect with Enforcement Potential,2026-06-01 +4007447,HUDSON,REGULATED ACTIVITY(S),637461,BLANK INDUSTRIES LLC,Drive By Inspection,2026-05-05 +4007544,NEW BEDFORD,REGULATED ACTIVITY(S),322455,EL HARVEY & SONS - NEW BEDFORD,Solid Waste Inspect with Enforcement Potential,2026-05-29 +4007647,HAVERHILL,REGULATED ACTIVITY(S),172587,OLD GROVELAND ROAD LANDFILL,Solid Waste Visit Limited Enforcement Potential,2026-06-02 +4007700,SHUTESBURY,WATER SUPPLY/DRINKING WATER,7123,CAMP ANDERSON FOUNDATION,SANITARY SURVEY,2026-05-04 +4007702,MONSON,WATER SUPPLY/DRINKING WATER,7043,PARTRIDGE HOLLOW CAMPING,SANITARY SURVEY,2026-05-16 +4007703,RUTLAND,WATER SUPPLY/DRINKING WATER,6484,DCR RUTLAND STATE PARK,Level 2 Assessment rTCR,2026-05-29 +4007705,EASTHAM,WATER SUPPLY/DRINKING WATER,566805,TOWN OF EASTHAM,BWR/BRP Announced Inspection Related Activity,2026-05-06 +4007714,CHATHAM,WATER SUPPLY/DRINKING WATER,6209,CHATHAM WATER DEPARTMENT,BWR/BRP Announced Inspection Related Activity,2026-05-14 +4007715,LAKEVILLE,WATER SUPPLY/DRINKING WATER,6673,CHURCH OF NAZARENE,SANITARY SURVEY,2026-05-13 +4007716,WINCHESTER,REGULATED ACTIVITY(S),173112,WINCHESTER LANDFILL AND TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-06-02 +4007720,PLYMOUTH,WATER SUPPLY/DRINKING WATER,671747,THE STORE AT SANDY POND,BWR/BRP Announced Inspection Related Activity,2026-05-01 +4007722,MIDDLEBOROUGH,REGULATED ACTIVITY(S),172729,MIDDLEBOROUGH LANDFILL & TRANSFER STA,Solid Waste Inspect with Enforcement Potential,2026-06-02 +4007808,GARDNER,REGULATED ACTIVITY(S),674261,ROOFBLOK LIMITED,Limited Inspect for Compliance Indicators/Field Presence,2026-04-30 +4007810,GARDNER,REGULATED ACTIVITY(S),674261,ROOFBLOK LIMITED,Drive By Inspection,2026-05-06 +4007813,GARDNER,REGULATED ACTIVITY(S),674261,ROOFBLOK LIMITED,Drive By Inspection,2026-05-19 +4007815,GARDNER,REGULATED ACTIVITY(S),674261,ROOFBLOK LIMITED,Drive By Inspection,2026-05-21 +4007837,ASHFIELD,WATER SUPPLY/DRINKING WATER,515350,DOUBLE EDGE THEATRE,SANITARY SURVEY,2026-04-29 +4007838,TRURO,WATER SUPPLY/DRINKING WATER,6784,SLADEVILLE COTTAGES INC.,BWR/BRP Announced Inspection Related Activity,2026-05-14 +4007906,CARLISLE,WATER SUPPLY/DRINKING WATER,333202,GLEASON PUBLIC LIBRARY,FACILITY SELF REPORTING,2026-06-02 +4007907,BEDFORD,REGULATED ACTIVITY(S),131339,USAF HANSCOM AFB 66 ABG/CEIE,Unannounced Single-Media Inspection,2026-06-02 +4007909,IPSWICH,REGULATED ACTIVITY(S),161814,BROX INDUSTRIES INC,Unannounced Single-Media Inspection,2026-06-04 +4007921,WAKEFIELD,REGULATED ACTIVITY(S),543136,NATGUN,ReInspection,2026-06-03 +4007948,GRAFTON,REGULATED ACTIVITY(S),418673,J & J JUNK CAR REMOVAL LLC,ReInspection,2026-06-03 +4007950,BRIDGEWATER,WATER SUPPLY/DRINKING WATER,187325,MCI BRIDGEWATER,SANITARY SURVEY,2026-06-04 +4007983,BOSTON,REGULATED ACTIVITY(S),332011,ALLIED WASTE SYSTEMS LLC,Solid Waste Inspect with Enforcement Potential,2026-06-03 +4007986,NORTH ANDOVER,REGULATED ACTIVITY(S),132771,WHEELABRATOR NORTH ANDOVER INC,Solid Waste Inspect with Enforcement Potential,2026-06-03 +4008029,SPRINGFIELD,REGULATED ACTIVITY(S),175198,FAMILY MART SUNOCO,Unannounced Single-Media Inspection,2026-06-03 +4008166,WESTFORD,REGULATED ACTIVITY(S),529760,NUCAR HONDA OF WESTFORD,Unannounced Multimedia Inspection,2026-05-21 +4008191,GRAFTON,REGULATED ACTIVITY(S),223229,DEORSEYS GARAGE,Limited Inspect for Compliance Indicators/Field Presence,2026-06-03 +4008193,AUBURN,REGULATED ACTIVITY(S),132265,AUBURN LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-06-04 +4008195,NORTHBRIDGE,REGULATED ACTIVITY(S),419532,NORTHBRIDGE REDEVELOPMENT CORP LLC,Solid Waste Inspect with Enforcement Potential,2026-06-04 +4008197,AUBURN,REGULATED ACTIVITY(S),674345,TOWN OF AUBURN PROPERTY,Solid Waste Inspect with Enforcement Potential,2026-06-04 +4008207,NORTHBOROUGH,WATER SUPPLY/DRINKING WATER,472982,TOUGAS FARM (BALL HILL REALTY),Level 1 Assessment rTCR,2026-05-29 +4008212,NORTHBOROUGH,WATER SUPPLY/DRINKING WATER,472982,TOUGAS FARM (BALL HILL REALTY),Level 2 Assessment rTCR,2026-06-01 +4008222,GROTON,REGULATED ACTIVITY(S),172556,GROTON LANDFILL & TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-06-04 +4008227,GROTON,REGULATED ACTIVITY(S),172556,GROTON LANDFILL & TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-06-04 +4008229,WARREN,REGULATED ACTIVITY(S),174323,MA DOT WARREN,Unannounced Single-Media Inspection,2026-06-03 +4008237,GROTON,REGULATED ACTIVITY(S),172556,GROTON LANDFILL & TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-06-04 +4008257,ADAMS,REGULATED ACTIVITY(S),130060,SPECIALTY MINERALS INC,Solid Waste Inspect with Enforcement Potential,2026-05-22 +4008259,NEW ASHFORD,REGULATED ACTIVITY(S),359789,NEW ASHFORD LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-22 +4008261,NEW ASHFORD,REGULATED ACTIVITY(S),132692,SNOWY OWL RESORT BRODIE MOUNTAIN,Solid Waste Inspect with Enforcement Potential,2026-05-22 +4008263,WINDSOR,REGULATED ACTIVITY(S),173114,WINDSOR LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-22 +4008266,NEW MARLBOROUGH,REGULATED ACTIVITY(S),173194,NEW MARLBOROUGH TRANSFER ST/LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-28 +4008269,BECKET,REGULATED ACTIVITY(S),172316,BECKET LANDFILL AND TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-28 +4008272,BECKET,REGULATED ACTIVITY(S),165958,BECKET CHIMNEY CORNERS YMCA,Solid Waste Inspect with Enforcement Potential,2026-05-28 +4008348,AUBURN,REGULATED ACTIVITY(S),333306,AUBURN TRANSFER STATION & RECOVERY FACIL,Solid Waste Inspect with Enforcement Potential,2026-06-04 +4008387,SWANSEA,WATER SUPPLY/DRINKING WATER,446430,ROCKY MOUNTAIN SPRING WATER VENDING,SANITARY SURVEY,2026-06-04 +4008388,FALL RIVER,WATER SUPPLY/DRINKING WATER,320582,ROCKY MOUNTAIN SPRING WATER VENDING,SANITARY SURVEY,2026-06-04 +4008389,FALL RIVER,WATER SUPPLY/DRINKING WATER,301860,ROCKY MOUNTAIN SPRING WATER VENDING,SANITARY SURVEY,2026-06-04 +4008390,FALL RIVER,WATER SUPPLY/DRINKING WATER,367103,ROCKY MOUNTAIN SPRING WATER VENDING,SANITARY SURVEY,2026-06-04 +4008431,BOXBOROUGH,WATER SUPPLY/DRINKING WATER,593952,PADDOCK ESTATES,FACILITY SELF REPORTING,2026-05-20 +4008493,BOYLSTON,WATER SUPPLY/DRINKING WATER,6472,ME REALTY LLC (OTHER PLACE PUB),SANITARY SURVEY,2026-05-29 +4008550,WILMINGTON,REGULATED ACTIVITY(S),586507,MONOGRAM GOURMET FOODS,Limited Inspect for Compliance Indicators/Field Presence,2026-06-05 +4008553,TRURO,WATER SUPPLY/DRINKING WATER,254882,TRURO TOWN HALL,Level 2 Assessment rTCR,2026-06-04 +4008560,TAUNTON,REGULATED ACTIVITY(S),471910,NEW ENGLAND WASTE DISPOSAL,Solid Waste Inspect with Enforcement Potential,2026-06-02 +4008571,LITTLETON,WATER SUPPLY/DRINKING WATER,6014,LITTLETON WATER DEPARTMENT,SANITARY SURVEY PARTIAL,2026-05-11 +4008572,LITTLETON,WATER SUPPLY/DRINKING WATER,6014,LITTLETON WATER DEPARTMENT,SANITARY SURVEY,2026-05-13 +4008745,MIDDLEBOROUGH,WATER SUPPLY/DRINKING WATER,294829,WOODS POND CONDOMINIUMS,SANITARY SURVEY,2026-06-08 +4008858,EVERETT,REGULATED ACTIVITY(S),158340,MBTA EVERETT BUS OVERHAUL GARAGE,Unannounced Multimedia Inspection,2026-05-14 +4008870,CAMBRIDGE,REGULATED ACTIVITY(S),625529,TOBIN MONTESSORI AND VASSAL LN UPPER SCH,Announced Multimedia Inspection,2026-05-18 +4008925,EGREMONT,REGULATED ACTIVITY(S),172503,EGREMONT LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-06-03 +4008927,EGREMONT,REGULATED ACTIVITY(S),308716,EGREMONT TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-06-03 +4009182,GRAFTON,WATER SUPPLY/DRINKING WATER,461509,LAUREL HILL CONDOMINIUMS,SANITARY SURVEY,2026-05-26 +4009192,ROWE,REGULATED ACTIVITY(S),205717,YANKEE ATOMIC ELECTRIC CO,Solid Waste Inspect with Enforcement Potential,2026-05-18 +4009195,BUCKLAND,REGULATED ACTIVITY(S),172387,BUCKLAND LANDFILL & TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-18 +4009198,ROWE,REGULATED ACTIVITY(S),172891,ROWE LANDFILL AND TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-18 +4009201,GRANBY,REGULATED ACTIVITY(S),660500,RED FIRE FARM,Solid Waste Inspect with Enforcement Potential,2026-05-20 +4009203,DEERFIELD,REGULATED ACTIVITY(S),172455,DEERFIELD LANDFILL & TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-22 +4009205,HOLYOKE,REGULATED ACTIVITY(S),453811,CASELLA OF HOLYOKE INC TRANSFER STATION,Solid Waste Inspect with Enforcement Potential,2026-05-27 +4009207,EAST LONGMEADOW,REGULATED ACTIVITY(S),172481,SOMERS ROAD LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-14 +4009209,WARE,REGULATED ACTIVITY(S),381471,RESOURCE WARE,Solid Waste Inspect with Enforcement Potential,2026-05-11 +4009211,HOLYOKE,REGULATED ACTIVITY(S),172610,HOLYOKE LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-05 +4009213,CHICOPEE,REGULATED ACTIVITY(S),173886,REPUBLIC SERVICES BFI AHEARN LANDFILL,Solid Waste Inspect with Enforcement Potential,2026-05-01 +4010017,WESTFIELD,REGULATED ACTIVITY(S),334238,WESTFIELD TWISS ST LF AND TRANSFER STA,Solid Waste Inspect with Enforcement Potential,2026-06-10 +4010021,EASTHAMPTON,REGULATED ACTIVITY(S),172490,EASTHAMPTON LOUDVILLE ROAD LANDFILL,Multiple Visits to Identify/Document a Problem,2026-06-10 +4010059,CARVER,WATER SUPPLY/DRINKING WATER,282324,CARVER MUNICIPAL BUILDINGS,BWR/BRP Announced Inspection Related Activity,2026-06-11 +4010084,WALTHAM,REGULATED ACTIVITY(S),527010,A123 SYSTEMS INC,Announced Multimedia Inspection,2026-06-10 +4010120,AYER,WATER SUPPLY/DRINKING WATER,5956,AYER DPW WATER DIVISION,PERMIT (QUALIFICATION/REVIEW/COMPLIANCE),2026-06-11 +4010127,MILLBURY,REGULATED ACTIVITY(S),132293,WHEELABRATOR MILLBURY INC,Solid Waste Inspect with Enforcement Potential,2026-06-11 diff --git a/docs/data/EEADP_inspection_sample.csv b/docs/data/EEADP_inspection_sample.csv index 1626ca0..cfaade3 100644 --- a/docs/data/EEADP_inspection_sample.csv +++ b/docs/data/EEADP_inspection_sample.csv @@ -1,11 +1,11 @@ Id,Town,Program,FacilityId,FacilityName,InspectionType,InspectionDate -1649163,LYNN,REGULATED ACTIVITY(S),161954,LYNN REGIONAL WPCF,Announced Single-Media Inspection,2004-10-19 -2823854,HAVERHILL,REGULATED ACTIVITY(S),156051,DELA INC,Unannounced Multimedia Inspection,2016-06-02 -1247735,DEDHAM,REGULATED ACTIVITY(S),329681,FOUR CORNER CITGO,ReInspection,2000-05-10 -3061858,PHILLIPSTON,WATER SUPPLY/DRINKING WATER,6394,PHILLIPSTON MEMORIAL BUILDING,Compliance Evaluation-Review of Compliance Data & Reports,2019-05-15 -2763914,CARVER,WATER SUPPLY/DRINKING WATER,526798,NORTH CARVER WATER DISTRICT,BWR/BRP Announced Inspection Related Activity,2015-08-28 -2271568,HINGHAM,REGULATED ACTIVITY(S),394808,PMG 8652,Assess Reporting Problems or Inclusion to Regulated Universe,2010-05-07 -2717937,SPRINGFIELD,REGULATED ACTIVITY(S),422690,FP MCNAMARA RUBBISH REMOVAL INC,Solid Waste Inspect with Enforcement Potential,2015-01-06 -2099962,MARLBOROUGH,REGULATED ACTIVITY(S),382425,WECARE ENVIRONMENTAL LLC,Multiple Visits to Identify/Document a Problem,2008-07-25 -2552266,SOUTH HADLEY,REGULATED ACTIVITY(S),172937,SOUTH HADLEY LANDFILL,Solid Waste Inspect with Enforcement Potential,2013-04-17 -1549541,BROCKTON,REGULATED ACTIVITY(S),172381,THATCHER STREET LANDFILL,Unannounced Single-Media Inspection,2003-10-22 +3154597,CUMMINGTON,REGULATED ACTIVITY(S),172439,CUMMINGTON DEMOLITION LANDFILL,Solid Waste Inspect with Enforcement Potential,2020-09-25 +1192663,BILLERICA,REGULATED ACTIVITY(S),186917,TRANS MATE LLC,ReInspection,1999-10-04 +1582266,CHILMARK,WATER SUPPLY/DRINKING WATER,187903,CHILMARK COMMUNITY CENTER,FACILITY SELF REPORTING,2004-03-29 +1363897,TEWKSBURY,REGULATED ACTIVITY(S),131103,TEWKSBURY HOSPITAL,Site Visit But Not Full Inspection,2001-07-31 +2274688,BOSTON,REGULATED ACTIVITY(S),162319,MASSPORT LOGAN AIRPORT,Assess Reporting Problems or Inclusion to Regulated Universe,2010-06-03 +1293119,SANDISFIELD,WATER SUPPLY/DRINKING WATER,187784,M J TUCKERS LLC,SANITARY SURVEY,2001-01-04 +1981835,HATFIELD,REGULATED ACTIVITY(S),435152,LONGVIEW RV SUPERSTORES,Unannounced Multimedia Inspection,2007-05-24 +2636697,SPRINGFIELD,REGULATED ACTIVITY(S),319692,SPRINGFIELD LABEL & TAPE CO INC,Unannounced Multimedia Inspection,2014-02-21 +1059596,BERKLEY,REGULATED ACTIVITY(S),299145,BERKLEY RECYCLING CENTER,Unannounced Single-Media Inspection,1997-08-02 +2646377,ROWLEY,WATER SUPPLY/DRINKING WATER,6158,ROWLEY WATER DEPARTMENT,ENGINEERING DETERMINATION/ADVICE,2014-04-24 diff --git a/docs/data/EEADP_permit_sample.csv b/docs/data/EEADP_permit_sample.csv index 09460a8..24fba5d 100644 --- a/docs/data/EEADP_permit_sample.csv +++ b/docs/data/EEADP_permit_sample.csv @@ -1,11 +1,11 @@ Id,FacilityName,PermitNumber,PermitType,Subtype,Program,StreetName,Town,Status,FacilityId,FinalDecisionDate,DateApplied -EEA18CAP000000076F,ANNE MCNEIL,HW05-MA-0261,HW05,HW05,HAZARDOUS WASTE,114 BRIDGE RD,SALISBURY,Active,,2018-06-01T00:00:00, -EEA19CAP00000007NV,MARCIA CROCE,PR-0000212,PR,PRODUCT REGISTRATION,PESTICIDE,111 RIDC PARK WEST DRIVE,PITTSBURGH,Expired,,2025-06-11T11:24:56, -EEA20CAP00000004WK,SAMUEL JOHN TUCCI,AL-0051635,AL,PESTICIDE CREDENTIAL,PESTICIDE,223 SCHOOL STREET,SOMERVILLE,Expired,,2021-12-31T12:16:25, -PIM_16427,LINCOLN CORPORATE CENTER,W003652,WP14,MINOR SEWER EXTENSION,WATER POLLUTION CONTROL,25 MIDDLESEX TPKE,BILLERICA,Approved,316582,1999-03-17T00:00:00,1998-12-28T00:00:00 -EEA18CAP0000000075,GLENN R RALSTON,AL-0048030,AL,PESTICIDE CREDENTIAL,PESTICIDE,43 LEE WAY,BREWSTER,Expired,,2019-07-01T14:50:03, -PIM_58094,PEREIRA CARLOS,X232304,WW01A,Water-Dependent License Residential <= 4 units,WETLANDS & WATERWAYS,103 ASHLEY ISLAND RD,FAIRHAVEN,Approved,360916,2010-07-14T00:00:00,2010-03-29T00:00:00 -EEA18CAP0000000484,IAN PERKINS,AL-0048596,AL,PESTICIDE CREDENTIAL,PESTICIDE,110 EAMES STREET,WILMINGTON,Expired,,2020-06-30T01:00:43, -PIM_12959,INCINERATOR ROAD MUNICIPAL LANDFILL,W001022,SW24,Corrective Action Alternative Analysis Report,SOLID WASTE MGMT,INCINERATOR RD,LAWRENCE,Approved,300507,1998-08-12T00:00:00,1998-02-09T00:00:00 -EEA08PES00000001GL,MATTHEW PIDGEON,AL-0036473,AL,PESTICIDE CREDENTIAL,PESTICIDE,2 OLDE LANTERN ROAD,BEDFORD,Active,,2025-10-17T19:23:31, -EEA19CAP000000016V,LEOMINSTER TRANSFER STATION,SW45-0000017,SW45,SW45,SOLID WASTE MGMT,"256 NEW LANCASTER ST, RTE 117.",LEOMINSTER,Active,999999,2019-01-25T07:07:33, +EEA26CAP00000006IO,BRANDON JENNINGS,AL-0061008,AL,PESTICIDE CREDENTIAL,PESTICIDE,63 KINGMAN STREET,LAKEVILLE,Active,,2026-04-06T11:53:04, +PIM_8850,SYLVIA FAMILY CRANBERRY BOGS,129334,WM01,Transfer of Water Withdrawal Permit/Registration,WATERSHED MANAGEMENT,COUNTY ST,LAKEVILLE,Approved,164396,1997-04-04T00:00:00,1997-03-24T00:00:00 +EEA23CAP0000000CYX,CHARLES HARRIS,CC-0056439,CC,PESTICIDE CREDENTIAL,PESTICIDE,525 WOOD AVE FRONT 1F,WOONSOCKET,Active,,2025-03-28T07:40:54, +PIM_39513,OLD STATE GAME FARM LANDS,W059321,WW01B,Water-Dependent License Other Projects,WETLANDS & WATERWAYS,510 RTE 6A,SANDWICH,Approved,408694,2005-11-22T00:00:00,2005-01-26T00:00:00 +EEA19CAP0000000JY2,DEBRA HERRING,PR-0004922,PR,PRODUCT REGISTRATION,PESTICIDE,PO BOX 300002,LAWRENCEVILLE,Active,,2025-06-04T09:24:22, +PIM_46582,ARTHUR ALLEN PROPERTY,W087099,WW07,Major Dredging Project,WETLANDS & WATERWAYS,143 PLANTING FIELD WAY,EDGARTOWN,Approved,521956,2007-01-25T00:00:00,2006-08-17T00:00:00 +EEA11PES00000001YG,PAUL TROCKI,AL-0039647,AL,PESTICIDE CREDENTIAL,PESTICIDE,89 RALPH MANN DRIVE,STOUGHTON,Expired,,2019-07-01T14:51:26, +PIM_15837,PLYMPTON HOUSING FOR THE ELDERLY,P27214,WS13,Approval Site & Pump Test Source Under 70 GPM,WATER SUPPLY/DRINKING WATER,COUNTY RD,PLYMPTON,Approved,314793,1999-01-15T00:00:00,1998-10-27T00:00:00 +EEA19CAP00000007T9,KEVIN JOHNSON,AL-0050548,AL,PESTICIDE CREDENTIAL,PESTICIDE,505 MILL ST APT 371,WORCESTER,Expired,,2019-12-10T11:11:31, +PIM_33302,FAIRFIELD AT MARLBORO,W038654,WW10,MAJOR FILL AND EXCAVATION PROJECTS,WETLANDS & WATERWAYS,SIMARANO DR,MARLBOROUGH,Approved,387208,2003-09-05T00:00:00,2003-06-18T00:00:00 diff --git a/docs/data/EPARegion1_NPDES_permit_data.csv b/docs/data/EPARegion1_NPDES_permit_data.csv index 414bbbe..9bc1173 100644 --- a/docs/data/EPARegion1_NPDES_permit_data.csv +++ b/docs/data/EPARegion1_NPDES_permit_data.csv @@ -339,6 +339,7 @@ Windsor Locks (Connecticut River),"Winchester, Town of (pdf) (1.1 MB)",CT0101222,10/06/2016,Winsted,"Winchester, Town of (pdf) (1.1 MB)","Winchester, Town of (pdf) (1.1 MB)",['https://www.epa.gov/system/files/documents/2025-07/finalct0101222permit-2016.pdf'],final,ct,Still River,, Winsted (Still River),"Winchester, Town of (pdf) (944 KB)",CT0101222,10/18/2005,Winsted,"Winchester, Town of (pdf) (944 KB)","Winchester, Town of (pdf) (944 KB)",['https://www.epa.gov/system/files/documents/2025-09/finalct0101222permit-2005.pdf'],final,ct,Still River,, Woodstock (May Brook),Rogers Corporation (pdf) (114 KB),CT0021504,02/23/2009,Woodstock,Rogers Corporation (pdf) (114 KB),Rogers Corporation (pdf) (114 KB),['https://www.epa.gov/system/files/documents/2025-08/finalct0021504permit-2009.pdf'],final,ct,May Brook,, +,Mystic Aquarium A Division of Sea Research Foundation Inc.,CT0020630,,Mystic,Mystic Aquarium A Division of Sea Research Foundation Inc.,Mystic Aquarium A Division of Sea Research Foundation Inc.,['https://www.epa.gov/ct/draft-permit-mystic-aquarium-division-sea-research-foundation-inc-mystic-ct-ct0020630'],draft,ct,,Mystic,06/08/2026 - 07/07/2026 ,Pharmacia & Upjohn Company LLC,CT0001341,,New Haven,Pharmacia & Upjohn Company LLC,Pharmacia & Upjohn Company LLC,['https://www.epa.gov/ct/draft-permit-pharmacia-upjohn-company-llc-new-haven-ct-ct0001341'],draft,ct,,New Haven,04/24/2026 - 05/23/2026 ,"UConn Avery Point Campus, John S. Rankin Laboratory Department of Marine Sciences",CT0028631,,Groton,"UConn Avery Point Campus, John S. Rankin Laboratory Department of Marine Sciences","UConn Avery Point Campus, John S. Rankin Laboratory Department of Marine Sciences",['https://www.epa.gov/ct/draft-permit-uconn-avery-point-campus-john-s-rankin-laboratory-department-marine-sciences-groton'],draft,ct,,Groton,04/07/2026 - 05/06/2026 ,Pfizer Inc. (pdf) (3.7 MB),CT0000957,,Groton,Pfizer Inc. (pdf) (3.7 MB),Pfizer Inc. (pdf) (3.7 MB),['https://www.epa.gov/system/files/documents/2026-02/draftct0000957permit-2026.pdf'],draft,ct,,Groton,02/04/2026 - 03/03/2026 @@ -924,7 +925,8 @@ Biddeford,"Jasper Wyman & Sons, Inc. (pdf) (2.2 MB)",ME0037265,10/04/2010,Cherryfield,"Jasper Wyman & Sons, Inc. (pdf) (2.2 MB)","Jasper Wyman & Sons, Inc. (pdf) (2.2 MB)",['https://www.epa.gov/system/files/documents/2025-08/finalme0037265permit-2010.pdf'],final,me,"Narragaugus River, Class SB",, "Cherryfield (Narragaugus River, Class SB)",Narraguagus Estates (pdf) (3.1 MB),ME0036871,12/04/2013,Cherryfield,Narraguagus Estates (pdf) (3.1 MB),Narraguagus Estates (pdf) (3.1 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0036871permit-2013.pdf'],final,me,"Narragaugus River, Class SB",, China,Bio-Renewable Fuels (pdf) (513 KB),MEU508255,02/12/2014,China,Bio-Renewable Fuels (pdf) (513 KB),Bio-Renewable Fuels (pdf) (513 KB),['https://www.epa.gov/system/files/documents/2025-07/finalmeu508255permit-2014.pdf'],final,me,,, -"Clinton (Kennebec River, Class C)",Caverly Farms LLC (pdf) (591 KB),ME0037109,06/01/2020,Clinton,Caverly Farms LLC (pdf) (591 KB),Caverly Farms LLC (pdf) (591 KB),['https://www.epa.gov/system/files/documents/2025-06/finalme0037109permit-2020.pdf'],final,me,"Kennebec River, Class C",, +"Clinton (Kennebec River, Class C)","Caverly Farms, LLC (pdf) (885 KB)",ME0037109,05/27/2026,Clinton,"Caverly Farms, LLC (pdf) (885 KB)","Caverly Farms, LLC (pdf) (885 KB)",['https://www.epa.gov/system/files/documents/2026-06/finalme0037109permit-2026.pdf'],final,me,"Kennebec River, Class C",, +"Clinton (Kennebec River, Class C)","Caverly Farms, LLC (pdf) (591 KB)",ME0037109,06/01/2020,Clinton,"Caverly Farms, LLC (pdf) (591 KB)","Caverly Farms, LLC (pdf) (591 KB)",['https://www.epa.gov/system/files/documents/2025-06/finalme0037109permit-2020.pdf'],final,me,"Kennebec River, Class C",, "Clinton (Kennebec River, Class C)",Caverly Farms LLC (pdf) (3.1 MB),ME0037109,10/17/2014,Clinton,Caverly Farms LLC (pdf) (3.1 MB),Caverly Farms LLC (pdf) (3.1 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0037109permit-2014.pdf'],final,me,"Kennebec River, Class C",, "Clinton (Kennebec River, Class C)",Caverly Farms LLC (pdf) (237 KB),ME0037109,03/23/2009,Clinton,Caverly Farms LLC (pdf) (237 KB),Caverly Farms LLC (pdf) (237 KB),['https://www.epa.gov/system/files/documents/2025-08/finalme0037109permit-2009.pdf'],final,me,"Kennebec River, Class C",, "Clinton (Sebasticook River, Class C)",Clinton Water District (pdf) (3.2 MB),ME0101699,07/01/2025,Clinton,Clinton Water District (pdf) (3.2 MB),Clinton Water District (pdf) (3.2 MB),['https://www.epa.gov/system/files/documents/2025-07/finalme0101699permit-2025.pdf'],final,me,"Sebasticook River, Class C",, @@ -2091,17 +2093,17 @@ Togus (Togus Stream),Woodland Pulp LLC - Woodland Hydro Project,ME0036668,,Baileyville,Woodland Pulp LLC - Woodland Hydro Project,Woodland Pulp LLC - Woodland Hydro Project,['https://www.epa.gov/me/draft-permit-woodland-pulp-llc-woodland-hydro-project-baileyville-me-me0036668'],draft,me,,Baileyville,04/02/2026 - 05/04/2026 ,Woodland Pulp LLC - Grand Falls Hydro Project,ME0036676,,Baileyville,Woodland Pulp LLC - Grand Falls Hydro Project,Woodland Pulp LLC - Grand Falls Hydro Project,['https://www.epa.gov/me/draft-permit-woodland-pulp-llc-grand-falls-hydro-project-baileyville-me-me0036676'],draft,me,,Baileyville,04/02/2026 - 05/04/2026 ,"Sorrento, Town of",ME0102130,,Sorrento,"Sorrento, Town of","Sorrento, Town of",['https://www.epa.gov/me/draft-permit-town-sorrento-sorrento-me-me0102130'],draft,me,,Sorrento,03/27/2026 - 04/27/2026 -,SMC Real Estate INC dba Town and Country Apartments,ME0036765,,Presque Isle,SMC Real Estate INC dba Town and Country Apartments,SMC Real Estate INC dba Town and Country Apartments,['https://www.epa.gov/me/draft-permit-smc-real-estate-inc-dba-town-and-country-apartments-presque-isle-me-me0036765'],draft,me,,Presque Isle,03/27/2026 - 04/27/2026 +,SMC Real Estate Inc. dba Town and Country Apartments,ME0036765,,Presque Isle,SMC Real Estate Inc. dba Town and Country Apartments,SMC Real Estate Inc. dba Town and Country Apartments,['https://www.epa.gov/me/draft-permit-smc-real-estate-inc-dba-town-and-country-apartments-presque-isle-me-me0036765'],draft,me,,Presque Isle,03/27/2026 - 04/27/2026 ,Flood Brothers LLC,ME0038986,,Clinton,Flood Brothers LLC,Flood Brothers LLC,['https://www.epa.gov/me/draft-permit-flood-brothers-llc-clinton-me-me0038986'],draft,me,,Clinton,03/27/2026 - 04/27/2026 ,Washington County Community College Overboard Discharge,ME0102831,,Calais,Washington County Community College Overboard Discharge,Washington County Community College Overboard Discharge,['https://www.epa.gov/me/draft-permit-washington-county-community-college-overboard-discharge-calais-me-me0102831'],draft,me,,Calais,03/27/2026 - 04/27/2026 -,"Bangor, City of",ME0101781,,Bangor,"Bangor, City of","Bangor, City of",['https://www.epa.gov/me/draft-permit-city-bangor-bangor-me-me0101781'],draft,me,,Bangor,03/24/2026 - 04/10/2026 +,"Bangor, City of (pdf) (2.9 MB)",ME0101781,,Bangor,"Bangor, City of (pdf) (2.9 MB)","Bangor, City of (pdf) (2.9 MB)",['https://www.epa.gov/system/files/documents/2026-03/draftme0100781permit-2026.pdf'],draft,me,,Bangor,03/24/2026 - 04/10/2026 ,Anson-Madison Sanitary District,ME0101389,,Anson,Anson-Madison Sanitary District,Anson-Madison Sanitary District,['https://www.epa.gov/me/draft-permit-anson-madison-sanitary-district-anson-me-me0101389'],draft,me,,Anson,03/20/2026 - 04/20/2026 ,"Howland, Town of",ME0101788,,Howland,"Howland, Town of","Howland, Town of",['https://www.epa.gov/me/draft-permit-town-howland-howland-me-me0101788'],draft,me,,Howland,03/20/2026 - 04/20/2026 ,Brunswick Sewer District,ME0100102,,Brunswick,Brunswick Sewer District,Brunswick Sewer District,['https://www.epa.gov/me/draft-permit-brunswick-sewer-district-brunswick-me-me0100102'],draft,me,,Brunswick,03/16/2026 - 04/16/2026 -,"Skowhegan, Town of",ME0100625,,Skowhegan,"Skowhegan, Town of","Skowhegan, Town of",['https://www.epa.gov/me/draft-permit-town-skowhegan-skowhegan-me-me0100625'],draft,me,,Skowhegan,03/11/2026 - 04/10/2026 -,"Smutty Nose Island Club, Inc. D/B/A Monhegan House",ME0037427,,Monhegan,"Smutty Nose Island Club, Inc. D/B/A Monhegan House","Smutty Nose Island Club, Inc. D/B/A Monhegan House",['https://www.epa.gov/me/draft-permit-smutty-nose-island-club-inc-dba-monhegan-house-monhegan-me-me0037427'],draft,me,,Monhegan,03/09/2026 - 04/08/2026 -,"Hampden CSO - Souadabscook Stream Pump Station, Town of",ME0102512,,Hampden,"Hampden CSO - Souadabscook Stream Pump Station, Town of","Hampden CSO - Souadabscook Stream Pump Station, Town of",['https://www.epa.gov/me/draft-permit-town-hampden-cso-souadabscook-stream-pump-station-hampden-me-me0102512'],draft,me,,Hampden,02/26/2026 - 03/30/2026 -,Huhtamaki Inc.,ME0037389,,Waterville,Huhtamaki Inc.,Huhtamaki Inc.,['https://www.epa.gov/me/draft-permit-huhtamaki-inc-waterville-me-me0037389-0'],draft,me,,Waterville,02/26/2026 - 03/30/2026 +,"Skowhegan, Town of (pdf) (2.8 MB)",ME0100625,,Skowhegan,"Skowhegan, Town of (pdf) (2.8 MB)","Skowhegan, Town of (pdf) (2.8 MB)",['https://www.epa.gov/system/files/documents/2026-03/draftme0100625permit-2026.pdf'],draft,me,,Skowhegan,03/11/2026 - 04/10/2026 +,"Smutty Nose Island Club, Inc. D/B/A Monhegan House (pdf) (1.5 MB)",ME0037427,,Monhegan,"Smutty Nose Island Club, Inc. D/B/A Monhegan House (pdf) (1.5 MB)","Smutty Nose Island Club, Inc. D/B/A Monhegan House (pdf) (1.5 MB)",['https://www.epa.gov/system/files/documents/2026-03/draftme0037427permit-2026.pdf'],draft,me,,Monhegan,03/09/2026 - 04/08/2026 +,"Hampden CSO - Souadabscook Stream Pump Station, Town of (pdf) (423 KB)",ME0102512,,Hampden,"Hampden CSO - Souadabscook Stream Pump Station, Town of (pdf) (423 KB)","Hampden CSO - Souadabscook Stream Pump Station, Town of (pdf) (423 KB)",['https://www.epa.gov/system/files/documents/2026-03/draftme0102512permit-2026.pdf'],draft,me,,Hampden,02/26/2026 - 03/30/2026 +,Huhtamaki Inc. (pdf) (451 KB),ME0037389,,Waterville,Huhtamaki Inc. (pdf) (451 KB),Huhtamaki Inc. (pdf) (451 KB),['https://www.epa.gov/system/files/documents/2026-03/draftme0037389permit-2026.pdf'],draft,me,,Waterville,02/26/2026 - 03/30/2026 ,"Gardiner WWTF, City of (pdf) (2 MB)",ME0101702,,Gardiner,"Gardiner WWTF, City of (pdf) (2 MB)","Gardiner WWTF, City of (pdf) (2 MB)",['https://www.epa.gov/system/files/documents/2026-02/draftme0101702permit-2026.pdf'],draft,me,,Gardiner,02/25/2026 - 03/25/2026 ,Portland Water District - Westbrook Wastewater Treatment Facility (pdf) (2.9 MB),ME0100846,,Westbrook,Portland Water District - Westbrook Wastewater Treatment Facility (pdf) (2.9 MB),Portland Water District - Westbrook Wastewater Treatment Facility (pdf) (2.9 MB),['https://www.epa.gov/system/files/documents/2026-02/draftme0100846permit-2026.pdf'],draft,me,,Westbrook,02/18/2026 - 03/18/2026 ,ReGenerate Livermore Falls (pdf) (1.2 MB),ME0023710,,Livermore Falls,ReGenerate Livermore Falls (pdf) (1.2 MB),ReGenerate Livermore Falls (pdf) (1.2 MB),['https://www.epa.gov/system/files/documents/2026-02/draftme0023710permit-2026.pdf'],draft,me,,Livermore Falls,02/02/2026 - 03/06/2026 diff --git a/docs/data/MADEP_staff_SODA_sample.csv b/docs/data/MADEP_staff_SODA_sample.csv index 95a711a..1999c2f 100644 --- a/docs/data/MADEP_staff_SODA_sample.csv +++ b/docs/data/MADEP_staff_SODA_sample.csv @@ -1,11 +1,11 @@ bargaining_group_title,contract,department_division,department_location_zip_code,name_first,name_last,pay_base_actual,pay_buyout_actual,pay_overtime_actual,pay_total_actual,position_title,position_type,year -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Marc,Wolman,92239.0,0.0,0.0,92239.0,Environmental Engineer V,Full Time Employee,2014 -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),01606,Susan,Connors,45489.54,0.0,0.0,45489.54,Environmental Analyst IV,Full Time Employee,2015 -Managers (EXE),Managers (EXE) (M99),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Edward,Kunce,105288.68,0.0,0.0,105288.68,Program Manager Specialist IX,Full Time Employee,2010 -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),018430000,Nelson,Gomez,26366.94,0.0,0.0,26366.94,Chemist III,Full Time Employee,2013 -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),018872941,Ronald,Stelline,0.0,2614.29,0.0,2614.29,Environmental Analyst IV,Full Time Employee,2016 -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Susannah,King,92116.78,0.0,0.0,92116.78,Environmental Analyst V,Full Time Employee,2016 -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,John,Reinhardt,51626.07,11513.74,7607.02,70746.83,Regional Planner V,Full Time Employee,2015 -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),016082022,Michael,Penny,69493.36,0.0,0.0,69493.36,Environmental Analyst III,Full Time Employee,2011 -Post Retiree,Post Retiree (PRT),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Madelyn,Morris,18410.86,0.0,0.0,18410.86,Counsel II,Part Time Employee,2023 -MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),016082022,Xiaoning,Chen,73531.72,0.0,0.0,73531.72,Environmental Engineer IV,Full Time Employee,2010 +NAGE - Professional Admin.,NAGE - Professional Admin. (06),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Larry,Wilson,18182.16,0.0,0.0,18182.16,Edp Systems Analyst I,Full Time Employee,2010 +NAGE - Professional Admin.,NAGE - Professional Admin. (06),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),018872941,Colleen,McConnell,114669.63,0.0,0.0,114669.63,Counsel II,Full Time Employee,2023 +MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Janet,Waldron,73531.71,0.0,152.22,73683.93,Environmental Analyst IV,Full Time Employee,2010 +MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),023471676,P,Mehta,0.0,7623.89,0.0,7623.89,Environmental Engineer IV,Full Time Employee,2017 +Managers (EXE),Managers (EXE) (M99),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Barbara,Wyche,75392.15,0.0,0.0,75392.15,Dir Admin OGC & Strike Force,Full Time Employee,2011 +MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),023471676,Brett,Rowe,102939.02,0.0,0.0,104438.96,Environmental Engineer IV,Full Time Employee,2021 +NAGE - Professional Admin.,NAGE - Professional Admin. (06),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Rishi,Reddi,39382.8,0.0,0.0,39382.8,Counsel II,Part Time Employee,2012 +MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Gail,Colaiacomo,61168.14,0.0,0.0,61168.14,Environmental Analyst II,Full Time Employee,2010 +MOSES - Engineers/Scientists,MOSES - Engineers/Scientists (09),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Jennifer,Wharff,69555.87,0.0,0.0,69555.87,Environmental Analyst III,Full Time Employee,2020 +Managers (EXE),Managers (EXE) (M99),DEPARTMENT OF ENVIRONMENTAL PROTECTION (EQE),021084746,Edmund,Coletta,84971.89,0.0,0.0,84971.89,Director of Public Affiars,Full Time Employee,2014 diff --git a/docs/data/MA_bill_cluster_labels.csv b/docs/data/MA_bill_cluster_labels.csv new file mode 100644 index 0000000..9639b78 --- /dev/null +++ b/docs/data/MA_bill_cluster_labels.csv @@ -0,0 +1,26 @@ +cluster_id,label,n_bills,n_env_bills +0,Community and Environmental Policy,1983,49 +1,"Patient Safety, Staff Autonomy, Transparency",1289,1 +2,Solid Waste Reduction and Recycling,463,178 +3,Student Education and Well-being,1572,7 +4,Infrastructure Investment and Economic Growth,1124,8 +5,Data Privacy and Security,1358,4 +6,Special Commissions and Studies,1013,14 +7,Tax Reform and Exemptions,1270,1 +8,Local Affordable Housing Options,1148,7 +9,"Youth, Crime, and Public Safety",1175,5 +10,Mental and Behavioral Health Access,629,0 +11,Firearms Regulation and Ownership,668,6 +12,Public Safety Personnel Retirement,1256,0 +13,"Public Health, Economy, Environment",651,13 +14,Massachusetts Clean Energy Transition,799,235 +15,"Prescription Drug Pricing, Access, Safety",781,1 +16,Wage Theft and Worker Protections,1281,2 +17,Elder Long-Term Care Services,921,0 +18,Healthcare Coverage and Affordability,1142,0 +19,State Funding for Programs,862,12 +20,Local Clean Energy Transition,1058,54 +21,Automobile Insurance Premiums and Surcharges,745,12 +22,State Fiscal and Policy Initiatives,1084,29 +23,Authorizing Local Liquor Licenses,521,0 +24,Automotive Safety and Technology Regulation,1123,5 diff --git a/docs/data/MA_bill_emb_mean.npy b/docs/data/MA_bill_emb_mean.npy new file mode 100644 index 0000000..ee4346d Binary files /dev/null and b/docs/data/MA_bill_emb_mean.npy differ diff --git a/docs/data/MA_bill_kmeans.joblib b/docs/data/MA_bill_kmeans.joblib new file mode 100644 index 0000000..e474531 Binary files /dev/null and b/docs/data/MA_bill_kmeans.joblib differ diff --git a/docs/data/MA_legislature_bills_sample.csv b/docs/data/MA_legislature_bills_sample.csv new file mode 100644 index 0000000..552eed6 --- /dev/null +++ b/docs/data/MA_legislature_bills_sample.csv @@ -0,0 +1,104 @@ +,bill_id,bill_number,bill_prefix,general_court,title,sponsor_name,status,passed +0,H4999,4999,H,193,An Act promoting access to midwifery care and out-of-hospital birth options,Midwifery Care and Out-of-Hospital options,"Signed by the Governor, Chapter 186 of the Acts of 2024",1 +1,H4773,4773,H,193,An Act promoting access to midwifery care and out-of-hospital birth options,House Committee on Ways and Means,"Published as amended, see H4785",0 +2,S1405,1405,S,193,An Act relative to newborn screenings for congenital cytomegalovirus,Joan B. Lovely,No further action taken,0 +3,S607,607,S,193,An Act to increase access to nurse-midwifery services,Brendan P. Crighton,No further action taken,0 +4,H1069,1069,H,193,An Act to increase access to nurse-midwifery services,Kay Khan,Senate concurred,0 +5,H1202,1202,H,193,An Act to preserve special needs trusts for disabled seniors,Kate Hogan,"New draft substituted, see H4841",0 +6,S108,108,S,193,An Act establishing guardians as providers of medical care to support the rights of incapacitated persons,Joan B. Lovely,"Accompanied a study order, see S2795",0 +7,H5033,5033,H,193,An Act to improve quality and oversight of long-term care,Long Term Care,"Signed by the Governor, Chapter 197 of the Acts of 2024",1 +8,H4800,4800,H,193,"An Act making appropriations for the fiscal year 2025 for the maintenance of the departments, boards, commissions, institutions, and certain activities of the commonwealth, for interest, sinking fund, and serial bond requirements, and for certain permanent improvements","General Appropriation Bill, FY25",Item 7066-0036 passed over veto - 155 YEAS to 2 NAYS (See YEA and NAY No. 191),0 +9,H2007,2007,H,193,An Act enabling physician assistants to authorize psychiatric holds and ensure adequate training on their use,Edward R. Philips,"Accompanied a study order, see H4897",0 +10,H4058,4058,H,193,An Act expanding access to mental health services,Marjorie C. Decker,"Accompanied a study order, see H4879",0 +11,H5100,5100,H,193,An Act relative to strengthening Massachusetts’ economic leadership,Economic Development,"For actions on the sections returned with recommendations of amendment, see H5111",0 +12,H2135,2135,H,193,An Act relative to removing barriers to care for physician assistants,Christine P. Barber,Accompanied S1354,0 +13,S1267,1267,S,193,An Act expanding access to mental health services,Jacob R. Oliveira,"Accompanied a study order, see S2642",0 +14,H2217,2217,H,193,An Act relative to limited service clinics,Kay Khan,"Accompanied a study order, see H4739",0 +15,H1950,1950,H,193,An Act relative to physician assistant non-competes,Jon Santiago,"Accompanied a study order, see H4570",0 +16,H2812,2812,H,193,An Act establishing fairness for agricultural laborers,Carlos González,"Accompanied a study order, see H5045",0 +17,S1837,1837,S,193,An Act establishing fairness for agricultural laborers,Adam Gomez,"Accompanied a study order, see H5045",0 +18,S2673,2673,S,193,An Act relative to social work uplifting practices and exam removal.,Joint Committee on Higher Education,No further action taken,0 +19,H4451,4451,H,193,An Act relative to social work uplifting practices and exam removal,Joint Committee on Higher Education,No further action taken,0 +20,S2227,2227,S,193,An Act to end debt-based driving restrictions and remove economic roadblocks,Julian Cyr,"Accompanied a study order, see S2796",0 +21,H3314,3314,H,193,An Act to end debt-based driving restrictions and remove economic roadblocks,Brandy Fluker Oakley,"Accompanied a study order, see H4928",0 +22,H1434,1434,H,193,An Act reducing barriers to employment through credit discrimination,Josh S. Cutler,No further action taken,0 +23,S673,673,S,193,An Act ensuring support groups are part of the pathway of care following the annual mental health wellness exam,Joan B. Lovely,"Accompanied a study order, see H4634",0 +24,H1075,1075,H,193,An Act ensuring support groups are part of the pathway of care following the annual mental health wellness exam,Michael P. Kushmerek,"Accompanied a study order, see H4854",0 +25,H946,946,H,193,An Act to increase access to lactation care and services,Christine P. Barber,"Accompanied a study order, see H4691",0 +26,S691,691,S,193,An Act to increase access to lactation care and services,Susan L. Moran,"Accompanied a study order, see H4634",0 +27,H5077,5077,H,193,making appropriations for the fiscal year 2024 to provide for supplementing certain existing appropriations and for certain other activities and projects,House Committee on Ways and Means,"Signed by the Governor, Chapter 248 of the Acts of 2024",1 +28,H1918,1918,H,193,An Act relative to employment protections for victims of abusive behavior,Jay D. Livingstone,No further action taken,0 +29,S1152,1152,S,193,An Act relative to employment protections for victims of abusive behavior,Cynthia Stone Creem,Accompanied H1918,0 +30,H2216,2216,H,193,An Act relative to dental hygienists,Kay Khan,"Accompanied a study order, see H4739",0 +31,S1429,1429,S,193,An Act relative to dental hygienists,Michael O. Moore,"Accompanied a study order, see S2648",0 +32,H3880,3880,H,193,An Act relative to dental hygienist reciprocal licensure,Tackey Chan,"New draft substituted, see H4842",0 +33,H2241,2241,H,193,An Act enabling trained dental hygienists to administer dermal fillers and botox,Frank A. Moran,"Accompanied a study order, see H4739",0 +34,S664,664,S,193,An Act relative to the sustainability of public health dental hygienists through adequate reimbursements,Robyn K. Kennedy,"Accompanied a study order, see H4634",0 +35,H2255,2255,H,193,An Act relative to the sustainability of public health dental hygienists through adequate reimbursements,Smitty Pignatelli,"Accompanied a study order, see H4739",0 +36,S1379,1379,S,193,An Act to improve oral health for all Massachusetts residents,Adam Gomez,"Accompanied a new draft, see S2740",0 +37,S1357,1357,S,193,An Act enabling trained dental hygienists to administer dermal fillers and botox,Julian Cyr,"Accompanied a study order, see S2648",0 +38,H2215,2215,H,193,An Act protecting children from harmful diet pills and muscle-building supplements,Kay Khan,No further action taken,0 +39,H5159,5159,H,193,An Act enhancing the market review process,Market Review Process,"Signed by the Governor, Chapter 343 of the Acts of 2024",1 +40,H4799,4799,H,193,An Act making appropriations for the fiscal year 2024 to provide for supplementing certain existing appropriations and for certain other activities and projects,,"Signed by the Governor, Chapter 206 of the Acts of 2024",1 +41,H4442,4442,H,193,An Act creating a special legislative commission to study barriers to job retention for low-income workers,Joint Committee on Labor and Workforce Development,No further action taken,0 +42,S2475,2475,S,193,An Act relative to the licensure of behavior analysts,Joint Committee on Consumer Protection and Professional Licensure,No further action taken,0 +43,S376,376,S,193,An Act relative to Massachusetts home care eligibility,Patricia D. Jehlen,No further action taken,0 +44,S1244,1244,S,193,An Act building resiliency in communities through mental health,Julian Cyr,Accompanied H1985,0 +45,H1985,1985,H,193,An Act building resiliency in communities through mental health,Brandy Fluker Oakley,No further action taken,0 +46,S345,345,S,193,An Act to update accuracy of membership to the state advisory council on early education and care,Rebecca L. Rausch,No further action taken,0 +47,H135,135,H,193,An Act establishing basic needs assistance for Massachusetts immigrant residents ,Antonio F. D. Cabral,No further action taken,0 +48,S75,75,S,193,An Act to lift kids out of deep poverty,Sal N. DiDomenico,No further action taken,0 +49,H144,144,H,193,An Act to lift kids out of deep poverty,Marjorie C. Decker,No further action taken,0 +50,S1890,1890,S,193,An Act excluding the Segal AmeriCorps Education Award from taxable income,Susan L. Moran,No further action taken,0 +51,H1748,1748,H,193,"An Act relative to access to a decedent's electronic mail accounts + +",Jeffrey N. Roy,"Accompanied a study order, see H4517",0 +52,S930,930,S,193,An Act relative to access to a decedent's electronic mail accounts,Cynthia Stone Creem,"Accompanied a study order, see S2612",0 +53,S1362,1362,S,193,An Act relative to the Massachusetts lead law and promoting equal access to lead-free housing,James B. Eldridge,"Accompanied a study order, see S2648",0 +54,H2223,2223,H,193,An Act relative to the Massachusetts lead law and promoting equal access to lead-free housing,David Henry Argosky LeBoeuf,"Accompanied a study order, see H4739",0 +55,S1156,1156,S,193,An Act protecting an employee's right to rebuttal of personnel records,Sal N. DiDomenico,No further action taken,0 +56,H1881,1881,H,193,An Act clarifying the wage act to protect hospital workers from being deprived of their wages,Denise C. Garlick,"Accompanied a study order, see H5014",0 +57,H1891,1891,H,193,An Act clarifying the prevailing wage act to protect actions by the attorney general,Kenneth I. Gordon,No further action taken,0 +58,H1088,1088,H,193,An Act relative to greater fairness in insurance,Jay D. Livingstone,"Accompanied a study order, see H4705",0 +59,S1161,1161,S,193,An Act clarifying the prevailing wage act to protect actions by the attorney general,Sal N. DiDomenico,No further action taken,0 +60,S1177,1177,S,193,An Act clarifying the wage act to protect hospital workers from being deprived of their wages,Paul R. Feeney,Accompanied H1881,0 +61,H4282,4282,H,193,An Act relative to defense against abusive waivers,Joint Committee on Labor and Workforce Development,No further action taken,0 +62,H1892,1892,H,193,An Act relative to anti-retaliation protections for public employees,Kenneth I. Gordon,"Accompanied a study order, see H5043",0 +63,H1886,1886,H,193,An Act protecting an employee's right to rebuttal of personnel records,Kenneth I. Gordon,Accompanied S1156,0 +64,H1709,1709,H,193,An Act to further protect employees through a private right of action,Tram T. Nguyen,"Accompanied a study order, see H4517",0 +65,H4970,4970,H,193,An Act to ensure legal parentage equality,Legal Parentage Equality,"Signed by the Governor, Chapter 166 of the Acts of 2024",1 +66,S99,99,S,193,An Act creating a special commission to study the current refugee resettlement infrastructure and ensure the successful integration of refugees in Massachusetts ,Robyn K. Kennedy,No further action taken,0 +67,H1350,1350,H,193,An Act to guarantee a tenant’s first right of refusal,Jay D. Livingstone,No further action taken,0 +68,S880,880,S,193,An Act to guarantee a tenant’s first right of refusal,Patricia D. Jehlen,No further action taken,0 +69,S864,864,S,193,"An Act promoting access to counsel and housing stability in Massachusetts +",Sal N. DiDomenico,No further action taken,0 +70,H4977,4977,H,193,An Act relative to the Affordable Homes Act,Affordable Homes Act,"Signed by the Governor, Chapter 150 of the Acts of 2024",1 +71,H4360,4360,H,193,An Act promoting access to counsel and housing stability in Massachusetts,Joint Committee on the Judiciary,No further action taken,0 +72,H4429,4429,H,193,An Act relative to fairness in debt collection,Joint Committee on Financial Services,No further action taken,0 +73,S2713,2713,S,193,An Act relative to fairness in debt collection,Senate Committee on Ways and Means,No further action taken,0 +74,H1308,1308,H,193,An Act relative to the use of credit reporting in housing,Manny Cruz,No further action taken,0 +75,S877,877,S,193,An Act relative to the use of credit reporting in housing,Adam Gomez,No further action taken,0 +76,H1302,1302,H,193,An Act relative to manufactured housing,Tackey Chan,No further action taken,0 +77,S1354,1354,S,193,An Act relative to removing barriers to care for physician assistants,Julian Cyr,No further action taken,0 +78,H4459,4459,H,193,An Act relative to strengthening Massachusetts' economic leadership,Maura T. Healey,"Accompanied a new draft, see H4722",0 +79,H4601,4601,H,193,"An Act making appropriations for the fiscal year 2025 for the maintenance of the departments, boards, commissions, institutions, and certain activities of the commonwealth, for interest, sinking fund, and serial bond requirements, and for certain permanent improvements",,"Reported, in part, by H4800",0 +80,H2,2,H,193,"An Act making appropriations for the fiscal year 2025 for the maintenance of the departments, boards, commissions, institutions, and certain activities of the Commonwealth, for interest, sinking fund, and serial bond requirements, and for certain permanent improvements",Maura T. Healey,No further action taken,0 +81,H1253,1253,H,193,An Act relative to social work uplifting practices and exam removal ,Christine P. Barber,"Accompanied a new draft, see H4451",0 +82,S2800,2800,S,193,"An Act making appropriations for the fiscal year 2025 for the maintenance of the departments, boards, commissions, institutions, and certain activities of the commonwealth, for interest, sinking fund, and serial bond requirements, and for certain permanent improvements",,See H4601,0 +83,S1335,1335,S,193,An Act updating the regulations governing licensed birth centers in Massachusetts,Joanne M. Comerford,"Accompanied a new draft, see H4566",0 +84,H4566,4566,H,193,An Act promoting access to midwifery care and out-of-hospital birth options,Joint Committee on Public Health,"New draft substituted, see H4773",0 +85,S1457,1457,S,193,An Act promoting access to midwifery care and out-of-hospital birth options,Rebecca L. Rausch,"Accompanied a new draft, see H4566",0 +86,S1415,1415,S,193,An Act relative to birthing justice in the Commonwealth,Liz Miranda,"Accompanied a new draft, see S2734",0 +87,H1415,1415,H,193,An Act to increase the penalty for school tardiness,Tackey Chan,"Accompanied a study order, see H4517",0 +88,H188,188,H,193,An Act establishing guardians as providers of medical care to support the rights of incapacitated persons,Sally P. Kerans,Accompanied S108,0 +89,S756,756,S,193,An Act preserving special needs trusts for disabled seniors,Patricia D. Jehlen,Accompanied H1202,0 +90,S1465,1465,S,193,An Act protecting children from harmful diet pills and muscle-building supplements,Michael F. Rush,Accompanied H2215,0 +91,S2835,2835,S,193,An Act relative to adoptions,Cynthia Stone Creem,"Accompanied a new draft, see S3009",0 +92,H4709,4709,H,193,An Act relative to adoptions,Lindsay N. Sabadosa,"Accompanied a new draft, see S3009",0 +93,H4496,4496,H,193,An Act making appropriations for the fiscal year 2024 to provide for supplementing certain existing appropriations and for certain other activities and projects,Maura T. Healey,No further action taken,0 +94,H2253,2253,H,193,An Act to improve oral health for all Massachusetts residents,Smitty Pignatelli,"Accompanied a new draft, see S2740",0 +95,H197,197,H,193,An Act creating a special commission to study the current refugee resettlement infrastructure and ensure the successful integration of refugees in Massachusetts ,David Henry Argosky LeBoeuf,Accompanied S99,0 +96,H2777,2777,H,193,An Act excluding the Segal AmeriCorps Educational Award from taxable income,"William J. Driscoll, Jr.",Accompanied S1890,0 +97,S76,76,S,193,An Act establishing basic needs assistance for Massachusetts immigrant residents,Sal N. DiDomenico,Accompanied H135,0 +98,H542,542,H,193,An Act to promote racially inclusive curriculum in schools,Tram T. Nguyen,"Accompanied a new draft, see H4519",0 +99,H3052,3052,H,193,An Act promoting the civil rights and inclusion of American Muslims in the Commonwealth,Vanna Howard,No further action taken,0 diff --git a/docs/data/MA_lobbying.md b/docs/data/MA_lobbying.md new file mode 100644 index 0000000..6c466cb --- /dev/null +++ b/docs/data/MA_lobbying.md @@ -0,0 +1,91 @@ +--- +title: MA Lobbying Disclosures +author: NES +layout: data_listing +ancillary: 0 +--- + +## Explore the data + +The **[MA Lobbying Explorer](https://nsanders.me/ma_lobbying_explorer/)** is an interactive browser for this dataset. Search and filter bills, employers, and lobbying firms; click any entry to see its full disclosure history and links back to the Secretary of State portal and MA Legislature website. + +- [Browse bills](https://nsanders.me/ma_lobbying_explorer/bills.html) — search by bill ID, title, or environmental relevance +- [Browse employers](https://nsanders.me/ma_lobbying_explorer/employers.html) — search by employer/client name; see all bills and spend history +- [Browse lobbyists](https://nsanders.me/ma_lobbying_explorer/lobbyists.html) — search by lobbying firm name; see all clients and bills + +--- + +## Data source + +The [MA Secretary of State](https://www.sec.state.ma.us/LobbyistPublicSearch/) publishes semi-annual lobbying disclosure filings for all registered lobbyists and lobbying entities in Massachusetts. Filers report which clients hired them, how much each client paid, and which specific bills they lobbied on behalf of each client (with chamber, bill number, title, and position — Support, Oppose, or Neutral). + +Data is available from 2005 (184th General Court) through the present, spanning 22 years across 11 legislative sessions. Each two-year legislative session is identified by a General Court number (GC 184 = 2005–2006, GC 194 = 2025–2026, etc.). + +The data from this source has been archived on this site, last updated on **{{ site.data.ts_update_MA_lobbying.updated | date: "%-d %B %Y %I:%M %P" }}**. +Filings are refreshed automatically on a weekly basis; the script exits early when no new semi-annual filings have been posted. + +## Environmental relevance scoring + +To identify which bills are environmentally relevant, each bill's full text (fetched from the [MA Legislature OpenAPI](https://malegislature.gov/api/swagger)) is preprocessed by stripping repeated legislative scaffolding (e.g. "Chapter X of the General Laws, as appearing in the 2020 Official Edition, is hereby amended by inserting after…") that appears identically across thousands of bills regardless of topic. The bill title is then prepended to the cleaned body, and the combined text is truncated to 3,000 characters before embedding. Bills for which no full text is available fall back to the title alone. The cleaned text is embedded using Google's **Gemini Embedding model** (`gemini-embedding-2`, 768-dimensional vectors). + +Environmental relevance is scored using **differential cosine similarity**: for each bill, the maximum cosine similarity to a set of 42 known environmental bills is computed, and the maximum cosine similarity to a set of 42 known non-environmental bills is subtracted. Bills with a differential score above **0.05** are flagged as `is_environmental` (~1.3% of all uniquely lobbied bills). The non-environmental reference set spans eight policy domains — labor, criminal justice, healthcare, education, housing, municipal licensing, digital/media, and LGBTQ/social — to prevent cross-domain false positives. + +**Data coverage note:** Bills from the two oldest legislative sessions (GC 183–184, 2005–2008) have no full text in the Legislature API and are often missing titles in the lobbying portal as well. These ~1,500 bills embed as zero vectors and are excluded from topic clustering (assigned `cluster_id = -1`). They are retained in the lobbying activity data but do not appear in the t-SNE visualization. + +Embeddings are stored in a Parquet file on Google Cloud Storage (`gs://openamend-data/MA_bill_embeddings.parquet`) alongside bill full text. The lightweight scored CSV (scores and cluster IDs only, no embeddings) is committed to this repository. + +## Topic clustering + +All lobbied bills with valid embeddings (~24,400 bills) are clustered into **25 topic groups** using the **k-means clustering** algorithm on the L2-normalised Gemini embeddings (cosine-space clustering). Each cluster is labelled using **Gemini 2.5 Flash**, which receives the 20 most central bill titles in the cluster and returns a 3–5 word topic label. Clustering is a one-time operation re-run manually when the historical data changes significantly. + +| Cluster | Label | Bills | Env. bills | +|---------|-------|------:|----------:|{% for row in site.data.MA_bill_cluster_labels %} +| {{ row.cluster_id }} | {{ row.label }} | {{ row.n_bills }} | {{ row.n_env_bills }} |{% endfor %} + +### Bill embedding space (t-SNE) + +The plot below shows environmental bills projected into the policy landscape using [t-SNE](https://en.wikipedia.org/wiki/T-distributed_stochastic_neighbor_embedding). **Coloured, outlined dots** are the 329 environmentally-relevant bills, coloured by topic cluster; **grey dots** are a stratified background sample (~120 per cluster, ~3,000 total) providing geographic context. Hover over any point for the bill title. + +Note: MA legislative bill embeddings are semantically dense — even after boilerplate stripping, mean inter-cluster cosine distance is only ~0.006 vs. mean intra-cluster spread of ~0.53. Visualising all 25,000+ bills produces a featureless blob because the underlying high-dimensional structure does not project cleanly to two dimensions. The subsample approach makes the environmentally-relevant bills legible without misrepresenting the cluster separation. + +{% include charts/lobbying_bill_tsne.html %} + +## Download archive + +Full CSVs are stored in Google Cloud Storage (too large for the repository). +These links will be active once the initial full-history scrape is complete and uploaded: + +* Lobbying employers (entity–client–year) — `gs://openamend-data/MA_lobbying_employers.csv` +* Lobbying bills (entity–client–bill–year) — `gs://openamend-data/MA_lobbying_bills.csv` +* Lobbying bills scored (env relevance + cluster) — `gs://openamend-data/MA_lobbying_bills_scored.csv` +* Legislature bill metadata — `gs://openamend-data/MA_legislature_bills.csv` +* [Bill embeddings (768-dim Parquet)](https://storage.googleapis.com/openamend-data/MA_bill_embeddings.parquet) + +## Data tables + +### Lobbying Employers + +One row per (entity, client, year). Records how much each client paid each lobbying entity in a given year. + +| Entity Name | Client Name | Year | Reg Type | Compensation | +| --- | --- | --- | --- | --- |{% for row in site.data.MA_lobbying_employers_sample limit:10 %} +| [{{ row.entity_name }}](https://nsanders.me/ma_lobbying_explorer/lobbyists.html?name={{ row.entity_name | slugify }}) | [{{ row.client_name }}](https://nsanders.me/ma_lobbying_explorer/employers.html?name={{ row.client_name | slugify }}) | {{ row.year }} | {{ row.reg_type }} | {{ row.compensation }} |{% endfor %} +{: .sortable} + +### Lobbying Bills + +One row per (entity, client, bill, session). Records which bills each entity lobbied on behalf of each client, with the lobbying position. + +| Entity Name | Client Name | Year | Chamber | Bill | Bill Title | Position | +| --- | --- | --- | --- | --- | --- | --- |{% for row in site.data.MA_lobbying_bills_sample limit:10 %} +| [{{ row.entity_name }}](https://nsanders.me/ma_lobbying_explorer/lobbyists.html?name={{ row.entity_name | slugify }}) | [{{ row.client_name }}](https://nsanders.me/ma_lobbying_explorer/employers.html?name={{ row.client_name | slugify }}) | {{ row.year }} | {{ row.chamber }} | [{{ row.bill_id }}](https://nsanders.me/ma_lobbying_explorer/bills.html?id={{ row.bill_id }}&gc={{ row.general_court }}) | {{ row.bill_title | truncate: 60 }} | {{ row.position }} |{% endfor %} +{: .sortable} + +### Legislature Bills + +Bill metadata fetched from the [MA Legislature OpenAPI](https://malegislature.gov/api/swagger). Includes sponsor, final status, and derived `passed` boolean. Environmental relevance scores and cluster IDs are stored separately in `MA_lobbying_bills_scored.csv` (see above). + +| Bill | General Court | Title | Sponsor | Status | Passed | +| --- | --- | --- | --- | --- | --- |{% for row in site.data.MA_legislature_bills_sample limit:10 %} +| [{{ row.bill_id }}](https://nsanders.me/ma_lobbying_explorer/bills.html?id={{ row.bill_id }}&gc={{ row.general_court }}) | {{ row.general_court }} | {{ row.title | truncate: 60 }} | {{ row.sponsor_name }} | {{ row.status | truncate: 40 }} | {{ row.passed }} |{% endfor %} +{: .sortable} diff --git a/docs/data/MA_lobbying_bills_sample.csv b/docs/data/MA_lobbying_bills_sample.csv new file mode 100644 index 0000000..7b8dc96 --- /dev/null +++ b/docs/data/MA_lobbying_bills_sample.csv @@ -0,0 +1,107 @@ +,entity_name,client_name,year,general_court,chamber,bill_number,bill_title,position,amount,entity_name_norm,client_name_norm,bill_prefix,bill_id +0,Robert Alan Baker,Smaller Business Association of New England,2014,188,House Bill,4165,An Act Promoting Economic Growth Across the Commonwealth. Sought funding for manufacturing grant and layoff aversion program. met with key legislators from Economic Development committee and Ways and Means.,Support,170000.0,ROBERT ALAN BAKER,SMALLER BUSINESS ASSOCIATION OF NEW ENGLAND,H,H4165 +1,Law Office of Attorney James F McGrail,"Outfront Media, LLC",2018,190,Executive,,Matters in connection with Outfront Media Group LLC's participation in the request for proposals for advertising rights on the Massachusetts Bay Transportation Authority.,Support,90000.0,ATTORNEY JAMES F MCGRAIL,OUTFRONT MEDIA,, +2,Northwind Strategies,"New England Independent Transmission Company, LLC",2014,188,Executive,,Advised regarding potential energy legislation and central procurement. Represented client and met with the Executive Office of Environment & Energy.,Support,90000.0,NORTHWIND STRATEGIES,NEW ENGLAND INDEPENDENT TRANSMISSION COMPANY,, +3,Northwind Strategies,Boston Beer,2014,188,House Bill,267,"Represented client before members of the Joint Committee on Consumer Protection and Professional Licensure and met with Representatives Peisch, Mariano, Moran, and Haddad.",Support,67500.0,NORTHWIND STRATEGIES,BOSTON BEER,H,H267 +4,Northwind Strategies,GTECH Corporation,2014,188,Executive,,Represented client and advised relative to current and future activities with the Massachusetts Lottery and the State Treasury.,Support,66000.0,NORTHWIND STRATEGIES,GTECH,, +5,Advanced Strategies,"Partners HealthCare System, Inc.",2014,188,Executive,,Implementation of Chapter 224 of the Acts of 2012 and Implementation of state compliance with the Affordable Care Act,Neutral,65000.0,ADVANCED STRATEGIES,PARTNERS HEALTHCARE SYSTEM,, +6,Maryanne Lewis,"urban league of springfield, inc",2016,189,House Bill,4201,H4201- Conf. Committee Report and legislation and regulation surrounding educational and workforce development,Support,62000.0,MARYANNE LEWIS,URBAN LEAGUE OF SPRINGFIELD,H,H4201 +7,Kathleen A Hickman,"PowderHorn Veterans Housing, LLC",2020,191,Executive,,Monitoring legislative and executive branch activity and its impact on the client.,Neutral,60701.31,KATHLEEN A HICKMAN,POWDERHORN VETERANS HOUSING,, +8,Foley Hoag LLP,Amgen,2014,188,House Bill,3734,An Act Relative to the Substitution of Interchangeable Biosimilars,Support,60000.0,FOLEY HOAG,AMGEN,H,H3734 +9,John F Fitzgerald,"Veolia Energy North America Holdings, Inc.",2019,191,Executive,,Manufacturer's rep sales call,Neutral,60000.0,JOHN F FITZGERALD,VEOLIA ENERGY NORTH AMERICA HOLDINGS,, +10,NIxon Peabody LLP,DraftKings Inc.,2018,190,Senate Bill,2273,"An Act to regulate online gaming, daily fantasy sports, and online sports betting",Neutral,60000.0,NIXON PEABODY,DRAFTKINGS,S,S2273 +11,Thomas Michael Finneran,"Vertex Pharmaceuticals, Incorporated",2020,191,House Bill,1,"making appropriations for the fiscal year 2020 for the maintenance of the departments, boards, commissions, institutions, and certain activities of the Commonwealth, for interest, sinking fund, and serial bond requirements, and for certain permanent improvements",Neutral,60000.0,THOMAS MICHAEL FINNERAN,VERTEX PHARMACEUTICALS,H,H1 +12,"Kearney Donovan & McGee, P.C.",National Grid,2018,190,Executive,,For all activity,Neutral,60000.0,KEARNEY DONOVAN AND MCGEE P C,NATIONAL GRID,, +13,The Nolan Group,"Massachusetts Regional Taxi advocacy Group, llc",2015,189,Executive,,Monitor regulatory actions related to taxicab industry in Massachusetts. Bill has yet to be filed.,Support,60000.0,NOLAN GROUP,MASSACHUSETTS REGIONAL TAXI ADVOCACY GROUP,, +14,Bryan William Jamele,Massachusetts Competitive Partnership,2014,188,House Bill,4377,"Bill H.4377/ H.4165 +House (188th (2013 - 2014)) +An Act promoting economic growth across the Commonwealth +To provide for certain unanticipated obligations of the commonwealth, and for promoting economic growth. + +MACP supported changes to R&D tax credits, computer science education, tech and innovation sector internships, closing the community college remediation gap, supporting foreign-born entrepreneurs, and the Working Cities Challenge (Gateway Cities).",Support,55306.77,BRYAN WILLIAM JAMELE,MASSACHUSETTS COMPETITIVE PARTNERSHIP,H,H4377 +15,Kathleen A Hickman,"Anthem, Inc.",2020,191,Executive,,Monitoring legislation and its impact on the Group Insurance Commission. Coordinate with other health care providers.,Neutral,53937.18,KATHLEEN A HICKMAN,ANTHEM,, +16,John F Fitzgerald,"Veolia Energy North America Holdings, Inc.",2019,191,Executive,,,,52500.0,JOHN F FITZGERALD,VEOLIA ENERGY NORTH AMERICA HOLDINGS,, +17,Burke Strategies,"American International Group, Inc.",2017,190,Executive,,All lobby activity reported under sub agent,Neutral,51000.0,BURKE STRATEGIES,AMERICAN INTERNATIONAL GROUP,, +18,Thomas Michael Finneran,Vertex Pharmaceuitcals Incorporated,2019,191,House Bill,1,"making appropriations for the fiscal year 2020 for the maintenance of the departments, boards, commissions, institutions, and certain activities of the Commonwealth, for interest, sinking fund, and serial bond requirements, and for certain permanent improvements",Neutral,50000.0,THOMAS MICHAEL FINNERAN,VERTEX PHARMACEUITCALS,H,H1 +19,Matthew Keswick,Mass Gaming and Entertainment,2019,191,Executive,,,,50000.0,MATTHEW KESWICK,MASS GAMING AND ENTERTAINMENT,, +20,Beacon Hill Consulting Group,Massachusetts Behavioral Health Partnership,2015,189,Executive,,All bills and lobbying activities are listed in the sub agent filing.,Neutral,48000.0,BEACON HILL CONSULTING GROUP,MASSACHUSETTS BEHAVIORAL HEALTH PARTNERSHIP,, +21,"Kearney Donovan & McGee, P.C.",Harvard Pilgrim Health Care,2018,190,Executive,,For all activity,Neutral,48000.0,KEARNEY DONOVAN AND MCGEE P C,HARVARD PILGRIM HEALTH CARE,, +22,Beacon Hill Consulting Group,Beacon Health Strategies LLC,2016,189,Executive,,All lobbying activities are reported under sub agents.,Neutral,48000.0,BEACON HILL CONSULTING GROUP,BEACON HEALTH STRATEGIES,, +23,Foley Hoag LLP,"Cubist Pharmaceuticals, Inc.",2014,188,Executive,,Discuss Impact of Chapter 224 of the Acts of 2012 on pharmaceuticals; discussions regarding applicability of 247 CMR 7.00 to virtual manufacturers.,Neutral,48000.0,FOLEY HOAG,CUBIST PHARMACEUTICALS,, +24,Beacon Hill Consulting Group,Beacon Health Strategies LLC,2017,190,Executive,,All lobbying activities reported under sub agents,Neutral,48000.0,BEACON HILL CONSULTING GROUP,BEACON HEALTH STRATEGIES,, +25,"Kearney Donovan & McGee, P.C.",The Pew Charitable Trusts,2018,190,Executive,,For all activity,Neutral,45900.0,KEARNEY DONOVAN AND MCGEE P C,PEW CHARITABLE TRUSTS,, +26,Daniel Joseph Delaney,Patriot Care Corp,2019,191,Executive,,"Lobbying, consulting, and services related to the successful implementation of Chapter 369 of the Acts of 2012 (An Act for the Humanitarian Medical Use of Marijuana); 935 CMR 500 (Cannabis Control Commission)",Neutral,45340.0,DANIEL JOSEPH DELANEY,PATRIOT CARE,, +27,Patrick J. Moynihan,"Keolis Commuter Services, LLC",2019,191,Executive,,"Transportation related issues, including, but not limited to, those impacting rail.",Support,45000.0,PATRICK J MOYNIHAN,KEOLIS COMMUTER SERVICES,, +28,John F Fitzgerald,"Pure Storage, Inc.",2019,191,Executive,,,,45000.0,JOHN F FITZGERALD,PURE STORAGE,, +29,Gateway Public Solutions LLC,Equitable Financial Life Insurance Company,2025,194,Senate Bill,1878,An Act relative to the SMART plan,Oppose,45000.0,GATEWAY PUBLIC SOLUTIONS,EQUITABLE FINANCIAL LIFE INSURANCE COMPANY,S,S1878 +30,"Kearney Donovan & McGee, P.C.","Exelon Generation Company, LLC",2018,190,Executive,,For all activity,Neutral,45000.0,KEARNEY DONOVAN AND MCGEE P C,EXELON GENERATION COMPANY,, +31,Gateway Public Solutions LLC,Equitable Financial Life Insurance Company,2025,194,House Bill,39,An Act relative to the SMART Plan,Oppose,45000.0,GATEWAY PUBLIC SOLUTIONS,EQUITABLE FINANCIAL LIFE INSURANCE COMPANY,H,H39 +32,"Kearney, Donovan & McGee, P.C.",Massachusetts Manufacturing Extension Partnership,2016,189,Executive,,For all activities,Neutral,45000.0,KEARNEY DONOVAN AND MCGEE P C,MASSACHUSETTS MANUFACTURING EXTENSION PARTNERSHIP,, +33,Charles Yelen,"IIF Acquisitions, LLC",2018,190,Executive,,"Assist client to explore potential opportunities for public-private partnerships with the Massachusetts Port Authority and MBTA regarding infrastructure development. These activities centered on development opportunities regarding Massport's Conley Terminal in South Boston, and on the potential leasing of locomotives by the MBTA.",Support,45000.0,CHARLES YELEN,IIF ACQUISITIONS,, +34,Law Office of Attorney James F McGrail,"Outfront Media, LLC",2019,191,Executive,,Matters in connection with Outfront Media LLC's participation in the request for proposals for advertising rights on the Massachusetts Bay Transportation Authority,Support,45000.0,ATTORNEY JAMES F MCGRAIL,OUTFRONT MEDIA,, +35,Gateway Public Solutions LLC,Equitable Financial Life Insurance Company,2024,193,House Bill,2517,An Act relative to the SMART Plan,Oppose,45000.0,GATEWAY PUBLIC SOLUTIONS,EQUITABLE FINANCIAL LIFE INSURANCE COMPANY,H,H2517 +36,"Kearney Donovan & McGee, P.C.","Direct Energy Services, LLC",2018,190,Executive,,For all activity,Neutral,44000.0,KEARNEY DONOVAN AND MCGEE P C,DIRECT ENERGY SERVICES,, +37,Maryanne Lewis,"urban league of springfield,Inc.",2014,188,House Bill,4242,"H4242 FY 2015 Budget & 4001 Report FY 2015 budget.Legislation and regulation as it relates to labor,education,workforce development.",Support,43750.0,MARYANNE LEWIS,URBAN LEAGUE OF SPRINGFIELD,H,H4242 +38,Charles Yelen,IIF Acquisitions LLC,2017,190,Executive,,Assist client to explore potential opportunities for public-private partnerships regarding infrastructure development with Massachusetts Port Authority and MBTA.,Neutral,43500.0,CHARLES YELEN,IIF ACQUISITIONS,, +39,John Patrick Murphy Jr.,IBEW Local 1228,2017,190,Executive,,We emailed selected State Senators and State Representatives to write the Boston Red Sox and NESN regarding the treatment of IBEW Local 1228 broadcast technicians. We also emailed them to boycott interviews with CBS Boston until contract negotiations with WBZ are completed.,Oppose,42771.25,JOHN PATRICK MURPHY JR,IBEW LOCAL 1228,, +40,Thomas Michael Finneran,"Beer Distributors of Massachusetts, Inc.",2019,191,Senate Bill,178,An Act to promote economic development and market access for emerging businesses,Support,42000.0,THOMAS MICHAEL FINNERAN,BEER DISTRIBUTORS OF MASSACHUSETTS,S,S178 +41,Finneran Global Strategies,"Beer Distributors of Massachusetts, Inc.",2017,190,House Bill,2823,An Act to promote economic development and market access for emerging businesses,Support,42000.0,FINNERAN GLOBAL STRATEGIES,BEER DISTRIBUTORS OF MASSACHUSETTS,H,H2823 +42,"Kearney Donovan & McGee, P.C.",Massachusetts Credit Union Share Insurance Corporation,2018,190,Executive,,For all activity,Neutral,42000.0,KEARNEY DONOVAN AND MCGEE P C,MASSACHUSETTS CREDIT UNION SHARE INSURANCE,, +43,Foley Hoag LLP,"Gilead Sciences, Inc.",2015,189,Executive,,HIV and HCV Programming.,Neutral,42000.0,FOLEY HOAG,GILEAD SCIENCES,, +44,NIxon Peabody LLP,"New England Treatment Access, Inc.",2017,190,Executive,,No specific legislation – Attend the Cannibas Control Commission and Sub-Committee Commission hearings on development of regulations to govern the sale of recreational marijuana.,Neutral,40000.0,NIXON PEABODY,NEW ENGLAND TREATMENT ACCESS,, +45,"Podesta Group, Inc.","CrossFit, Inc.",2015,189,House Bill,185,"Legislation concerning the possible licensure and/or regulation of personal fitness trainers (Bill H.185, 'An Act to encourage well qualified practitioners in the field of personal training')",Oppose,40000.0,PODESTA GROUP,CROSSFIT,H,H185 +46,Maryanne Lewis,"ZERO Waste Solutions, LLC",2017,190,Executive,,Work with Mass Finance development on economic development of a waste management facility.,Support,39000.0,MARYANNE LEWIS,ZERO WASTE SOLUTIONS,, +47,Maryanne Lewis Attorney At Law,"ZERO Waste Solutions, LLC",2018,190,Executive,,Work with Mass Finance development on economic development of a waste management facility.,Support,39000.0,MARYANNE LEWIS,ZERO WASTE SOLUTIONS,, +48,Finneran Global Strategies,"Trinity Financial, Inc",2016,189,Executive,,"Monitoring of issues regarding permitting, financing, and development of housing and mixed-use real estate projects.",Neutral,39000.0,FINNERAN GLOBAL STRATEGIES,TRINITY FINANCIAL,, +49,Finneran Global Strategies,Trinity Financial,2017,190,House Bill,675,An Act financing the production and preservation of housing for low and moderate income residents,Support,39000.0,FINNERAN GLOBAL STRATEGIES,TRINITY FINANCIAL,H,H675 +50,"Finneran Global Strategies, LLC","Trinity Financial, Inc.",2014,188,House Bill,311,Monitoring of general issues pertaining to residential and commercial development; An Act regarding transformative development in Gateway Cities;,Support,39000.0,FINNERAN GLOBAL STRATEGIES,TRINITY FINANCIAL,H,H311 +51,Thomas Michael Finneran,Alliance of Automobile Manufacturers,2019,191,House Bill,293,"An Act to enhance, update and protect the 2013 Motor Vehicle Right to Repair Law and Consumer Rights",Oppose,39000.0,THOMAS MICHAEL FINNERAN,ALLIANCE OF AUTOMOBILE MANUFACTURERS,H,H293 +52,"BCB Government Relations, Inc.",Massachusetts Beverage Association,2019,191,Executive,,,,38750.0,BCB GOVERNMENT RELATIONS,MASSACHUSETTS BEVERAGE ASSOCIATION,, +53,Daniel W Allegretti,"Exelon Generation Company, LLC",2019,191,House Bill,3668,An Act to Protect Consumers from Predatory Electric Supplier Practices,Oppose,38400.0,DANIEL W ALLEGRETTI,EXELON GENERATION COMPANY,H,H3668 +54,Daniel W Allegretti,"Exelon Generation Company, LLC",2020,191,Executive,,,,38400.0,DANIEL W ALLEGRETTI,EXELON GENERATION COMPANY,, +55,Daniel W Allegretti,"Exelon Generation Company, LLC",2019,191,House Bill,2823,An Act to protect consumers from predatory electric supplier practices,Neutral,38400.0,DANIEL W ALLEGRETTI,EXELON GENERATION COMPANY,H,H2823 +56,Nicholas J Puleo,Massachusetts Teachers Association,2016,189,House Bill,4450,(All Budget bills) An Act Making Appropriations for the Fiscal Year 2017,Neutral,38117.93,NICHOLAS J PULEO,MASSACHUSETTS TEACHERS ASSOCIATION,H,H4450 +57,Gateway Public Solutions,Equitable Financial Life Insurance Company,2021,192,House Bill,2643,An Act relative to the SMART Plan,Oppose,38000.0,GATEWAY PUBLIC SOLUTIONS,EQUITABLE FINANCIAL LIFE INSURANCE COMPANY,H,H2643 +58,Joseph M Donovan,"Neutron Holdings Inc, dba Lime",2019,191,Executive,,,,38000.0,JOSEPH M DONOVAN,NEUTRON HOLDINGS,, +59,Tara Bartley,"Commonwealth Alternative Care, Inc.",2019,191,House Bill,3543,An Act expanding the use of organic pest control,Support,37500.0,TARA BARTLEY,COMMONWEALTH ALTERNATIVE CARE,H,H3543 +60,NIxon Peabody LLP,"Sira Naturals, Inc.",2017,190,Executive,,No legislation - Provided strategic advice regarding general executive matters and the applicability of M.G.L. Ch. 93G to local municipal marijuana by-law town meeting action and ballot question.,Neutral,37500.0,NIXON PEABODY,SIRA NATURALS,, +61,Maryanne Lewis,"Urban League of Springfield, Inc.",2015,189,House Bill,3401,H3401- Conf. Committee Report and legislation and regulation surrounding educational and workforce development,Support,37500.0,MARYANNE LEWIS,URBAN LEAGUE OF SPRINGFIELD,H,H3401 +62,"Kearney Donovan & McGee, P.C.",Service Contract Industry Council,2018,190,Executive,,For all activity,Neutral,37500.0,KEARNEY DONOVAN AND MCGEE P C,SERVICE CONTRACT INDUSTRY COUNCIL,, +63,John F Fitzgerald,"Pure Storage, Inc.",2019,191,Executive,,Manufacturer's rep sales call,Neutral,37500.0,JOHN F FITZGERALD,PURE STORAGE,, +64,Tara Bartley,L3Harris Technologies,2019,191,Executive,,Meeting with Curt Wood to discuss matters related to public safety communications.,Support,37000.0,TARA BARTLEY,L3HARRIS TECHNOLOGIES,, +65,Foley Hoag LLP,Guardian Community Trust,2017,190,Executive,,Potential draft regulations from the Executive Office of Health and Human Services regarding pooled trusts for Medicaid eligible persons over the age of 65.,Oppose,36490.5,FOLEY HOAG,GUARDIAN COMMUNITY TRUST,, +66,"Kearney Donovan & McGee, P.C.","Comcast Cable Communications Management, LLC",2018,190,Executive,,For all activity,Neutral,36000.0,KEARNEY DONOVAN AND MCGEE P C,COMCAST CABLE COMMUNICATIONS MANAGEMENT,, +67,"Kearney Donovan & McGee, P.C.","Amazon.com, Inc.",2018,190,Executive,,For all activity,Neutral,36000.0,KEARNEY DONOVAN AND MCGEE P C,AMAZON COM,, +68,Gateway Public Solutions,"Greater Boston Urology, LLC",2021,192,House Bill,437,An Act relative to a specialty pharmacy pilot program for Urology,Support,36000.0,GATEWAY PUBLIC SOLUTIONS,GREATER BOSTON UROLOGY,H,H437 +69,Gateway Public Solutions,Enhanced Capital,2021,192,House Bill,2830,An Act establishing the Massachusetts rural jobs act,Support,36000.0,GATEWAY PUBLIC SOLUTIONS,ENHANCED CAPITAL,H,H2830 +70,Thomas Michael Finneran,Boston Boat Basin LLC,2019,191,House Bill,833,An Act confirming Commercial Wharf East Condominium Association present uses as authorized by the Downtown Waterfront-Faneuil Hall Urban Renewal Plan and Chapter 663 of the Acts of 1964 and Chapter 310 of the Acts of 1972 and preventing residents from being forced to sell their property and leave,Neutral,36000.0,THOMAS MICHAEL FINNERAN,BOSTON BOAT BASIN,H,H833 +71,Ron Lanton,NORTHEAST PHARMACY SERVICE CORPORATION,2024,193,House Bill,4066,An Act relative to pharmacists as healthcare providers,Support,36000.0,RON LANTON,NORTHEAST PHARMACY SERVICE,H,H4066 +72,James P Hurrell Lobbying Consulting,Massachusetts State Automobile Dealers Association,2014,188,Senate Bill,129,auto franchise law,Support,36000.0,JAMES P HURRELL LOBBYING CONSULTING,MASSACHUSETTS STATE AUTOMOBILE DEALERS ASSOCIATION,S,S129 +73,Golledge Strategies & Solutions LLC,Covanta Energy LLC,2019,191,Executive,,Discussions regarding proposed regulation changes for Waste to Energy Credits,Support,36000.0,GOLLEDGE STRATEGIES AND SOLUTIONS,COVANTA ENERGY,, +74,William E. Ryan Associates,LStar Management,2016,189,Executive,,"Public infrastructure needs and private investment activity associated with the redevelopment of the former South Weymouth Naval Air Station, House members representing Weymouth, Rockland, Abington",Support,35000.0,WILLIAM E RYAN,LSTAR MANAGEMENT,, +75,Nicholas J Puleo,Massachusetts Teachers Association,2016,189,Senate Bill,326,An Act Establishing a moratorium for Commonwealth charter schools,Support,34792.2,NICHOLAS J PULEO,MASSACHUSETTS TEACHERS ASSOCIATION,S,S326 +76,Abbie R Goodman,The Engineering Center Education Trust,2014,188,House Bill,3847,"Work to oppose Repeal of the 2013 Gas Tax indexing; work to defeat Ballot Question 1, including opposition to H. 3847: An Act to Repeal of 2013 gas tax indexing +Initiative petition of Steven W. Aylward and others for the passage of An Act repeal of 2013 gas tax indexing (House, No. 3847).",Oppose,34732.5,ABBIE R GOODMAN,ENGINEERING CENTER EDUCATION TRUST,H,H3847 +77,David Goggin,Amgen,2014,188,House Bill,3734,An Act relative to the substitution of interchangeable biosimilars,Support,34705.92,DAVID GOGGIN,AMGEN,H,H3734 +78,Maryanne Lewis,"Green Heart Holistic, Health & Pharmaceuticals, Inc.",2014,188,Senate Bill,1031,"S1031 An ACT to establish the Massachusetts medical marijuana program, legislation and regulation as it relates to medical cannibus.",Neutral,34000.0,MARYANNE LEWIS,GREEN HEART HOLISTIC HEALTH AND PHARMACEUTICALS,S,S1031 +79,Thomas Michael Finneran,"Pharmaceutical Research and Manufacturers of America, Inc.",2019,191,House Bill,1,"making appropriations for the fiscal year 2020 for the maintenance of the departments, boards, commissions, institutions, and certain activities of the Commonwealth, for interest, sinking fund, and serial bond requirements, and for certain permanent improvements",Neutral,32500.0,THOMAS MICHAEL FINNERAN,PHARMACEUTICAL RESEARCH AND MANUFACTURERS OF AMERICA,H,H1 +80,Kathleen A Hickman,Raytheon Technologies Corporation,2020,191,Executive,,Monitoring legislative and executive branch activity and its impact on the client.,Oppose,32487.02,KATHLEEN A HICKMAN,RAYTHEON TECHNOLOGIES,, +81,Martin Dagoberto Driggs,"Citizens for GMO Labeling, Inc.",2015,189,House Bill,3242,"""Genetic Engineering Transparency Food and Seed Labeling Act,"" AKA ""The GMO Labeling Bill""",Support,32200.0,MARTIN DAGOBERTO DRIGGS,CITIZENS FOR GMO LABELING,H,H3242 +82,CK Strategies,IGT and Its Affiliates,2015,189,Executive,,"Represented GTech and advised relative to all aspects of the Massachusetts Lottery and the State Treasury. This includes advocating on GTech's behalf to appropriate state agency representatives, strategic planning for future business opportunities and technology expansion within the Massachusetts Lottery.",Support,32000.0,CK STRATEGIES,IGT AND ITS AFFILIATES,, +83,"Kearney, Donovan & McGee, P.C.","The New England Center for Children, Inc.",2016,189,Executive,,For all activities,Neutral,31500.0,KEARNEY DONOVAN AND MCGEE P C,NEW ENGLAND CENTER FOR CHILDREN,, +84,"Kearney Donovan & McGee, P.C.","The New England Center for Children, Inc.",2018,190,Executive,,For all activity,Neutral,31500.0,KEARNEY DONOVAN AND MCGEE P C,NEW ENGLAND CENTER FOR CHILDREN,, +85,Suzanne Wall,Massachusetts Teachers Association,2018,190,House Bill,4153,An Act investing in public higher education.,Support,31160.0,SUZANNE WALL,MASSACHUSETTS TEACHERS ASSOCIATION,H,H4153 +86,"Kearney, Donovan & McGee, P.C.",New England Convenience Store & Energy Marketers Association,2016,189,Executive,,For all activities,Neutral,30000.0,KEARNEY DONOVAN AND MCGEE P C,NEW ENGLAND CONVENIENCE STORE AND ENERGY MARKETERS ASSOCIATION,, +87,Maryanne Lewis,gabriel care,2014,188,House Bill,4524,H4524; AN ACT relative to criminal penalties for acts involving federal and state health care programs and legislation and regulation surrounding adult foster care.,Support,30000.0,MARYANNE LEWIS,GABRIEL CARE,H,H4524 +88,"Kearney, Donovan & McGee, P.C.","Ejt Management, Inc",2016,189,Executive,,For all activity,Neutral,30000.0,KEARNEY DONOVAN AND MCGEE P C,EJT MANAGEMENT,, +89,Matthew Keswick,"WatchGuard, Inc.",2019,191,Executive,,,,30000.0,MATTHEW KESWICK,WATCHGUARD,, +90,Lisa Marie Andoscia,"Allied Waste Services of Massachusetts, LLC",2019,191,Executive,,procurement and general waste management and recycling,Support,30000.0,LISA MARIE ANDOSCIA,ALLIED WASTE SERVICES OF MASSACHUSETTS,, +91,Matthew Keswick,Association of Dental Support Organizations,2019,191,Executive,,,,30000.0,MATTHEW KESWICK,ASSOCIATION OF DENTAL SUPPORT ORGANIZATIONS,, +92,"Kearney, Donovan & McGee, P.C.",Darden Inc.,2016,189,Executive,,For all activityFor all activity,Neutral,30000.0,KEARNEY DONOVAN AND MCGEE P C,DARDEN,, +93,"Kearney, Donovan & McGee, P.C.",Covanta,2016,189,Executive,,For all activity,Neutral,30000.0,KEARNEY DONOVAN AND MCGEE P C,COVANTA,, +94,Gateway Public Solutions,"Greater Boston Urology, LLC",2019,191,Executive,,,,30000.0,GATEWAY PUBLIC SOLUTIONS,GREATER BOSTON UROLOGY,, +95,Maryanne Lewis,"Roche Bros. Supermarkets, LLC",2017,190,House Docket,3667,An Act authorizing the town of Needham to grant an additional license for the sale of malt and wine beverages not to be drunk on the premises,Support,30000.0,MARYANNE LEWIS,ROCHE BROS SUPERMARKETS,HD,HD3667 +96,Maryanne Lewis,"Roche Bros. Supermarkets, LLC",2016,189,House Bill,4201,H4201- Conf. Committee Report and legislation and regulation surrounding educational and workforce development,Neutral,30000.0,MARYANNE LEWIS,ROCHE BROS SUPERMARKETS,H,H4201 +97,Matthew Keswick,Lenovo United States Inc,2019,191,Executive,,,,30000.0,MATTHEW KESWICK,LENOVO UNITED STATES,, +98,"Kearney Donovan & McGee, P.C.","Sterling Suffolk Racecourse, LLC",2018,190,Executive,,For all activity,Neutral,30000.0,KEARNEY DONOVAN AND MCGEE P C,STERLING SUFFOLK RACECOURSE,, +99,The Nolan Group,GEM Realty Capital,2014,188,Executive,,"Provide advice and research in relation to potential investments. Meet with officials at the Department of Environmental Protection, Waterways Division to discuss Chapter 91 and other pertinent issues related to the purchase of a property in Boston. There have been no discussions with legislators at the this time.",Support,30000.0,NOLAN GROUP,GEM REALTY CAPITAL,, diff --git a/docs/data/MA_lobbying_bills_scored_sample.csv b/docs/data/MA_lobbying_bills_scored_sample.csv new file mode 100644 index 0000000..45749f3 --- /dev/null +++ b/docs/data/MA_lobbying_bills_scored_sample.csv @@ -0,0 +1,101 @@ +,bill_number,general_court,bill_title,bill_id,env_relevance_score,is_environmental,cluster_id +0,3678,194,An Act relative to chemical recycling,HD3678,0.1475381851196289,1,22 +1,4563,193,An Act relative to landfills and areas of critical environmental concern,H4563,0.1332122683525085,1,0 +2,2945,190,An Act relative to landfills and areas of critical environmental concern,H2945,0.1287276148796081,1,21 +3,894,191,An Act relative to landfills and areas of critical environmental concern,H894,0.1287276148796081,1,10 +4,930,192,An Act relative to landfills and areas of critical environmental concern,H930,0.1287275552749633,1,2 +5,440,190,An Act relative to landfills and Areas of Critical Environmental Concern,S440,0.1273688673973083,1,2 +6,3701,193,An Act relative to chemical recycling,H3701,0.1225529313087463,1,21 +7,863,193,An Act relative to proper disposal of products containing PFAS,H863,0.1221066713333129,1,2 +8,530,192,An Act relative to maintaining adequate water supplies through effective drought management,S530,0.1155469417572021,1,20 +9,861,193,An Act relative to maintaining adequate water supplies through effective drought management,H861,0.1155468821525573,1,4 +10,39,193,An Act protecting our soil and farms from PFAS contamination,S39,0.1148219108581543,1,14 +11,101,193,An Act protecting our soil and farms from PFAS contamination,H101,0.1148216724395752,1,0 +12,762,191,An Act relative to maintaining adequate water supplies through effective drought management,H762,0.1139989495277404,1,14 +13,662,194,An Act relative to maintaining adequate water supplies through effective drought management,S662,0.1139988303184509,1,5 +14,56,194,An Act protecting our soil and farms from PFAS contamination,S56,0.1135307550430297,1,3 +15,109,194,An Act protecting our soil and farms from PFAS contamination,H109,0.1135307550430297,1,9 +16,4288,193,An Act protecting our soil and farms from PFAS contamination,H4288,0.1130175590515136,1,8 +17,1003,194,An Act relative to maintaining adequate water supplies through effective drought management,H1003,0.1113339066505432,1,4 +18,586,194,An Act relative to maintaining adequate water supplies through effective drought management,S586,0.1113339066505432,1,14 +19,2115,190,An Act relative to drought management,H2115,0.1107659339904785,1,22 +20,817,193,An Act providing access to higher education for high school graduates in the Commonwealth,H817,0.1103136539459228,1,3 +21,1060,194,An Act relative to solid waste disposal facilities in environmental justice communities,H1060,0.1098233461380004,1,9 +22,529,193,An Act relative to solid waste disposal facilities in environmental justice communities,S529,0.1098232865333557,1,2 +23,914,193,An Act relative to solid waste disposal facilities in environmental justice communities,H914,0.1098232269287109,1,21 +24,383,188,"SB383, An Act incorporating wetland stewardship and scenic resources into wetland protection. We tracked the status of this bill using Insta-Trac, a tracking service, but did not have any contact with legislators or government officials in regard to this bill.",S383,0.1079468727111816,1,0 +25,735,186,"An Act to reinstate the landfill moratorium. ",H735,0.10762619972229,1,0 +26,425,190,An Act relative to drought management,S425,0.1064680218696594,1,14 +27,446,190,An Act to promote healthy communities and the environment,H446,0.1008339524269104,1,0 +28,698,188,An Act relative to best management practices in water,H698,0.0944083333015441,1,0 +29,829,191,An Act to promote healthy communities and the environment,H829,0.0931211709976196,1,20 +30,1315,191,An Act relative to chemicals in food packaging,S1315,0.0930818915367126,1,2 +31,2146,190,An Act establishing tracking and reporting requirements for Massachusetts transportation fuels and associated greenhouse gas emissions,H2146,0.0929172039031982,1,15 +32,754,189,An Act establishing tracking and reporting requirements for Massachusetts transportation fuels and associated greenhouse gas emissions,H754,0.0929172039031982,1,14 +33,604,192,An Act establishing tracking and reporting requirements for Massachusetts transportation fuels and associated greenhouse gas emissions,S604,0.0929172039031982,1,14 +34,521,191,An Act establishing tracking and reporting requirements for Massachusetts transportation fuels and associated greenhouse gas emissions,S521,0.0929170846939086,1,4 +35,560,193,An Act establishing tracking and reporting requirements for Massachusetts transportation fuels and associated greenhouse gas emissions,S560,0.0929170846939086,1,14 +36,477,190,An Act establishing tracking and reporting requirements for Massachusetts transportation fuels and associated greenhouse gas emissions,S477,0.0929170846939086,1,14 +37,2009,191,An Act to reduce greenhouse gas emissions,S2009,0.092070460319519,1,14 +38,730,188,An Act providing for more efficient wetlands protection by avoiding unnecessary duplication in local wetlands ordinances or bylaws,H730,0.0907992124557495,1,9 +39,3836,192,An Act prohibiting disposal by incineration of certain aqueous film-forming foam,H3836,0.0905959010124206,1,20 +40,2085,188,"Joint Committee on Telecommunications, Utilities & Energy - An Act requiring the timely adoption of greenhouse gas emission limits for the year 2030",S2085,0.0900017023086547,1,14 +41,410,189,"S. 410, resolve relative to establishing a comprehensive waste management hierarchy in Massachusetts",S410,0.0889670252799987,1,2 +42,4820,192,An Act to ban the use of PFAS in food packaging,H4820,0.0876446366310119,1,14 +43,2893,192,An Act relative to chemicals in food packaging,S2893,0.0875599980354309,1,6 +44,2126,190,An Act relative to the Massachusetts Wetlands Protection Act,H2126,0.0875561237335205,1,24 +45,773,188,An Act allowing local wetlands bylaw decisions to be appealed to land court,S773,0.0875385999679565,1,13 +46,2723,193,Studying the effect of per- and polyfluoroalkyl substances in commercial products,S2723,0.0867761373519897,1,6 +47,1045,194,An Act relative to liability for release of hazardous materials,H1045,0.0862191319465637,1,0 +48,441,190,An Act further regulating siting of solid waste facilities,S441,0.0862088203430175,1,14 +49,1194,194,An Act relative to the cleanup of accidental home heating oil spills,H1194,0.0861396789550781,1,21 +50,4818,192,An Act restricting toxic PFAS chemicals in consumer products to protect our health,H4818,0.0860450863838195,1,7 +51,906,193,An Act to accelerate and streamline wetlands restoration,H906,0.0858179926872253,1,14 +52,588,193,An Act studying the effect of per- and polyfluoroalkyl substances in commercial products,S588,0.085762619972229,1,3 +53,985,192,An Act studying the effect of per- and polyfluoroalkyl substances in commercial products,H985,0.0852963924407959,1,4 +54,624,192,An Act studying the effect of per- and polyfluoroalkyl substances in commercial products,S624,0.0852963328361511,1,0 +55,1046,193,An Act relative to the cleanup of accidental home heating oil spills,H1046,0.0852188467979431,1,15 +56,2149,190,An Act relating to the effective and efficient implementation of the Global Warming Solutions Act of 2008,H2149,0.0850124955177307,1,18 +57,457,193,An Act to accelerate and streamline wetlands restoration,S457,0.0845230817794799,1,8 +58,39,193,An Act protecting our soil and farms from PFAS contamination,H39,0.0840250253677368,1,6 +59,1431,193,An Act relative to chemicals in food packaging,S1431,0.0839515328407287,1,2 +60,1052,194,An Act accelerating wetlands restoration,H1052,0.0838565826416015,1,1 +61,2500,191,An Act setting next-generation climate policy,S2500,0.0838357806205749,1,7 +62,456,189,An Act establishing tracking and reporting requirements for Massachusetts transportation fuels and associated greenhouse gas emissions,S456,0.0836589336395263,1,14 +63,1832,191,An Act further regulating siting of solid waste facilities,H1832,0.0835810303688049,1,16 +64,2161,192,An Act further regulating siting of solid waste facilities,H2161,0.0835810303688049,1,14 +65,3219,190,An Act further regulating siting of solid waste facilities,H3219,0.0835807919502258,1,1 +66,2056,193,An Act further regulating siting of solid waste facilities,H2056,0.0835807919502258,1,14 +67,1929,191,An Act requiring the timely adoption of greenhouse gas emission limits for the year 2030,S1929,0.0833440423011779,1,14 +68,1828,190,An Act to explore alternative funding sources to ensure safe and reliable transportation,S1828,0.0832948684692382,1,20 +69,479,190,An Act relative to 2030 and 2040 emissions benchmarks,S479,0.0831530690193176,1,14 +70,607,192,An Act relative to stronger emissions limits,S607,0.0829653739929199,1,14 +71,440,190,An Act relative to landfills and Areas of Critical Environmental Concern,H440,0.0828680992126464,1,3 +72,2224,192,An Act to reduce greenhouse gas emissions,S2224,0.0828336477279663,1,14 +73,2477,191,An Act setting next-generation climate policy,S2477,0.0824567079544067,1,1 +74,394,186,- Hazardous Waste Notification,S394,0.0822882652282714,1,7 +75,719,188,Resolve relative to establishing a comprehensive waste managment hierarchy in Massachusetts,H719,0.0822012424468994,1,9 +76,2348,192,An Act to ban the use of PFAS in food packaging,H2348,0.0821852087974548,1,1 +77,994,194,An Act regulating the application of fertilizer used in the town of Orleans,H994,0.0821208953857421,1,14 +78,874,193,An Act regulating the application of fertilizer used in the town of Orleans,H874,0.0821207761764526,1,2 +79,429,190,An Act relative to underground storage tank remediation,H429,0.0820258259773254,1,14 +80,9,192,An Act creating a next-generation roadmap for Massachusetts climate policy,S9,0.0820236802101135,1,5 +81,750,186,An Act providing for more efficient wetlands protection by avoiding unnecessary duplication in local wetlands ordinances or bylaws,H750,0.0819623470306396,1,13 +82,1765,191,An Act to prevent nonprofit institutions from avoiding wetlands or natural resource protections under the so-called Dover Amendment,H1765,0.0819566249847412,1,24 +83,2035,193,An Act to prevent nonprofit institutions from avoiding wetlands or natural resource protections under the so-called Dover Amendment,H2035,0.0819566249847412,1,23 +84,1325,192,An Act to prevent nonprofit institutions from avoiding wetlands or natural resource protections under the so-called Dover Amendment,S1325,0.0819566249847412,1,0 +85,2141,192,An Act to prevent nonprofit institutions from avoiding wetlands or natural resource protections under the so-called Dover Amendment,H2141,0.0819566249847412,1,0 +86,3661,191,An Act relative to the reduction of certain toxic chemicals in firefighter personal protective equipment,H3661,0.0817464590072631,1,22 +87,2737,193,An Act relative to the remediation of home heating oil releases,S2737,0.0815783739089965,1,21 +88,813,194,An Act relative to the remediation of home heating oil releases,S813,0.081578254699707,1,1 +89,4256,191,An Act establishing an interagency PFAS task force,H4256,0.0814509987831115,1,19 +90,930,192,An Act relative to landfills and areas of critical environmental concern,S930,0.0813663601875305,1,9 +91,1747,189,An Act combating climate change,S1747,0.0810697078704834,1,14 +92,136,194,An Act prohibiting the use and sale of toxic sludge,H136,0.0807428359985351,1,22 +93,1866,189,An Act relative to a clean fuel standard,S1866,0.0806789398193359,1,14 +94,1974,190,An Act relative to a clean fuel standard,S1974,0.0806789398193359,1,14 +95,2130,191,An Act relative to a clean fuel standard,S2130,0.0806789398193359,1,14 +96,2370,192,An Act relative to a clean fuel standard,S2370,0.0806789398193359,1,14 +97,2286,193,An Act relative to a clean fuel standard,S2286,0.0806789398193359,1,14 +98,4187,188,An Act relative to clean energy resources,H4187,0.0806100368499755,1,6 +99,1213,193,An Act relative to clean energy resources,HD1213,0.0806098580360412,1,22 diff --git a/docs/data/MA_lobbying_employers_sample.csv b/docs/data/MA_lobbying_employers_sample.csv new file mode 100644 index 0000000..8e8b494 --- /dev/null +++ b/docs/data/MA_lobbying_employers_sample.csv @@ -0,0 +1,101 @@ +,entity_name,client_name,year,reg_type,compensation,entity_name_norm,client_name_norm +0,"21c, LLC","EDUCATION TRUST, INC. (THE)",2024,Lobbyist Entity,7500.0,21C,EDUCATION TRUST +1,"21c, LLC","Amplify Education, Inc.",2024,Lobbyist Entity,22500.0,21C,AMPLIFY EDUCATION +2,"21c, LLC","The Massachusetts Alliance for Early College, Inc.",2024,Lobbyist Entity,15000.0,21C,MASSACHUSETTS ALLIANCE FOR EARLY COLLEGE +3,"21c, LLC",Benjamin Franklin Cummings Institute of Technology,2024,Lobbyist Entity,12500.0,21C,BENJAMIN FRANKLIN CUMMINGS INSTITUTE OF TECHNOLOGY +4,"21c, LLC",Total salaries received,2024,Lobbyist Entity,57500.0,21C,TOTAL SALARIES RECEIVED +5,"21c, LLC","Artists For Humanity, Inc.",2024,Lobbyist Entity,12500.0,21C,ARTISTS FOR HUMANITY +6,"27 South Strategies, LLC","The Massachusetts International Festival of the Arts, Inc.",2024,Lobbyist Entity,24000.0,27 SOUTH STRATEGIES,MASSACHUSETTS INTERNATIONAL FESTIVAL OF ARTS +7,"27 South Strategies, LLC","Veterinary Emergency Group, LLC",2024,Lobbyist Entity,27000.0,27 SOUTH STRATEGIES,VETERINARY EMERGENCY GROUP +8,"27 South Strategies, LLC",Thrive Scholars,2024,Lobbyist Entity,21600.0,27 SOUTH STRATEGIES,THRIVE SCHOLARS +9,"27 South Strategies, LLC",Boston Center for Independent Living INC,2024,Lobbyist Entity,2500.0,27 SOUTH STRATEGIES,BOSTON CENTER FOR INDEPENDENT LIVING +10,"27 South Strategies, LLC","Guardian Community Trust, Inc.",2024,Lobbyist Entity,36000.0,27 SOUTH STRATEGIES,GUARDIAN COMMUNITY TRUST +11,"27 South Strategies, LLC","Gobrands, Inc",2024,Lobbyist Entity,30000.0,27 SOUTH STRATEGIES,GOBRANDS +12,"27 South Strategies, LLC",Total salaries received,2024,Lobbyist Entity,141100.0,27 SOUTH STRATEGIES,TOTAL SALARIES RECEIVED +13,Anthony Arthur Abdelahad,"Massachusetts Association of Vocational Administrators, Inc.",2024,Lobbyist,34999.98,ANTHONY ARTHUR ABDELAHAD,MASSACHUSETTS ASSOCIATION OF VOCATIONAL ADMINISTRATORS +14,Anthony Arthur Abdelahad,"Massachusetts Association of Insurance Agents, Inc.",2024,Lobbyist,67500.0,ANTHONY ARTHUR ABDELAHAD,MASSACHUSETTS ASSOCIATION OF INSURANCE AGENTS +15,Anthony Arthur Abdelahad,"USA Hauling & Recycling, Inc.",2024,Lobbyist,0.0,ANTHONY ARTHUR ABDELAHAD,USA HAULING AND RECYCLING +16,Anthony Arthur Abdelahad,"Lindy Farms of Connecticut, LLC",2024,Lobbyist,0.0,ANTHONY ARTHUR ABDELAHAD,LINDY FARMS OF CONNECTICUT +17,Anthony Arthur Abdelahad,"Greathorse, LLC",2024,Lobbyist,0.0,ANTHONY ARTHUR ABDELAHAD,GREATHORSE +18,Anthony Arthur Abdelahad,Massachusetts Municipal Wholesale Electric Company,2024,Lobbyist,70000.0,ANTHONY ARTHUR ABDELAHAD,MASSACHUSETTS MUNICIPAL WHOLESALE ELECTRIC COMPANY +19,Anthony Arthur Abdelahad,Construction Industries of Massachusetts Massachusetts Aggregate and Asphalt Pavement Division,2024,Lobbyist,24000.0,ANTHONY ARTHUR ABDELAHAD,CONSTRUCTION INDUSTRIES OF MASSACHUSETTS MASSACHUSETTS AGGREGATE AND ASPHALT PAVEMENT DIVISION +20,Anthony Arthur Abdelahad,"AMERICAN MEDICAL RESPONSE OF MASSACHUSETTS, INC.",2024,Lobbyist,59641.86,ANTHONY ARTHUR ABDELAHAD,AMERICAN MEDICAL RESPONSE OF MASSACHUSETTS +21,Anthony Arthur Abdelahad,"MANAFORT BROTHERS, INCORPORATED",2024,Lobbyist,14000.0,ANTHONY ARTHUR ABDELAHAD,MANAFORT BROTHERS +22,Anthony Arthur Abdelahad,"Peckham Industries, Inc.",2024,Lobbyist,51000.0,ANTHONY ARTHUR ABDELAHAD,PECKHAM INDUSTRIES +23,Anthony Arthur Abdelahad,"MGM Resorts International Operations, Inc.",2024,Lobbyist,13125.0,ANTHONY ARTHUR ABDELAHAD,MGM RESORTS INTERNATIONAL OPERATIONS +24,Anthony Arthur Abdelahad,Massachusetts Alliance of Boys & Girls Clubs,2024,Lobbyist,60000.0,ANTHONY ARTHUR ABDELAHAD,MASSACHUSETTS ALLIANCE OF BOYS AND GIRLS CLUBS +25,Anthony Arthur Abdelahad,"Massachusetts Urgent Care Association, Inc",2024,Lobbyist,45833.35,ANTHONY ARTHUR ABDELAHAD,MASSACHUSETTS URGENT CARE ASSOCIATION +26,Anthony Arthur Abdelahad,Western New England University,2024,Lobbyist,22500.0,ANTHONY ARTHUR ABDELAHAD,WESTERN NEW ENGLAND UNIVERSITY +27,Anthony Arthur Abdelahad,"The Massachusetts Propane Association,Inc",2024,Lobbyist,60000.0,ANTHONY ARTHUR ABDELAHAD,MASSACHUSETTS PROPANE ASSOCIATION +28,Anthony Arthur Abdelahad,"Community Music School of Springfield, Inc.",2024,Lobbyist,24999.96,ANTHONY ARTHUR ABDELAHAD,COMMUNITY MUSIC SCHOOL OF SPRINGFIELD +29,Anthony Arthur Abdelahad,Total salaries received,2024,Lobbyist,547600.15,ANTHONY ARTHUR ABDELAHAD,TOTAL SALARIES RECEIVED +30,Paul G. Afonso,"Eastern Salt Company, Inc.",2024,Lobbyist,35000.0,PAUL G AFONSO,EASTERN SALT COMPANY +31,Paul G. Afonso,"The Next Street MA, LLC",2024,Lobbyist,15000.0,PAUL G AFONSO,NEXT STREET MA +32,Paul G. Afonso,GardaWorld Federal Services LLC,2024,Lobbyist,30000.0,PAUL G AFONSO,GARDAWORLD FEDERAL SERVICES +33,Paul G. Afonso,PPL Services Corporation,2024,Lobbyist,30000.0,PAUL G AFONSO,PPL SERVICES +34,Paul G. Afonso,"American Physical Therapy Association of Massachusetts, Inc.",2024,Lobbyist,20000.0,PAUL G AFONSO,AMERICAN PHYSICAL THERAPY ASSOCIATION OF MASSACHUSETTS +35,Paul G. Afonso,Massachusetts Association of Nurse Anesthesiology,2024,Lobbyist,39000.0,PAUL G AFONSO,MASSACHUSETTS ASSOCIATION OF NURSE ANESTHESIOLOGY +36,Paul G. Afonso,"Massachusetts Association of Health Plans, Inc",2024,Lobbyist,57000.0,PAUL G AFONSO,MASSACHUSETTS ASSOCIATION OF HEALTH PLANS +37,Paul G. Afonso,Arbella Mutual Insurance Company,2024,Lobbyist,36000.0,PAUL G AFONSO,ARBELLA MUTUAL INSURANCE COMPANY +38,Paul G. Afonso,"ChargePoint, Inc.",2024,Lobbyist,21000.0,PAUL G AFONSO,CHARGEPOINT +39,Paul G. Afonso,"Form Energy, Inc.",2024,Lobbyist,39000.0,PAUL G AFONSO,FORM ENERGY +40,Paul G. Afonso,Applied Materials Inc.,2024,Lobbyist,45000.0,PAUL G AFONSO,APPLIED MATERIALS +41,Paul G. Afonso,Massachusetts Coalition for Suicide Prevention,2024,Lobbyist,7500.0,PAUL G AFONSO,MASSACHUSETTS COALITION FOR SUICIDE PREVENTION +42,Paul G. Afonso,Hazel Health Inc.,2024,Lobbyist,21000.0,PAUL G AFONSO,HAZEL HEALTH +43,Paul G. Afonso,"MGM Resorts International Operations, Inc.",2024,Lobbyist,30000.0,PAUL G AFONSO,MGM RESORTS INTERNATIONAL OPERATIONS +44,Paul G. Afonso,Tripadvisor Inc.,2024,Lobbyist,45000.0,PAUL G AFONSO,TRIPADVISOR +45,Paul G. Afonso,"Uber Technologies, Inc.",2024,Lobbyist,45000.0,PAUL G AFONSO,UBER TECHNOLOGIES +46,Paul G. Afonso,"Boehringer Ingelheim Pharmaceuticals, Inc.",2024,Lobbyist,27000.0,PAUL G AFONSO,BOEHRINGER INGELHEIM PHARMACEUTICALS +47,Paul G. Afonso,AbbVie Inc.,2024,Lobbyist,35000.0,PAUL G AFONSO,ABBVIE +48,Paul G. Afonso,Moderna Inc.,2024,Lobbyist,33000.0,PAUL G AFONSO,MODERNA +49,Paul G. Afonso,Vivid Seats,2024,Lobbyist,30000.0,PAUL G AFONSO,VIVID SEATS +50,Paul G. Afonso,The Hertz Corporation,2024,Lobbyist,3250.0,PAUL G AFONSO,HERTZ +51,Paul G. Afonso,JetBlue Airways Corporation,2024,Lobbyist,24000.0,PAUL G AFONSO,JETBLUE AIRWAYS +52,Paul G. Afonso,"GPR Product Development, LLC",2024,Lobbyist,24000.0,PAUL G AFONSO,GPR PRODUCT DEVELOPMENT +53,Paul G. Afonso,"Massachusetts Association of Public Insurance Adjusters, Inc.",2024,Lobbyist,20000.0,PAUL G AFONSO,MASSACHUSETTS ASSOCIATION OF PUBLIC INSURANCE ADJUSTERS +54,Paul G. Afonso,"Onyx Springfield Crossing, LLC",2024,Lobbyist,26225.0,PAUL G AFONSO,ONYX SPRINGFIELD CROSSING +55,Paul G. Afonso,Total salaries received,2024,Lobbyist,737975.0,PAUL G AFONSO,TOTAL SALARIES RECEIVED +56,Aaron Agulnek,"Massachusetts Affiliate of ACNM, Inc",2024,Lobbyist,0.0,AARON AGULNEK,MASSACHUSETTS AFFILIATE OF ACNM +57,Aaron Agulnek,"Adoptions With Love, Inc.",2024,Lobbyist,18725.0,AARON AGULNEK,ADOPTIONS WITH LOVE +58,Aaron Agulnek,Roman Catholic Archbishop of Boston,2024,Lobbyist,14000.0,AARON AGULNEK,ROMAN CATHOLIC ARCHBISHOP OF BOSTON +59,Aaron Agulnek,"Ascentria Care Alliance, Inc.",2024,Lobbyist,16321.5,AARON AGULNEK,ASCENTRIA CARE ALLIANCE +60,Aaron Agulnek,"BAY STATE BIRTH COALITION, INC.",2024,Lobbyist,0.0,AARON AGULNEK,BAY STATE BIRTH COALITION +61,Aaron Agulnek,"Beacon ABA Services, Inc.",2024,Lobbyist,3300.0,AARON AGULNEK,BEACON ABA SERVICES +62,Aaron Agulnek,The Boston Debate League Incorporated,2024,Lobbyist,9000.0,AARON AGULNEK,BOSTON DEBATE LEAGUE +63,Aaron Agulnek,"Bottom Line, Inc.",2024,Lobbyist,12600.0,AARON AGULNEK,BOTTOM LINE +64,Aaron Agulnek,Bryn Austin,2024,Lobbyist,8000.0,AARON AGULNEK,BRYN AUSTIN +65,Aaron Agulnek,"Criterion Child Enrichment, Inc.",2024,Lobbyist,7620.0,AARON AGULNEK,CRITERION CHILD ENRICHMENT +66,Aaron Agulnek,Southwest Boston Senior Services,2024,Lobbyist,13200.0,AARON AGULNEK,SOUTHWEST BOSTON SENIOR SERVICES +67,Aaron Agulnek,"Evergreen Center, Inc.",2024,Lobbyist,7400.0,AARON AGULNEK,EVERGREEN CENTER +68,Aaron Agulnek,GPS Group Peer Support LLC,2024,Lobbyist,0.0,AARON AGULNEK,GPS GROUP PEER SUPPORT +69,Aaron Agulnek,"Guardian Community Trust, Inc.",2024,Lobbyist,37800.0,AARON AGULNEK,GUARDIAN COMMUNITY TRUST +70,Aaron Agulnek,Healthy Children Project Inc DBA ALPP,2024,Lobbyist,12250.0,AARON AGULNEK,HEALTHY CHILDREN PROJECT +71,Aaron Agulnek,"International Institute of New England, Inc",2024,Lobbyist,16387.5,AARON AGULNEK,INTERNATIONAL INSTITUTE OF NEW ENGLAND +72,Aaron Agulnek,Jewish Community Relations Council of Boston,2024,Lobbyist,30000.0,AARON AGULNEK,JEWISH COMMUNITY RELATIONS COUNCIL OF BOSTON +73,Aaron Agulnek,"MASSACHUSETTS ASSOCIATION OF PHYSICIAN ASSOCIATES, INC.",2024,Lobbyist,16200.0,AARON AGULNEK,MASSACHUSETTS ASSOCIATION OF PHYSICIAN +74,Aaron Agulnek,MA Coalition to Prevent Gun Violence,2024,Lobbyist,5818.75,AARON AGULNEK,MA COALITION TO PREVENT GUN VIOLENCE +75,Aaron Agulnek,"Massachusetts Fair Housing Center, Inc.",2024,Lobbyist,12300.0,AARON AGULNEK,MASSACHUSETTS FAIR HOUSING CENTER +76,Aaron Agulnek,Mass Home Care Association,2024,Lobbyist,25376.43,AARON AGULNEK,MASS HOME CARE ASSOCIATION +77,Aaron Agulnek,"The Mass Mentoring Partnership, Inc.",2024,Lobbyist,13300.0,AARON AGULNEK,MASS MENTORING PARTNERSHIP +78,Aaron Agulnek,"Massachusetts Service Alliance, Inc.",2024,Lobbyist,19128.0,AARON AGULNEK,MASSACHUSETTS SERVICE ALLIANCE +79,Aaron Agulnek,"MASSACHUSETTS DENTAL HYGIENISTS' ASSOCIATION , INC.",2024,Lobbyist,15600.0,AARON AGULNEK,MASSACHUSETTS DENTAL HYGIENISTS ASSOCIATION +80,Aaron Agulnek,"MASSACHUSETTS EMPLOYMENT LAWYERS ASSOCIATION, INC.",2024,Lobbyist,14276.1,AARON AGULNEK,MASSACHUSETTS EMPLOYMENT LAWYERS ASSOCIATION +81,Aaron Agulnek,"Metropolitan Council for Educational Opportunity (METCO), Inc.",2024,Lobbyist,16800.0,AARON AGULNEK,METROPOLITAN COUNCIL FOR EDUCATIONAL OPPORTUNITY METCO +82,Aaron Agulnek,"Massachusetts Immigrant and Refugee Advocacy Coalition, Inc.",2024,Lobbyist,17500.0,AARON AGULNEK,MASSACHUSETTS IMMIGRANT AND REFUGEE ADVOCACY COALITION +83,Aaron Agulnek,"National Association of Social Workers, Inc.",2024,Lobbyist,6000.0,AARON AGULNEK,NATIONAL ASSOCIATION OF SOCIAL WORKERS +84,Aaron Agulnek,National Consumer Law Center Inc.,2024,Lobbyist,8000.0,AARON AGULNEK,NATIONAL CONSUMER LAW CENTER +85,Aaron Agulnek,"Boston Women's Health Book Collective, Inc",2024,Lobbyist,9106.24,AARON AGULNEK,BOSTON WOMEN S HEALTH BOOK COLLECTIVE +86,Aaron Agulnek,OutstandingLife,2024,Lobbyist,10000.0,AARON AGULNEK,OUTSTANDINGLIFE +87,Aaron Agulnek,ParentChild+ Inc.,2024,Lobbyist,15900.0,AARON AGULNEK,PARENTCHILD+ +88,Aaron Agulnek,American Red Cross,2024,Lobbyist,12000.0,AARON AGULNEK,AMERICAN RED CROSS +89,Aaron Agulnek,Veterans Inc.,2024,Lobbyist,21000.0,AARON AGULNEK,VETERANS +90,Aaron Agulnek,Vanessa Colleran,2024,Lobbyist,0.0,AARON AGULNEK,VANESSA COLLERAN +91,Aaron Agulnek,"Greater Boston Legal Services, Inc.",2024,Lobbyist,4800.0,AARON AGULNEK,GREATER BOSTON LEGAL SERVICES +92,Aaron Agulnek,Samaritans Inc.,2024,Lobbyist,15000.0,AARON AGULNEK,SAMARITANS +93,Aaron Agulnek,"Massachusetts Association for Community Action, Inc.",2024,Lobbyist,28605.0,AARON AGULNEK,MASSACHUSETTS ASSOCIATION FOR COMMUNITY ACTION +94,Aaron Agulnek,"MA CAPE, Inc",2024,Lobbyist,12000.0,AARON AGULNEK,MA CAPE +95,Aaron Agulnek,Massachusetts Association of Criminal Defense Attorneys,2024,Lobbyist,5000.0,AARON AGULNEK,MASSACHUSETTS ASSOCIATION OF CRIMINAL DEFENSE ATTORNEYS +96,Aaron Agulnek,"Boston Arts Summer Institute, Inc",2024,Lobbyist,30000.0,AARON AGULNEK,BOSTON ARTS SUMMER INSTITUTE +97,Aaron Agulnek,"Massachusetts Law Reform Institute, Inc.",2024,Lobbyist,35000.0,AARON AGULNEK,MASSACHUSETTS LAW REFORM INSTITUTE +98,Aaron Agulnek,Person_not_a_Company,2024,Lobbyist,0.0,AARON AGULNEK,PERSON_NOT_A_COMPANY +99,Aaron Agulnek,"The Massachusetts International Festival of the Arts, Inc.",2024,Lobbyist,24000.0,AARON AGULNEK,MASSACHUSETTS INTERNATIONAL FESTIVAL OF ARTS diff --git a/docs/data/MA_lobbying_summary_links_sample.csv b/docs/data/MA_lobbying_summary_links_sample.csv new file mode 100644 index 0000000..97e4c97 --- /dev/null +++ b/docs/data/MA_lobbying_summary_links_sample.csv @@ -0,0 +1,101 @@ +entity_name,year,summary_url,disc_url,last_checked +"21c, LLC",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToCIgVktzTowTHDxMh68dzxw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgV37dyqQoUDisAp0HQj3O1pvbVeMcoDoacAMaRr2Mf99, +"21c, LLC",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToCIgVktzTowTHDxMh68dzxw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgXAU1mOSIPF3KjdioJzQK7GTBYZqIBleIjHEgHlgIwyR, +"27 South Strategies, LLC",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLJGaPu8imTWWjtAcbtwXKw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgcoLYtPytS6Q7w2M3NiYM53n7demZYWm18Dr0xTUMf5r, +"27 South Strategies, LLC",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLJGaPu8imTWWjtAcbtwXKw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgSXfpEfLke3lETpI5Y7C2e2ZM0l4wjjv9/832arPlMVR, +Anthony Arthur Abdelahad,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToIZaI0RYElFBc0rF4Rmp3l0=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgaWNEJe/apgcdJzXHHB7EAFtcbyEbYn5gedl83dcomhZ, +Anthony Arthur Abdelahad,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToIZaI0RYElFBc0rF4Rmp3l0=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgX4ZlWvTdlv0vC9lWfSD8xBev6weUSYRembZkGXq/wAw, +Viviana Maria Abreu-Hernandez,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToM2HWp6YmFE+YgO96aP/A5I=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZSPqXbo58KwzgYFGPnBNPd/utUZ2MOz/4DydO/+etzT, +Nicholas Acquavito,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHfiM0QaH5N/SlsPCxInyYY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgdXzTBWuPOKsWr88jvo1uqpbSCKVcja8IQNZ21oepaN2, +Nicholas Acquavito,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHfiM0QaH5N/SlsPCxInyYY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeAhpJRceda9+GC5qh19Tu3NgpsKYj5zIi3vP8/7SQk8, +Nicholas Adamopoulos,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToPlZbcNrYW4d+NHy8foCdug=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgTa0rHR+xuAgTsnk7DvffCxWlwjehga1XRda6Xkd8INn, +Nicholas Adamopoulos,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToPlZbcNrYW4d+NHy8foCdug=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgfEQS+TMIy9RZrDGQAXzkTda3kZjhYTzYl8QH0K2sHDI, +Susan L. Adams,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToM8kt7PGk1rFfzSJr+3NjaI=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeI2+Z6mVkQfGSvtx36ohJ5mD2ESK451cWsr9Ics4LDr, +Susan L. Adams,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToM8kt7PGk1rFfzSJr+3NjaI=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgar/Enj7muUqXMFxtT6DGy4MT+l3WzC4Hv9QMVN+eWSN, +Danielle Adams,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToAsmQp3G5lbjlFjEDlXNctg=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgarrGBNmmP+XKS5LPYC209FsZyO17aECxP2LfYK98SBk, +Danielle Adams,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToAsmQp3G5lbjlFjEDlXNctg=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXga9jSL+3c6bSmcJxArWt8Hx0p7Q3TTZRYQArqGrjbtf7, +DDC Advocacy LLC,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToCzVvJSzOSmwUD8ek+H6jaQ=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgR71KMTsVPocmGsLQ58jVmuBc9Z0+8EHhwq4ON2Oj4dD, +Paul G. Afonso,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToBKdxfxjWqUjuQgrnj88sIc=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgQtUAPSKwYocfdm1SB+dnZK/fZ8BhNL8e24lWW+jN5vp, +Paul G. Afonso,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToBKdxfxjWqUjuQgrnj88sIc=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgVTwhl+nT0vO3Bh9T5GPvd430+NfeAMeJx+JQ+HwKv1A, +Vishakha Agarwal,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToPX5KwCTnjlwpzILeNTJt/E=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgU9C6Gm1BoXXC7h3Qi3Ytw7H2cL/71tD3BryDVEkrd7c, +Vishakha Agarwal,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToPX5KwCTnjlwpzILeNTJt/E=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZfJp7bKMEwozzt/7gnP3r9pI2zQKIHgUKxCaFq7S2NG, +Aaron Agulnek,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToBo1TUa+fA7XnuVN/pIRGKY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgY2hfOrszDnaRhjPXYGdJxw510I3FVGKqEw1T4GL8Nl3, +Aaron Agulnek,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToBo1TUa+fA7XnuVN/pIRGKY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgc93PzPTcWSPkEUiMGcsYQVGhpWmJgUf7gax90rMDuiZ, +Josie Ahlberg,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJ4z+gvXdkqwiVHiQyEKPpw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgYCwnYvAmsla/TJGEeQZuohPZTOoXQLZOM35T2Gt9Yb/, +Josie Ahlberg,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJ4z+gvXdkqwiVHiQyEKPpw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgXKQCiVIHYOkczE7g2snzpYzmxqm/lvuxk3Nm7Uknbqf, +Kola Akindele,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToIvwrY/ijqeAMyTwUp/GBWA=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeEErSGDW0Qwz/kLMSnq9EecApg8xFxPXqCykT5OFOkF, +Kola Akindele,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToIvwrY/ijqeAMyTwUp/GBWA=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgVMUMB0NFesWJrFmbuQZja4YSbAyqsJ1q76Je+KtjeCb, +Charles Thomas Alagero,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJ8SQ5YJG/0pdBeauVXAb8E=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgV0/d3Bqm515tZVLQ+1LsUnusdDSVtkZmf34YrcIXDwZ, +Charles Thomas Alagero,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJ8SQ5YJG/0pdBeauVXAb8E=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgen0U1aXFk432L4xIzpqyaOx+vXQk75pFX2SwO+YXaNO, +Allison Alaimo,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToKqx7iVbUonMeNELMPTPN64=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgXOzjJXTVaJxnfyGn7fQQ6ai4dllO9n2+LEIX2rBAi65, +Allison Alaimo,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToKqx7iVbUonMeNELMPTPN64=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgW5TYH6dhY6McJQ/gCnbyTB/r1iYH9Ky0IOBF6hFN4l0, +Pisano Alan,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToMHkRz163FG2iW5jwomK8oU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZY284YF/hnTGb5+XngeO6TlkzxDS18D9qwxSS6Rpaf1, +Pisano Alan,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToMHkRz163FG2iW5jwomK8oU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeAEsbQjH0Drr0ms+ZjelCX4ms0Pg6UaQhpw+lZtBY2S, +David Albright,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHdgt9z6H7lWNo/k23rXq0c=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgb+rNi8qlwHTnAYUkWRQtW+Y+0J6+j0SwtgEwp2kbs4q, +David Albright,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHdgt9z6H7lWNo/k23rXq0c=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgU0eZ/crnRS53avfwCANo1Y3dcmbJ3RlFXE9Ug9xNmnS, +"Theodore J Aleixo, Jr.",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJUyyzPImGRoZCEexDHGqjE=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgSHXgRAHQTP3G5CBWUIJImJOMOFWIJQkPJEhGmkDrjkD, +"Theodore J Aleixo, Jr.",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJUyyzPImGRoZCEexDHGqjE=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgU+IqBUhNGhT5ierubEulTqUTF78SfejLzUBBqMWZ7l5, +Elizabeth Palmer Alfred,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLOWLCpNpc0QfDs5NxAGfiM=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgYB9llZ40wcDm1J5UhIYPvgaiH2BCkoJ0idvS8aJoeN+, +Elizabeth Palmer Alfred,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLOWLCpNpc0QfDs5NxAGfiM=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgV7ecvFf27EuT780s7skOjSelfsOGrmZIgFlXVXW+Ikw, +Raza Ali,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToCo1v5brs/2Dq8PR8rFYHzU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgVZyrGNKyBjX/IGJy4kd6fXssQWXp9RttjmVcuS1Rk+M, +Raza Ali,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToCo1v5brs/2Dq8PR8rFYHzU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgUY4PoSASSl1EQ7ooJRCnxtsrW37cZkWmBg2Qhy3Ijom, +Gabrielle Kate Alicante,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToCr2v3+LX+7BrPAtR5JOsMA=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgRTycP8VQ2CZCnO9JyRBziEdtkW1EhLNLM3JqbP9xTxk, +Gabrielle Kate Alicante,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToCr2v3+LX+7BrPAtR5JOsMA=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgXcm54zaupP9mWYYylq5DGSVBXqVKpsUkV+y58N6LM/i, +Travis H Allen,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToG9Wr58n7/6aHdb1RhLeW2E=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgayhKc2rBd6bXjcG4xihbvraWcwMJ6VO2YPwADsOJIt/, +Travis H Allen,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToG9Wr58n7/6aHdb1RhLeW2E=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgaxGWNR5rarXJcixhUzVtzgxDjCEPyaCk3FvwFG32nJJ, +Nancy Leah Allen Scannell,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToDKXRJtuT6QroDp6IHe6AUw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgXCBeTqYHrN8ijVU/6Tpvr+hIKKrPr3ZVW9T26DCXRul, +Nancy Leah Allen Scannell,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToDKXRJtuT6QroDp6IHe6AUw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgQMCvODRr+WrM/3FttvCpVG+xpUvfIY37o7rV7VSMQBb, +La-Brina Almeida,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToPKH8fNtmIONxjbhvUh5meM=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgcGXvwuUlPSjhrgH0hTW7gaGUOIlVl72vYF1uSaPWHb1, +Altria Client Services LLC,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHrpAFq+hemD3/GGTrFLIKY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgUU9hz/A/ameT7cAUsr6+MCD9snxaV/A3cysRq/GSJc4, +Altria Client Services LLC,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHrpAFq+hemD3/GGTrFLIKY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgUU9hz/A/ameT7cAUsr6+MC+b+7YAGcSPCXG3v9mPzVZ, +Altria Client Services LLC,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHrpAFq+hemD3/GGTrFLIKY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZSZQrllROM5b/1WYQRXDV3Cx0q/RN+sppjcqhnEQyX3, +Jason Aluia,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToO4ZzT3kiJ+OiaHsRgsMHOA=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgUN3EzpEE1mCOMs5YBHc9ktY1djYtF5bbPsLXFhKy1NY, +Jason Aluia,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToO4ZzT3kiJ+OiaHsRgsMHOA=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgR+b3O5M3tJ3hLG5MeCqG3Sa6SrwOx/ieHrPT1NlMeHx, +John James Alvarez,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToKFyX8ebGM0CLBB1OCY3dsY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgVBmmMRPFLsp9ANvjW/Hyb+LzSSzVPH8FI48mqY4idXS, +John James Alvarez,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToKFyX8ebGM0CLBB1OCY3dsY=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgRIL5t5Il4xGBMm2eT1p3D/wZXvOu2440m/Ui+NkVruK, +Oamshri Amarasingham,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToGZUCaD088YXmopCl08K22s=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgRSHPfwPmspptBsOE6YGNJ4/zl8PjEA9DXmA3Aa/+ETq, +Oamshri Amarasingham,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToGZUCaD088YXmopCl08K22s=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgf29pjNH+VVqYd13eqUszEGM9H7wmZFGmeAcUgCSU61L, +Robert J Ambrogi,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToH5CL/fyPNxKgduNVp7IEqk=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgaCq6vP8sqSQuk5ObozY+p5qpz5FAc+7hPko9c4cVyaU, +Robert J Ambrogi,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToH5CL/fyPNxKgduNVp7IEqk=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeyzdnfYpOubL9grjh7jJQq9c6Iyh4IWtUkHU8rqV9of, +Samuel Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToMzX6vi49N4eq0sPtNMC0yU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgR0wkSHfiSjO3uDv5YTXv0Xhow/ZMUsLBi1oCLW9TsGS, +Samuel Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToMzX6vi49N4eq0sPtNMC0yU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgbQLET5N+ipPLAEG8GWqBCvxDIWoqnIvBu2HDNR677Ko, +Christopher Robert Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToMwRDFW4GtQOXOhflD6ipng=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZ3VSlmxu+H63IYGdz1vkSWk1dfhg7pprRJzA0AdnCBp, +Christopher Robert Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToMwRDFW4GtQOXOhflD6ipng=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgTEPbK5kfOGzdw2KuzADBqMEPm0uxqL66GFniMO8rsll, +Leda Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLvSqLf3CTfrUJ4DeqqrJ5c=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgfNXzWu8eYrdtvgqkBUQ/NYNCtHgXvOGMENaubKFXIcu, +Leda Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLvSqLf3CTfrUJ4DeqqrJ5c=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgTf7eXWlbtWTfltacRM2dv5UlZMo12JZ07qxJQ3ZQaok, +Kathleen R Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToE+r+46nBFC4UmuMAHonrDU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZQVaPABGRCuy0rOG4IeDyWa5/z9T5gUMU/H9eOWEdH/, +Kathleen R Anderson,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToE+r+46nBFC4UmuMAHonrDU=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgWqhTu4jTJBVDQ0lba3g4EZ63/Vkh9shAjaQ79eC+Hpy, +Lisa Marie Andoscia,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToAGaAwMQyVRKp1FqsmTZXn0=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgdPIuanfK+xqJcJmgVKN6s4wjl2uX3zLlrQI9XEmhBv0, +Lisa Marie Andoscia,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToAGaAwMQyVRKp1FqsmTZXn0=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgRQtZPZ8hRVfLorYR65NcKWFnUsjM5zjf8MLWAmSNgQz, +Holly Andreozzi,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLRAU6t2DgQUVtT7gqJyvqc=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgYoq4mcdp0TPgFKKI0XUoicKm9+FWioT4XK6g39mfi1M, +Holly Andreozzi,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToLRAU6t2DgQUVtT7gqJyvqc=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeZ8Q0l1iXoOAU2zC9wZSNs4GqMdYZCujNfFhoXyqjET, +Cole Keelan Angley,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToAurA9WBH+4DrHMV5Gk8le0=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgXSa4n1+RgMBw5n1/3fv/rXWpz254u0mqqb0g2ssVyS8, +Cole Keelan Angley,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToAurA9WBH+4DrHMV5Gk8le0=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgWeSlBObnloghnnb9mhn93qwjlxIx4wQDmXTTr290rmY, +Rafael Antigua,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJ7skATIfA2bsBEViEpKGUw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgapPvXCrM9Xj0I6pxkZY5x3WXEShzrWxTNNOw3BFzlsf, +Rafael Antigua,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToJ7skATIfA2bsBEViEpKGUw=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZ9vWetxuHHyrcnLeG7+ajpQFUdJfM7DayyToWdjQkHT, +Chelsea Elizabeth Aquino-Fenstermaker,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToE3uODVYDn91Qe0H6LJm2Uc=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgTikU7RESJpFH5Iq4bNBOP1aC8tB4dIJohR+BBI8p+G1, +Chelsea Elizabeth Aquino-Fenstermaker,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToE3uODVYDn91Qe0H6LJm2Uc=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgWylDIDUdKz80hFbJf1J51GRa7JvI4HYtyLlatvjka3F, +Luz A Arevalo,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToPY58KS4ndJxBEYkVkD0WQk=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeHw4y3BR5V0EBXHfJeGKAMYRKyEIAac7uduI/v8WrYP, +Luz A Arevalo,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToPY58KS4ndJxBEYkVkD0WQk=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgXTCliPkcw9ihv+op+XWL1DMf73aKm12CzNzG/xQ6N2S, +Derek Armstrong,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHEfluu0/yz74vvm/zVxr2Y=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgbiHn5kwvbJQK46TxWj7CSi8UemxdBsyRzRnHCXMw70T, +Derek Armstrong,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHEfluu0/yz74vvm/zVxr2Y=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgfKv+kWEEas+4fySlysewY8GTBP8Z84p0+xCMTNZTQt7, +Matthew Paul Arsenault,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToMgNmDPSWwPWyDgmQeVACHc=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZkJmU8UQCojgaaGP7FfmUgNSoAzMX/y5BCn2Qi6MCVm, +Christina Ascolillo,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToNhkFsXobuXyl3nDOcMw48A=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZNAykwKKMFLSRbQRyWLDHMkRRhDxITK9gJmy76gtOYy, +Christina Ascolillo,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToNhkFsXobuXyl3nDOcMw48A=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgbPpnbybiOPgd8sZ6ucBIqFDQqc2vV4f26hrf/zb/aS0, +"Robert Ash, Jr.",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToOcNafpIPfzXwdDuSn8mcAI=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgcBMMVzaag9A5myBl5Yf7wcDF0aKH7oO/7dVCjFkMJe6, +"Robert Ash, Jr.",2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToOcNafpIPfzXwdDuSn8mcAI=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgTw2PGUdf0PGL2BBmbsdsMV33Wm51mCGAAK4CQHMKkDJ, +Sarah Selamawit Assefa,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToM41C7ZgkglKFtXNKWRmSvo=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgcMjQn9L1a8xFJ1QSLfvOtNe4PthU3J8pGzXTGoAOYnz, +Sarah Selamawit Assefa,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToM41C7ZgkglKFtXNKWRmSvo=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgY5TBBA1XZk4NAfgWamuR2TvOwg6Ex+lDq0I/uGVu0nz, +Ellen Attaliades,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToH9nbhFdO7lR5y2ZFMgKFQI=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgWCVxmDm+cm69E0RnTwMpdGShKryoxHqVwrNVjiGFWDq, +Ellen Attaliades,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToH9nbhFdO7lR5y2ZFMgKFQI=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgazvCIgm5EbrgxICTIw8gJAvYKV20qGe1WRJs/ya85C1, +Melissa Kraus Augenbraun,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToGh56xu8sS0wMjqRyARjrw8=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgbCZZwVi2gJsWTDGy9Lncfp/HfJPTOn8wAh1y41Qs0mo, +Melissa Kraus Augenbraun,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToGh56xu8sS0wMjqRyARjrw8=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgbKgrgXelnbhJdGHzwpBzBldeWp0ZKTIyhKASfxiqxZC, +John Augustine,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToB6HQ1VwPkhToH4pJzdV57k=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgeG7ujwsMr0juJHTRUOC/LJYC9Zipxl37/CqeZlZfZwn, +John Augustine,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToB6HQ1VwPkhToH4pJzdV57k=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgaOvwA0ZVX+VqeUhNzulhHes1F7sivgcuSbwyiy1+NMh, +Jessica Avery,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHMlP3E4cFXs+4GhWQqyOso=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgTiDiv0J1IF2QA2lPo/Qhap0TcO3JFMM0YDtmPlQYcZ1, +Jessica Avery,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToHMlP3E4cFXs+4GhWQqyOso=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgQTdylX7S/vxSrF05IcU+iL3xl+SToMx5ovzvv3Lam2S, +Michael Avitzur,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToG1p8N+dGu7rF/IMh8XZalM=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgVTvTAox6YK1NomGHC0WXzASSpuL/D7a44buX6BQLMA8, +Michael Avitzur,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToG1p8N+dGu7rF/IMh8XZalM=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgYsNEfROmEkGnYjfv/99wl8JYWhlRa+ngLIg9yx6ZB57, +Steven Baddour,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToBDVe49iQMg9INjK5+/DjjQ=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgd657H4cdXnrpg67QNIA8ulQgfoBxbWNJq2pJBN0y/TE, +Steven Baddour,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToBDVe49iQMg9INjK5+/DjjQ=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgZ/DPahXVB++JJbwJqoN2EhUEIw7VLeyfxqt/jxE1B3A, +Omaira Badillo,2024,https://www.sec.state.ma.us/LobbyistPublicSearch/Summary.aspx?sysvalue=vaOOB4xLr17uOlDTEexToORQXGKX+F0KZV/Tu524F+g=,https://www.sec.state.ma.us/LobbyistPublicSearch/CompleteDisclosure.aspx?sysvalue=hTpfuAXMhicRvD5o4yuXgTqggfbwXp0fIqlsWQAZqjjNsNER6O2kBpFGFWYFbRN8, diff --git a/docs/data/MA_precipitation_daily.csv b/docs/data/MA_precipitation_daily.csv index 9dcabfa..6889853 100644 --- a/docs/data/MA_precipitation_daily.csv +++ b/docs/data/MA_precipitation_daily.csv @@ -9497,48 +9497,48 @@ date,precip_in_avg,n_stations 2025-12-30,0.3939574468085106,235 2025-12-31,0.0039301310043668,229 2026-01-01,0.10853061224489796,245 -2026-01-02,0.03191176470588235,204 +2026-01-02,0.031911764705882355,204 2026-01-03,4.0816326530612245e-05,245 -2026-01-04,0.014689265536723162,177 +2026-01-04,0.014689265536723164,177 2026-01-05,0.015000000000000001,180 2026-01-06,0.03940928270042194,237 -2026-01-07,0.1364367816091954,261 -2026-01-08,0.048888888888888885,243 +2026-01-07,0.13643678160919542,261 +2026-01-08,0.04888888888888889,243 2026-01-09,0.004291044776119403,268 -2026-01-10,0.0833579335793358,271 -2026-01-11,0.4897500000000001,280 +2026-01-10,0.08335793357933581,271 +2026-01-11,0.48974999999999996,280 2026-01-12,0.005443037974683544,237 2026-01-13,0.00015686274509803922,255 -2026-01-14,0.0023605150214592273,233 +2026-01-14,0.0023605150214592277,233 2026-01-15,0.03371794871794872,234 2026-01-16,0.0022093023255813954,258 2026-01-17,0.050762711864406784,236 2026-01-18,0.12915611814345992,237 -2026-01-19,0.4273255813953489,258 +2026-01-19,0.4273255813953488,258 2026-01-20,0.016649214659685864,191 -2026-01-21,0.003345864661654135,266 +2026-01-21,0.0033458646616541356,266 2026-01-22,0.06293388429752066,242 2026-01-23,0.0003409090909090909,264 2026-01-24,0.0,255 -2026-01-25,0.07227272727272727,264 +2026-01-25,0.07227272727272728,264 2026-01-26,1.2994941634241244,257 -2026-01-27,0.14116666666666672,240 +2026-01-27,0.14116666666666663,240 2026-01-28,0.002835051546391753,194 2026-01-29,7.518796992481203e-05,266 2026-01-30,0.0001893939393939394,264 2026-01-31,0.0,269 -2026-02-01,0.001111111111111111,216 -2026-02-02,0.0033628318584070795,226 +2026-02-01,0.0011111111111111111,216 +2026-02-02,0.0033480176211453743,227 2026-02-03,0.0,280 2026-02-04,0.0,269 2026-02-05,3.717472118959108e-05,269 2026-02-06,0.0005836575875486381,257 -2026-02-07,0.12247863247863248,234 +2026-02-07,0.1224786324786325,234 2026-02-08,0.11305676855895197,229 2026-02-09,0.00042145593869731806,261 2026-02-10,0.0067857142857142855,252 2026-02-11,0.1312109375,256 -2026-02-12,0.00592814371257485,167 +2026-02-12,0.005928143712574851,167 2026-02-13,0.0,259 2026-02-14,0.0,260 2026-02-15,4.2553191489361704e-05,235 @@ -9547,118 +9547,118 @@ date,precip_in_avg,n_stations 2026-02-18,0.009121951219512196,205 2026-02-19,0.07333333333333333,240 2026-02-20,0.0374031007751938,258 -2026-02-21,0.4775486381322958,257 +2026-02-21,0.4775486381322957,257 2026-02-22,0.028511904761904763,168 2026-02-23,0.6142131979695431,197 2026-02-24,0.4579581151832461,191 -2026-02-25,0.0244390243902439,205 -2026-02-26,0.05481818181818182,220 +2026-02-25,0.024439024390243907,205 +2026-02-26,0.054818181818181815,220 2026-02-27,0.0,245 2026-02-28,0.0,251 2026-03-01,0.0025213675213675217,234 2026-03-02,0.023819095477386937,199 -2026-03-03,0.040076923076923086,260 +2026-03-03,0.04007692307692308,260 2026-03-04,0.6174712643678161,261 -2026-03-05,0.030625000000000006,256 +2026-03-05,0.030625,256 2026-03-06,0.78484496124031,258 2026-03-07,0.058893617021276594,235 2026-03-08,0.015863874345549738,191 2026-03-09,0.0025541125541125543,231 2026-03-10,0.0001851851851851852,270 -2026-03-11,0.006905660377358491,265 +2026-03-11,0.006905660377358492,265 2026-03-12,0.19169884169884172,259 2026-03-13,0.027087378640776698,206 -2026-03-14,0.01492682926829268,205 +2026-03-14,0.014926829268292684,205 2026-03-15,0.0008771929824561404,228 2026-03-16,0.359463601532567,261 2026-03-17,0.91225,280 -2026-03-18,0.0006772908366533864,251 +2026-03-18,0.0006772908366533865,251 2026-03-19,0.00011494252873563218,261 -2026-03-20,0.012412451361867702,257 -2026-03-21,0.150431654676259,278 +2026-03-20,0.012412451361867704,257 +2026-03-21,0.15043165467625902,278 2026-03-22,0.0498015873015873,252 2026-03-23,0.8067279411764706,272 -2026-03-24,0.15631782945736436,258 -2026-03-25,0.0003018867924528302,265 +2026-03-24,0.15631782945736433,258 +2026-03-25,0.00030188679245283015,265 2026-03-26,0.045274261603375526,237 -2026-03-27,0.1303942652329749,279 +2026-03-27,0.13039426523297493,279 2026-03-28,0.0004000000000000001,275 2026-03-29,3.717472118959108e-05,269 2026-03-30,0.0,280 -2026-03-31,0.06918032786885245,244 -2026-04-01,0.22047970479704798,271 -2026-04-02,0.45903571428571427,280 -2026-04-03,0.15053956834532373,278 -2026-04-04,0.01069672131147541,244 -2026-04-05,0.04490494296577947,263 -2026-04-06,0.13003759398496242,266 -2026-04-07,0.01935483870967742,217 -2026-04-08,0.06200716845878136,279 +2026-03-31,0.06918032786885248,244 +2026-04-01,0.22279411764705884,272 +2026-04-02,0.45857651245551606,281 +2026-04-03,0.15025089605734768,279 +2026-04-04,0.010653061224489797,245 +2026-04-05,0.04481060606060605,264 +2026-04-06,0.13018796992481205,266 +2026-04-07,0.01926605504587156,218 +2026-04-08,0.06192857142857143,280 2026-04-09,0.00013937282229965157,287 -2026-04-10,0.0006810035842293907,279 -2026-04-11,0.008433734939759036,249 -2026-04-12,0.001611721611721612,273 -2026-04-13,0.020901639344262292,244 -2026-04-14,0.030843881856540085,237 -2026-04-15,0.21548951048951048,286 -2026-04-16,0.31672297297297297,296 -2026-04-17,0.11508833922261487,283 -2026-04-18,0.058301158301158305,259 -2026-04-19,0.0519838056680162,247 -2026-04-20,0.1675875486381323,257 -2026-04-21,0.03251046025104603,239 -2026-04-22,0.00536480686695279,233 -2026-04-23,0.009014084507042254,213 +2026-04-10,0.0006785714285714286,280 +2026-04-11,0.008400000000000001,250 +2026-04-12,0.001605839416058394,274 +2026-04-13,0.020823045267489713,243 +2026-04-14,0.030966386554621854,238 +2026-04-15,0.2159090909090909,286 +2026-04-16,0.3169360269360269,297 +2026-04-17,0.1141696113074205,283 +2026-04-18,0.05752895752895753,259 +2026-04-19,0.05310483870967742,248 +2026-04-20,0.1672156862745098,255 +2026-04-21,0.03237500000000001,240 +2026-04-22,0.005341880341880342,234 +2026-04-23,0.009018691588785046,214 2026-04-24,0.0,277 -2026-04-25,0.006402877697841726,278 -2026-04-26,0.022500000000000003,268 -2026-04-27,0.0016296296296296297,270 -2026-04-28,0.0,285 -2026-04-29,0.0016287878787878789,264 -2026-04-30,0.1489700996677741,301 -2026-05-01,0.09942238267148015,277 -2026-05-02,0.07679166666666666,240 -2026-05-03,0.19049808429118772,261 -2026-05-04,0.011203319502074689,241 -2026-05-05,0.0003321033210332103,271 -2026-05-06,0.02428015564202335,257 -2026-05-07,0.3168027210884354,294 -2026-05-08,0.019920948616600792,253 -2026-05-09,0.0791025641025641,234 -2026-05-10,0.3748314606741573,267 -2026-05-11,0.07329268292682928,246 -2026-05-12,0.006254980079681275,251 -2026-05-13,0.008360655737704918,244 -2026-05-14,0.12166666666666669,264 -2026-05-15,0.4133212996389892,277 -2026-05-16,0.024159292035398235,226 -2026-05-17,0.01677966101694915,236 -2026-05-18,0.00022304832713754649,269 -2026-05-19,0.011794871794871794,273 -2026-05-20,0.16707407407407407,270 -2026-05-21,0.0367420814479638,221 -2026-05-22,0.0037903225806451613,248 -2026-05-23,0.005284552845528455,246 -2026-05-24,0.14337301587301587,252 -2026-05-25,0.6235766423357664,274 -2026-05-26,0.14305970149253733,268 -2026-05-27,0.0036904761904761906,252 -2026-05-28,0.01531746031746032,252 -2026-05-29,0.05210084033613445,238 -2026-05-30,0.23679389312977098,262 -2026-05-31,0.2872950819672131,244 -2026-06-01,,0 -2026-06-02,,0 -2026-06-03,,0 -2026-06-04,,0 -2026-06-05,,0 -2026-06-06,,0 -2026-06-07,,0 -2026-06-08,,0 -2026-06-09,,0 -2026-06-10,,0 -2026-06-11,,0 -2026-06-12,,0 +2026-04-25,0.006379928315412186,279 +2026-04-26,0.023680297397769518,269 +2026-04-27,0.0016236162361623616,271 +2026-04-28,0.0,286 +2026-04-29,0.0016226415094339622,265 +2026-04-30,0.1498344370860927,302 +2026-05-01,0.09803571428571428,280 +2026-05-02,0.07592592592592592,243 +2026-05-03,0.19015151515151515,264 +2026-05-04,0.01110655737704918,244 +2026-05-05,0.0003249097472924188,277 +2026-05-06,0.02381679389312977,262 +2026-05-07,0.31886287625418064,299 +2026-05-08,0.020271317829457364,258 +2026-05-09,0.07827731092436976,238 +2026-05-10,0.3727205882352941,272 +2026-05-11,0.07380952380952381,252 +2026-05-12,0.006085271317829458,258 +2026-05-13,0.00816,250 +2026-05-14,0.12003731343283583,268 +2026-05-15,0.40922261484098943,283 +2026-05-16,0.024137931034482762,232 +2026-05-17,0.016653061224489795,245 +2026-05-18,0.0002181818181818182,275 +2026-05-19,0.011541218637992835,279 +2026-05-20,0.1645818181818182,275 +2026-05-21,0.03828193832599119,227 +2026-05-22,0.0037154150197628456,253 +2026-05-23,0.005612648221343873,253 +2026-05-24,0.1455813953488372,258 +2026-05-25,0.6234285714285714,280 +2026-05-26,0.14188405797101447,276 +2026-05-27,0.0035227272727272733,264 +2026-05-28,0.014774436090225563,266 +2026-05-29,0.052173913043478265,253 +2026-05-30,0.23076363636363637,275 +2026-05-31,0.27999999999999997,273 +2026-06-01,0.14947565543071162,267 +2026-06-02,0.005333333333333332,240 +2026-06-03,3.7037037037037037e-05,270 +2026-06-04,0.0,266 +2026-06-05,0.0,271 +2026-06-06,0.004941634241245136,257 +2026-06-07,0.09175572519083969,262 +2026-06-08,0.11695312499999999,256 +2026-06-09,0.0002641509433962264,265 +2026-06-10,0.000242914979757085,247 +2026-06-11,0.05022727272727273,220 +2026-06-12,0.0,2 2026-06-13,,0 2026-06-14,,0 2026-06-15,,0 diff --git a/docs/data/dash_MAEEADP_dashboard_data_cso.csv b/docs/data/dash_MAEEADP_dashboard_data_cso.csv index 44498c0..4ab9333 100644 --- a/docs/data/dash_MAEEADP_dashboard_data_cso.csv +++ b/docs/data/dash_MAEEADP_dashboard_data_cso.csv @@ -31,16 +31,16 @@ 29,BOS014,42.382697,-71.027134,0.06355,2024.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,ON LINE BETWN 338 AND S70 E EAGLE ST,CHELSEA RIVER,,7,250250509013 30,BOS017,42.385473,-71.068804,0.77,2024.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,BETWN SPRINGFIELD COLLEGE 465 MEDFORD RD,MYSTIC RIVER,,7,250250406001 31,BOS019,42.379965,-71.051018,2.5375,2023.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,JUST NW OF TOBIN BRIDGE AND 16TH ST,LITTLE MYSTIC CHANNEL,,12,250250408013 -32,BOS046,42.34164,-71.092694,6.4707,2023.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,@PUMP STNS NE OF MFA,MUDDY RIVER,,12,250259818001 +32,BOS046,42.34164,-71.092694,6.4707,2024.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,@PUMP STNS NE OF MFA,MUDDY RIVER,,12,250259818001 33,BOS057,42.364031,-71.04933,7.2,2024.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,EASTERN AVE,BOSTON INNER HARBOR,,4,250250305001 -34,BOS060,42.359544,-71.048383,1.7542,2025.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,NE CORNER OF NE AQUARIUM PIER,BOSTON INNER HARBOR,,10,250259901010 +34,BOS060,42.359544,-71.048383,1.7542,2023.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,NE CORNER OF NE AQUARIUM PIER,BOSTON INNER HARBOR,,10,250259901010 35,BOS062,42.354452,-71.05101,5.996,2023.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,SEAPORT BLVD JUST BEFORE INT W/93,FORT POINT CHANNEL,,18,250259901010 36,BOS064,42.351336,-71.052688,3.023,2024.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,INT DORCHESTER AVE & SUMMER ST,FORT POINT CHANNEL,,13,250250704021 37,BOS065,42.348681,-71.054504,1.261,2022.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,WEST BANK OF FORT POINT CHANNEL,FORT POINT CHANNEL,,10,250250704021 38,BOS068,42.344948,-71.05948,0.373,2025.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,FORT POINT CHANNEL WEST BANK INT 90 AND 93,FORT POINT CHANNEL,,3,250250704021 -39,BOS070,42.342865,-71.060996,175.0641,2025.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,CORNER OF W 4TH ST AND FRONTAGE RD,FORT POINT CHANNEL,,78,250250704021 +39,BOS070,42.342865,-71.060996,175.0641,2023.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,CORNER OF W 4TH ST AND FRONTAGE RD,FORT POINT CHANNEL,,78,250250704021 40,BOS073,42.347674,-71.053504,0.36,2023.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,JUST NORTH OF PIKE ON EAST BANK OF FORT POINT CHANNEL,FORT POINT CHANNEL,,3,250250704021 -41,BOS076,42.339617,-71.041995,0.811,2025.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,OFF PAPPAS WAY,RESERVED CHANNEL,,7,250259812021 +41,BOS076,42.339617,-71.041995,0.811,2023.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,OFF PAPPAS WAY,RESERVED CHANNEL,,7,250259812021 42,BOS078,42.338537,-71.039996,1.0265,2023.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,170 FT NORTH OF INTER E 1ST ST & I ST,RESERVED CHANNEL,,8,250259812021 43,BOS079,42.341824,-71.035607,0.025,2023.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,800 FT NORTH OF INTER POWER HOUSE ST & SUMMER ST,RESERVED CHANNEL,,1,250259812021 44,BOS080,42.341788,-71.025194,0.165,2023.0,CSO,BOSTON WATER & SEWER COMMISSION,MA0101192,BOSTON,NW CORNER OF MASSPORT CONWAY FACILITY OFF DAY BLVD,RESERVED CHANNEL,,4,250259812021 @@ -49,25 +49,25 @@ 47,CAM007,42.373242,-71.126874,1.38,2024.0,CSO,CITY OF CAMBRIDGE,MA0101974,CAMBRIDGE,INT OF HAWTHORNE & MEMORIAL DR,CHARLES RIVER,,4,250173541002 48,CAM017,42.364649,-71.076257,2.8,2023.0,CSO,CITY OF CAMBRIDGE,MA0101974,CAMBRIDGE,NEAR ROWLAND INSTITUTE,CHARLES RIVER BASIN,,5,250173521021 49,CAM401A,42.395655,-71.143988,41.986,2024.0,CSO,CITY OF CAMBRIDGE,MA0101974,CAMBRIDGE,MBTA 97 CAMBRIDGE PARK DR,ALEWIFE BROOK,,66,250173561003 -50,CAM401B,42.401033,-71.136154,1.965,2023.0,CSO,CITY OF CAMBRIDGE,MA0101974,CAMBRIDGE,INT MASS AVE & ALEWIFE BK,ALEWIFE BROOK,,13,250173550002 +50,CAM401B,42.401033,-71.136154,1.965,2025.0,CSO,CITY OF CAMBRIDGE,MA0101974,CAMBRIDGE,INT MASS AVE & ALEWIFE BK,ALEWIFE BROOK,,13,250173550002 51,CHE003,42.386807,-71.04088,0.028,2023.0,CSO,CITY OF CHELSEA,MA0101877,CHELSEA,END OF WINNISIMMIT ST,MYSTIC RIVER,,1,250251603002 52,CHE004,42.386653,-71.039293,0.11174,2024.0,CSO,CITY OF CHELSEA,MA0101877,CHELSEA,PEARL ST,MYSTIC RIVER,,13,250250509013 -53,CHE008,42.39471,-71.019155,1.660842,2025.0,CSO,CITY OF CHELSEA,MA0101877,CHELSEA,NORTHERN EDGE OF GULF BULK OIL STORAGE,CHELSEA RIVER,,22,250251605022 +53,CHE008,42.39471,-71.019155,1.660842,2024.0,CSO,CITY OF CHELSEA,MA0101877,CHELSEA,NORTHERN EDGE OF GULF BULK OIL STORAGE,CHELSEA RIVER,,22,250251605022 54,CHI03,42.204716,-72.589048,98.279335,2023.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,POWER LINE ROW S OF JAMES ST,CONNECTICUT R.,,61,250138113013 55,CHI04,42.191872,-72.603187,6.805256,2022.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,RIVERVIEW PUMP STATION,CONNECTICUT R.,,32,250138111011 56,CHI05,42.18982,-72.606807,8.468345,2023.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,LESLIE ST PUMP STATION,CONNECTICUT R.,,58,250138111011 57,CHI07,42.171157,-72.626901,17.667698,2022.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,JONES FERRY RD PUMP STATION,CONNECTICUT R.,,63,250138111022 58,CHI08,42.170113,-72.626931,0.0,2022.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,EASEMENT OF JONES FERRY RD PUMP STATION,CONNECTICUT R.,,1,250138111022 -59,CHI09,42.154761,-72.625969,2.724807,2023.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,PADEREWSKI ST PUMP STATION,CONNECTICUT R.,,27,250138111023 +59,CHI09,42.154761,-72.625969,2.724807,2022.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,PADEREWSKI ST PUMP STATION,CONNECTICUT R.,,27,250138111023 60,CHI24,42.143265,-72.616091,69.454067,2024.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,FRONT AND DEPOT ST. AREA,CONNECTICUT R.,,60,250138109011 61,CHI26,42.149238,-72.599493,0.087113,2023.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,BELL & FRONT ST.,CHICOPEE R.,,20,250138108001 -62,CHI27,42.149417,-72.596798,21.503542,2024.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,"PARKING LOT, TOPORS GARAGE & FRONT ST",CHICOPEE R.,,58,250138108001 +62,CHI27,42.149417,-72.596798,21.503542,2023.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,"PARKING LOT, TOPORS GARAGE & FRONT ST",CHICOPEE R.,,58,250138108001 63,CHI32B,42.159749,-72.582694,2.36377,2024.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,MAIN STREET WEST OF DEADY MEMORIAL BRIDGE,CHICOPEE R.,,56,250138108002 64,CHI34,42.160897,-72.586359,4.023005,2022.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,GRATTAN ST & HEARTHSTONE TER,CHICOPEE R.,,50,250138110004 65,CHI37,42.158615,-72.575833,1.005625,2023.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,EAST MAIN ST #227,CHICOPEE R.,,39,250138107001 66,CHI42,42.19321,-72.584598,0.465397,2023.0,CSO,CITY OF CHICOPEE,MA0101508,CHICOPEE,ROBERTS POND,WILLIMANSETT BK,,6,250138113014 67,FAL002,41.679993,-71.19482,95.803564,2023.0,CSO,CITY OF FALL RIVER,MA0100382,FALL RIVER,MT HOPE AVE,MOUNT HOPE BAY,,153,250056403001 -68,FAL003,41.684952,-71.189877,7.467397,2023.0,CSO,CITY OF FALL RIVER,MA0100382,FALL RIVER,CHARLES ST,MOUNT HOPE BAY,,16,250056404003 +68,FAL003,41.684952,-71.189877,7.467397,2024.0,CSO,CITY OF FALL RIVER,MA0100382,FALL RIVER,CHARLES ST,MOUNT HOPE BAY,,16,250056404003 69,FAL004,41.686407,-71.188184,26.34557,2023.0,CSO,CITY OF FALL RIVER,MA0100382,FALL RIVER,BIRCH ST,MOUNT HOPE BAY,,86,250056404003 70,FAL005,41.690336,-71.185249,0.466616,2025.0,CSO,CITY OF FALL RIVER,MA0100382,FALL RIVER,RIVERVIEW,MOUNT HOPE BAY,,4,250056405004 71,FAL006,41.696658,-71.178289,8.992995,2023.0,CSO,CITY OF FALL RIVER,MA0100382,FALL RIVER,MIDDLE ST,MOUNT HOPE BAY,,23,250056405004 @@ -77,10 +77,10 @@ 75,FAL010,41.71189,-71.158988,194.570504,2023.0,CSO,CITY OF FALL RIVER,MA0100382,FALL RIVER,CITY PIER,TAUNTON RIVER,,281,250056420003 76,FAL011,41.717913,-71.159136,292.744127,2025.0,CSO,CITY OF FALL RIVER,MA0100382,FALL RIVER,PRESIDENT AVE,TAUNTON RIVER,,287,250056420002 77,FAL013,41.726459,-71.148766,360.705175,2024.0,CSO,CITY OF FALL RIVER,MA0100382,FALL RIVER,COVE ST,TAUNTON RIVER,,255,250056421001 -78,FAL014,41.73327,-71.140707,82.73561,2025.0,CSO,CITY OF FALL RIVER,MA0100382,FALL RIVER,Alton St.,TAUNTON RIVER,,141,250056421001 +78,FAL014,41.73327,-71.140707,82.73561,2024.0,CSO,CITY OF FALL RIVER,MA0100382,FALL RIVER,Alton St.,TAUNTON RIVER,,141,250056421001 79,FAL019,41.701589,-71.162728,28.562647,2023.0,CSO,CITY OF FALL RIVER,MA0100382,FALL RIVER,CANAL ST,QUEQUECHAN RIVER,,33,250056410001 80,FIT004,42.581083,-71.821953,0.171,2023.0,CSO,CITY OF FITCHBURG,MA0100986,FITCHBURG,OAK HILL RD. @ CLEGHORN ST.,NASHUA RIVER,,4,250277103001 -81,FIT010,42.587007,-71.808857,0.966061,2022.0,CSO,CITY OF FITCHBURG,MA0100986,FITCHBURG,MAIN ST. @ RIVER ST.,NASHUA RIVER,,14,250277108003 +81,FIT010,42.587007,-71.808857,0.966061,2023.0,CSO,CITY OF FITCHBURG,MA0100986,FITCHBURG,MAIN ST. @ RIVER ST.,NASHUA RIVER,,14,250277108003 82,FIT032,42.585697,-71.806321,2.324962,2022.0,CSO,CITY OF FITCHBURG,MA0100986,FITCHBURG,843 MAIN ST. @ POST OFFICE,NASHUA RIVER,,77,250277108003 83,FIT041,42.562556,-71.772891,0.316,2025.0,CSO,CITY OF FITCHBURG,MA0100986,FITCHBURG,BENSON RD. NEAR FALULAH ST.,ABANDONED FALULAH CANAL,,3,250277101002 84,FIT045A,42.581822,-71.798441,0.665586,2022.0,CSO,CITY OF FITCHBURG,MA0100986,FITCHBURG,MAIN ST @ PUTNAM ST. (A),PUNCH BROOK CULVERT @ BOULDER DRIVE VIA PUTNAM ST.,,13,250277107002 @@ -90,7 +90,7 @@ 88,FIT083,42.581848,-71.798421,0.130478,2022.0,CSO,CITY OF FITCHBURG,MA0100986,FITCHBURG,MAIN ST. @ PRICHARD ST.,PUNCH BROOK CULVERT @ MAIN ST.,,12,250277107002 89,GLO004,42.611018,-70.664209,0.153,2024.0,CSO,CITY OF GLOUCESTER,MA0100625,GLOUCESTER,ROGERS STREET,HARBOR COVE,,4,250092215002 90,GLO005,42.613237,-70.657316,0.123,2024.0,CSO,CITY OF GLOUCESTER,MA0100625,GLOUCESTER,109 ROGERS ST,INNER HARBOR,,3,250092215002 -91,GLO006A,42.61637,-70.650943,0.18,2024.0,CSO,CITY OF GLOUCESTER,MA0100625,GLOUCESTER,EAST MAIN STREET,INNER HARBOR,,10,250092214003 +91,GLO006A,42.61637,-70.650943,0.18,2022.0,CSO,CITY OF GLOUCESTER,MA0100625,GLOUCESTER,EAST MAIN STREET,INNER HARBOR,,10,250092214003 92,GLSD002,42.704034,-71.15023,38.4927,2023.0,CSO,GREATER LAWRENCE SANITARY DISTRICT,MA0100447,LAWRENCE,MERRIMACK STREET,MERRIMACK RIVER,,17,250092516001 93,GLSD004,42.706106,-71.146873,173.591,2023.0,CSO,GREATER LAWRENCE SANITARY DISTRICT,MA0100447,LAWRENCE,ISLAND STREET,MERRIMACK RIVER,,30,250092501001 94,GLSD005,42.704338,-71.159916,2.949596,2023.0,CSO,GREATER LAWRENCE SANITARY DISTRICT,MA0100447,LAWRENCE,CANAL STREET CASEY BRIDGE,MERRIMACK RIVER,,5,250092501001 @@ -99,39 +99,39 @@ 97,HAV019,42.774283,-71.076107,0.667646,2023.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL, MAIN STREET NORTH,MERRIMACK RIVER,,3,250092602002 98,HAV021A,42.77304,-71.081938,26.852272,2023.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL, MIDDLE SIPHON ESSEX ST,MERRIMACK RIVER,,31,250092601002 99,HAV021B,-71.08292,42.774563,0.093729,2023.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL,021B (Locke Street 12 siphon),LITTLE RIVER,,2,250010105002 -100,HAV021F,42.775169,-71.08493,17.432869,2023.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL,LOCKE STREET CENTER BARRELL,LITTLE RIVER,,114,250092601003 +100,HAV021F,42.775169,-71.08493,17.432869,2025.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL,LOCKE STREET CENTER BARRELL,LITTLE RIVER,,114,250092601003 101,HAV021H,42.777457,-71.088301,9.574524,2024.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL,WINTER AND HALE,LITTLE RIVER,,77,250092607001 102,HAV024,42.766809,-71.09336,17.317798,2023.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL, VARNUM ST UPPER SIPHON,MERRIMACK RIVER,,15,250092608002 -103,HAV032,42.770152,-71.085417,1.868382,2023.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL, BRADFORD AVE,MERRIMACK RIVER,,14,250092610002 +103,HAV032,42.770152,-71.085417,1.868382,2024.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL, BRADFORD AVE,MERRIMACK RIVER,,14,250092610002 104,HAV034,42.772602,-71.078221,17.737465,2025.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL, MIDDLESEX STREET,MERRIMACK RIVER,,37,250092610002 105,HAV038,42.777271,-71.088371,0.017612,2023.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL,HIGH AND LAFAYETTE SQ,LITTLE RIVER,,4,250092608002 106,HAV039,42.769144,-71.065457,0.363247,2023.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL,SOUTH WEBSTER,MERRIMACK RIVER,,16,250092611011 107,HAV040,42.774515,-71.074239,0.954165,2023.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL,BETHANY AVE,MERRIMACK RIVER,,35,250092602002 -108,HAV041,42.773933,-71.071544,0.49229,2023.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL,CHESTNUT ST,MERRIMACK RIVER,,33,250092602002 +108,HAV041,42.773933,-71.071544,0.49229,2024.0,CSO,CITY OF HAVERHILL,MA0101621,HAVERHILL,CHESTNUT ST,MERRIMACK RIVER,,33,250092602002 109,HOL016,42.203926,-72.60776,1.850684,2023.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,FRONT ST./APPLETON ST.,CONNECTICUT R.,,45,250138116002 -110,HOL018,42.214004,-72.608673,211.675397,2023.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,WALNUT ST.,CONNECTICUT R.,,211,250138117001 -111,HOL019,42.219601,-72.613101,0.275412,2024.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,YALE ST.,CONNECTICUT R.,,88,250138119001 -112,HOL02,42.167524,-72.630165,0.620762,2023.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,PROVIDENCE HOSPITAL,CONNECTICUT R.,,90,250138121032 -113,HOL020,42.225812,-72.6176,42.484355,2024.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,CLEVELAND ST.,CONNECTICUT R.,,190,250138119001 -114,HOL021,42.229172,-72.623898,63.684592,2023.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,RIVER TERRACE,CONNECTICUT R.,,166,250138119001 +110,HOL018,42.214004,-72.608673,211.675397,2024.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,WALNUT ST.,CONNECTICUT R.,,211,250138117001 +111,HOL019,42.219601,-72.613101,0.275412,2022.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,YALE ST.,CONNECTICUT R.,,88,250138119001 +112,HOL02,42.167524,-72.630165,0.620762,2024.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,PROVIDENCE HOSPITAL,CONNECTICUT R.,,90,250138121032 +113,HOL020,42.225812,-72.6176,42.484355,2022.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,CLEVELAND ST.,CONNECTICUT R.,,190,250138119001 +114,HOL021,42.229172,-72.623898,63.684592,2024.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,RIVER TERRACE,CONNECTICUT R.,,166,250138119001 115,HOL023,42.221142,-72.623744,2.454447,2024.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,JEFFERSON ST.,DINGLE BK TO CONNECTICUT R.,,101,250138119002 116,HOL07,42.186232,-72.623722,0.89834,2022.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,NORTHAMPTON ST/GLEN ST.,CONNECTICUT R.,,84,250138121031 117,HOL08,42.188287,-72.618318,44.510841,2023.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,SPRINGDALE PARK,CONNECTICUT R.,,145,250138121031 118,HOL09,42.190085,-72.612381,572.308,2025.0,CSO,CITY OF HOLYOKE,MA0101630,HOLYOKE,BERKSHIRE ST.,CONNECTICUT R.,,114,250138121031 -119,LOW002,42.64643,-71.334308,55.29,2022.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,WALKER STREET,MERRIMACK RIVER,,27,250173107002 -120,LOW007,42.659463,-71.318725,67.833,2023.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,BEAVER BROOK,BEAVER BROOK,,53,250173105001 -121,LOW008,42.652007,-71.310842,411.08,2024.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,WEST STREET,MERRIMACK RIVER,,70,250173104002 +119,LOW002,42.64643,-71.334308,55.29,2024.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,WALKER STREET,MERRIMACK RIVER,,27,250173107002 +120,LOW007,42.659463,-71.318725,67.833,2024.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,BEAVER BROOK,BEAVER BROOK,,53,250173105001 +121,LOW008,42.652007,-71.310842,411.08,2023.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,WEST STREET,MERRIMACK RIVER,,70,250173104002 122,LOW011,42.647614,-71.301158,0.74,2024.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,READ STREET,MERRIMACK RIVER,,13,250173102003 -123,LOW020,42.643101,-71.304911,199.24,2025.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,WARREN STREET,CONCORD RIVER,,60,250173124001 -124,LOW027,42.650916,-71.311421,71.82002,2025.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,TILDEN STREET,MERRIMACK RIVER,,70,250173104002 -125,LOW030-1,42.645468,-71.288574,250.89438,2024.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,BARASFORD AVE,MERRIMACK RIVER,,52,250173125011 -126,LOW030-2,42.645304,-71.288916,403.622,2025.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,MERRIMACK STATION,MERIMACK RIVER,,71,250173125011 -127,LYNN003,42.45786,-70.975228,32.512411,2022.0,CSO,LYNN WATER & SEWER COMMISSION,MA0100552,LYNN,SUMMER STREET@SAUGUS RIVER,SAUGUS RIVER,,95,250092057005 +123,LOW020,42.643101,-71.304911,199.24,2023.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,WARREN STREET,CONCORD RIVER,,60,250173124001 +124,LOW027,42.650916,-71.311421,71.82002,2024.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,TILDEN STREET,MERRIMACK RIVER,,70,250173104002 +125,LOW030-1,42.645468,-71.288574,250.89438,2023.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,BARASFORD AVE,MERRIMACK RIVER,,52,250173125011 +126,LOW030-2,42.645304,-71.288916,403.622,2023.0,CSO,LOWELL REGIONAL WASTEWATER UTILITY,MA0100633,LOWELL,MERRIMACK STATION,MERIMACK RIVER,,71,250173125011 +127,LYNN003,42.45786,-70.975228,32.512411,2025.0,CSO,LYNN WATER & SEWER COMMISSION,MA0100552,LYNN,SUMMER STREET@SAUGUS RIVER,SAUGUS RIVER,,95,250092057005 128,LYNN004,42.459741,-70.944738,54.739336,2024.0,CSO,LYNN WATER & SEWER COMMISSION,MA0100552,LYNN,NW BANK OF BROAD SOUND @254 LYNWAY@PLEASANT ST,LYNN HARBOR,,74,250092069003 129,LYNN005,42.459786,-70.944642,89.599156,2023.0,CSO,LYNN WATER & SEWER COMMISSION,MA0100552,LYNN,180 LYNNWAY,LYNN HARBOR,,74,250092069003 130,LYNN006,42.466826,-70.922035,1.335464,2023.0,CSO,LYNN WATER & SEWER COMMISSION,MA0100552,LYNN,JUST NORTH INTER OF LYNN SHORE RD & KIMBALL RD,NAHANT BAY,,7,250092022004 131,MON001,42.580132,-72.573203,0.417884,2023.0,CSO,TOWN OF MONTAGUE,MA0100137,MONTAGUE,GREENFIELD RD NEAR WPCF,CONNECTICUT R.,,42,250110407022 -132,MON002,42.606275,-72.564999,0.751364,2025.0,CSO,TOWN OF MONTAGUE,MA0100137,MONTAGUE,OFF POWER ST ADJACENT TO POWER CANAL,POWER CANAL CONNECTICUT RIVER,,64,250110407011 +132,MON002,42.606275,-72.564999,0.751364,2024.0,CSO,TOWN OF MONTAGUE,MA0100137,MONTAGUE,OFF POWER ST ADJACENT TO POWER CANAL,POWER CANAL CONNECTICUT RIVER,,64,250110407011 133,MWR003,42.397102,-71.144062,3.32,2024.0,CSO,MASSACHUSETTS WATER RESOURCES AUTHORITY,MA0103284,CAMBRIDGE,165 FT WEST OF ALEWIFE STATION ACCESS RD,LITTLE RIVER,,4,250173561003 134,MWR010,42.351762,-71.106243,0.0,2023.0,CSO,MASSACHUSETTS WATER RESOURCES AUTHORITY,MA0103284,BOSTON,NORTH OF STORROW DR@MARY'S ST,CHARLES RIVER BASIN,,1,250259815011 135,MWR018,42.352763,-71.087414,1.028,2024.0,CSO,MASSACHUSETTS WATER RESOURCES AUTHORITY,MA0103284,BOSTON,NORTH OF STORROW DR @ HEREFORD ST,CHARLES RIVER BASIN,,5,250259815011 @@ -139,42 +139,42 @@ 137,MWR020,42.356744,-71.076136,0.411,2023.0,CSO,MASSACHUSETTS WATER RESOURCES AUTHORITY,MA0103284,BOSTON,715 SW OF HATCH MEMORIAL SHELL,CHARLES RIVER BASIN,,5,250259815011 138,MWR023,42.351704,-71.092425,1.352,2023.0,CSO,MASSACHUSETTS WATER RESOURCES AUTHORITY,MA0103284,BOSTON,STORROW DRIVE @MUDDY RIVER,CHARLES RIVER BASIN,,9,250259815011 139,MWR201,42.352593,-71.111151,119.85,2023.0,CSO,MASSACHUSETTS WATER RESOURCES AUTHORITY,MA0103284,BOSTON,125 FT WEST OF BU BRIDGE,CHARLES RIVER BASIN,,14,250259815011 -140,MWR203,42.368951,-71.060903,766.04,2025.0,CSO,MASSACHUSETTS WATER RESOURCES AUTHORITY,MA0103284,BOSTON,JUST NORTH OF LOCKS AT CHARLSTOWN BRIDGE,CHARLES RIVER,,41,250250404012 +140,MWR203,42.368951,-71.060903,766.04,2026.0,CSO,MASSACHUSETTS WATER RESOURCES AUTHORITY,MA0103284,BOSTON,JUST NORTH OF LOCKS AT CHARLSTOWN BRIDGE,CHARLES RIVER,,41,250250404012 141,MWR205,42.394053,-71.076057,273.014,2024.0,CSO,MASSACHUSETTS WATER RESOURCES AUTHORITY,MA0103284,SOMERVILLE,EAST BNK MYSTIC 150 FT SW OF MDC LOCKS,MYSTIC RIVER,,95,250250406001 -142,NEW003,41.612429,-70.930385,219.597617,2025.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,COVE RD & PADNARAM AVE,CLARK COVE,,290,250056524002 +142,NEW003,41.612429,-70.930385,219.597617,2023.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,COVE RD & PADNARAM AVE,CLARK COVE,,290,250056524002 143,NEW004,41.613812,-70.926942,71.60323,2023.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,HURRICAN BARRIER CLARK'S COVE PUMP STATION,CLARK COVE,,13,250056524002 -144,NEW005,41.608492,-70.91796,23.580431,2025.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,DUDLEY & RFB,CLARK COVE,,53,250056527003 +144,NEW005,41.608492,-70.91796,23.580431,2023.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,DUDLEY & RFB,CLARK COVE,,53,250056527003 145,NEW006,41.604404,-70.915293,33.270484,2022.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,LUCAS STREET & RFB,CLARK COVE,,61,250056528002 -146,NEW007,41.603299,-70.914625,1.352692,2022.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,CAPITAL AND ROD. FRENCH BLVD,CLARK COVE,,14,250056528002 +146,NEW007,41.603299,-70.914625,1.352692,2023.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,CAPITAL AND ROD. FRENCH BLVD,CLARK COVE,,14,250056528002 147,NEW008,41.602802,-70.914132,15.835159,2024.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,CALUMET ST & RFB,CLARK COVE,,33,250056528002 148,NEW009,41.602145,-70.913986,0.23084,2023.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,AQUIDNECK ST & RFB,CLARK COVE,,1,250056528002 -149,NEW010,41.601723,-70.913358,4.235915,2025.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,BELLEVUE ST & RFB,CLARK COVE,,21,250056528002 +149,NEW010,41.601723,-70.913358,4.235915,2022.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,BELLEVUE ST & RFB,CLARK COVE,,21,250056528002 150,NEW012,41.603042,-70.901855,28.20287,2022.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,RICKETSON ST,OUTER NEW BEDFORD HARBOR,,13,250056528001 -151,NEW013,41.604264,-70.902139,4.16451,2022.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,AQUIDNECK & RFB,OUTER NEW BEDFORD HARBOR,,15,250056528001 +151,NEW013,41.604264,-70.902139,4.16451,2023.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,AQUIDNECK & RFB,OUTER NEW BEDFORD HARBOR,,15,250056528001 152,NEW016,41.611188,-70.905967,2.308595,2025.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,FREDERICK ST & RFB,OUTER NEW BEDFORD HARBOR,,30,250056527003 -153,NEW017,41.613775,-70.907992,253.998766,2025.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,DAVID ST & RFB,OUTER NEW BEDFORD HARBOR,,95,250056527002 -154,NEW018,41.617294,-70.912893,123.559491,2024.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,COVE ST AND E. RODNEY FRENCH BLVD,OUTER NEW BEDFORD HARBOR,,145,250056526002 +153,NEW017,41.613775,-70.907992,253.998766,2023.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,DAVID ST & RFB,OUTER NEW BEDFORD HARBOR,,95,250056527002 +154,NEW018,41.617294,-70.912893,123.559491,2025.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,COVE ST AND E. RODNEY FRENCH BLVD,OUTER NEW BEDFORD HARBOR,,145,250056526002 155,NEW022,41.658549,-70.919419,11.58294,2022.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,SAWYER ST AT ACUSHNET R,ACUSHNET RIVER,,31,250056512001 -156,NEW023,41.663142,-70.91809,734.949067,2023.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,COFFIN AVE,ACUSHNET RIVER,,273,250056507001 +156,NEW023,41.663142,-70.91809,734.949067,2022.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,COFFIN AVE,ACUSHNET RIVER,,273,250056507001 157,NEW026,41.679736,-70.917702,0.12512,2023.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,TRURO ST AT ACUSHNET R,ACUSHNET RIVER,,2,250056503002 158,NEW027,41.683591,-70.919311,40.416186,2025.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,MILL RD AT ACUSHNET RIVER,ACUSHNET RIVER,,129,250056542001 159,NEW030,41.625805,-70.91496,0.01692,2023.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,SOUTH ST AT BUZZARDS BAY,INNER NEW BEDFORD HARBOR,,1,250056519001 -160,NEW031,41.628437,-70.915485,148.942559,2024.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,CONWAY ST AT BUZZARDS BAY,INNER NEW BEDFORD HARBOR,,172,250056519001 -161,NEW035,41.64139,-70.921532,54.390024,2025.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,MAXFIELD ST AT BUZZARDS BAY,INNER NEW BEDFORD HARBOR,,196,250056513001 -162,NEW036,41.644874,-70.921181,16.939334,2023.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,HERVEY TICHON AVE AT BUSSARDS BAY,INNER NEW BEDFORD HARBOR,,58,250056513001 +160,NEW031,41.628437,-70.915485,148.942559,2025.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,CONWAY ST AT BUZZARDS BAY,INNER NEW BEDFORD HARBOR,,172,250056519001 +161,NEW035,41.64139,-70.921532,54.390024,2024.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,MAXFIELD ST AT BUZZARDS BAY,INNER NEW BEDFORD HARBOR,,196,250056513001 +162,NEW036,41.644874,-70.921181,16.939334,2022.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,HERVEY TICHON AVE AT BUSSARDS BAY,INNER NEW BEDFORD HARBOR,,58,250056513001 163,NEW041,41.66914,-70.919041,5.77926,2022.0,CSO,CITY OF NEW BEDFORD,MA0100781,NEW BEDFORD,BELLEVILLE RD AT ACUSHNET R,ACUSHNET RIVER,,6,250056504001 -164,SOM001A,42.402432,-71.135119,12.033039,2025.0,CSO,CITY OF SOMERVILLE,MA0101982,CAMBRIDGE,100 FT BEYOND END OF MATIGNON RD,ALEWIFE BROOK,,23,250173567011 -165,SOM007A/MWR205A,42.398244,-71.083419,68.97,2023.0,CSO,CITY OF SOMERVILLE,MA0101982,SOMERVILLE,SOUTH BANK OF MYSTIC RIVER AT INT OF ASSEMBLY SQ DR & 28,MYSTIC RIVER,,27,250173398022 +164,SOM001A,42.402432,-71.135119,12.033039,2023.0,CSO,CITY OF SOMERVILLE,MA0101982,CAMBRIDGE,100 FT BEYOND END OF MATIGNON RD,ALEWIFE BROOK,,23,250173567011 +165,SOM007A/MWR205A,42.398244,-71.083419,68.97,2025.0,CSO,CITY OF SOMERVILLE,MA0101982,SOMERVILLE,SOUTH BANK OF MYSTIC RIVER AT INT OF ASSEMBLY SQ DR & 28,MYSTIC RIVER,,27,250173398022 166,SPR007,42.118805,-72.619811,1.697,2023.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,ROWLAND ST.,CONNECTICUT R.,,11,250138007002 167,SPR008,42.112202,-72.615681,24.626,2023.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,WASHBURN ST.,CONNECTICUT R.,,29,250138007002 168,SPR010,42.104667,-72.602303,277.6007,2023.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,CLINTON ST.,CONNECTICUT R.,,146,250138011011 169,SPR011,42.103524,-72.599213,1.260308,2023.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,LIBERTY ST.,CONNECTICUT R.,,12,250138011011 170,SPR012,42.101555,-72.59553,257.298991,2024.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,WORTHINGTON ST.,CONNECTICUT R.,,162,250138011011 -171,SPR013,42.101052,-72.594663,140.780269,2023.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,BRIDGE ST.,CONNECTICUT R.,,85,250138011011 +171,SPR013,42.101052,-72.594663,140.780269,2025.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,BRIDGE ST.,CONNECTICUT R.,,85,250138011011 172,SPR014,42.09855,-72.591459,62.5868,2022.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,ELM ST.,CONNECTICUT R.,,135,250138011011 173,SPR015A,42.095739,-72.588322,33.265883,2024.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,UNION ST.,CONNECTICUT R.,,45,250138020001 174,SPR015B,42.095739,-72.588322,1.833,2023.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,UNION ST.,CONNECTICUT R.,,29,250138020001 -175,SPR016,42.090259,-72.583882,163.232586,2025.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,YORK ST.,CONNECTICUT R.,,69,250138020001 +175,SPR016,42.090259,-72.583882,163.232586,2024.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,YORK ST.,CONNECTICUT R.,,69,250138020001 176,SPR017,42.090034,-72.577037,1.339,2022.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,FORT PLEASANT (BLAKE HILL),MILL R.,,29,250138019011 177,SPR018,42.07809,-72.580906,2.816,2023.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,LONGHILL ST.,CONNECTICUT R.,,41,250138132092 178,SPR019,42.093505,-72.569717,68.141767,2024.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,"MILL, ORANGE & LOCUST STS.",MILL R.,,15,250138019012 @@ -184,11 +184,11 @@ 182,SPR035,42.161132,-72.502142,5.798,2025.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,FRONT & OAK ST.,CHICOPEE R.,,30,250138001022 183,SPR036A,42.160924,-72.501326,8.007,2024.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,PINEVALE & WATER ST,CHICOPEE R.,,29,250138001022 184,SPR037,42.160539,-72.498451,2.632,2023.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,CEDAR ST.,CHICOPEE R.,,17,250138001022 -185,SPR042,42.088092,-72.58656,379.160118,2023.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,SPRINGFIELD WWTP BYPASS AT BONDI'S ISLAND,CONNECTICUT RIVER,,89,250138132091 +185,SPR042,42.088092,-72.58656,379.160118,2024.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,SPRINGFIELD WWTP BYPASS AT BONDI'S ISLAND,CONNECTICUT RIVER,,89,250138132091 186,SPR045,42.090257,-72.576907,16.859166,2023.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,FORT PLEASANT AVE.,MILL R.,,56,250138019011 187,SPR046,42.090257,-72.576907,8.842495,2023.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,BELMONT ST.,MILL R.,,77,250138019011 188,SPR048,42.097029,-72.563933,13.539,2024.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,ALLEN & RIFLE STS.,MILL R.,,48,250138019012 -189,SPR049,42.118844,-72.619764,11.308,2022.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,SPRINGFIELD ST.,CONNECTICUT R.,,99,250138007002 +189,SPR049,42.118844,-72.619764,11.308,2024.0,CSO,SPRINGFIELD WATER & SEWER COMMISSION,MA0101613,SPRINGFIELD,SPRINGFIELD ST.,CONNECTICUT R.,,99,250138007002 190,T01,42.38422222,-70.80375,3617.071,2025.0,CSO,MASSACHUSETTS WATER RESOURCES AUTHORITY,MA0103284,MASSACHUSETTS BAY,Other,MASSACHUSETTS BAY,,64,250235001011 191,TAU004,41.880543,-71.092342,33.039,2024.0,CSO,CITY OF TAUNTON,MA0100897,TAUNTON,WEST WATER STREET,TAUNTON RIVER,,10,250056139022 -192,WOR001,42.246637,-71.801997,563.320881,2024.0,CSO,CITY OF WORCESTER,MA0102997,WORCESTER,QUINSIGAMOND AVENUE,MILL BROOK TO BLACKSTONE RIVER,,76,250277325001 +192,WOR001,42.246637,-71.801997,563.320881,2025.0,CSO,CITY OF WORCESTER,MA0102997,WORCESTER,QUINSIGAMOND AVENUE,MILL BROOK TO BLACKSTONE RIVER,,76,250277325001 diff --git a/docs/data/dash_MAEEADP_dashboard_data_egs_merge.csv.gz b/docs/data/dash_MAEEADP_dashboard_data_egs_merge.csv.gz index 521102d..466f74c 100644 Binary files a/docs/data/dash_MAEEADP_dashboard_data_egs_merge.csv.gz and b/docs/data/dash_MAEEADP_dashboard_data_egs_merge.csv.gz differ diff --git a/docs/data/data_stats.yml b/docs/data/data_stats.yml index c914791..5456dc6 100644 --- a/docs/data/data_stats.yml +++ b/docs/data/data_stats.yml @@ -1,13 +1,16 @@ EEADP_CSO.csv: 17795 -EEADP_enforcement.csv: 55252 -EEADP_facility.csv: 53520 -EEADP_inspection.csv: 84405 +EEADP_enforcement.csv: 55369 +EEADP_facility.csv: 53527 +EEADP_inspection.csv: 84544 EEADP_permit.csv: 101144 -EPARegion1_NPDES_permit_data.csv: 4482 +EPARegion1_NPDES_permit_data.csv: 4484 EPA_303d_impairments.csv: 106058 MADEP_enforcement_actions.csv: 4348 MADEP_staff.csv: 12048 MADEP_staff_SODA.csv: 13394 +MA_legislature_bills.csv: 33370 +MA_lobbying_bills.csv: 300135 +MA_lobbying_employers.csv: 12244 MA_precipitation_daily.csv: 9862 MassBudget_environmental_infadjusted.csv: 72 MassBudget_environmental_noinfadjusted.csv: 72 diff --git a/docs/data/embedding_diagnostics.png b/docs/data/embedding_diagnostics.png new file mode 100644 index 0000000..4925c69 Binary files /dev/null and b/docs/data/embedding_diagnostics.png differ diff --git a/docs/data/facts_lobbying.yml b/docs/data/facts_lobbying.yml new file mode 100644 index 0000000..c20efa2 --- /dev/null +++ b/docs/data/facts_lobbying.yml @@ -0,0 +1,4 @@ +lobbying_most_recent_year: 2025 +lobbying_n_employers: 1381 +lobbying_n_firms: 144 +lobbying_total_spend_latest: 2098878 diff --git a/docs/data/ts_update_EEADP.yml b/docs/data/ts_update_EEADP.yml index c41348c..9a6d863 100644 --- a/docs/data/ts_update_EEADP.yml +++ b/docs/data/ts_update_EEADP.yml @@ -1 +1 @@ -updated: 2026-06-01 11:25:08 +updated: 2026-06-12 13:45:25 diff --git a/docs/data/ts_update_EEADP_CSO.yml b/docs/data/ts_update_EEADP_CSO.yml index c6b4141..5f50c63 100644 --- a/docs/data/ts_update_EEADP_CSO.yml +++ b/docs/data/ts_update_EEADP_CSO.yml @@ -1 +1 @@ -updated: 2026-06-01 11:25:13 +updated: 2026-06-12 13:45:30 diff --git a/docs/data/ts_update_EPARegion1_NPDES_permit.yml b/docs/data/ts_update_EPARegion1_NPDES_permit.yml index 1389c03..eb4e29e 100644 --- a/docs/data/ts_update_EPARegion1_NPDES_permit.yml +++ b/docs/data/ts_update_EPARegion1_NPDES_permit.yml @@ -1 +1 @@ -updated: 2026-06-01 11:23:47 +updated: 2026-06-12 13:43:44 diff --git a/docs/data/ts_update_MADEP_staff_SODA.yml b/docs/data/ts_update_MADEP_staff_SODA.yml index b5f06fe..4940342 100644 --- a/docs/data/ts_update_MADEP_staff_SODA.yml +++ b/docs/data/ts_update_MADEP_staff_SODA.yml @@ -1 +1 @@ -updated: 2026-06-01 11:23:49 +updated: 2026-06-12 13:43:49 diff --git a/docs/data/ts_update_MA_legislature.yml b/docs/data/ts_update_MA_legislature.yml new file mode 100644 index 0000000..a4670a7 --- /dev/null +++ b/docs/data/ts_update_MA_legislature.yml @@ -0,0 +1 @@ +updated: 2026-06-12 14:06:55 diff --git a/docs/data/ts_update_MA_lobbying.yml b/docs/data/ts_update_MA_lobbying.yml new file mode 100644 index 0000000..6439e3b --- /dev/null +++ b/docs/data/ts_update_MA_lobbying.yml @@ -0,0 +1 @@ +updated: 2026-05-26 22:06:37 diff --git a/docs/data/ts_update_MA_precipitation.yml b/docs/data/ts_update_MA_precipitation.yml index fbb4495..8c4d0f5 100644 --- a/docs/data/ts_update_MA_precipitation.yml +++ b/docs/data/ts_update_MA_precipitation.yml @@ -1 +1 @@ -updated: 2026-06-01 11:25:15 +updated: 2026-06-12 13:45:33 diff --git a/docs/data/ts_update_MS4.yml b/docs/data/ts_update_MS4.yml index 79afdb4..c5a4aad 100644 --- a/docs/data/ts_update_MS4.yml +++ b/docs/data/ts_update_MS4.yml @@ -1 +1 @@ -updated: 2026-06-01 11:25:19 +updated: 2026-06-12 13:45:37 diff --git a/docs/data/ts_update_MassBudget_environmental.yml b/docs/data/ts_update_MassBudget_environmental.yml index 1389c03..53521d8 100644 --- a/docs/data/ts_update_MassBudget_environmental.yml +++ b/docs/data/ts_update_MassBudget_environmental.yml @@ -1 +1 @@ -updated: 2026-06-01 11:23:47 +updated: 2026-06-12 13:43:45 diff --git a/docs/data/ts_update_dashboard.yml b/docs/data/ts_update_dashboard.yml index 85c1dd6..51f6bb7 100644 --- a/docs/data/ts_update_dashboard.yml +++ b/docs/data/ts_update_dashboard.yml @@ -1 +1 @@ -updated: 2026-05-19 12:32:22 +updated: 2026-06-12 14:09:12 diff --git a/get_data/NOTES_bill_embeddings.md b/get_data/NOTES_bill_embeddings.md new file mode 100644 index 0000000..25cc785 --- /dev/null +++ b/get_data/NOTES_bill_embeddings.md @@ -0,0 +1,301 @@ +# Bill Embedding and Clustering — Design Notes + +## Current approach (as of June 2026) + +**Model:** Google Gemini `gemini-embedding-2`, 768-dimensional output. + +**Text preparation per bill:** +1. Strip legislative scaffolding from body text using `_SCAFFOLD_RE` — the repeated "Chapter X of the General Laws…is hereby amended by inserting after…" boilerplate that appears identically in thousands of bills regardless of topic. +2. Prepend the bill title (always specific and clean signal). +3. Truncate the combined string to 3,000 characters (~750 tokens). +4. Fall back to title alone when no body text is available (~3% of bills). + +Bills from GC 183–184 (2005–2008) frequently have no full text in the Legislature API and embed as near-zero vectors; these are excluded from clustering (`cluster_id = -1`). + +**Clustering:** K-means, k=25, on L2-normalised (cosine-space) embeddings. +Cluster labels generated by Gemini 2.5 Flash from the 20 most central bill titles per cluster. +Incremental mode (weekly CI) assigns cluster IDs to new bills via nearest-centroid lookup without re-fitting. + +**Environmental scoring:** Differential cosine similarity — max cosine similarity to 42 known env bills minus max cosine similarity to 42 known non-env bills. Threshold: 0.05. + +**Current corpus (June 2026):** 33,159 bills embedded; **924 flagged `is_environmental`** (2.8% of corpus). Up from 329 before GC fix (see below) and 654 before H/S collision fix. + +**LLM summary + taxonomy:** `summarize_lobbying_bills.py` runs manually after major backfills. As of June 2026, all 33,159 bills have summaries, policy categories, tags, and `llm_is_environmental` labels. + +### Parquet schema note + +The `full_text` column in `MA_bill_embeddings.parquet` stores the **constructed embed text** (SoS title prepended to the stripped legislature body), not the raw legislature API text. + +--- + +## ✅ FIXED: Wrong General Court in Legislature API lookups + +### Root cause + +`get_MA_lobbying.py` originally used `FIRST_GC_START_YEAR = 2005`, making every bill +lookup one General Court too early. The 183rd General Court convened in January 2003, +not 2005. The correct formula is `183 + (year - 2003) // 2`. + +**Fix applied:** `FIRST_GC_START_YEAR` changed from `2005` to `2003`. + +Correct mapping (GC183 = 2003–2004): + +| Year filed | Wrong GC (bug) | Correct GC | +|-----------|---------------|-----------| +| 2005–2006 | GC183 | **GC184** | +| 2009–2010 | GC185 | **GC186** | +| 2013–2024 | … | +1 throughout | +| 2025–2026 | GC193 | **GC194** | + +**Scale of impact (60-bill random sample with live API checks):** + +| GC version | Title match rate | +|-----------|-----------------| +| Wrong GC (bug) | 2% (1/60) | +| **Corrected GC** | **65% (39/60)** | +| Still wrong after fix | 35% (21/60) | + +The remaining 35% are: string normalisation differences (SoS prefixes bill number to +title), cross-session lobbying (bill introduced in session after lobbying year), and a +small residual of wrong bill numbers in the SoS portal. + +### Impact on embeddings + +With wrong GC, legislature body text belonged to a different bill ~98% of the time. +After the fix, title+body embeddings improved by 16–21% (silhouette), but title-only +still leads by ~48% — body text adds structural noise even when it belongs to the +correct bill (see embedding method comparison below). + +--- + +## ✅ FIXED: H/S bill collision in deduplication + +### Root cause + +H1234 and S1234 in the same General Court are **completely different bills** — House +and Senate numbers are assigned independently. Earlier versions of `score_lobbying_bills.py` +deduplicated on `(bill_number, general_court)`, silently dropping one of every H/S pair. +This caused ~7,000 bills (~23% of the corpus) to have embeddings but no summaries or tags. + +**Fix applied:** Deduplication now uses a chamber-derived `bill_id` (e.g. `H1234`, +`S1234`) as the dedup key for bills with known chamber prefixes. The `bill_id_map` +(keyed on integer `bill_number`) is only used for chamber types that don't have an +H/S prefix. The `already_done` check also uses `bill_id` + `general_court` rather than +`bill_number` + `general_court`. + +**Remediation:** June 2026 backfill embedded and summarized all 7,211 previously +dropped bills. Cost: ~$1.06 embedding + $4.62 summarization = **$5.68 total**. + +--- + +## Embedding space structure + +MA legislative bill embeddings are **semantically dense** — even after boilerplate stripping, bills cluster tightly regardless of topic because they share heavy structural language. + +Empirical measurements (May 2026, 24,612 valid bills after mean-centering + L2 normalisation): + +| Metric | Value | +|--------|-------| +| Mean inter-cluster cosine distance (k=25) | ~0.006 | +| Mean intra-cluster cosine spread | ~0.53 | +| Ratio (separation / spread) | ~0.011 | + +For comparison, a well-separated topic model typically has inter/intra ratios >0.5. + +--- + +## Embedding method comparison (2,000-bill sample, k=25) + +Tested twice: once with wrong GC (body text is ~98% from unrelated bills) and again after the GC fix with correct body text. + +### Wrong GC (body = unrelated bills ~98% of the time) + +| Method | Silhouette↑ | DB↓ | Notes | +|--------|-------------|-----|-------| +| A. Original (SoS title + API body combined) | 0.023 | 4.76 | Production method at time of test | +| B. **Title only (SoS)** | **0.043** | **3.71** | Best; 2× silhouette improvement | +| C. Body only (API) | 0.024 | 4.61 | Nearly as bad as combined | +| D. Concat [L2(title) \| L2(body)] | 0.025 | 4.76 | No improvement over original | + +### Correct GC (body text matches the actual lobbied bill) + +| Method | Silhouette↑ | DB↓ | vs. wrong-GC | +|--------|-------------|-----|--------------| +| A. Original (SoS title + API body combined) | 0.0278 | 4.46 | +21% | +| B. **Title only (SoS)** | **0.0412** | **3.83** | -4% (unchanged) | +| C. Body only (API) | 0.0278 | 4.37 | +16% | +| D. Concat [L2(title) \| L2(body)] | 0.0296 | 4.54 | +18% | + +**Title-only is still the best embedding strategy even with correct body text.** Body text adds structural noise (boilerplate, amendments-to-existing-law syntax, cross-references) even after scaffold stripping. Production currently uses method A (title+body). Switching to title-only would require a full re-embed of ~33k bills. + +--- + +## LLM classification spot-check (Gemini 2.5 Flash, May 2026) + +42 bills sampled across 6 score buckets around the 0.05 threshold; classified with Gemini 2.5 Flash (SoS title + first 800 chars of stored body text). + +**Overall agreement with current embedding classification: 64% (27/42).** + +| Score range | Bills | Agreement | Key finding | +|-------------|-------|-----------|-------------| +| < −0.05 | 1,419 | — (not tested) | | +| −0.05 to −0.02 | 7,149 | 80% | 1/5 false negative (climate adaptation bill) | +| −0.02 to 0.0 | 10,243 | 100% in sample of 8 | | +| 0.0 to 0.02 | 4,997 | **25%** | 6/8 are env per LLM — major false negatives | +| 0.02 to 0.05 | 1,795 | **12%** | 7/8 are env per LLM — major false negatives | +| 0.05 to 0.08 | 301 | 88% | 1/8 false positive | +| > 0.08 | 28 | — (not tested) | | + +**Examples of false negatives the LLM catches:** +- "An Act to expand the bottle bill" (waste management) — score +0.010 +- "An Act preventing gas expansion to protect climate, community health and safety" — score +0.019 +- "An Act relative to net metering" — score +0.023 +- "An Act requiring local approval for battery storage facility permitting" — score +0.011 +- "An Act relative to fair and stable electricity pricing" — score +0.032 +- "An Act relative to environmental justice in the commonwealth" — score +0.032 + +The LLM also correctly flags title/body mismatches (e.g., "An Act to strengthen notifications in the Wetlands Protection Act" whose stored body is actually eyewitness identification law), explicitly noting the discrepancy and weighting the title signal. + +**Implication:** `llm_is_environmental` is a more reliable env signal than the embedding score alone, especially in the 0.02–0.05 band. Both columns are now stored in the Parquet and available in the DB via `MA_Lobbying_Bills_Scored`. + +--- + +## Clustering algorithm evaluation + +### K-means silhouette sweep (8k subsample, mean-centered + L2) + +| k | Silhouette↑ | DB↓ | +|---|-------------|-----| +| 4 | 0.018 | 6.07 | +| 8 | 0.022 | 5.53 | +| 10 | 0.023 | 5.32 | +| 15 | 0.025 | 4.95 | +| 20 | 0.023 | 4.96 | +| 25 | 0.024 | 4.76 | +| 30 | 0.026 | 4.67 | +| 40 | 0.027 | 4.60 | + +**Conclusion:** The silhouette curve is completely flat across k=4..40 with no elbow. k=25 was chosen on domain grounds (produces ~1,000 bills/cluster, yields coherent topic labels). + +Mean-centering before L2 normalisation gives a small but consistent improvement (silhouette +0.007 at k=25). + +### HDBSCAN sweep (full set, mean-centered + L2) + +| min_size | min_samples | Clusters | Noise% | Silhouette↑ | DB↓ | +|----------|-------------|----------|--------|-------------|-----| +| 10 | 5 | 203 | 84.4% | 0.162 | 2.06 | +| 10 | 10 | 61 | 90.8% | 0.157 | 1.82 | +| 15 | 5 | 100 | 88.7% | 0.154 | 2.23 | +| 20 | 5 | 52 | 87.9% | 0.097 | 2.52 | +| 30 | 5 | 23 | 88.9% | 0.101 | 2.74 | +| 40 | 5 | 18 | 89.2% | 0.107 | 2.70 | +| 50 | 5 | 10 | 90.6% | 0.116 | 2.31 | + +**Conclusion:** HDBSCAN consistently pushes 84–91% of bills into noise. Not suitable for this corpus — the data has no meaningful density gaps between policy domains. + +--- + +## Diagnostic plots (post-GC fix, May 2026) + +![Embedding diagnostics](../docs/data/embedding_diagnostics.png) + +Four panels generated from the full 25,932-bill scored corpus and a 2,000-bill embedding sample after the GC formula fix. + +### Score distribution + +The distribution is sharply right-skewed around a mean of −0.011. Key counts at threshold 0.05 (post H/S fix, June 2026): + +| Band | Bills | Notes | +|------|-------|-------| +| < 0 (clearly non-env) | ~24,000 | ~73% of corpus | +| 0–0.05 (borderline) | ~8,000 | LLM spot-check: large false-negative rate in 0.02–0.05 | +| ≥ 0.05 (flagged) | **924** | 2.8% of corpus | + +There is no natural density gap between 0.02 and 0.05, suggesting the threshold is somewhat arbitrary in this zone. The `llm_is_environmental` column is a more reliable signal for borderline bills. + +### Cluster env density + +Environmental bills concentrate strongly in two clusters: + +| Cluster | Label | Env bills | % env | +|---------|-------|-----------|-------| +| 14 | Massachusetts Clean Energy Transition | 238 | 30% | +| 2 | Waste Reduction and Recycling | 181 | 39% | +| 20 | Empowering Local Clean Energy | 54 | 5% | +| 0 | Municipal Environmental Governance | 50 | 3% | + +The remaining 21 clusters each contain ≤29 env bills. + +--- + +## t-SNE visualisation + +**[→ Interactive t-SNE (Plotly)](../docs/_includes/charts/lobbying_bill_tsne.html)** + +Projecting all 33,000+ bills into 2D produces a featureless blob because the inter-cluster cosine distance (~0.006) is ~100× smaller than intra-cluster spread (~0.53). + +**Current approach:** Plot only the 924 environmental bills (coloured by cluster) over a stratified background sample of ~120 non-env bills per cluster (~3,000 total in grey). This makes environmental bills legible within the policy landscape without misrepresenting cluster separation. + +--- + +## LLM summary + taxonomy — pilot and full-run cost actuals + +### Pilot (495 bills, May 2026) + +| Metric | Value | +|--------|-------| +| Input tokens (total) | 981,288 | +| Cached tokens | 792,990 (80.8%) | +| Avg input / bill | 1,982 tokens | +| Avg output / bill | 152 tokens | +| Reported cost (495 bills) | $0.0525 ← **WRONG** — used bad output price | +| Corrected cost at actual prices | ~$0.304 ($0.614/1k bills) | +| Projected cost (26k full corpus) | **$15.96** (corrected) | + +> ⚠️ The $0.0525 / $2.76 figures were computed with output price $0.30/1M instead of +> $2.50/1M (the correct GA rate). All downstream projections from this pilot were wrong +> by ~6×. Verified from GCP billing SKU "Gemini 2.5 Flash GA Text Output - Predictions". + +### Full backfill (7,211 bills, June 2026) + +| Metric | Value | +|--------|-------| +| Bills processed | 7,211 (H/S collision backfill) | +| Total cost | **$4.62 actual** | +| Verified at checkpoint | 2,000 bills = $1.2537 | +| **Actual rate** | **$0.627 / 1k bills** | +| Avg input / bill | ~1,971 tokens | +| Avg cached / bill | ~1,602 tokens (81% cache hit) | +| Avg output / bill | ~151 tokens | +| Output token share of cost | ~60% | +| Weekly incremental (20–50 bills) | ~$0.013–$0.031 per run | + +**Root cause of all prior underestimates:** output tokens cost $2.50/1M — 8.3× the +input price — yet prior estimates applied the input rate to all tokens. Even at only +151 output tokens/bill, output dominates per-bill cost. + +### LLM env classification performance (reference set) + +| Metric | Value | +|--------|-------| +| Recall (20 known env titles) | **100%** (20/20) | +| Specificity (36 known non-env) | **97%** (35/36) | +| Avg tags per bill | 3.14 | + +--- + +## Remaining known limitations + +1. **Title-only embeddings would improve clustering.** Title-only leads by ~48% silhouette + over title+body in both wrong-GC and correct-GC conditions. Switching requires a full + re-embed (~33k bills at ~$0.15/1k = ~$5). Production currently uses title+body (method A). + +2. **Environmental threshold not recalibrated after GC fix.** Env bill count jumped + 329 → 654 → 924 across three pipeline fixes. The 0.05 threshold was set under the + wrong-GC regime and may need adjustment. The `llm_is_environmental` column is a + better signal for borderline bills (score 0.0–0.08). + +3. **Legislature API lookup quality (~35% miss rate).** After GC fix, ~35% of bill + title lookups still fail (string normalisation differences, cross-session lobbying, + wrong numbers in SoS portal). The body text for these bills falls back to title-only. + Higher priority if title+body embeddings are adopted. diff --git a/get_data/README_lobbying.md b/get_data/README_lobbying.md new file mode 100644 index 0000000..6a65d79 --- /dev/null +++ b/get_data/README_lobbying.md @@ -0,0 +1,319 @@ +# MA Lobbying pipeline + +Tracks which bills are being lobbied in the Massachusetts legislature, how much is +spent, and whether those bills are environmentally relevant. Five scripts; the first +four run in weekly CI: + +``` +get_MA_lobbying.py + ↓ MA_lobbying_employers.csv, MA_lobbying_bills.csv, MA_lobbying_summary_links.csv +get_MA_legislature_bills.py + ↓ MA_legislature_bills.csv + MA_legislature_cache/.json +score_lobbying_bills.py + ↓ MA_lobbying_bills_scored.csv + gs://openamend-data/MA_bill_embeddings.parquet +cluster_lobbying_bills.py --incremental ← weekly CI (incremental mode only) + ↓ cluster_id column written back to scored CSV +summarize_lobbying_bills.py ← manual only (too slow/expensive for CI) + ↓ summary, category, tags, llm_is_environmental columns in parquet +``` + +All scripts must be run from `get_data/`. Use the `amend_python` conda env, and run +Python directly (not `conda run`) for live log output: + +```bash +/home/nes/miniconda/envs/amend_python/bin/python -u