From b5fe83332cce8ac08cb44f9bdde6316fab0df67c Mon Sep 17 00:00:00 2001 From: Giuseppe Guarino <40060221+gmguarino@users.noreply.github.com> Date: Sun, 26 May 2024 19:08:17 +0200 Subject: [PATCH] Add graphs (#29) * feat: add graphs to frontend --- .env.example | 7 +- README.md | 12 +- public/dashboard/graphs/en/alternatives.json | 1 + public/dashboard/graphs/en/evolution-map.json | 1 + .../graphs/en/hyper-growth-grouped.json | 1 + public/dashboard/graphs/en/hyper-growth.json | 1 + .../dashboard/graphs/en/mortality-rates.json | 1 + .../dashboard/graphs/en/salmon-collapse.json | 1 + public/dashboard/graphs/en/top-10.json | 1 + public/dashboard/graphs/en/top-comp.json | 1 + public/dashboard/graphs/en/top-land.json | 1 + public/dashboard/graphs/fr/alternatives.json | 1 + public/dashboard/graphs/fr/evolution-map.json | 1 + .../graphs/fr/hyper-growth-grouped.json | 1 + public/dashboard/graphs/fr/hyper-growth.json | 1 + .../dashboard/graphs/fr/mortality-rates.json | 1 + .../dashboard/graphs/fr/salmon-collapse.json | 1 + public/dashboard/graphs/fr/top-10.json | 1 + public/dashboard/graphs/fr/top-comp.json | 1 + public/dashboard/graphs/fr/top-land.json | 1 + public/dashboard/maps/en/ras-map.html | 16536 ++++++++++++++++ public/dashboard/maps/fr/ras-map.html | 16536 ++++++++++++++++ public/images/bottom-dark.svg | 3 + public/images/storytelling/animals-1200.jpg | Bin 188369 -> 0 bytes public/images/storytelling/animals-400.jpg | Bin 26695 -> 0 bytes public/images/storytelling/animals-600.jpg | Bin 53415 -> 0 bytes public/images/storytelling/animals-hd.webp | Bin 0 -> 183162 bytes .../images/storytelling/biodiversity-1200.jpg | Bin 402918 -> 0 bytes .../images/storytelling/biodiversity-400.jpg | Bin 45695 -> 0 bytes .../images/storytelling/biodiversity-600.jpg | Bin 101003 -> 0 bytes .../images/storytelling/biodiversity-hd.webp | Bin 0 -> 1198456 bytes public/images/storytelling/health-1200.jpg | Bin 298559 -> 0 bytes public/images/storytelling/health-400.jpg | Bin 49398 -> 0 bytes public/images/storytelling/health-600.jpg | Bin 96611 -> 0 bytes public/images/storytelling/health-hd.webp | Bin 0 -> 1439130 bytes src/app/dashboard/page.tsx | 189 +- src/app/layout.tsx | 23 +- src/app/page.tsx | 31 +- src/components/Calculator.tsx | 58 + src/components/Card.tsx | 18 - src/components/Chart.tsx | 58 + src/components/CustomDashboardSection.tsx | 32 - src/components/DashboardChart.tsx | 19 - src/components/DashboardSection.tsx | 164 +- src/components/Edito.tsx | 8 +- src/components/IntroBlock.tsx | 20 +- src/components/JoinBlock.tsx | 28 +- src/components/NextImage.tsx | 58 - src/components/Popover.tsx | 31 - src/components/Skeleton.tsx | 20 - src/components/Summary.tsx | 93 +- src/components/TitleBlock.tsx | 2 +- src/components/buttons/Button.tsx | 160 - src/components/buttons/IconButton.tsx | 116 - src/components/layout/Navbar.tsx | 2 +- src/components/links/ArrowLink.tsx | 64 - src/components/links/ButtonLink.tsx | 146 - src/components/links/IconLink.tsx | 97 - src/components/links/PrimaryLink.tsx | 43 - src/components/links/UnderlineLink.tsx | 28 - src/components/links/UnstyledLink.tsx | 50 - 61 files changed, 33569 insertions(+), 1101 deletions(-) create mode 100644 public/dashboard/graphs/en/alternatives.json create mode 100644 public/dashboard/graphs/en/evolution-map.json create mode 100644 public/dashboard/graphs/en/hyper-growth-grouped.json create mode 100644 public/dashboard/graphs/en/hyper-growth.json create mode 100644 public/dashboard/graphs/en/mortality-rates.json create mode 100644 public/dashboard/graphs/en/salmon-collapse.json create mode 100644 public/dashboard/graphs/en/top-10.json create mode 100644 public/dashboard/graphs/en/top-comp.json create mode 100644 public/dashboard/graphs/en/top-land.json create mode 100644 public/dashboard/graphs/fr/alternatives.json create mode 100644 public/dashboard/graphs/fr/evolution-map.json create mode 100644 public/dashboard/graphs/fr/hyper-growth-grouped.json create mode 100644 public/dashboard/graphs/fr/hyper-growth.json create mode 100644 public/dashboard/graphs/fr/mortality-rates.json create mode 100644 public/dashboard/graphs/fr/salmon-collapse.json create mode 100644 public/dashboard/graphs/fr/top-10.json create mode 100644 public/dashboard/graphs/fr/top-comp.json create mode 100644 public/dashboard/graphs/fr/top-land.json create mode 100644 public/dashboard/maps/en/ras-map.html create mode 100644 public/dashboard/maps/fr/ras-map.html create mode 100644 public/images/bottom-dark.svg delete mode 100644 public/images/storytelling/animals-1200.jpg delete mode 100644 public/images/storytelling/animals-400.jpg delete mode 100644 public/images/storytelling/animals-600.jpg create mode 100644 public/images/storytelling/animals-hd.webp delete mode 100644 public/images/storytelling/biodiversity-1200.jpg delete mode 100644 public/images/storytelling/biodiversity-400.jpg delete mode 100644 public/images/storytelling/biodiversity-600.jpg create mode 100644 public/images/storytelling/biodiversity-hd.webp delete mode 100644 public/images/storytelling/health-1200.jpg delete mode 100644 public/images/storytelling/health-400.jpg delete mode 100644 public/images/storytelling/health-600.jpg create mode 100644 public/images/storytelling/health-hd.webp create mode 100644 src/components/Calculator.tsx delete mode 100644 src/components/Card.tsx create mode 100644 src/components/Chart.tsx delete mode 100644 src/components/CustomDashboardSection.tsx delete mode 100644 src/components/DashboardChart.tsx delete mode 100644 src/components/NextImage.tsx delete mode 100644 src/components/Popover.tsx delete mode 100644 src/components/Skeleton.tsx delete mode 100644 src/components/buttons/Button.tsx delete mode 100644 src/components/buttons/IconButton.tsx delete mode 100644 src/components/links/ArrowLink.tsx delete mode 100644 src/components/links/ButtonLink.tsx delete mode 100644 src/components/links/IconLink.tsx delete mode 100644 src/components/links/PrimaryLink.tsx delete mode 100644 src/components/links/UnderlineLink.tsx delete mode 100644 src/components/links/UnstyledLink.tsx diff --git a/.env.example b/.env.example index 50bced59f..76e0adbce 100644 --- a/.env.example +++ b/.env.example @@ -1,10 +1,9 @@ -# !STARTERCONF Duplicate this to .env.local +# !STARTERCONF Duplicate this to .env # DEVELOPMENT TOOLS # Ideally, don't add them to production deployment envs # !STARTERCONF Change to true if you want to log data NEXT_PUBLIC_SHOW_LOGGER="true" -NEXT_PUBLIC_PINKBOMBS_DATA_URL="https://pinkbombsfkynigjl-pinkbombs-data.functions.fnc.fr-par.scw.cloud/api/v1/secure/graphs" -#NEXT_PUBLIC_PINKBOMBS_DATA_URL="https://pinkbombsfkynigjl-pinkbombs-data.functions.fnc.fr-par.scw.cloud:8080/" -NEXT_PUBLIC_PINKBOMBS_DATA_API_KEY="pinkbombs" +export PINKBOMBS_DATA_URL=https://pinkbombsfkynigjl-pinkbombs-data.functions.fnc.fr-par.scw.cloud/api/v1/secure +export PINKBOMBS_DATA_API_KEY=pinkbombs diff --git a/README.md b/README.md index c41ab39f8..07320607a 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,15 @@ yarn dev Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. You can start editing the page by modifying `src/pages/index.tsx`. -### 4. Change defaults +### 4. Build and test -There are some things you need to change including title, urls, favicons, etc. +Run the followed command: -Find all comments with !STARTERCONF, then follow the guide. - -Don't forget to change the package name in package.json +- Build the project: `yarn build` +- Launch linter: `yarn lint:strict` +- Launch Typecheck: `yarn typecheck` +- Launch Prettier: `yarn format:check` +- Launch Jest: `yarn test` ### 5. Commit Message Convention diff --git a/public/dashboard/graphs/en/alternatives.json b/public/dashboard/graphs/en/alternatives.json new file mode 100644 index 000000000..edf5fd2ba --- /dev/null +++ b/public/dashboard/graphs/en/alternatives.json @@ -0,0 +1 @@ +"{\"data\":[{\"colorscale\":[[0.0,\"#bfcee1\"],[0.16666666666666666,\"#6ecb57\"],[0.3333333333333333,\"#aaed99\"],[0.5,\"#ffd336\"],[0.6666666666666666,\"#ff7e36\"],[0.8333333333333334,\"#f34620\"],[1.0,\"#cc0100\"]],\"customdata\":[[\"\",\"Principal mode d'impr\\u00e9gnation : les poissons gras et les\\u003cbr\\u003ecrustac\\u00e9s\",\"\",\"\",\"\",\"\",\"\",\"\"],[\"72,6% \\ud83d\\udc1f\",\"72,6% \\ud83d\\udc1f\",\"28,6% \\ud83d\\udc1f\",\"93.25% \\ud83d\\udc1f \\ud83c\\udf31\",\"16,5% \\ud83d\\udc1f\",\"\",\"328% \\ud83c\\udf31\",\"74% \\ud83c\\udf31\"],[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"],[\"Between 15 and 20 kg CO2 equ.\",\"10kg eqCO2 d'apr\\u00e8s WWF\",\"4,39kg eqCO2 d'pr\\u00e8s agribalyse\",\"\",\"5,7kg eqCO2 d'apr\\u00e8s agribalyse\",\"6,7 kg eqCO2 d'apr\\u00e8s agribalyse (moyenne de ulva,nori, kombu\\u003cbr\\u003ebreton, haricot de mer)\",\"2,28kg eqCO2 d'apr\\u00e8s agribalyse\",\"1,6kg eqCO2 d'apr\\u00e8s agribalyse\"],[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"],[\"Les densit\\u00e9s de 70 kg \\u00e0 150 kg de saumons par m3, selon\\u003cbr\\u003el'IFSA (2015), augmentent les risques de maladies\\u003cbr\\u003einfectieuses, citant plusieurs \\u00e9tudes.\",\"\",\"\",\"\",\"\",\"Not relevant\",\"Not relevant\",\"\"]],\"hoverlabel\":{\"bgcolor\":\"white\"},\"hovertemplate\":\"%{customdata}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"showscale\":false,\"x\":[\"Land-based\\u003cbr\\u003efarmed\\u003cbr\\u003esalmon\",\"Marine cage\\u003cbr\\u003efarmed\\u003cbr\\u003esalmon\",\"Canned\\u003cbr\\u003eyellowfin\\u003cbr\\u003etuna\\u003cbr\\u003e(caught)\",\"\\u201cPrey\\u201d fish\\u003cbr\\u003e(sardines,\\u003cbr\\u003emackerel)\",\"Shellfish\\u003cbr\\u003e(mussles,\\u003cbr\\u003eoysters)\",\"Seaweed\",\"Colza oil\\u003cbr\\u003e(organic)\",\"Plant-based\\u003cbr\\u003efish\\u003cbr\\u003e(simili)\"],\"xgap\":4,\"y\":[\"Toxicity\",\"Omegas 3 intake\",\"Biodiversity\",\"CO2\",\"Social impacts\",\"Animal welfare\"],\"ygap\":4,\"z\":[[5,5,6,4,4,2,1,2],[2,2,5,1,5,0,1,2],[5,6,6,4,4,4,1,2],[6,5,3,4,4,4,2,1],[6,6,6,4,3,1,1,2],[6,4,6,3,2,0,0,2]],\"type\":\"heatmap\"}],\"layout\":{\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"yaxis\":{\"autorange\":\"reversed\",\"showgrid\":false,\"fixedrange\":true},\"xaxis\":{\"showgrid\":false,\"side\":\"top\",\"fixedrange\":true},\"paper_bgcolor\":\"rgba(0,0,0,0)\",\"plot_bgcolor\":\"rgba(0,0,0,0)\",\"hoverlabel\":{\"bgcolor\":\"white\"}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/en/evolution-map.json b/public/dashboard/graphs/en/evolution-map.json new file mode 100644 index 000000000..df25a2e5b --- /dev/null +++ b/public/dashboard/graphs/en/evolution-map.json @@ -0,0 +1 @@ +"{\"data\":[{\"customdata\":[[16490.52,2021,\"United States of America\",\"USA\"],[205000.0,2021,\"United Kingdom\",\"GBR\"],[180.0,2021,\"United Arab Emirates\",\"ARE\"],[160.0,2021,\"Switzerland\",\"CHE\"],[14959.0,2021,\"Russian Federation\",\"RUS\"],[1562415.01,2021,\"Norway\",\"NOR\"],[60.0,2021,\"Korea, Dem. People's Rep\",\"PRK\"],[12844.0,2021,\"Ireland\",\"IRL\"],[46458.0,2021,\"Iceland\",\"ISL\"],[115650.0,2021,\"Faroe Islands\",\"FRO\"],[1668.0,2021,\"Denmark\",\"DNK\"],[725280.0,2021,\"Chile\",\"CHL\"],[120186.0,2021,\"Canada\",\"CAN\"],[84045.234,2021,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"United Arab Emirates\",\"Switzerland\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"ARE\",\"CHE\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16490.52,205000.0,180.0,160.0,14959.0,1562415.01,60.0,12844.0,46458.0,115650.0,1668.0,725280.0,120186.0,84045.234],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"layout\":{\"geo\":{\"domain\":{\"x\":[0.0,1.0],\"y\":[0.0,1.0]},\"projection\":{\"type\":\"natural earth\"},\"showcountries\":true},\"legend\":{\"itemsizing\":\"constant\",\"tracegroupgap\":0},\"sliders\":[{\"active\":41,\"currentvalue\":{\"prefix\":\"Year=\"},\"len\":0.9,\"pad\":{\"b\":10,\"t\":60},\"steps\":[{\"args\":[[\"1980\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1980\",\"method\":\"animate\"},{\"args\":[[\"1981\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1981\",\"method\":\"animate\"},{\"args\":[[\"1982\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1982\",\"method\":\"animate\"},{\"args\":[[\"1983\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1983\",\"method\":\"animate\"},{\"args\":[[\"1984\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1984\",\"method\":\"animate\"},{\"args\":[[\"1985\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1985\",\"method\":\"animate\"},{\"args\":[[\"1986\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1986\",\"method\":\"animate\"},{\"args\":[[\"1987\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1987\",\"method\":\"animate\"},{\"args\":[[\"1988\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1988\",\"method\":\"animate\"},{\"args\":[[\"1989\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1989\",\"method\":\"animate\"},{\"args\":[[\"1990\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1990\",\"method\":\"animate\"},{\"args\":[[\"1991\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1991\",\"method\":\"animate\"},{\"args\":[[\"1992\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1992\",\"method\":\"animate\"},{\"args\":[[\"1993\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1993\",\"method\":\"animate\"},{\"args\":[[\"1994\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1994\",\"method\":\"animate\"},{\"args\":[[\"1995\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1995\",\"method\":\"animate\"},{\"args\":[[\"1996\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1996\",\"method\":\"animate\"},{\"args\":[[\"1997\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1997\",\"method\":\"animate\"},{\"args\":[[\"1998\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1998\",\"method\":\"animate\"},{\"args\":[[\"1999\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1999\",\"method\":\"animate\"},{\"args\":[[\"2000\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2000\",\"method\":\"animate\"},{\"args\":[[\"2001\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2001\",\"method\":\"animate\"},{\"args\":[[\"2002\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2002\",\"method\":\"animate\"},{\"args\":[[\"2003\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2003\",\"method\":\"animate\"},{\"args\":[[\"2004\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2004\",\"method\":\"animate\"},{\"args\":[[\"2005\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2005\",\"method\":\"animate\"},{\"args\":[[\"2006\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2006\",\"method\":\"animate\"},{\"args\":[[\"2007\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2007\",\"method\":\"animate\"},{\"args\":[[\"2008\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2008\",\"method\":\"animate\"},{\"args\":[[\"2009\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2009\",\"method\":\"animate\"},{\"args\":[[\"2010\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2010\",\"method\":\"animate\"},{\"args\":[[\"2011\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2011\",\"method\":\"animate\"},{\"args\":[[\"2012\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2012\",\"method\":\"animate\"},{\"args\":[[\"2013\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2013\",\"method\":\"animate\"},{\"args\":[[\"2014\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2014\",\"method\":\"animate\"},{\"args\":[[\"2015\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2015\",\"method\":\"animate\"},{\"args\":[[\"2016\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2016\",\"method\":\"animate\"},{\"args\":[[\"2017\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2017\",\"method\":\"animate\"},{\"args\":[[\"2018\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2018\",\"method\":\"animate\"},{\"args\":[[\"2019\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2019\",\"method\":\"animate\"},{\"args\":[[\"2020\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2020\",\"method\":\"animate\"},{\"args\":[[\"2021\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2021\",\"method\":\"animate\"}],\"x\":0.1,\"xanchor\":\"left\",\"y\":0,\"yanchor\":\"top\"}],\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]],\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]},\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"bgcolor\":\"#E5ECF6\",\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"ternary\":{\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"bgcolor\":\"#E5ECF6\",\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"zerolinewidth\":2},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"zerolinewidth\":2}}},\"title\":{\"text\":\"Evolution of salmon farming by country\"},\"updatemenus\":[{\"buttons\":[{\"args\":[null,{\"frame\":{\"duration\":500,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":500,\"easing\":\"linear\"}}],\"label\":\"▶\",\"method\":\"animate\"},{\"args\":[[null],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"◼\",\"method\":\"animate\"}],\"direction\":\"left\",\"pad\":{\"r\":10,\"t\":70},\"showactive\":false,\"type\":\"buttons\",\"x\":0.1,\"xanchor\":\"right\",\"y\":0,\"yanchor\":\"top\"}],\"modebar\":{\"remove\":[\"lasso2d\",\"select2d\"]},\"hoverlabel\":{\"bgcolor\":\"white\"}},\"frames\":[{\"data\":[{\"customdata\":[[598.0,1980,\"United Kingdom\",\"GBR\"],[30.0,1980,\"Sweden\",\"SWE\"],[4312.0,1980,\"Norway\",\"NOR\"],[0.0,1980,\"Korea, Dem. People's Rep\",\"PRK\"],[21.0,1980,\"Ireland\",\"IRL\"],[27.0,1980,\"Iceland\",\"ISL\"],[251.0,1980,\"Finland\",\"FIN\"],[22.0,1980,\"Faroe Islands\",\"FRO\"],[0.0,1980,\"Chile\",\"CHL\"],[27.0,1980,\"Canada\",\"CAN\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United Kingdom\",\"Sweden\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\"],\"legendgroup\":\"\",\"locations\":[\"GBR\",\"SWE\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"CHL\",\"CAN\"],\"marker\":{\"color\":\"#151c97\",\"size\":[598.0,30.0,4312.0,0.0,21.0,27.0,251.0,22.0,0.0,27.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1980\"},{\"data\":[{\"customdata\":[[1133.0,1981,\"United Kingdom\",\"GBR\"],[0.0,1981,\"T\\u00fcrkiye\",null],[50.0,1981,\"Sweden\",\"SWE\"],[8418.0,1981,\"Norway\",\"NOR\"],[0.0,1981,\"Korea, Dem. People's Rep\",\"PRK\"],[35.0,1981,\"Ireland\",\"IRL\"],[39.0,1981,\"Iceland\",\"ISL\"],[312.0,1981,\"Finland\",\"FIN\"],[45.0,1981,\"Faroe Islands\",\"FRO\"],[0.0,1981,\"Chile\",\"CHL\"],[76.0,1981,\"Canada\",\"CAN\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\"],\"legendgroup\":\"\",\"locations\":[\"GBR\",null,\"SWE\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"CHL\",\"CAN\"],\"marker\":{\"color\":\"#151c97\",\"size\":[1133.0,0.0,50.0,8418.0,0.0,35.0,39.0,312.0,45.0,0.0,76.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1981\"},{\"data\":[{\"customdata\":[[2152.0,1982,\"United Kingdom\",\"GBR\"],[0.0,1982,\"T\\u00fcrkiye\",null],[50.0,1982,\"Sweden\",\"SWE\"],[10695.0,1982,\"Norway\",\"NOR\"],[0.0,1982,\"Korea, Dem. People's Rep\",\"PRK\"],[100.0,1982,\"Ireland\",\"IRL\"],[56.0,1982,\"Iceland\",\"ISL\"],[9.0,1982,\"Finland\",\"FIN\"],[60.0,1982,\"Faroe Islands\",\"FRO\"],[0.0,1982,\"Chile\",\"CHL\"],[143.0,1982,\"Canada\",\"CAN\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\"],\"legendgroup\":\"\",\"locations\":[\"GBR\",null,\"SWE\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"CHL\",\"CAN\"],\"marker\":{\"color\":\"#151c97\",\"size\":[2152.0,0.0,50.0,10695.0,0.0,100.0,56.0,9.0,60.0,0.0,143.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1982\"},{\"data\":[{\"customdata\":[[2536.0,1983,\"United Kingdom\",\"GBR\"],[0.0,1983,\"T\\u00fcrkiye\",null],[75.0,1983,\"Sweden\",\"SWE\"],[17298.0,1983,\"Norway\",\"NOR\"],[0.0,1983,\"Korea, Dem. People's Rep\",\"PRK\"],[257.0,1983,\"Ireland\",\"IRL\"],[79.0,1983,\"Iceland\",\"ISL\"],[235.0,1983,\"Finland\",\"FIN\"],[90.0,1983,\"Faroe Islands\",\"FRO\"],[0.0,1983,\"Chile\",\"CHL\"],[68.0,1983,\"Canada\",\"CAN\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\"],\"legendgroup\":\"\",\"locations\":[\"GBR\",null,\"SWE\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"CHL\",\"CAN\"],\"marker\":{\"color\":\"#151c97\",\"size\":[2536.0,0.0,75.0,17298.0,0.0,257.0,79.0,235.0,90.0,0.0,68.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1983\"},{\"data\":[{\"customdata\":[[3912.0,1984,\"United Kingdom\",\"GBR\"],[0.0,1984,\"T\\u00fcrkiye\",null],[118.0,1984,\"Sweden\",\"SWE\"],[150.0,1984,\"Spain\",\"ESP\"],[21881.0,1984,\"Norway\",\"NOR\"],[0.0,1984,\"Korea, Dem. People's Rep\",\"PRK\"],[385.0,1984,\"Ireland\",\"IRL\"],[107.0,1984,\"Iceland\",\"ISL\"],[93.0,1984,\"Finland\",\"FIN\"],[117.0,1984,\"Faroe Islands\",\"FRO\"],[0.0,1984,\"Chile\",\"CHL\"],[222.0,1984,\"Canada\",\"CAN\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\"],\"legendgroup\":\"\",\"locations\":[\"GBR\",null,\"SWE\",\"ESP\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"CHL\",\"CAN\"],\"marker\":{\"color\":\"#151c97\",\"size\":[3912.0,0.0,118.0,150.0,21881.0,0.0,385.0,107.0,93.0,117.0,0.0,222.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1984\"},{\"data\":[{\"customdata\":[[6921.0,1985,\"United Kingdom\",\"GBR\"],[0.0,1985,\"T\\u00fcrkiye\",null],[81.0,1985,\"Sweden\",\"SWE\"],[150.0,1985,\"Spain\",\"ESP\"],[29473.0,1985,\"Norway\",\"NOR\"],[0.0,1985,\"Korea, Dem. People's Rep\",\"PRK\"],[700.0,1985,\"Ireland\",\"IRL\"],[91.0,1985,\"Iceland\",\"ISL\"],[92.0,1985,\"Finland\",\"FIN\"],[940.0,1985,\"Faroe Islands\",\"FRO\"],[0.0,1985,\"Chile\",\"CHL\"],[349.0,1985,\"Canada\",\"CAN\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\"],\"legendgroup\":\"\",\"locations\":[\"GBR\",null,\"SWE\",\"ESP\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"CHL\",\"CAN\"],\"marker\":{\"color\":\"#151c97\",\"size\":[6921.0,0.0,81.0,150.0,29473.0,0.0,700.0,91.0,92.0,940.0,0.0,349.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1985\"},{\"data\":[{\"customdata\":[[8.0,1986,\"United States of America\",\"USA\"],[10337.0,1986,\"United Kingdom\",\"GBR\"],[0.0,1986,\"T\\u00fcrkiye\",null],[160.0,1986,\"Sweden\",\"SWE\"],[150.0,1986,\"Spain\",\"ESP\"],[44831.0,1986,\"Norway\",\"NOR\"],[0.0,1986,\"Korea, Dem. People's Rep\",\"PRK\"],[1215.0,1986,\"Ireland\",\"IRL\"],[123.0,1986,\"Iceland\",\"ISL\"],[93.0,1986,\"Finland\",\"FIN\"],[1370.0,1986,\"Faroe Islands\",\"FRO\"],[0.0,1986,\"Chile\",\"CHL\"],[682.0,1986,\"Canada\",\"CAN\"],[10.0,1986,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[8.0,10337.0,0.0,160.0,150.0,44831.0,0.0,1215.0,123.0,93.0,1370.0,0.0,682.0,10.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1986\"},{\"data\":[{\"customdata\":[[113.0,1987,\"United States of America\",\"USA\"],[12721.0,1987,\"United Kingdom\",\"GBR\"],[0.0,1987,\"T\\u00fcrkiye\",null],[224.0,1987,\"Sweden\",\"SWE\"],[150.0,1987,\"Spain\",\"ESP\"],[46453.0,1987,\"Norway\",\"NOR\"],[0.0,1987,\"Korea, Dem. People's Rep\",\"PRK\"],[2300.0,1987,\"Ireland\",\"IRL\"],[490.0,1987,\"Iceland\",\"ISL\"],[3.0,1987,\"Greece\",\"GRC\"],[11.0,1987,\"Finland\",\"FIN\"],[3193.0,1987,\"Faroe Islands\",\"FRO\"],[41.0,1987,\"Chile\",\"CHL\"],[1385.0,1987,\"Canada\",\"CAN\"],[62.0,1987,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[113.0,12721.0,0.0,224.0,150.0,46453.0,0.0,2300.0,490.0,3.0,11.0,3193.0,41.0,1385.0,62.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1987\"},{\"data\":[{\"customdata\":[[898.0,1988,\"United States of America\",\"USA\"],[17951.0,1988,\"United Kingdom\",\"GBR\"],[0.0,1988,\"T\\u00fcrkiye\",null],[363.0,1988,\"Sweden\",\"SWE\"],[150.0,1988,\"Spain\",\"ESP\"],[0.0,1988,\"Portugal\",\"PRT\"],[78744.0,1988,\"Norway\",\"NOR\"],[0.0,1988,\"Korea, Dem. People's Rep\",\"PRK\"],[4075.0,1988,\"Ireland\",\"IRL\"],[1053.0,1988,\"Iceland\",\"ISL\"],[11.0,1988,\"Greece\",\"GRC\"],[117.0,1988,\"Finland\",\"FIN\"],[3400.0,1988,\"Faroe Islands\",\"FRO\"],[165.0,1988,\"Chile\",\"CHL\"],[3431.0,1988,\"Canada\",\"CAN\"],[240.0,1988,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Portugal\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[898.0,17951.0,0.0,363.0,150.0,0.0,78744.0,0.0,4075.0,1053.0,11.0,117.0,3400.0,165.0,3431.0,240.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1988\"},{\"data\":[{\"customdata\":[[2554.0,1989,\"United States of America\",\"USA\"],[28603.0,1989,\"United Kingdom\",\"GBR\"],[0.0,1989,\"T\\u00fcrkiye\",null],[771.0,1989,\"Sweden\",\"SWE\"],[150.0,1989,\"Spain\",\"ESP\"],[100.0,1989,\"Portugal\",\"PRT\"],[111337.0,1989,\"Norway\",\"NOR\"],[0.0,1989,\"Korea, Dem. People's Rep\",\"PRK\"],[5500.0,1989,\"Ireland\",\"IRL\"],[1480.0,1989,\"Iceland\",\"ISL\"],[19.0,1989,\"Greece\",\"GRC\"],[71.0,1989,\"Finland\",\"FIN\"],[7901.0,1989,\"Faroe Islands\",\"FRO\"],[1860.0,1989,\"Chile\",\"CHL\"],[5967.0,1989,\"Canada\",\"CAN\"],[1750.0,1989,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Portugal\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[2554.0,28603.0,0.0,771.0,150.0,100.0,111337.0,0.0,5500.0,1480.0,19.0,71.0,7901.0,1860.0,5967.0,1750.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1989\"},{\"data\":[{\"customdata\":[[3185.0,1990,\"United States of America\",\"USA\"],[32004.0,1990,\"United Kingdom\",\"GBR\"],[300.0,1990,\"T\\u00fcrkiye\",null],[602.0,1990,\"Sweden\",\"SWE\"],[355.0,1990,\"Spain\",\"ESP\"],[120.0,1990,\"Portugal\",\"PRT\"],[145990.0,1990,\"Norway\",\"NOR\"],[0.0,1990,\"Korea, Dem. People's Rep\",\"PRK\"],[6323.0,1990,\"Ireland\",\"IRL\"],[2716.0,1990,\"Iceland\",\"ISL\"],[12.0,1990,\"Greece\",\"GRC\"],[157.0,1990,\"Finland\",\"FIN\"],[13025.0,1990,\"Faroe Islands\",\"FRO\"],[9478.0,1990,\"Chile\",\"CHL\"],[9625.0,1990,\"Canada\",\"CAN\"],[1750.0,1990,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Portugal\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[3185.0,32004.0,300.0,602.0,355.0,120.0,145990.0,0.0,6323.0,2716.0,12.0,157.0,13025.0,9478.0,9625.0,1750.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1990\"},{\"data\":[{\"customdata\":[[6661.0,1991,\"United States of America\",\"USA\"],[40657.0,1991,\"United Kingdom\",\"GBR\"],[1500.0,1991,\"T\\u00fcrkiye\",null],[270.0,1991,\"Sweden\",\"SWE\"],[553.0,1991,\"Spain\",\"ESP\"],[100.0,1991,\"Portugal\",\"PRT\"],[154900.0,1991,\"Norway\",\"NOR\"],[0.0,1991,\"Korea, Dem. People's Rep\",\"PRK\"],[9300.0,1991,\"Ireland\",\"IRL\"],[2566.0,1991,\"Iceland\",\"ISL\"],[33.0,1991,\"Greece\",\"GRC\"],[574.0,1991,\"France\",\"FRA\"],[146.0,1991,\"Finland\",\"FIN\"],[17914.0,1991,\"Faroe Islands\",\"FRO\"],[14957.0,1991,\"Chile\",\"CHL\"],[13499.0,1991,\"Canada\",\"CAN\"],[2653.0,1991,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Portugal\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[6661.0,40657.0,1500.0,270.0,553.0,100.0,154900.0,0.0,9300.0,2566.0,33.0,574.0,146.0,17914.0,14957.0,13499.0,2653.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1991\"},{\"data\":[{\"customdata\":[[10028.0,1992,\"United States of America\",\"USA\"],[36302.0,1992,\"United Kingdom\",\"GBR\"],[680.0,1992,\"T\\u00fcrkiye\",null],[388.0,1992,\"Sweden\",\"SWE\"],[782.0,1992,\"Spain\",\"ESP\"],[0.0,1992,\"Russian Federation\",\"RUS\"],[0.0,1992,\"Portugal\",\"PRT\"],[124138.0,1992,\"Norway\",\"NOR\"],[0.0,1992,\"Korea, Dem. People's Rep\",\"PRK\"],[9696.0,1992,\"Ireland\",\"IRL\"],[2125.0,1992,\"Iceland\",\"ISL\"],[20.0,1992,\"Greece\",\"GRC\"],[600.0,1992,\"France\",\"FRA\"],[85.0,1992,\"Finland\",\"FIN\"],[18364.0,1992,\"Faroe Islands\",\"FRO\"],[23715.0,1992,\"Chile\",\"CHL\"],[17305.0,1992,\"Canada\",\"CAN\"],[3300.0,1992,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Portugal\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[10028.0,36302.0,680.0,388.0,782.0,0.0,0.0,124138.0,0.0,9696.0,2125.0,20.0,600.0,85.0,18364.0,23715.0,17305.0,3300.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1992\"},{\"data\":[{\"customdata\":[[10750.0,1993,\"United States of America\",\"USA\"],[48791.0,1993,\"United Kingdom\",\"GBR\"],[791.0,1993,\"T\\u00fcrkiye\",null],[4.0,1993,\"Sweden\",\"SWE\"],[562.0,1993,\"Spain\",\"ESP\"],[0.0,1993,\"Russian Federation\",\"RUS\"],[0.0,1993,\"Portugal\",\"PRT\"],[155581.0,1993,\"Norway\",\"NOR\"],[0.0,1993,\"Korea, Dem. People's Rep\",\"PRK\"],[12366.0,1993,\"Ireland\",\"IRL\"],[2348.0,1993,\"Iceland\",\"ISL\"],[30.0,1993,\"Greece\",\"GRC\"],[564.0,1993,\"France\",\"FRA\"],[0.0,1993,\"Finland\",\"FIN\"],[17660.0,1993,\"Faroe Islands\",\"FRO\"],[29180.0,1993,\"Chile\",\"CHL\"],[23483.0,1993,\"Canada\",\"CAN\"],[3500.0,1993,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Portugal\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[10750.0,48791.0,791.0,4.0,562.0,0.0,0.0,155581.0,0.0,12366.0,2348.0,30.0,564.0,0.0,17660.0,29180.0,23483.0,3500.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1993\"},{\"data\":[{\"customdata\":[[10906.0,1994,\"United States of America\",\"USA\"],[64266.0,1994,\"United Kingdom\",\"GBR\"],[434.0,1994,\"T\\u00fcrkiye\",null],[7.0,1994,\"Sweden\",\"SWE\"],[909.0,1994,\"Spain\",\"ESP\"],[0.0,1994,\"Russian Federation\",\"RUS\"],[0.0,1994,\"Portugal\",\"PRT\"],[202459.0,1994,\"Norway\",\"NOR\"],[0.0,1994,\"Korea, Dem. People's Rep\",\"PRK\"],[11616.0,1994,\"Ireland\",\"IRL\"],[2588.0,1994,\"Iceland\",\"ISL\"],[74.0,1994,\"Greece\",\"GRC\"],[856.0,1994,\"France\",\"FRA\"],[0.0,1994,\"Finland\",\"FIN\"],[14868.0,1994,\"Faroe Islands\",\"FRO\"],[34175.0,1994,\"Chile\",\"CHL\"],[27773.0,1994,\"Canada\",\"CAN\"],[4000.0,1994,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Portugal\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[10906.0,64266.0,434.0,7.0,909.0,0.0,0.0,202459.0,0.0,11616.0,2588.0,74.0,856.0,0.0,14868.0,34175.0,27773.0,4000.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1994\"},{\"data\":[{\"customdata\":[[14075.0,1995,\"United States of America\",\"USA\"],[70322.0,1995,\"United Kingdom\",\"GBR\"],[654.0,1995,\"T\\u00fcrkiye\",null],[19.0,1995,\"Sweden\",\"SWE\"],[695.0,1995,\"Spain\",\"ESP\"],[0.0,1995,\"Russian Federation\",\"RUS\"],[0.0,1995,\"Portugal\",\"PRT\"],[261522.0,1995,\"Norway\",\"NOR\"],[0.0,1995,\"Korea, Dem. People's Rep\",\"PRK\"],[11811.0,1995,\"Ireland\",\"IRL\"],[2591.0,1995,\"Iceland\",\"ISL\"],[7.0,1995,\"Greece\",\"GRC\"],[894.0,1995,\"France\",\"FRA\"],[0.0,1995,\"Finland\",\"FIN\"],[8539.0,1995,\"Faroe Islands\",\"FRO\"],[54250.0,1995,\"Chile\",\"CHL\"],[33674.0,1995,\"Canada\",\"CAN\"],[6192.0,1995,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Portugal\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[14075.0,70322.0,654.0,19.0,695.0,0.0,0.0,261522.0,0.0,11811.0,2591.0,7.0,894.0,0.0,8539.0,54250.0,33674.0,6192.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1995\"},{\"data\":[{\"customdata\":[[13906.0,1996,\"United States of America\",\"USA\"],[83344.0,1996,\"United Kingdom\",\"GBR\"],[193.0,1996,\"T\\u00fcrkiye\",null],[12.0,1996,\"Sweden\",\"SWE\"],[726.0,1996,\"Spain\",\"ESP\"],[0.0,1996,\"Russian Federation\",\"RUS\"],[4.0,1996,\"Portugal\",\"PRT\"],[297557.0,1996,\"Norway\",\"NOR\"],[0.0,1996,\"Korea, Dem. People's Rep\",\"PRK\"],[14025.0,1996,\"Ireland\",\"IRL\"],[2832.0,1996,\"Iceland\",\"ISL\"],[9.0,1996,\"Greece\",\"GRC\"],[800.0,1996,\"France\",\"FRA\"],[0.0,1996,\"Finland\",\"FIN\"],[17049.0,1996,\"Faroe Islands\",\"FRO\"],[77327.0,1996,\"Chile\",\"CHL\"],[36475.0,1996,\"Canada\",\"CAN\"],[7647.0,1996,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Portugal\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[13906.0,83344.0,193.0,12.0,726.0,0.0,4.0,297557.0,0.0,14025.0,2832.0,9.0,800.0,0.0,17049.0,77327.0,36475.0,7647.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1996\"},{\"data\":[{\"customdata\":[[18005.0,1997,\"United States of America\",\"USA\"],[99422.0,1997,\"United Kingdom\",\"GBR\"],[50.0,1997,\"T\\u00fcrkiye\",null],[0.0,1997,\"Sweden\",\"SWE\"],[851.0,1997,\"Spain\",\"ESP\"],[0.0,1997,\"Russian Federation\",\"RUS\"],[250.0,1997,\"Portugal\",\"PRT\"],[332581.0,1997,\"Norway\",\"NOR\"],[0.0,1997,\"Korea, Dem. People's Rep\",\"PRK\"],[15441.0,1997,\"Ireland\",\"IRL\"],[2513.0,1997,\"Iceland\",\"ISL\"],[12.0,1997,\"Greece\",\"GRC\"],[950.0,1997,\"France\",\"FRA\"],[0.0,1997,\"Finland\",\"FIN\"],[21103.0,1997,\"Faroe Islands\",\"FRO\"],[96675.0,1997,\"Chile\",\"CHL\"],[51015.0,1997,\"Canada\",\"CAN\"],[7648.0,1997,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Portugal\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[18005.0,99422.0,50.0,0.0,851.0,0.0,250.0,332581.0,0.0,15441.0,2513.0,12.0,950.0,0.0,21103.0,96675.0,51015.0,7648.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1997\"},{\"data\":[{\"customdata\":[[14507.0,1998,\"United States of America\",\"USA\"],[110917.0,1998,\"United Kingdom\",\"GBR\"],[40.0,1998,\"T\\u00fcrkiye\",null],[0.0,1998,\"Sweden\",\"SWE\"],[798.0,1998,\"Spain\",\"ESP\"],[0.0,1998,\"Russian Federation\",\"RUS\"],[360806.0,1998,\"Norway\",\"NOR\"],[0.0,1998,\"Korea, Dem. People's Rep\",\"PRK\"],[14860.0,1998,\"Ireland\",\"IRL\"],[2742.0,1998,\"Iceland\",\"ISL\"],[11.0,1998,\"Greece\",\"GRC\"],[760.0,1998,\"France\",\"FRA\"],[0.0,1998,\"Finland\",\"FIN\"],[19176.0,1998,\"Faroe Islands\",\"FRO\"],[107066.0,1998,\"Chile\",\"CHL\"],[49475.0,1998,\"Canada\",\"CAN\"],[7069.0,1998,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[14507.0,110917.0,40.0,0.0,798.0,0.0,360806.0,0.0,14860.0,2742.0,11.0,760.0,0.0,19176.0,107066.0,49475.0,7069.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1998\"},{\"data\":[{\"customdata\":[[17739.0,1999,\"United States of America\",\"USA\"],[126686.0,1999,\"United Kingdom\",\"GBR\"],[0.0,1999,\"T\\u00fcrkiye\",null],[0.0,1999,\"Sweden\",\"SWE\"],[618.0,1999,\"Spain\",\"ESP\"],[5.0,1999,\"Russian Federation\",\"RUS\"],[425154.0,1999,\"Norway\",\"NOR\"],[0.0,1999,\"Korea, Dem. People's Rep\",\"PRK\"],[18076.0,1999,\"Ireland\",\"IRL\"],[2900.0,1999,\"Iceland\",\"ISL\"],[9.0,1999,\"Greece\",\"GRC\"],[750.0,1999,\"France\",\"FRA\"],[0.0,1999,\"Finland\",\"FIN\"],[39252.0,1999,\"Faroe Islands\",\"FRO\"],[103242.0,1999,\"Chile\",\"CHL\"],[61990.0,1999,\"Canada\",\"CAN\"],[9195.0,1999,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[17739.0,126686.0,0.0,0.0,618.0,5.0,425154.0,0.0,18076.0,2900.0,9.0,750.0,0.0,39252.0,103242.0,61990.0,9195.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1999\"},{\"data\":[{\"customdata\":[[22395.0,2000,\"United States of America\",\"USA\"],[128959.0,2000,\"United Kingdom\",\"GBR\"],[0.0,2000,\"T\\u00fcrkiye\",null],[0.0,2000,\"Sweden\",\"SWE\"],[226.0,2000,\"Spain\",\"ESP\"],[0.0,2000,\"Russian Federation\",\"RUS\"],[440061.0,2000,\"Norway\",\"NOR\"],[0.0,2000,\"Korea, Dem. People's Rep\",\"PRK\"],[17648.0,2000,\"Ireland\",\"IRL\"],[2593.0,2000,\"Iceland\",\"ISL\"],[17.0,2000,\"Greece\",\"GRC\"],[102.0,2000,\"France\",\"FRA\"],[0.0,2000,\"Finland\",\"FIN\"],[33508.0,2000,\"Faroe Islands\",\"FRO\"],[166897.0,2000,\"Chile\",\"CHL\"],[72495.0,2000,\"Canada\",\"CAN\"],[10907.0,2000,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[22395.0,128959.0,0.0,0.0,226.0,0.0,440061.0,0.0,17648.0,2593.0,17.0,102.0,0.0,33508.0,166897.0,72495.0,10907.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2000\"},{\"data\":[{\"customdata\":[[20769.0,2001,\"United States of America\",\"USA\"],[138519.0,2001,\"United Kingdom\",\"GBR\"],[0.0,2001,\"T\\u00fcrkiye\",null],[0.0,2001,\"Sweden\",\"SWE\"],[323.0,2001,\"Spain\",\"ESP\"],[0.0,2001,\"Russian Federation\",\"RUS\"],[436103.0,2001,\"Norway\",\"NOR\"],[0.0,2001,\"Korea, Dem. People's Rep\",\"PRK\"],[23312.0,2001,\"Ireland\",\"IRL\"],[2645.0,2001,\"Iceland\",\"ISL\"],[23.0,2001,\"Greece\",\"GRC\"],[90.0,2001,\"France\",\"FRA\"],[0.0,2001,\"Finland\",\"FIN\"],[46041.0,2001,\"Faroe Islands\",\"FRO\"],[253850.0,2001,\"Chile\",\"CHL\"],[95606.0,2001,\"Canada\",\"CAN\"],[12724.0,2001,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[20769.0,138519.0,0.0,0.0,323.0,0.0,436103.0,0.0,23312.0,2645.0,23.0,90.0,0.0,46041.0,253850.0,95606.0,12724.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2001\"},{\"data\":[{\"customdata\":[[12734.0,2002,\"United States of America\",\"USA\"],[145609.0,2002,\"United Kingdom\",\"GBR\"],[0.0,2002,\"T\\u00fcrkiye\",null],[0.0,2002,\"Sweden\",\"SWE\"],[152.0,2002,\"Spain\",\"ESP\"],[0.0,2002,\"Russian Federation\",\"RUS\"],[462495.0,2002,\"Norway\",\"NOR\"],[0.0,2002,\"Korea, Dem. People's Rep\",\"PRK\"],[23231.0,2002,\"Ireland\",\"IRL\"],[1471.0,2002,\"Iceland\",\"ISL\"],[28.0,2002,\"Greece\",\"GRC\"],[443.0,2002,\"France\",\"FRA\"],[0.0,2002,\"Finland\",\"FIN\"],[44953.0,2002,\"Faroe Islands\",\"FRO\"],[15.0,2002,\"Denmark\",\"DNK\"],[265726.0,2002,\"Chile\",\"CHL\"],[114921.0,2002,\"Canada\",\"CAN\"],[14356.0,2002,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[12734.0,145609.0,0.0,0.0,152.0,0.0,462495.0,0.0,23231.0,1471.0,28.0,443.0,0.0,44953.0,15.0,265726.0,114921.0,14356.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2002\"},{\"data\":[{\"customdata\":[[16315.0,2003,\"United States of America\",\"USA\"],[145609.0,2003,\"United Kingdom\",\"GBR\"],[0.0,2003,\"T\\u00fcrkiye\",null],[0.0,2003,\"Sweden\",\"SWE\"],[27.0,2003,\"Spain\",\"ESP\"],[300.0,2003,\"Russian Federation\",\"RUS\"],[509544.0,2003,\"Norway\",\"NOR\"],[0.0,2003,\"Korea, Dem. People's Rep\",\"PRK\"],[16347.0,2003,\"Ireland\",\"IRL\"],[3708.0,2003,\"Iceland\",\"ISL\"],[9.0,2003,\"Greece\",\"GRC\"],[544.0,2003,\"France\",\"FRA\"],[0.0,2003,\"Finland\",\"FIN\"],[52526.0,2003,\"Faroe Islands\",\"FRO\"],[16.0,2003,\"Denmark\",\"DNK\"],[280301.0,2003,\"Chile\",\"CHL\"],[107228.0,2003,\"Canada\",\"CAN\"],[15208.0,2003,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16315.0,145609.0,0.0,0.0,27.0,300.0,509544.0,0.0,16347.0,3708.0,9.0,544.0,0.0,52526.0,16.0,280301.0,107228.0,15208.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2003\"},{\"data\":[{\"customdata\":[[15127.0,2004,\"United States of America\",\"USA\"],[158099.0,2004,\"United Kingdom\",\"GBR\"],[0.0,2004,\"T\\u00fcrkiye\",null],[0.0,2004,\"Sweden\",\"SWE\"],[15.0,2004,\"Spain\",\"ESP\"],[203.0,2004,\"Russian Federation\",\"RUS\"],[563815.0,2004,\"Norway\",\"NOR\"],[0.0,2004,\"Korea, Dem. People's Rep\",\"PRK\"],[14067.0,2004,\"Ireland\",\"IRL\"],[6624.0,2004,\"Iceland\",\"ISL\"],[7.0,2004,\"Greece\",\"GRC\"],[735.0,2004,\"France\",\"FRA\"],[0.0,2004,\"Finland\",\"FIN\"],[40985.0,2004,\"Faroe Islands\",\"FRO\"],[16.0,2004,\"Denmark\",\"DNK\"],[348983.0,2004,\"Chile\",\"CHL\"],[96774.0,2004,\"Canada\",\"CAN\"],[16476.0,2004,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[15127.0,158099.0,0.0,0.0,15.0,203.0,563815.0,0.0,14067.0,6624.0,7.0,735.0,0.0,40985.0,16.0,348983.0,96774.0,16476.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2004\"},{\"data\":[{\"customdata\":[[9401.0,2005,\"United States of America\",\"USA\"],[129823.0,2005,\"United Kingdom\",\"GBR\"],[0.0,2005,\"T\\u00fcrkiye\",null],[0.0,2005,\"Sweden\",\"SWE\"],[0.0,2005,\"Spain\",\"ESP\"],[204.0,2005,\"Russian Federation\",\"RUS\"],[586512.0,2005,\"Norway\",\"NOR\"],[0.0,2005,\"Korea, Dem. People's Rep\",\"PRK\"],[13764.0,2005,\"Ireland\",\"IRL\"],[6488.0,2005,\"Iceland\",\"ISL\"],[6.0,2005,\"Greece\",\"GRC\"],[1190.0,2005,\"France\",\"FRA\"],[0.0,2005,\"Finland\",\"FIN\"],[18962.0,2005,\"Faroe Islands\",\"FRO\"],[18.0,2005,\"Denmark\",\"DNK\"],[385779.0,2005,\"Chile\",\"CHL\"],[98370.0,2005,\"Canada\",\"CAN\"],[16780.0,2005,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[9401.0,129823.0,0.0,0.0,0.0,204.0,586512.0,0.0,13764.0,6488.0,6.0,1190.0,0.0,18962.0,18.0,385779.0,98370.0,16780.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2005\"},{\"data\":[{\"customdata\":[[10485.0,2006,\"United States of America\",\"USA\"],[131973.0,2006,\"United Kingdom\",\"GBR\"],[0.0,2006,\"T\\u00fcrkiye\",null],[0.0,2006,\"Sweden\",\"SWE\"],[2.0,2006,\"Spain\",\"ESP\"],[229.0,2006,\"Russian Federation\",\"RUS\"],[629888.0,2006,\"Norway\",\"NOR\"],[0.0,2006,\"Korea, Dem. People's Rep\",\"PRK\"],[11174.0,2006,\"Ireland\",\"IRL\"],[5224.0,2006,\"Iceland\",\"ISL\"],[11.0,2006,\"Greece\",\"GRC\"],[1391.0,2006,\"France\",\"FRA\"],[0.0,2006,\"Finland\",\"FIN\"],[13078.0,2006,\"Faroe Islands\",\"FRO\"],[18.0,2006,\"Denmark\",\"DNK\"],[376476.0,2006,\"Chile\",\"CHL\"],[118061.0,2006,\"Canada\",\"CAN\"],[20710.0,2006,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[10485.0,131973.0,0.0,0.0,2.0,229.0,629888.0,0.0,11174.0,5224.0,11.0,1391.0,0.0,13078.0,18.0,376476.0,118061.0,20710.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2006\"},{\"data\":[{\"customdata\":[[11001.0,2007,\"United States of America\",\"USA\"],[130104.0,2007,\"United Kingdom\",\"GBR\"],[0.0,2007,\"T\\u00fcrkiye\",null],[0.0,2007,\"Sweden\",\"SWE\"],[0.0,2007,\"Spain\",\"ESP\"],[111.0,2007,\"Russian Federation\",\"RUS\"],[744222.0,2007,\"Norway\",\"NOR\"],[0.0,2007,\"Korea, Dem. People's Rep\",\"PRK\"],[9923.0,2007,\"Ireland\",\"IRL\"],[1197.0,2007,\"Iceland\",\"ISL\"],[8.0,2007,\"Greece\",\"GRC\"],[1100.0,2007,\"France\",\"FRA\"],[0.0,2007,\"Finland\",\"FIN\"],[22305.0,2007,\"Faroe Islands\",\"FRO\"],[16.0,2007,\"Denmark\",\"DNK\"],[331042.0,2007,\"Chile\",\"CHL\"],[102509.0,2007,\"Canada\",\"CAN\"],[25336.0,2007,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[11001.0,130104.0,0.0,0.0,0.0,111.0,744222.0,0.0,9923.0,1197.0,8.0,1100.0,0.0,22305.0,16.0,331042.0,102509.0,25336.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2007\"},{\"data\":[{\"customdata\":[[16714.0,2008,\"United States of America\",\"USA\"],[128744.0,2008,\"United Kingdom\",\"GBR\"],[0.0,2008,\"T\\u00fcrkiye\",null],[10.0,2008,\"Sweden\",\"SWE\"],[0.0,2008,\"Spain\",\"ESP\"],[51.0,2008,\"Russian Federation\",\"RUS\"],[737694.0,2008,\"Norway\",\"NOR\"],[9217.0,2008,\"Ireland\",\"IRL\"],[330.0,2008,\"Iceland\",\"ISL\"],[8.0,2008,\"Greece\",\"GRC\"],[1335.0,2008,\"France\",\"FRA\"],[0.0,2008,\"Finland\",\"FIN\"],[38494.0,2008,\"Faroe Islands\",\"FRO\"],[11.0,2008,\"Denmark\",\"DNK\"],[388847.0,2008,\"Chile\",\"CHL\"],[104075.0,2008,\"Canada\",\"CAN\"],[25736.9,2008,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Ireland\",\"Iceland\",\"Greece\",\"France\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16714.0,128744.0,0.0,10.0,0.0,51.0,737694.0,9217.0,330.0,8.0,1335.0,0.0,38494.0,11.0,388847.0,104075.0,25736.9],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2008\"},{\"data\":[{\"customdata\":[[14074.0,2009,\"United States of America\",\"USA\"],[144663.0,2009,\"United Kingdom\",\"GBR\"],[0.0,2009,\"T\\u00fcrkiye\",null],[0.0,2009,\"Sweden\",\"SWE\"],[110.0,2009,\"Spain\",\"ESP\"],[2126.0,2009,\"Russian Federation\",\"RUS\"],[862907.7,2009,\"Norway\",\"NOR\"],[10.0,2009,\"Korea, Dem. People's Rep\",\"PRK\"],[12210.0,2009,\"Ireland\",\"IRL\"],[714.0,2009,\"Iceland\",\"ISL\"],[22.0,2009,\"Greece\",\"GRC\"],[0.0,2009,\"Finland\",\"FIN\"],[51383.0,2009,\"Faroe Islands\",\"FRO\"],[1.9,2009,\"Denmark\",\"DNK\"],[233308.0,2009,\"Chile\",\"CHL\"],[100212.0,2009,\"Canada\",\"CAN\"],[0.33,2009,\"Bulgaria\",\"BGR\"],[29893.0,2009,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Bulgaria\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"BGR\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[14074.0,144663.0,0.0,0.0,110.0,2126.0,862907.7,10.0,12210.0,714.0,22.0,0.0,51383.0,1.9,233308.0,100212.0,0.33,29893.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2009\"},{\"data\":[{\"customdata\":[[19535.0,2010,\"United States of America\",\"USA\"],[154633.0,2010,\"United Kingdom\",\"GBR\"],[0.0,2010,\"T\\u00fcrkiye\",null],[0.0,2010,\"Sweden\",\"SWE\"],[79.2,2010,\"Spain\",\"ESP\"],[4500.0,2010,\"Russian Federation\",\"RUS\"],[939536.0,2010,\"Norway\",\"NOR\"],[10.0,2010,\"Korea, Dem. People's Rep\",\"PRK\"],[15691.0,2010,\"Ireland\",\"IRL\"],[1068.0,2010,\"Iceland\",\"ISL\"],[10.0,2010,\"Greece\",\"GRC\"],[0.0,2010,\"Finland\",\"FIN\"],[45391.0,2010,\"Faroe Islands\",\"FRO\"],[15.0,2010,\"Denmark\",\"DNK\"],[123233.0,2010,\"Chile\",\"CHL\"],[101544.0,2010,\"Canada\",\"CAN\"],[31806.79,2010,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[19535.0,154633.0,0.0,0.0,79.2,4500.0,939536.0,10.0,15691.0,1068.0,10.0,0.0,45391.0,15.0,123233.0,101544.0,31806.79],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2010\"},{\"data\":[{\"customdata\":[[18595.0,2011,\"United States of America\",\"USA\"],[158309.5,2011,\"United Kingdom\",\"GBR\"],[0.0,2011,\"T\\u00fcrkiye\",null],[0.0,2011,\"Sweden\",\"SWE\"],[0.0,2011,\"Spain\",\"ESP\"],[8500.0,2011,\"Russian Federation\",\"RUS\"],[1064868.0,2011,\"Norway\",\"NOR\"],[15.0,2011,\"Korea, Dem. People's Rep\",\"PRK\"],[12196.0,2011,\"Ireland\",\"IRL\"],[1083.0,2011,\"Iceland\",\"ISL\"],[0.0,2011,\"Greece\",\"GRC\"],[0.0,2011,\"Finland\",\"FIN\"],[60473.0,2011,\"Faroe Islands\",\"FRO\"],[10.0,2011,\"Denmark\",\"DNK\"],[264349.0,2011,\"Chile\",\"CHL\"],[110328.0,2011,\"Canada\",\"CAN\"],[36662.04,2011,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[18595.0,158309.5,0.0,0.0,0.0,8500.0,1064868.0,15.0,12196.0,1083.0,0.0,0.0,60473.0,10.0,264349.0,110328.0,36662.04],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2011\"},{\"data\":[{\"customdata\":[[19295.0,2012,\"United States of America\",\"USA\"],[162547.0,2012,\"United Kingdom\",\"GBR\"],[0.0,2012,\"T\\u00fcrkiye\",null],[0.0,2012,\"Sweden\",\"SWE\"],[4.0,2012,\"Spain\",\"ESP\"],[8754.0,2012,\"Russian Federation\",\"RUS\"],[1232094.9,2012,\"Norway\",\"NOR\"],[15.0,2012,\"Korea, Dem. People's Rep\",\"PRK\"],[12440.0,2012,\"Ireland\",\"IRL\"],[2923.0,2012,\"Iceland\",\"ISL\"],[0.0,2012,\"Greece\",\"GRC\"],[0.0,2012,\"Finland\",\"FIN\"],[76564.0,2012,\"Faroe Islands\",\"FRO\"],[0.2,2012,\"Denmark\",\"DNK\"],[399678.0,2012,\"Chile\",\"CHL\"],[116101.0,2012,\"Canada\",\"CAN\"],[43982.0,2012,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[19295.0,162547.0,0.0,0.0,4.0,8754.0,1232094.9,15.0,12440.0,2923.0,0.0,0.0,76564.0,0.2,399678.0,116101.0,43982.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2012\"},{\"data\":[{\"customdata\":[[18866.0,2013,\"United States of America\",\"USA\"],[163240.0,2013,\"United Kingdom\",\"GBR\"],[0.0,2013,\"T\\u00fcrkiye\",null],[6.0,2013,\"Sweden\",\"SWE\"],[0.0,2013,\"Spain\",\"ESP\"],[22500.0,2013,\"Russian Federation\",\"RUS\"],[1168324.0,2013,\"Norway\",\"NOR\"],[15.0,2013,\"Korea, Dem. People's Rep\",\"PRK\"],[9124.9,2013,\"Ireland\",\"IRL\"],[3018.0,2013,\"Iceland\",\"ISL\"],[0.0,2013,\"Greece\",\"GRC\"],[0.0,2013,\"Finland\",\"FIN\"],[75821.0,2013,\"Faroe Islands\",\"FRO\"],[10.0,2013,\"Denmark\",\"DNK\"],[492329.0,2013,\"Chile\",\"CHL\"],[97629.0,2013,\"Canada\",\"CAN\"],[42825.01,2013,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"T\\u00fcrkiye\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[18866.0,163240.0,0.0,6.0,0.0,22500.0,1168324.0,15.0,9124.9,3018.0,0.0,0.0,75821.0,10.0,492329.0,97629.0,42825.01],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2013\"},{\"data\":[{\"customdata\":[[18719.0,2014,\"United States of America\",\"USA\"],[179028.0,2014,\"United Kingdom\",\"GBR\"],[8.0,2014,\"Sweden\",\"SWE\"],[3.8,2014,\"Spain\",\"ESP\"],[18675.0,2014,\"Russian Federation\",\"RUS\"],[1258355.9,2014,\"Norway\",\"NOR\"],[20.0,2014,\"Korea, Dem. People's Rep\",\"PRK\"],[9367.6,2014,\"Ireland\",\"IRL\"],[3965.0,2014,\"Iceland\",\"ISL\"],[0.0,2014,\"Greece\",\"GRC\"],[0.0,2014,\"Finland\",\"FIN\"],[86454.0,2014,\"Faroe Islands\",\"FRO\"],[405.0,2014,\"Denmark\",\"DNK\"],[644459.0,2014,\"Chile\",\"CHL\"],[86347.0,2014,\"Canada\",\"CAN\"],[41590.66,2014,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[18719.0,179028.0,8.0,3.8,18675.0,1258355.9,20.0,9367.6,3965.0,0.0,0.0,86454.0,405.0,644459.0,86347.0,41590.66],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2014\"},{\"data\":[{\"customdata\":[[18719.0,2015,\"United States of America\",\"USA\"],[171731.0,2015,\"United Kingdom\",\"GBR\"],[7.785,2015,\"Spain\",\"ESP\"],[10834.0,2015,\"Russian Federation\",\"RUS\"],[1303345.8,2015,\"Norway\",\"NOR\"],[20.0,2015,\"Korea, Dem. People's Rep\",\"PRK\"],[13116.0,2015,\"Ireland\",\"IRL\"],[3260.0,2015,\"Iceland\",\"ISL\"],[0.0,2015,\"Greece\",\"GRC\"],[0.0,2015,\"Finland\",\"FIN\"],[80600.0,2015,\"Faroe Islands\",\"FRO\"],[428.0,2015,\"Denmark\",\"DNK\"],[608546.0,2015,\"Chile\",\"CHL\"],[121926.0,2015,\"Canada\",\"CAN\"],[48330.56,2015,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[18719.0,171731.0,7.785,10834.0,1303345.8,20.0,13116.0,3260.0,0.0,0.0,80600.0,428.0,608546.0,121926.0,48330.56],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2015\"},{\"data\":[{\"customdata\":[[16185.0,2016,\"United States of America\",\"USA\"],[162820.0,2016,\"United Kingdom\",\"GBR\"],[1.0,2016,\"Sweden\",\"SWE\"],[5.162,2016,\"Spain\",\"ESP\"],[12857.0,2016,\"Russian Federation\",\"RUS\"],[1233619.2,2016,\"Norway\",\"NOR\"],[20.0,2016,\"Korea, Dem. People's Rep\",\"PRK\"],[16300.0,2016,\"Ireland\",\"IRL\"],[8420.0,2016,\"Iceland\",\"ISL\"],[0.0,2016,\"Greece\",\"GRC\"],[0.0,2016,\"Finland\",\"FIN\"],[83300.0,2016,\"Faroe Islands\",\"FRO\"],[1289.0,2016,\"Denmark\",\"DNK\"],[532225.0,2016,\"Chile\",\"CHL\"],[123522.0,2016,\"Canada\",\"CAN\"],[56115.197,2016,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"Sweden\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16185.0,162820.0,1.0,5.162,12857.0,1233619.2,20.0,16300.0,8420.0,0.0,0.0,83300.0,1289.0,532225.0,123522.0,56115.197],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2016\"},{\"data\":[{\"customdata\":[[14685.0,2017,\"United States of America\",\"USA\"],[189707.0,2017,\"United Kingdom\",\"GBR\"],[24.39,2017,\"Spain\",\"ESP\"],[13016.0,2017,\"Russian Federation\",\"RUS\"],[1236353.0,2017,\"Norway\",\"NOR\"],[50.0,2017,\"Korea, Dem. People's Rep\",\"PRK\"],[18342.0,2017,\"Ireland\",\"IRL\"],[11265.0,2017,\"Iceland\",\"ISL\"],[0.0,2017,\"Greece\",\"GRC\"],[0.0,2017,\"Finland\",\"FIN\"],[86800.0,2017,\"Faroe Islands\",\"FRO\"],[807.0,2017,\"Denmark\",\"DNK\"],[614180.46,2017,\"Chile\",\"CHL\"],[120553.0,2017,\"Canada\",\"CAN\"],[52580.2,2017,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Greece\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[14685.0,189707.0,24.39,13016.0,1236353.0,50.0,18342.0,11265.0,0.0,0.0,86800.0,807.0,614180.46,120553.0,52580.2],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2017\"},{\"data\":[{\"customdata\":[[16107.0,2018,\"United States of America\",\"USA\"],[156025.0,2018,\"United Kingdom\",\"GBR\"],[100.0,2018,\"Switzerland\",\"CHE\"],[20566.0,2018,\"Russian Federation\",\"RUS\"],[1282003.2,2018,\"Norway\",\"NOR\"],[60.0,2018,\"Korea, Dem. People's Rep\",\"PRK\"],[11984.0,2018,\"Ireland\",\"IRL\"],[13448.0,2018,\"Iceland\",\"ISL\"],[0.0,2018,\"Finland\",\"FIN\"],[78900.0,2018,\"Faroe Islands\",\"FRO\"],[1030.0,2018,\"Denmark\",\"DNK\"],[661138.39,2018,\"Chile\",\"CHL\"],[123184.0,2018,\"Canada\",\"CAN\"],[61227.0,2018,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"Switzerland\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"CHE\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16107.0,156025.0,100.0,20566.0,1282003.2,60.0,11984.0,13448.0,0.0,78900.0,1030.0,661138.39,123184.0,61227.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2018\"},{\"data\":[{\"customdata\":[[16490.52,2019,\"United States of America\",\"USA\"],[203881.0,2019,\"United Kingdom\",\"GBR\"],[159.4,2019,\"Switzerland\",\"CHE\"],[11.606,2019,\"Spain\",\"ESP\"],[32343.0,2019,\"Russian Federation\",\"RUS\"],[1364042.038,2019,\"Norway\",\"NOR\"],[60.0,2019,\"Korea, Dem. People's Rep\",\"PRK\"],[11333.0,2019,\"Ireland\",\"IRL\"],[26957.0,2019,\"Iceland\",\"ISL\"],[0.0,2019,\"Finland\",\"FIN\"],[95000.0,2019,\"Faroe Islands\",\"FRO\"],[1462.53,2019,\"Denmark\",\"DNK\"],[701984.0,2019,\"Chile\",\"CHL\"],[118630.0,2019,\"Canada\",\"CAN\"],[56989.34,2019,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"Switzerland\",\"Spain\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Finland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"CHE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16490.52,203881.0,159.4,11.606,32343.0,1364042.038,60.0,11333.0,26957.0,0.0,95000.0,1462.53,701984.0,118630.0,56989.34],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2019\"},{\"data\":[{\"customdata\":[[16490.52,2020,\"United States of America\",\"USA\"],[192129.0,2020,\"United Kingdom\",\"GBR\"],[300.0,2020,\"United Arab Emirates\",\"ARE\"],[159.4,2020,\"Switzerland\",\"CHE\"],[10855.0,2020,\"Russian Federation\",\"RUS\"],[1388433.84,2020,\"Norway\",\"NOR\"],[60.0,2020,\"Korea, Dem. People's Rep\",\"PRK\"],[12870.0,2020,\"Ireland\",\"IRL\"],[34341.0,2020,\"Iceland\",\"ISL\"],[88950.0,2020,\"Faroe Islands\",\"FRO\"],[1940.0,2020,\"Denmark\",\"DNK\"],[787131.0,2020,\"Chile\",\"CHL\"],[120427.0,2020,\"Canada\",\"CAN\"],[66918.495,2020,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"United Arab Emirates\",\"Switzerland\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"ARE\",\"CHE\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16490.52,192129.0,300.0,159.4,10855.0,1388433.84,60.0,12870.0,34341.0,88950.0,1940.0,787131.0,120427.0,66918.495],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2020\"},{\"data\":[{\"customdata\":[[16490.52,2021,\"United States of America\",\"USA\"],[205000.0,2021,\"United Kingdom\",\"GBR\"],[180.0,2021,\"United Arab Emirates\",\"ARE\"],[160.0,2021,\"Switzerland\",\"CHE\"],[14959.0,2021,\"Russian Federation\",\"RUS\"],[1562415.01,2021,\"Norway\",\"NOR\"],[60.0,2021,\"Korea, Dem. People's Rep\",\"PRK\"],[12844.0,2021,\"Ireland\",\"IRL\"],[46458.0,2021,\"Iceland\",\"ISL\"],[115650.0,2021,\"Faroe Islands\",\"FRO\"],[1668.0,2021,\"Denmark\",\"DNK\"],[725280.0,2021,\"Chile\",\"CHL\"],[120186.0,2021,\"Canada\",\"CAN\"],[84045.234,2021,\"Australia\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eYear=%{customdata[1]}\\u003cbr\\u003eTonnes - live weight=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"United States of America\",\"United Kingdom\",\"United Arab Emirates\",\"Switzerland\",\"Russian Federation\",\"Norway\",\"Korea, Dem. People's Rep\",\"Ireland\",\"Iceland\",\"Faroe Islands\",\"Denmark\",\"Chile\",\"Canada\",\"Australia\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"ARE\",\"CHE\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16490.52,205000.0,180.0,160.0,14959.0,1562415.01,60.0,12844.0,46458.0,115650.0,1668.0,725280.0,120186.0,84045.234],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2021\"}]}" \ No newline at end of file diff --git a/public/dashboard/graphs/en/hyper-growth-grouped.json b/public/dashboard/graphs/en/hyper-growth-grouped.json new file mode 100644 index 000000000..bd171cb89 --- /dev/null +++ b/public/dashboard/graphs/en/hyper-growth-grouped.json @@ -0,0 +1 @@ +"{\"data\":[{\"fillpattern\":{\"shape\":\"\"},\"legendgroup\":\"\",\"line\":{\"color\":\"#fd442f\",\"shape\":\"spline\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Number of salmons produced every year\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,400,800,1600,3000,5400,58800,62800,71800,114400,194800,251600,330200,455400,791200,992200,1057600,2021600,2653000,4127600,5397000,7759400,11795800,13429200,22119600,33612600,45128400,53256600,49505600,61122000,74986200,93049000,110381200,129303200,137645400,161123200,179161600,206001000,217226800,229536400,252385200,253459400,263744000,275774800,290253380,290326986,287410398,347077708,414879620,418741582,469479592,476172829,449335712,471672610,485154518,525868687,544201051,581079153],\"yaxis\":\"y\",\"type\":\"scatter\",\"hoverinfo\":\"skip\",\"fillcolor\":\"#fd442f\"}],\"layout\":{\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"rgb(36,36,36)\"},\"error_y\":{\"color\":\"rgb(36,36,36)\"},\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"baxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.6}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgb(237,237,237)\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"rgb(217,217,217)\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"colorscale\":{\"diverging\":[[0.0,\"rgb(103,0,31)\"],[0.1,\"rgb(178,24,43)\"],[0.2,\"rgb(214,96,77)\"],[0.3,\"rgb(244,165,130)\"],[0.4,\"rgb(253,219,199)\"],[0.5,\"rgb(247,247,247)\"],[0.6,\"rgb(209,229,240)\"],[0.7,\"rgb(146,197,222)\"],[0.8,\"rgb(67,147,195)\"],[0.9,\"rgb(33,102,172)\"],[1.0,\"rgb(5,48,97)\"]],\"sequential\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"sequentialminus\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]]},\"colorway\":[\"#1F77B4\",\"#FF7F0E\",\"#2CA02C\",\"#D62728\",\"#9467BD\",\"#8C564B\",\"#E377C2\",\"#7F7F7F\",\"#BCBD22\",\"#17BECF\"],\"font\":{\"color\":\"rgb(36,36,36)\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"white\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"white\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"radialaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"zaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}},\"shapedefaults\":{\"fillcolor\":\"black\",\"line\":{\"width\":0},\"opacity\":0.3},\"ternary\":{\"aaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"baxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"caxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{},\"color\":\"white\",\"linecolor\":\"white\",\"fixedrange\":true},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{},\"exponentformat\":\"none\",\"tickformat\":\"~s\",\"color\":\"white\",\"linecolor\":\"white\",\"fixedrange\":true},\"legend\":{\"tracegroupgap\":0,\"yanchor\":\"top\",\"y\":1,\"xanchor\":\"left\",\"x\":0.01,\"font\":{\"color\":\"white\"}},\"margin\":{\"t\":60},\"title\":{\"text\":\"Production of farmed salmons\"},\"font\":{\"color\":\"white\"},\"plot_bgcolor\":\"rgba(0, 0, 0, 0)\",\"paper_bgcolor\":\"rgba(0, 0, 0, 0)\",\"hoverlabel\":{\"bgcolor\":\"white\"}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/en/hyper-growth.json b/public/dashboard/graphs/en/hyper-growth.json new file mode 100644 index 000000000..088c3c3d0 --- /dev/null +++ b/public/dashboard/graphs/en/hyper-growth.json @@ -0,0 +1 @@ +"{\"data\":[{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Norway\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Norway\",\"line\":{\"color\":\"#2E91E5\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Norway\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,4.0,8.0,15.0,27.0,50.0,98.0,146.0,171.0,601.0,862.0,1431.0,2137.0,3540.0,4389.0,4312.0,8418.0,10695.0,17298.0,21881.0,29473.0,44831.0,46453.0,78744.0,111337.0,145990.0,154900.0,124138.0,155581.0,202459.0,261522.0,297557.0,332581.0,360806.0,425154.0,440061.0,436103.0,462495.0,509544.0,563815.0,586512.0,629888.0,744222.0,737694.0,862907.7,939536.0,1064868.0,1232094.9,1168324.0,1258355.9,1303345.8,1233619.2,1236353.0,1282003.2,1364042.038,1388433.84,1562415.01],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Chile\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Chile\",\"line\":{\"color\":\"#E15F99\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Chile\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,165.0,1860.0,9478.0,14957.0,23715.0,29180.0,34175.0,54250.0,77327.0,96675.0,107066.0,103242.0,166897.0,253850.0,265726.0,280301.0,348983.0,385779.0,376476.0,331042.0,388847.0,233308.0,123233.0,264349.0,399678.0,492329.0,644459.0,608546.0,532225.0,614180.46,661138.39,701984.0,787131.0,725280.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=United Kingdom\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"United Kingdom\",\"line\":{\"color\":\"#1CA71C\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"United Kingdom\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,244.0,216.0,213.0,401.0,372.0,393.0,209.0,115.0,378.0,520.0,598.0,1133.0,2152.0,2536.0,3912.0,6921.0,10337.0,12721.0,17951.0,28603.0,32004.0,40657.0,36302.0,48791.0,64266.0,70322.0,83344.0,99422.0,110917.0,126686.0,128959.0,138519.0,145609.0,145609.0,158099.0,129823.0,131973.0,130104.0,128744.0,144663.0,154633.0,158309.5,162547.0,163240.0,179028.0,171731.0,162820.0,189707.0,156025.0,203881.0,192129.0,205000.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Canada\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Canada\",\"line\":{\"color\":\"#FB0D0D\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Canada\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,27.0,76.0,143.0,68.0,222.0,349.0,682.0,1385.0,3431.0,5967.0,9625.0,13499.0,17305.0,23483.0,27773.0,33674.0,36475.0,51015.0,49475.0,61990.0,72495.0,95606.0,114921.0,107228.0,96774.0,98370.0,118061.0,102509.0,104075.0,100212.0,101544.0,110328.0,116101.0,97629.0,86347.0,121926.0,123522.0,120553.0,123184.0,118630.0,120427.0,120186.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Faroe Islands\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Faroe Islands\",\"line\":{\"color\":\"#DA16FF\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Faroe Islands\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1976,1977,1978,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[1.0,2.0,5.0,22.0,45.0,60.0,90.0,117.0,940.0,1370.0,3193.0,3400.0,7901.0,13025.0,17914.0,18364.0,17660.0,14868.0,8539.0,17049.0,21103.0,19176.0,39252.0,33508.0,46041.0,44953.0,52526.0,40985.0,18962.0,13078.0,22305.0,38494.0,51383.0,45391.0,60473.0,76564.0,75821.0,86454.0,80600.0,83300.0,86800.0,78900.0,95000.0,88950.0,115650.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Australia\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Australia\",\"line\":{\"color\":\"#222A2A\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Australia\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[10.0,62.0,240.0,1750.0,1750.0,2653.0,3300.0,3500.0,4000.0,6192.0,7647.0,7648.0,7069.0,9195.0,10907.0,12724.0,14356.0,15208.0,16476.0,16780.0,20710.0,25336.0,25736.9,29893.0,31806.79,36662.04,43982.0,42825.01,41590.66,48330.56,56115.197,52580.2,61227.0,56989.34,66918.495,84045.234],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=United States of America\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"United States of America\",\"line\":{\"color\":\"#B68100\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"United States of America\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[8.0,113.0,898.0,2554.0,3185.0,6661.0,10028.0,10750.0,10906.0,14075.0,13906.0,18005.0,14507.0,17739.0,22395.0,20769.0,12734.0,16315.0,15127.0,9401.0,10485.0,11001.0,16714.0,14074.0,19535.0,18595.0,19295.0,18866.0,18719.0,18719.0,16185.0,14685.0,16107.0,16490.52,16490.52,16490.52],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Ireland\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Ireland\",\"line\":{\"color\":\"#750D86\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Ireland\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,5.0,10.0,10.0,13.0,21.0,35.0,100.0,257.0,385.0,700.0,1215.0,2300.0,4075.0,5500.0,6323.0,9300.0,9696.0,12366.0,11616.0,11811.0,14025.0,15441.0,14860.0,18076.0,17648.0,23312.0,23231.0,16347.0,14067.0,13764.0,11174.0,9923.0,9217.0,12210.0,15691.0,12196.0,12440.0,9124.9,9367.6,13116.0,16300.0,18342.0,11984.0,11333.0,12870.0,12844.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Iceland\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Iceland\",\"line\":{\"color\":\"#EB663B\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Iceland\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,1.0,5.0,8.0,13.0,19.0,27.0,39.0,56.0,79.0,107.0,91.0,123.0,490.0,1053.0,1480.0,2716.0,2566.0,2125.0,2348.0,2588.0,2591.0,2832.0,2513.0,2742.0,2900.0,2593.0,2645.0,1471.0,3708.0,6624.0,6488.0,5224.0,1197.0,330.0,714.0,1068.0,1083.0,2923.0,3018.0,3965.0,3260.0,8420.0,11265.0,13448.0,26957.0,34341.0,46458.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Russian Federation\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Russian Federation\",\"line\":{\"color\":\"#511CFB\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Russian Federation\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,300.0,203.0,204.0,229.0,111.0,51.0,2126.0,4500.0,8500.0,8754.0,22500.0,18675.0,10834.0,12857.0,13016.0,20566.0,32343.0,10855.0,14959.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=France\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"France\",\"line\":{\"color\":\"#00A08B\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"France\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008],\"xaxis\":\"x\",\"y\":[574.0,600.0,564.0,856.0,894.0,800.0,950.0,760.0,750.0,102.0,90.0,443.0,544.0,735.0,1190.0,1391.0,1100.0,1335.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Denmark\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Denmark\",\"line\":{\"color\":\"#FB00D1\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Denmark\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[15.0,16.0,16.0,18.0,18.0,16.0,11.0,1.9,15.0,10.0,0.2,10.0,405.0,428.0,1289.0,807.0,1030.0,1462.53,1940.0,1668.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Spain\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Spain\",\"line\":{\"color\":\"#FC0080\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Spain\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2019],\"xaxis\":\"x\",\"y\":[150.0,150.0,150.0,150.0,150.0,150.0,355.0,553.0,782.0,562.0,909.0,695.0,726.0,851.0,798.0,618.0,226.0,323.0,152.0,27.0,15.0,0.0,2.0,0.0,0.0,110.0,79.2,0.0,4.0,0.0,3.8,7.785,5.162,24.39,11.606],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=T\\u00fcrkiye\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"T\\u00fcrkiye\",\"line\":{\"color\":\"#B2828D\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"T\\u00fcrkiye\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0,1500.0,680.0,791.0,434.0,654.0,193.0,50.0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Sweden\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Sweden\",\"line\":{\"color\":\"#6C7C32\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Sweden\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2016],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,10.0,15.0,30.0,50.0,50.0,75.0,118.0,81.0,160.0,224.0,363.0,771.0,602.0,270.0,388.0,4.0,7.0,19.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,6.0,8.0,1.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Finland\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Finland\",\"line\":{\"color\":\"#778AAE\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Finland\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,251.0,312.0,9.0,235.0,93.0,92.0,93.0,11.0,117.0,71.0,157.0,146.0,85.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Switzerland\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Switzerland\",\"line\":{\"color\":\"#862A16\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Switzerland\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[100.0,159.4,159.4,160.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Portugal\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Portugal\",\"line\":{\"color\":\"#A777F1\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Portugal\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1988,1989,1990,1991,1992,1993,1994,1995,1996,1997],\"xaxis\":\"x\",\"y\":[0.0,100.0,120.0,100.0,0.0,0.0,0.0,0.0,4.0,250.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=United Arab Emirates\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"United Arab Emirates\",\"line\":{\"color\":\"#620042\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"United Arab Emirates\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[2020,2021],\"xaxis\":\"x\",\"y\":[300.0,180.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Korea, Dem. People's Rep\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Korea, Dem. People's Rep\",\"line\":{\"color\":\"#1616A7\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Korea, Dem. People's Rep\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,10.0,15.0,15.0,15.0,20.0,20.0,20.0,50.0,60.0,60.0,60.0,60.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Greece\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Greece\",\"line\":{\"color\":\"#DA60CA\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Greece\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017],\"xaxis\":\"x\",\"y\":[3.0,11.0,19.0,12.0,33.0,20.0,30.0,74.0,7.0,9.0,12.0,11.0,9.0,17.0,23.0,28.0,9.0,7.0,6.0,11.0,8.0,8.0,22.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Country=Bulgaria\\u003cbr\\u003eYear=%{x}\\u003cbr\\u003eTonnes - live weight=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Bulgaria\",\"line\":{\"color\":\"#6C4516\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Bulgaria\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[2009],\"xaxis\":\"x\",\"y\":[0.33],\"yaxis\":\"y\",\"type\":\"scatter\"}],\"layout\":{\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"rgb(36,36,36)\"},\"error_y\":{\"color\":\"rgb(36,36,36)\"},\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"baxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.6}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgb(237,237,237)\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"rgb(217,217,217)\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"colorscale\":{\"diverging\":[[0.0,\"rgb(103,0,31)\"],[0.1,\"rgb(178,24,43)\"],[0.2,\"rgb(214,96,77)\"],[0.3,\"rgb(244,165,130)\"],[0.4,\"rgb(253,219,199)\"],[0.5,\"rgb(247,247,247)\"],[0.6,\"rgb(209,229,240)\"],[0.7,\"rgb(146,197,222)\"],[0.8,\"rgb(67,147,195)\"],[0.9,\"rgb(33,102,172)\"],[1.0,\"rgb(5,48,97)\"]],\"sequential\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"sequentialminus\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]]},\"colorway\":[\"#1F77B4\",\"#FF7F0E\",\"#2CA02C\",\"#D62728\",\"#9467BD\",\"#8C564B\",\"#E377C2\",\"#7F7F7F\",\"#BCBD22\",\"#17BECF\"],\"font\":{\"color\":\"rgb(36,36,36)\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"white\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"white\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"radialaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"zaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}},\"shapedefaults\":{\"fillcolor\":\"black\",\"line\":{\"width\":0},\"opacity\":0.3},\"ternary\":{\"aaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"baxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"caxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{},\"range\":[1975,2021]},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"Tonnes of farmed salmon produced\"},\"exponentformat\":\"none\"},\"legend\":{\"title\":{\"text\":\"Country\"},\"tracegroupgap\":0},\"margin\":{\"t\":60},\"title\":{\"text\":\"Farmed salmon production by country\"},\"updatemenus\":[{\"buttons\":[{\"args\":[\"visible\",\"legendonly\"],\"label\":\"Deselect All\",\"method\":\"restyle\"},{\"args\":[\"visible\",true],\"label\":\"Select All\",\"method\":\"restyle\"}],\"direction\":\"left\",\"pad\":{\"r\":10,\"t\":10},\"showactive\":false,\"type\":\"buttons\",\"x\":1,\"xanchor\":\"right\",\"y\":1.1,\"yanchor\":\"top\"}],\"modebar\":{\"remove\":[\"zoom\",\"zoomIn\",\"zoomOut\"]},\"hoverlabel\":{\"bgcolor\":\"white\"}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/en/mortality-rates.json b/public/dashboard/graphs/en/mortality-rates.json new file mode 100644 index 000000000..6e257f5fa --- /dev/null +++ b/public/dashboard/graphs/en/mortality-rates.json @@ -0,0 +1 @@ +"{\"data\":[{\"alignmentgroup\":\"True\",\"hovertext\":[\"Salmones Austral\",\"Salmones Austral\",\"Salmones Austral\",\"Salmones Austral\",\"Salmones Austral\"],\"legendgroup\":\"Salmones Austral\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Salmones Austral\",\"notched\":false,\"offsetgroup\":\"Salmones Austral\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Salmones Austral\",\"Salmones Austral\",\"Salmones Austral\",\"Salmones Austral\",\"Salmones Austral\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[2.67,2.55,1.8,2.1,5.73],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\"],\"legendgroup\":\"Nova Sea\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Nova Sea\",\"notched\":false,\"offsetgroup\":\"Nova Sea\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[4.18,2.95,2.74,2.9,2.8,3.91,3.21,2.65],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\"],\"legendgroup\":\"Australis Seafood\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Australis Seafood\",\"notched\":false,\"offsetgroup\":\"Australis Seafood\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[3.23,3.13,2.93,3.62,3.98,3.5,4.16],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\"],\"legendgroup\":\"Blumar\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Blumar\",\"notched\":false,\"offsetgroup\":\"Blumar\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[7.26,3.34,2.73,7.44,4.18,5.0,7.13,4.0,3.95],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\"],\"legendgroup\":\"Camanchaca\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Camanchaca\",\"notched\":false,\"offsetgroup\":\"Camanchaca\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[2.8,15.7,4.7,4.6,8.6,4.8,3.2,17.8,3.1,6.6],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\"],\"legendgroup\":\"Cermaq\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Cermaq\",\"notched\":false,\"offsetgroup\":\"Cermaq\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[5.2,7.0,6.3,6.8,6.2,7.3,5.7,0.0,6.4,5.3,8.4,5.5],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\"],\"legendgroup\":\"Leroy Seafood\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Leroy Seafood\",\"notched\":false,\"offsetgroup\":\"Leroy Seafood\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[7.5,7.5,7.0,7.8,8.2,6.1,6.6,7.8,7.4],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\"],\"legendgroup\":\"Salmar\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Salmar\",\"notched\":false,\"offsetgroup\":\"Salmar\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[5.0,4.4,4.7,5.9,6.2,10.1,6.7,11.8,10.8,12.9,10.3,8.8,5.4,9.5],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\"],\"legendgroup\":\"Grieg Seafood\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Grieg Seafood\",\"notched\":false,\"offsetgroup\":\"Grieg Seafood\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[4.0,5.0,11.0,17.0,11.0,8.0,8.0,10.0,7.0,8.0,9.0,7.0,9.0,5.0,8.0,4.0,9.0,6.0,17.0,10.0,8.0,12.0,12.0,7.0,10.0],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"AquaChile\",\"AquaChile\",\"AquaChile\"],\"legendgroup\":\"AquaChile\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"AquaChile\",\"notched\":false,\"offsetgroup\":\"AquaChile\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"AquaChile\",\"AquaChile\",\"AquaChile\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[9.2,9.29,6.74],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Multiexport\",\"Multiexport\",\"Multiexport\"],\"legendgroup\":\"Multiexport\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Multiexport\",\"notched\":false,\"offsetgroup\":\"Multiexport\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Multiexport\",\"Multiexport\",\"Multiexport\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[10.8,9.7,8.3],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\"],\"legendgroup\":\"Bakkafrost\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Bakkafrost\",\"notched\":false,\"offsetgroup\":\"Bakkafrost\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[11.43,21.71,23.16,8.96,11.56,4.57,10.29,4.91,8.24],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\"],\"legendgroup\":\"MOWI\",\"marker\":{\"color\":\"#ff4530\"},\"name\":\"MOWI\",\"notched\":false,\"offsetgroup\":\"MOWI\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[9.1886638,9.1886638,11.3615128,19.5848542,18.596662,9.1886638,14.5315492,16.5868032,14.5315492,15.5649083,9.1886638],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"}],\"layout\":{\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"rgb(36,36,36)\"},\"error_y\":{\"color\":\"rgb(36,36,36)\"},\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"baxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.6}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgb(237,237,237)\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"rgb(217,217,217)\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"colorscale\":{\"diverging\":[[0.0,\"rgb(103,0,31)\"],[0.1,\"rgb(178,24,43)\"],[0.2,\"rgb(214,96,77)\"],[0.3,\"rgb(244,165,130)\"],[0.4,\"rgb(253,219,199)\"],[0.5,\"rgb(247,247,247)\"],[0.6,\"rgb(209,229,240)\"],[0.7,\"rgb(146,197,222)\"],[0.8,\"rgb(67,147,195)\"],[0.9,\"rgb(33,102,172)\"],[1.0,\"rgb(5,48,97)\"]],\"sequential\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"sequentialminus\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]]},\"colorway\":[\"#1F77B4\",\"#FF7F0E\",\"#2CA02C\",\"#D62728\",\"#9467BD\",\"#8C564B\",\"#E377C2\",\"#7F7F7F\",\"#BCBD22\",\"#17BECF\"],\"font\":{\"color\":\"rgb(36,36,36)\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"white\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"white\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"radialaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"zaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}},\"shapedefaults\":{\"fillcolor\":\"black\",\"line\":{\"width\":0},\"opacity\":0.3},\"ternary\":{\"aaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"baxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"caxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{},\"categoryorder\":\"array\",\"categoryarray\":[\"Salmones Austral\",\"Nova Sea\",\"Australis Seafood\",\"Blumar\",\"Camanchaca\",\"Cermaq\",\"Leroy Seafood\",\"Salmar\",\"Grieg Seafood\",\"AquaChile\",\"Multiexport\",\"Bakkafrost\",\"MOWI\"],\"exponentformat\":\"none\",\"fixedrange\":true},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"Mortality Rate (%)\"},\"fixedrange\":true},\"legend\":{\"title\":{\"text\":\"Company\"},\"tracegroupgap\":0},\"title\":{\"text\":\"Mortality rates of farmed salmons by company (2014-2022)\"},\"boxmode\":\"overlay\",\"showlegend\":false,\"coloraxis\":{\"colorbar\":{\"tickformat\":\"0%\"}},\"hoverlabel\":{\"bgcolor\":\"white\"}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/en/salmon-collapse.json b/public/dashboard/graphs/en/salmon-collapse.json new file mode 100644 index 000000000..78c74d660 --- /dev/null +++ b/public/dashboard/graphs/en/salmon-collapse.json @@ -0,0 +1 @@ +"{\"data\":[{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Year=%{x}\\u003cbr\\u003eTons of wild salmon catch in Atlantic waters=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"\",\"line\":{\"color\":\"#151c97\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"\",\"orientation\":\"v\",\"showlegend\":false,\"stackgroup\":\"1\",\"x\":[1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022],\"xaxis\":\"x\",\"y\":[16869,14823,20603,19963,22504,20679,20425,25293,20157,21369,20454,18888,21011,24197,23574,23766,18641,18592,16167,15420,18915,17299,15128,18150,14120,16322,19054,15809,16224,12634,9918,7646,8472,8027,9391,8367,7074,5671,5841,5400,7060,7472,6485,5872,5210,5125,4691,3426,3699,2814,3548,3654,3112,2757,2416,2665,2520,2447,2157,1820,1795,1242,1391],\"yaxis\":\"y\",\"type\":\"scatter\"}],\"layout\":{\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"rgb(36,36,36)\"},\"error_y\":{\"color\":\"rgb(36,36,36)\"},\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"baxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.6}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgb(237,237,237)\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"rgb(217,217,217)\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"colorscale\":{\"diverging\":[[0.0,\"rgb(103,0,31)\"],[0.1,\"rgb(178,24,43)\"],[0.2,\"rgb(214,96,77)\"],[0.3,\"rgb(244,165,130)\"],[0.4,\"rgb(253,219,199)\"],[0.5,\"rgb(247,247,247)\"],[0.6,\"rgb(209,229,240)\"],[0.7,\"rgb(146,197,222)\"],[0.8,\"rgb(67,147,195)\"],[0.9,\"rgb(33,102,172)\"],[1.0,\"rgb(5,48,97)\"]],\"sequential\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"sequentialminus\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]]},\"colorway\":[\"#1F77B4\",\"#FF7F0E\",\"#2CA02C\",\"#D62728\",\"#9467BD\",\"#8C564B\",\"#E377C2\",\"#7F7F7F\",\"#BCBD22\",\"#17BECF\"],\"font\":{\"color\":\"rgb(36,36,36)\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"white\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"white\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"radialaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"zaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}},\"shapedefaults\":{\"fillcolor\":\"black\",\"line\":{\"width\":0},\"opacity\":0.3},\"ternary\":{\"aaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"baxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"caxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{},\"fixedrange\":true},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"Tons of wild salmon catch in Atlantic waters\"},\"exponentformat\":\"none\",\"fixedrange\":true},\"legend\":{\"tracegroupgap\":0},\"margin\":{\"t\":60},\"hoverlabel\":{\"bgcolor\":\"white\"},\"title\":{\"text\":\"Tonnes of wild salmon catch in Atlantic waters\"}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/en/top-10.json b/public/dashboard/graphs/en/top-10.json new file mode 100644 index 000000000..6ca9d6f59 --- /dev/null +++ b/public/dashboard/graphs/en/top-10.json @@ -0,0 +1 @@ +"{\"data\":[{\"alignmentgroup\":\"True\",\"customdata\":[[0.5381462711076805],[0.24980989366517833],[0.07060863142698208],[0.04139594622772326],[0.03983360109527062],[0.028947897320490062],[0.01600163804309626],[0.005679868530337934],[0.005152363500079146],[0.004423889083161745]],\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eTons=%{x:,.0f}\\u003cbr\\u003e% of total=%{marker.color:.1%}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"Norway \\ud83c\\uddf3\\ud83c\\uddf4\",\"Chile \\ud83c\\udde8\\ud83c\\uddf1\",\"United Kingdom \\ud83c\\uddec\\ud83c\\udde7\",\"Canada \\ud83c\\udde8\\ud83c\\udde6\",\"Faroe Islands \\ud83c\\uddeb\\ud83c\\uddf4\",\"Australia \\ud83c\\udde6\\ud83c\\uddfa\",\"Iceland \\ud83c\\uddee\\ud83c\\uddf8\",\"United States of America \\ud83c\\uddfa\\ud83c\\uddf2\",\"Russian Federation \\ud83c\\uddf7\\ud83c\\uddfa\",\"Ireland \\ud83c\\uddee\\ud83c\\uddea\"],\"legendgroup\":\"\",\"marker\":{\"color\":[0.5381462711076805,0.24980989366517833,0.07060863142698208,0.04139594622772326,0.03983360109527062,0.028947897320490062,0.01600163804309626,0.005679868530337934,0.005152363500079146,0.004423889083161745],\"coloraxis\":\"coloraxis\",\"pattern\":{\"shape\":\"\"}},\"name\":\"\",\"offsetgroup\":\"\",\"orientation\":\"h\",\"showlegend\":false,\"textposition\":\"outside\",\"texttemplate\":\"%{x:,.0f}\",\"x\":[1562415.01,725280.0,205000.0,120186.0,115650.0,84045.234,46458.0,16490.52,14959.0,12844.0],\"xaxis\":\"x\",\"y\":[\"Norway \\ud83c\\uddf3\\ud83c\\uddf4\",\"Chile \\ud83c\\udde8\\ud83c\\uddf1\",\"United Kingdom \\ud83c\\uddec\\ud83c\\udde7\",\"Canada \\ud83c\\udde8\\ud83c\\udde6\",\"Faroe Islands \\ud83c\\uddeb\\ud83c\\uddf4\",\"Australia \\ud83c\\udde6\\ud83c\\uddfa\",\"Iceland \\ud83c\\uddee\\ud83c\\uddf8\",\"United States of America \\ud83c\\uddfa\\ud83c\\uddf2\",\"Russian Federation \\ud83c\\uddf7\\ud83c\\uddfa\",\"Ireland \\ud83c\\uddee\\ud83c\\uddea\"],\"yaxis\":\"y\",\"type\":\"bar\",\"textfont\":{\"size\":12},\"cliponaxis\":false,\"textangle\":0}],\"layout\":{\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"rgb(36,36,36)\"},\"error_y\":{\"color\":\"rgb(36,36,36)\"},\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"baxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.6}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgb(237,237,237)\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"rgb(217,217,217)\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"colorscale\":{\"diverging\":[[0.0,\"rgb(103,0,31)\"],[0.1,\"rgb(178,24,43)\"],[0.2,\"rgb(214,96,77)\"],[0.3,\"rgb(244,165,130)\"],[0.4,\"rgb(253,219,199)\"],[0.5,\"rgb(247,247,247)\"],[0.6,\"rgb(209,229,240)\"],[0.7,\"rgb(146,197,222)\"],[0.8,\"rgb(67,147,195)\"],[0.9,\"rgb(33,102,172)\"],[1.0,\"rgb(5,48,97)\"]],\"sequential\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"sequentialminus\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]]},\"colorway\":[\"#1F77B4\",\"#FF7F0E\",\"#2CA02C\",\"#D62728\",\"#9467BD\",\"#8C564B\",\"#E377C2\",\"#7F7F7F\",\"#BCBD22\",\"#17BECF\"],\"font\":{\"color\":\"rgb(36,36,36)\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"white\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"white\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"radialaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"zaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}},\"shapedefaults\":{\"fillcolor\":\"black\",\"line\":{\"width\":0},\"opacity\":0.3},\"ternary\":{\"aaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"baxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"caxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{},\"exponentformat\":\"none\",\"range\":[0,2000000],\"fixedrange\":true},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{},\"categoryorder\":\"array\",\"categoryarray\":[\"Ireland \\ud83c\\uddee\\ud83c\\uddea\",\"Russian Federation \\ud83c\\uddf7\\ud83c\\uddfa\",\"United States of America \\ud83c\\uddfa\\ud83c\\uddf2\",\"Iceland \\ud83c\\uddee\\ud83c\\uddf8\",\"Australia \\ud83c\\udde6\\ud83c\\uddfa\",\"Faroe Islands \\ud83c\\uddeb\\ud83c\\uddf4\",\"Canada \\ud83c\\udde8\\ud83c\\udde6\",\"United Kingdom \\ud83c\\uddec\\ud83c\\udde7\",\"Chile \\ud83c\\udde8\\ud83c\\uddf1\",\"Norway \\ud83c\\uddf3\\ud83c\\uddf4\"],\"tickfont\":{\"size\":13},\"ticks\":\"\",\"fixedrange\":true},\"coloraxis\":{\"colorbar\":{\"title\":{\"text\":\"% of total\"},\"tickformat\":\"0%\"},\"colorscale\":[[0.0,\"#151c97\"],[1.0,\"#ff4530\"]]},\"legend\":{\"tracegroupgap\":0},\"title\":{\"text\":\"Top 10 countries producing salmon by tonnes (2021)\"},\"barmode\":\"relative\",\"hoverlabel\":{\"bgcolor\":\"white\"},\"modebar\":{\"remove\":[\"zoom\",\"pan\",\"lasso2d\",\"select2d\"]}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/en/top-comp.json b/public/dashboard/graphs/en/top-comp.json new file mode 100644 index 000000000..3cd2298cb --- /dev/null +++ b/public/dashboard/graphs/en/top-comp.json @@ -0,0 +1 @@ +"{\"data\":[{\"alignmentgroup\":\"True\",\"customdata\":[[\"MOWI ASA\",1964,\"Bergen, Norway\",\"https:\\u002f\\u002fmowi.com\\u002f\",\"$4.9B\",\"11,500\",\"\"],[\"SalMar ASA\",1991,\"Fr\\u00f8ya, Norway\",\"https:\\u002f\\u002fwww.salmar.no\\u002fen\",\"$2.0B\",\"2,266\",\"\"],[\"Cermaq Group AS (Mutsubishi Corporation)\",1995,\"Oslo, Norv\\u00e8ge\",\"https:\\u002f\\u002fwww.cermaq.com\\u002f\",\"$1.4B\",\"2,790\",\"\"],[\"Ler\\u00f8y Seafood Group ASA\",1899,\"Bergen, Norway\",\"https:\\u002f\\u002fwww.leroyseafood.fr\\u002f\",\"$2.8B\",\"5,972\",\"\"],[\"Empresas Aquachile SA\",1998,\"Puerto Montt, Chile\",\"http:\\u002f\\u002fwww.aquachile.com\\u002f\",\"$1.4B\",\"5,827\",\"\"],[\"P\\u002fF Bakkafrost\",1968,\"Glyvar, Faroe Islands\",\"https:\\u002f\\u002fwww.bakkafrost.com\\u002fen\",\"$989.0M\",\"1,778\",\"\"],[\"Grieg Seafood\",1992,\"Bergen, Norway\",\"https:\\u002f\\u002fgriegseafood.com\\u002f\",\"$747.8M\",\"718\",\"\"],[\"Cooke Inc. \\u002f Cooke Aquaculture\",1985,\"New Brunswick, Canada\",\"https:\\u002f\\u002fcookeseafood.com\\u002f\",\"~$4.0B\",\"~13,000\",\"No public information or report found\"],[\"Multiexport Foods SA\",1983,\"Puerto Montt, Chile\",\"https:\\u002f\\u002fwww.multi-xsalmon.com\\u002fen\\u002f\",\"$611.6M\",\"2,586\",\"\"],[\"Australis Seafood SA (Joyvio Food)\",2003,\"Puerto Varas, Chile\",\"https:\\u002f\\u002fwww.australis-seafoods.com\\u002fen\\u002f\",\"$621.2M\",\"2,539\",\"\"]],\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eVolume, in tons, 2022=%{x:,.0f}\\u003cbr\\u003eCommercial name=%{customdata[0]}\\u003cbr\\u003eCreation date=%{customdata[1]}\\u003cbr\\u003eHeadquarters=%{customdata[2]}\\u003cbr\\u003eWebsite=%{customdata[3]}\\u003cbr\\u003eRevenues 2022=%{customdata[4]}\\u003cbr\\u003eEmployees 2022=%{customdata[5]}\\u003cbr\\u003eNote=%{customdata[6]}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"Mowi \\ud83c\\uddf3\\ud83c\\uddf4\",\"Salmar \\ud83c\\uddf3\\ud83c\\uddf4\",\"Cermaq \\ud83c\\uddef\\ud83c\\uddf5\",\"Ler\\u00f8y Seafood \\ud83c\\uddf3\\ud83c\\uddf4\",\"Aquachile \\ud83c\\udde8\\ud83c\\uddf1\",\"Bakkafrost \\ud83c\\uddeb\\ud83c\\uddf4\",\"Grieg Seafood \\ud83c\\uddf3\\ud83c\\uddf4\",\"Cooke \\ud83c\\udde8\\ud83c\\udde6\",\"Multi X \\ud83c\\udde8\\ud83c\\uddf1\",\"Australis Seafood \\ud83c\\udde8\\ud83c\\uddf1\"],\"legendgroup\":\"\",\"marker\":{\"color\":\"#151c97\",\"pattern\":{\"shape\":\"\"}},\"name\":\"\",\"offsetgroup\":\"\",\"orientation\":\"h\",\"showlegend\":false,\"textposition\":\"inside\",\"texttemplate\":\"%{x:,.0f}\",\"x\":[472000,194000,171000,152000,138000,91000,88000,86000,77000,75000],\"xaxis\":\"x\",\"y\":[\"Mowi \\ud83c\\uddf3\\ud83c\\uddf4\",\"Salmar \\ud83c\\uddf3\\ud83c\\uddf4\",\"Cermaq \\ud83c\\uddef\\ud83c\\uddf5\",\"Ler\\u00f8y Seafood \\ud83c\\uddf3\\ud83c\\uddf4\",\"Aquachile \\ud83c\\udde8\\ud83c\\uddf1\",\"Bakkafrost \\ud83c\\uddeb\\ud83c\\uddf4\",\"Grieg Seafood \\ud83c\\uddf3\\ud83c\\uddf4\",\"Cooke \\ud83c\\udde8\\ud83c\\udde6\",\"Multi X \\ud83c\\udde8\\ud83c\\uddf1\",\"Australis Seafood \\ud83c\\udde8\\ud83c\\uddf1\"],\"yaxis\":\"y\",\"type\":\"bar\",\"textfont\":{\"size\":12},\"cliponaxis\":false,\"textangle\":0}],\"layout\":{\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"rgb(36,36,36)\"},\"error_y\":{\"color\":\"rgb(36,36,36)\"},\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"baxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.6}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgb(237,237,237)\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"rgb(217,217,217)\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"colorscale\":{\"diverging\":[[0.0,\"rgb(103,0,31)\"],[0.1,\"rgb(178,24,43)\"],[0.2,\"rgb(214,96,77)\"],[0.3,\"rgb(244,165,130)\"],[0.4,\"rgb(253,219,199)\"],[0.5,\"rgb(247,247,247)\"],[0.6,\"rgb(209,229,240)\"],[0.7,\"rgb(146,197,222)\"],[0.8,\"rgb(67,147,195)\"],[0.9,\"rgb(33,102,172)\"],[1.0,\"rgb(5,48,97)\"]],\"sequential\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"sequentialminus\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]]},\"colorway\":[\"#1F77B4\",\"#FF7F0E\",\"#2CA02C\",\"#D62728\",\"#9467BD\",\"#8C564B\",\"#E377C2\",\"#7F7F7F\",\"#BCBD22\",\"#17BECF\"],\"font\":{\"color\":\"rgb(36,36,36)\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"white\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"white\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"radialaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"zaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}},\"shapedefaults\":{\"fillcolor\":\"black\",\"line\":{\"width\":0},\"opacity\":0.3},\"ternary\":{\"aaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"baxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"caxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{},\"exponentformat\":\"none\",\"fixedrange\":true},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{},\"categoryorder\":\"array\",\"categoryarray\":[\"Australis Seafood \\ud83c\\udde8\\ud83c\\uddf1\",\"Multi X \\ud83c\\udde8\\ud83c\\uddf1\",\"Cooke \\ud83c\\udde8\\ud83c\\udde6\",\"Grieg Seafood \\ud83c\\uddf3\\ud83c\\uddf4\",\"Bakkafrost \\ud83c\\uddeb\\ud83c\\uddf4\",\"Aquachile \\ud83c\\udde8\\ud83c\\uddf1\",\"Ler\\u00f8y Seafood \\ud83c\\uddf3\\ud83c\\uddf4\",\"Cermaq \\ud83c\\uddef\\ud83c\\uddf5\",\"Salmar \\ud83c\\uddf3\\ud83c\\uddf4\",\"Mowi \\ud83c\\uddf3\\ud83c\\uddf4\"],\"tickfont\":{\"size\":13},\"ticks\":\"\",\"fixedrange\":true},\"legend\":{\"tracegroupgap\":0},\"title\":{\"text\":\"Top 10 companies producing salmon by tonnes (2022)\"},\"barmode\":\"relative\",\"hoverlabel\":{\"bgcolor\":\"white\"},\"modebar\":{\"remove\":[\"zoom\",\"pan\",\"lasso2d\",\"select2d\"]}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/en/top-land.json b/public/dashboard/graphs/en/top-land.json new file mode 100644 index 000000000..747b9ebc8 --- /dev/null +++ b/public/dashboard/graphs/en/top-land.json @@ -0,0 +1 @@ +"{\"data\":[{\"alignmentgroup\":\"True\",\"customdata\":[[8,\"Saudi Arabia, United States, China, France, Japan, Lesotho, Brunei, TBD\",\"Funded by 8F Asset Management\"],[1,\"United States\",\"\"],[2,\"United Kingdom, Norway\",\"\"],[2,\"Portugal\",\"\"],[4,\"United States, South Korea, Norway, TBD\",\"\"],[1,\"Sweden\",\"\"],[1,\"Norway\",\"Funded by Lighthouse Finance\"],[3,\"China\",\"\"],[1,\"Norway\",\"\"],[1,\"United States\",\"\"]],\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eProduction in tonnes=%{x:,.0f}\\u003cbr\\u003eNumber of projects=%{customdata[0]}\\u003cbr\\u003eCountries of projects=%{customdata[1]}\\u003cbr\\u003eNote=%{customdata[2]}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"Pure Salmon \\ud83c\\udde6\\ud83c\\uddea\",\"Atlantic Sapphire \\ud83c\\uddfa\\ud83c\\uddf8\",\"Norwegian Mountain Salmon \\ud83c\\uddf3\\ud83c\\uddf4\",\"Maiken Foods \\ud83c\\uddf3\\ud83c\\uddf4\",\"Salmon Evolution \\ud83c\\uddf3\\ud83c\\uddf4\",\"Sotenas Marine Park \\ud83c\\uddf3\\ud83c\\uddf4\",\"World Heritage Salmon \\ud83c\\uddf3\\ud83c\\uddf4\",\"Qingdao Guoxin \\ud83c\\udde8\\ud83c\\uddf3\",\"Sande Aqua AS \\ud83c\\uddf3\\ud83c\\uddf4\",\"West Coast Salmon \\ud83c\\uddf3\\ud83c\\uddf4\"],\"legendgroup\":\"\",\"marker\":{\"color\":\"#151c97\",\"pattern\":{\"shape\":\"\"}},\"name\":\"\",\"offsetgroup\":\"\",\"orientation\":\"h\",\"showlegend\":false,\"textposition\":\"inside\",\"texttemplate\":\"%{x:,.0f}\",\"x\":[260000,200000,115000,106000,100000,100000,100000,80700,66000,60000],\"xaxis\":\"x\",\"y\":[\"Pure Salmon \\ud83c\\udde6\\ud83c\\uddea\",\"Atlantic Sapphire \\ud83c\\uddfa\\ud83c\\uddf8\",\"Norwegian Mountain Salmon \\ud83c\\uddf3\\ud83c\\uddf4\",\"Maiken Foods \\ud83c\\uddf3\\ud83c\\uddf4\",\"Salmon Evolution \\ud83c\\uddf3\\ud83c\\uddf4\",\"Sotenas Marine Park \\ud83c\\uddf3\\ud83c\\uddf4\",\"World Heritage Salmon \\ud83c\\uddf3\\ud83c\\uddf4\",\"Qingdao Guoxin \\ud83c\\udde8\\ud83c\\uddf3\",\"Sande Aqua AS \\ud83c\\uddf3\\ud83c\\uddf4\",\"West Coast Salmon \\ud83c\\uddf3\\ud83c\\uddf4\"],\"yaxis\":\"y\",\"type\":\"bar\",\"textfont\":{\"size\":12},\"cliponaxis\":false,\"textangle\":0}],\"layout\":{\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"rgb(36,36,36)\"},\"error_y\":{\"color\":\"rgb(36,36,36)\"},\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"baxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.6}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgb(237,237,237)\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"rgb(217,217,217)\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"colorscale\":{\"diverging\":[[0.0,\"rgb(103,0,31)\"],[0.1,\"rgb(178,24,43)\"],[0.2,\"rgb(214,96,77)\"],[0.3,\"rgb(244,165,130)\"],[0.4,\"rgb(253,219,199)\"],[0.5,\"rgb(247,247,247)\"],[0.6,\"rgb(209,229,240)\"],[0.7,\"rgb(146,197,222)\"],[0.8,\"rgb(67,147,195)\"],[0.9,\"rgb(33,102,172)\"],[1.0,\"rgb(5,48,97)\"]],\"sequential\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"sequentialminus\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]]},\"colorway\":[\"#1F77B4\",\"#FF7F0E\",\"#2CA02C\",\"#D62728\",\"#9467BD\",\"#8C564B\",\"#E377C2\",\"#7F7F7F\",\"#BCBD22\",\"#17BECF\"],\"font\":{\"color\":\"rgb(36,36,36)\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"white\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"white\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"radialaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"zaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}},\"shapedefaults\":{\"fillcolor\":\"black\",\"line\":{\"width\":0},\"opacity\":0.3},\"ternary\":{\"aaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"baxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"caxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"Company ambition for salmon production in tonnes\"},\"exponentformat\":\"none\",\"fixedrange\":true},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{},\"categoryorder\":\"array\",\"categoryarray\":[\"West Coast Salmon \\ud83c\\uddf3\\ud83c\\uddf4\",\"Sande Aqua AS \\ud83c\\uddf3\\ud83c\\uddf4\",\"Qingdao Guoxin \\ud83c\\udde8\\ud83c\\uddf3\",\"World Heritage Salmon \\ud83c\\uddf3\\ud83c\\uddf4\",\"Sotenas Marine Park \\ud83c\\uddf3\\ud83c\\uddf4\",\"Salmon Evolution \\ud83c\\uddf3\\ud83c\\uddf4\",\"Maiken Foods \\ud83c\\uddf3\\ud83c\\uddf4\",\"Norwegian Mountain Salmon \\ud83c\\uddf3\\ud83c\\uddf4\",\"Atlantic Sapphire \\ud83c\\uddfa\\ud83c\\uddf8\",\"Pure Salmon \\ud83c\\udde6\\ud83c\\uddea\"],\"tickfont\":{\"size\":13},\"ticks\":\"\",\"fixedrange\":true},\"legend\":{\"tracegroupgap\":0},\"title\":{\"text\":\"Top 10 land-based salmon productors (ambitions)\"},\"barmode\":\"relative\",\"hoverlabel\":{\"bgcolor\":\"white\"},\"modebar\":{\"remove\":[\"zoom\",\"pan\",\"lasso2d\",\"select2d\"]}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/fr/alternatives.json b/public/dashboard/graphs/fr/alternatives.json new file mode 100644 index 000000000..ae66b885e --- /dev/null +++ b/public/dashboard/graphs/fr/alternatives.json @@ -0,0 +1 @@ +"{\"data\":[{\"colorscale\":[[0.0,\"#bfcee1\"],[0.16666666666666666,\"#6ecb57\"],[0.3333333333333333,\"#aaed99\"],[0.5,\"#ffd336\"],[0.6666666666666666,\"#ff7e36\"],[0.8333333333333334,\"#f34620\"],[1.0,\"#cc0100\"]],\"customdata\":[[\"Principal mode d'impr\\u00e9gnation : les poissons gras et les\\u003cbr\\u003ecrustac\\u00e9s\",\"Principal mode d'impr\\u00e9gnation : les poissons gras et les\\u003cbr\\u003ecrustac\\u00e9s\",\"Principal mode d'impr\\u00e9gnation : les poissons gras et les\\u003cbr\\u003ecrustac\\u00e9s\",\"\",\"Principal mode d'impr\\u00e9gnation : les poissons gras et les\\u003cbr\\u003ecrustac\\u00e9s\",\"\",\"\",\"\"],[\"Consommer du saumon couvre moins de trois quarts des besoins\\u003cbr\\u003ejournaliers en om\\u00e9ga 3 (73% pour 100g). Om\\u00e9gas 3 de type DHA\\u003cbr\\u003eet EPA \\ud83d\\udc1f.\",\"Consommer du saumon couvre moins de trois quarts des besoins\\u003cbr\\u003ejournaliers en om\\u00e9ga 3 (73% pour 100g). Om\\u00e9gas 3 de type DHA\\u003cbr\\u003eet EPA \\ud83d\\udc1f.\",\"Consommer du thon albacore en boite couvre moins d'un tiers\\u003cbr\\u003edes besoins journaliers en om\\u00e9ga 3 (29%, pour 100g). Om\\u00e9gas\\u003cbr\\u003e3 de type DHA et EPA \\ud83d\\udc1f.\",\"Consommer des poissons \\\"proie\\\" ne couvre pas compl\\u00e8tement\\u003cbr\\u003eles besoins journaliers en om\\u00e9ga 3 (93%, pour 100g). Om\\u00e9gas\\u003cbr\\u003e3 de type DHA et EPA \\ud83d\\udc1f.\",\"Consommer des coquillages couvre moins d'un tiers des\\u003cbr\\u003ebesoins journaliers en om\\u00e9ga 3 (17%, pour 100g). Om\\u00e9gas 3 de\\u003cbr\\u003etype DHA et EPA \\ud83d\\udc1f.\",\"Les algues ne contiennent pas d'om\\u00e9gas 3.\",\"Consommer de l'huile de colza couvre compl\\u00e8tement les\\u003cbr\\u003ebesoins journaliers en om\\u00e9ga 3 (328%, pour 100g). Om\\u00e9gas 3\\u003cbr\\u003ede type ALA \\ud83c\\udf31.\",\"Consommer du Simili couvre trois quarts des besoins\\u003cbr\\u003ejournaliers en om\\u00e9ga 3 (74%, pour 100g). Om\\u00e9gas 3 de type\\u003cbr\\u003eALA \\ud83c\\udf31.\"],[\"Fortes pressions environnementales li\\u00e9es \\u00e0 l\\u2019alimentation\\u003cbr\\u003edes saumons : l'approvisionnement en farines v\\u00e9g\\u00e9tales\\u003cbr\\u003econtribue \\u00e0 la d\\u00e9forestation en Amazonie et les farines de\\u003cbr\\u003epoisson aggravent la surp\\u00eache et le d\\u00e9clin des populations\\u003cbr\\u003ede poissons sauvages.\",\"D\\u00e9gradation forte de la qualit\\u00e9 de l'eau du milieu marin :\\u003cbr\\u003erejets de nutriments et d'excr\\u00e9ments, eutrophisation et\\u003cbr\\u003ebloom de phytoplancton, rejets de pesticides et\\u003cbr\\u003emicroplastiques\",\"\",\"\",\"\",\"\",\"\",\"\"],[\"L'empreinte carbone du saumon (\\u00e9levage terrestre) est\\u003cbr\\u003eestim\\u00e9e entre 15 et 20kg de CO2 equivalent par kg de saumon\\u003cbr\\u003eproduit.\",\"L'empreinte carbone du saumon (\\u00e9levage en mer) est estim\\u00e9e \\u00e0\\u003cbr\\u003e10kg de CO2 equivalent par kg de saumon produit (d'apr\\u00e8s\\u003cbr\\u003eWWF).\",\"L'empreinte carbone du thon albacore est estim\\u00e9e \\u00e0 4.4kg de\\u003cbr\\u003eCO2 equivalent par kg de thon produit (d'apr\\u00e8s agribalyse).\",\"L'empreinte carbone des coquillages est estim\\u00e9e \\u00e0 5.7kg de\\u003cbr\\u003eCO2 equivalent par kg produit (d'apr\\u00e8s agribalyse).\",\"L'empreinte carbone des coquillages est estim\\u00e9e \\u00e0 7.26kg de\\u003cbr\\u003eCO2 equivalent par kg produit (d'apr\\u00e8s agribalyse).\",\"L'empreinte carbone des algues est estim\\u00e9e \\u00e0 6.7kg de CO2\\u003cbr\\u003eequivalent par kg produit (d'apr\\u00e8s agribalyse; moyenne de\\u003cbr\\u003eulva, nori, kombu breton, haricot de mer).\",\"L'empreinte carbone de l'huile de colza est estim\\u00e9e \\u00e0 2.3kg\\u003cbr\\u003ede CO2 equivalent par kg produit (d'apr\\u00e8s agribalyse).\",\"L'empreinte carbone des Smili est estim\\u00e9e \\u00e0 1.6kg de CO2\\u003cbr\\u003eequivalent par kg produit (d'apr\\u00e8s agribalyse).\"],[\"Fort d\\u00e9tournement des productions de soja et de la p\\u00eache des\\u003cbr\\u003epetits p\\u00e9lagiques pour nourrir les saumons au d\\u00e9triment des\\u003cbr\\u003epeuples humains ; 90% des captures de la p\\u00eache minoti\\u00e8re\\u003cbr\\u003emondiale sont compos\\u00e9s d\\u2019esp\\u00e8ces directement comestibles par\\u003cbr\\u003eles humains\",\"Fort d\\u00e9tournement des productions de soja et de la p\\u00eache des\\u003cbr\\u003epetits p\\u00e9lagiques pour nourrir les saumons au d\\u00e9triment des\\u003cbr\\u003epeuples humains ; 90% des captures de la p\\u00eache minoti\\u00e8re\\u003cbr\\u003emondiale sont compos\\u00e9s d\\u2019esp\\u00e8ces directement comestibles par\\u003cbr\\u003eles humains\",\"Si eleve\\u00e9e en ferme (55%) polluent les eaux et les terres,\\u003cbr\\u003eavec des produits chimiques et des antibiotiques. Tombent\\u003cbr\\u003emalades et les maladies peuvent se r\\u00e9pandre vite via les\\u003cbr\\u003emouettte qui les mange\",\"Provenance de l'oc\\u00e9an Atlantique Nord-Est (M\\u00e9diterran\\u00e9e,\\u003cbr\\u003eMaroc et Mauritanie) au chalut coulissant et \\u00e0 la senne\\u003cbr\\u003ep\\u00e9lagique\",\"Secteur d'emploi important environ 17 000 personnes, il\\u003cbr\\u003es'agit d'une main d'oeuvre familiale.\",\"Fili\\u00e8re en plein essor,: le d\\u00e9veloppement et la consommation\\u003cbr\\u003ed'algues est recommand\\u00e9 pour la transformation du syst\\u00e8me\\u003cbr\\u003ealimentaire \\u00e0 l'\\u00e9chelle mondiale , l'UE et pour l'ODD\\u003cbr\\u003erelatif \\u00e0 une aquaculture durable\\u002ffaible niveau tropique.\",\"Fili\\u00e8re porteuse d'emploi, a besoin de soutien pour la bio\",\"\"],[\"Les densit\\u00e9s de 70 kg \\u00e0 150 kg de saumons par m3, selon\\u003cbr\\u003el'IFSA (2015), augmentent les risques de maladies\\u003cbr\\u003einfectieuses.\",\"Densit\\u00e9 de 25 kg \\u002f m3,cependznt le bien-\\u00eatre est d\\u00e9grad\\u00e9 \\u00e0\\u003cbr\\u003epartir du seuil de 22 Kg\\u002fm3 en cages marines pour les\\u003cbr\\u003esaumons atlantiques\",\"Les techniques utilis\\u00e9es par les p\\u00eacheries de thons ont des\\u003cbr\\u003eeffets n\\u00e9gatifs sur de nombreuses esp\\u00e8ces non cibl\\u00e9es (100\\u003cbr\\u003e000 tonnes de captures accessoires et rejets chaque ann\\u00e9e\\u003cbr\\u003edans les p\\u00eacheries mondiales de thon\",\"Souffrance et stress des animaux captur\\u00e9s et ceux utilis\\u00e9s\\u003cbr\\u003een app\\u00e2ts vivants, mais une meilleure capacit\\u00e9 \\u00e0 capturer\\u003cbr\\u003eles esp\\u00e8ces cibles\",\"\",\"n.a.\",\"n.a.\",\"\"]],\"hoverlabel\":{\"bgcolor\":\"white\"},\"hovertemplate\":\"%{customdata}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"showscale\":false,\"x\":[\"Saumon\\u003cbr\\u003e\\u00e9levage\\u003cbr\\u003eterrestre\",\"Saumon\\u003cbr\\u003e\\u00e9levage en\\u003cbr\\u003emer\",\"Thon\\u003cbr\\u003ealbacore en\\u003cbr\\u003eboite\\u003cbr\\u003e(p\\u00each\\u00e9)\",\"Poissons\\u003cbr\\u003e\\u201cproie\\u201d\\u003cbr\\u003e(sardines,\\u003cbr\\u003emaquereaux)\",\"Coquillages\\u003cbr\\u003e(moules,\\u003cbr\\u003ehuitres)\",\"Algues\",\"Huile de\\u003cbr\\u003ecolza (bio)\",\"Simili\\u003cbr\\u003epoissons\\u003cbr\\u003ev\\u00e9g\\u00e9taux\\u003cbr\\u003eindustriels\"],\"xgap\":4,\"y\":[\"\\u00c9l\\u00e9ments toxiques\",\"Apport en om\\u00e9gas 3\",\"Biodiversit\\u00e9\",\"Empreinte carbone\",\"Impacts sociaux \",\"Condition animale\"],\"ygap\":4,\"z\":[[5,5,6,4,4,2,1,2],[2,2,5,6,5,0,1,2],[5,6,6,4,4,4,1,2],[6,5,3,4,4,4,2,1],[6,6,6,4,3,1,1,2],[6,4,6,3,2,0,0,2]],\"type\":\"heatmap\"}],\"layout\":{\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"yaxis\":{\"autorange\":\"reversed\",\"showgrid\":false,\"fixedrange\":true},\"xaxis\":{\"showgrid\":false,\"side\":\"top\",\"fixedrange\":true},\"paper_bgcolor\":\"rgba(0,0,0,0)\",\"plot_bgcolor\":\"rgba(0,0,0,0)\",\"hoverlabel\":{\"bgcolor\":\"white\"}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/fr/evolution-map.json b/public/dashboard/graphs/fr/evolution-map.json new file mode 100644 index 000000000..7eff35c6a --- /dev/null +++ b/public/dashboard/graphs/fr/evolution-map.json @@ -0,0 +1 @@ +"{\"data\":[{\"customdata\":[[16490.52,2021,\"\\u00c9tats-Unis\",\"USA\"],[205000.0,2021,\"Royaume-Uni\",\"GBR\"],[180.0,2021,\"\\u00c9mirats Arabes Unis\",\"ARE\"],[160.0,2021,\"Suisse\",\"CHE\"],[14959.0,2021,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[1562415.01,2021,\"Norv\\u00e8ge\",\"NOR\"],[60.0,2021,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[12844.0,2021,\"Irlande\",\"IRL\"],[46458.0,2021,\"Islande\",\"ISL\"],[115650.0,2021,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[1668.0,2021,\"Danemark\",\"DNK\"],[725280.0,2021,\"Chili\",\"CHL\"],[120186.0,2021,\"Canada\",\"CAN\"],[84045.234,2021,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"\\u00c9mirats Arabes Unis\",\"Suisse\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"ARE\",\"CHE\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16490.52,205000.0,180.0,160.0,14959.0,1562415.01,60.0,12844.0,46458.0,115650.0,1668.0,725280.0,120186.0,84045.234],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"layout\":{\"geo\":{\"domain\":{\"x\":[0.0,1.0],\"y\":[0.0,1.0]},\"projection\":{\"type\":\"natural earth\"},\"showcountries\":true},\"legend\":{\"itemsizing\":\"constant\",\"tracegroupgap\":0},\"sliders\":[{\"active\":41,\"currentvalue\":{\"prefix\":\"Ann\\u00e9e=\"},\"len\":0.9,\"pad\":{\"b\":10,\"t\":60},\"steps\":[{\"args\":[[\"1980\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1980\",\"method\":\"animate\"},{\"args\":[[\"1981\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1981\",\"method\":\"animate\"},{\"args\":[[\"1982\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1982\",\"method\":\"animate\"},{\"args\":[[\"1983\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1983\",\"method\":\"animate\"},{\"args\":[[\"1984\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1984\",\"method\":\"animate\"},{\"args\":[[\"1985\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1985\",\"method\":\"animate\"},{\"args\":[[\"1986\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1986\",\"method\":\"animate\"},{\"args\":[[\"1987\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1987\",\"method\":\"animate\"},{\"args\":[[\"1988\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1988\",\"method\":\"animate\"},{\"args\":[[\"1989\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1989\",\"method\":\"animate\"},{\"args\":[[\"1990\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1990\",\"method\":\"animate\"},{\"args\":[[\"1991\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1991\",\"method\":\"animate\"},{\"args\":[[\"1992\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1992\",\"method\":\"animate\"},{\"args\":[[\"1993\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1993\",\"method\":\"animate\"},{\"args\":[[\"1994\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1994\",\"method\":\"animate\"},{\"args\":[[\"1995\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1995\",\"method\":\"animate\"},{\"args\":[[\"1996\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1996\",\"method\":\"animate\"},{\"args\":[[\"1997\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1997\",\"method\":\"animate\"},{\"args\":[[\"1998\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1998\",\"method\":\"animate\"},{\"args\":[[\"1999\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"1999\",\"method\":\"animate\"},{\"args\":[[\"2000\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2000\",\"method\":\"animate\"},{\"args\":[[\"2001\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2001\",\"method\":\"animate\"},{\"args\":[[\"2002\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2002\",\"method\":\"animate\"},{\"args\":[[\"2003\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2003\",\"method\":\"animate\"},{\"args\":[[\"2004\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2004\",\"method\":\"animate\"},{\"args\":[[\"2005\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2005\",\"method\":\"animate\"},{\"args\":[[\"2006\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2006\",\"method\":\"animate\"},{\"args\":[[\"2007\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2007\",\"method\":\"animate\"},{\"args\":[[\"2008\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2008\",\"method\":\"animate\"},{\"args\":[[\"2009\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2009\",\"method\":\"animate\"},{\"args\":[[\"2010\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2010\",\"method\":\"animate\"},{\"args\":[[\"2011\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2011\",\"method\":\"animate\"},{\"args\":[[\"2012\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2012\",\"method\":\"animate\"},{\"args\":[[\"2013\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2013\",\"method\":\"animate\"},{\"args\":[[\"2014\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2014\",\"method\":\"animate\"},{\"args\":[[\"2015\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2015\",\"method\":\"animate\"},{\"args\":[[\"2016\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2016\",\"method\":\"animate\"},{\"args\":[[\"2017\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2017\",\"method\":\"animate\"},{\"args\":[[\"2018\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2018\",\"method\":\"animate\"},{\"args\":[[\"2019\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2019\",\"method\":\"animate\"},{\"args\":[[\"2020\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2020\",\"method\":\"animate\"},{\"args\":[[\"2021\"],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"2021\",\"method\":\"animate\"}],\"x\":0.1,\"xanchor\":\"left\",\"y\":0,\"yanchor\":\"top\"}],\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]],\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]},\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"bgcolor\":\"#E5ECF6\",\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"ternary\":{\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"bgcolor\":\"#E5ECF6\",\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"zerolinewidth\":2},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"zerolinewidth\":2}}},\"title\":{\"text\":\"Evolution de l'\\u00e9levage du saumon par pays\"},\"updatemenus\":[{\"buttons\":[{\"args\":[null,{\"frame\":{\"duration\":500,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":500,\"easing\":\"linear\"}}],\"label\":\"▶\",\"method\":\"animate\"},{\"args\":[[null],{\"frame\":{\"duration\":0,\"redraw\":true},\"mode\":\"immediate\",\"fromcurrent\":true,\"transition\":{\"duration\":0,\"easing\":\"linear\"}}],\"label\":\"◼\",\"method\":\"animate\"}],\"direction\":\"left\",\"pad\":{\"r\":10,\"t\":70},\"showactive\":false,\"type\":\"buttons\",\"x\":0.1,\"xanchor\":\"right\",\"y\":0,\"yanchor\":\"top\"}],\"modebar\":{\"remove\":[\"lasso2d\",\"select2d\"]},\"hoverlabel\":{\"bgcolor\":\"white\"}},\"frames\":[{\"data\":[{\"customdata\":[[598.0,1980,\"Royaume-Uni\",\"GBR\"],[30.0,1980,\"Su\\u00e8de\",\"SWE\"],[4312.0,1980,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1980,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[21.0,1980,\"Irlande\",\"IRL\"],[27.0,1980,\"Islande\",\"ISL\"],[251.0,1980,\"Finlande\",\"FIN\"],[22.0,1980,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[0.0,1980,\"Chili\",\"CHL\"],[27.0,1980,\"Canada\",\"CAN\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"Royaume-Uni\",\"Su\\u00e8de\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\"],\"legendgroup\":\"\",\"locations\":[\"GBR\",\"SWE\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"CHL\",\"CAN\"],\"marker\":{\"color\":\"#151c97\",\"size\":[598.0,30.0,4312.0,0.0,21.0,27.0,251.0,22.0,0.0,27.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1980\"},{\"data\":[{\"customdata\":[[1133.0,1981,\"Royaume-Uni\",\"GBR\"],[0.0,1981,\"Turquie\",null],[50.0,1981,\"Su\\u00e8de\",\"SWE\"],[8418.0,1981,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1981,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[35.0,1981,\"Irlande\",\"IRL\"],[39.0,1981,\"Islande\",\"ISL\"],[312.0,1981,\"Finlande\",\"FIN\"],[45.0,1981,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[0.0,1981,\"Chili\",\"CHL\"],[76.0,1981,\"Canada\",\"CAN\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\"],\"legendgroup\":\"\",\"locations\":[\"GBR\",null,\"SWE\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"CHL\",\"CAN\"],\"marker\":{\"color\":\"#151c97\",\"size\":[1133.0,0.0,50.0,8418.0,0.0,35.0,39.0,312.0,45.0,0.0,76.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1981\"},{\"data\":[{\"customdata\":[[2152.0,1982,\"Royaume-Uni\",\"GBR\"],[0.0,1982,\"Turquie\",null],[50.0,1982,\"Su\\u00e8de\",\"SWE\"],[10695.0,1982,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1982,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[100.0,1982,\"Irlande\",\"IRL\"],[56.0,1982,\"Islande\",\"ISL\"],[9.0,1982,\"Finlande\",\"FIN\"],[60.0,1982,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[0.0,1982,\"Chili\",\"CHL\"],[143.0,1982,\"Canada\",\"CAN\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\"],\"legendgroup\":\"\",\"locations\":[\"GBR\",null,\"SWE\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"CHL\",\"CAN\"],\"marker\":{\"color\":\"#151c97\",\"size\":[2152.0,0.0,50.0,10695.0,0.0,100.0,56.0,9.0,60.0,0.0,143.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1982\"},{\"data\":[{\"customdata\":[[2536.0,1983,\"Royaume-Uni\",\"GBR\"],[0.0,1983,\"Turquie\",null],[75.0,1983,\"Su\\u00e8de\",\"SWE\"],[17298.0,1983,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1983,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[257.0,1983,\"Irlande\",\"IRL\"],[79.0,1983,\"Islande\",\"ISL\"],[235.0,1983,\"Finlande\",\"FIN\"],[90.0,1983,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[0.0,1983,\"Chili\",\"CHL\"],[68.0,1983,\"Canada\",\"CAN\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\"],\"legendgroup\":\"\",\"locations\":[\"GBR\",null,\"SWE\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"CHL\",\"CAN\"],\"marker\":{\"color\":\"#151c97\",\"size\":[2536.0,0.0,75.0,17298.0,0.0,257.0,79.0,235.0,90.0,0.0,68.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1983\"},{\"data\":[{\"customdata\":[[3912.0,1984,\"Royaume-Uni\",\"GBR\"],[0.0,1984,\"Turquie\",null],[118.0,1984,\"Su\\u00e8de\",\"SWE\"],[150.0,1984,\"Espagne\",\"ESP\"],[21881.0,1984,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1984,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[385.0,1984,\"Irlande\",\"IRL\"],[107.0,1984,\"Islande\",\"ISL\"],[93.0,1984,\"Finlande\",\"FIN\"],[117.0,1984,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[0.0,1984,\"Chili\",\"CHL\"],[222.0,1984,\"Canada\",\"CAN\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\"],\"legendgroup\":\"\",\"locations\":[\"GBR\",null,\"SWE\",\"ESP\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"CHL\",\"CAN\"],\"marker\":{\"color\":\"#151c97\",\"size\":[3912.0,0.0,118.0,150.0,21881.0,0.0,385.0,107.0,93.0,117.0,0.0,222.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1984\"},{\"data\":[{\"customdata\":[[6921.0,1985,\"Royaume-Uni\",\"GBR\"],[0.0,1985,\"Turquie\",null],[81.0,1985,\"Su\\u00e8de\",\"SWE\"],[150.0,1985,\"Espagne\",\"ESP\"],[29473.0,1985,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1985,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[700.0,1985,\"Irlande\",\"IRL\"],[91.0,1985,\"Islande\",\"ISL\"],[92.0,1985,\"Finlande\",\"FIN\"],[940.0,1985,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[0.0,1985,\"Chili\",\"CHL\"],[349.0,1985,\"Canada\",\"CAN\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\"],\"legendgroup\":\"\",\"locations\":[\"GBR\",null,\"SWE\",\"ESP\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"CHL\",\"CAN\"],\"marker\":{\"color\":\"#151c97\",\"size\":[6921.0,0.0,81.0,150.0,29473.0,0.0,700.0,91.0,92.0,940.0,0.0,349.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1985\"},{\"data\":[{\"customdata\":[[8.0,1986,\"\\u00c9tats-Unis\",\"USA\"],[10337.0,1986,\"Royaume-Uni\",\"GBR\"],[0.0,1986,\"Turquie\",null],[160.0,1986,\"Su\\u00e8de\",\"SWE\"],[150.0,1986,\"Espagne\",\"ESP\"],[44831.0,1986,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1986,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[1215.0,1986,\"Irlande\",\"IRL\"],[123.0,1986,\"Islande\",\"ISL\"],[93.0,1986,\"Finlande\",\"FIN\"],[1370.0,1986,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[0.0,1986,\"Chili\",\"CHL\"],[682.0,1986,\"Canada\",\"CAN\"],[10.0,1986,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[8.0,10337.0,0.0,160.0,150.0,44831.0,0.0,1215.0,123.0,93.0,1370.0,0.0,682.0,10.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1986\"},{\"data\":[{\"customdata\":[[113.0,1987,\"\\u00c9tats-Unis\",\"USA\"],[12721.0,1987,\"Royaume-Uni\",\"GBR\"],[0.0,1987,\"Turquie\",null],[224.0,1987,\"Su\\u00e8de\",\"SWE\"],[150.0,1987,\"Espagne\",\"ESP\"],[46453.0,1987,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1987,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[2300.0,1987,\"Irlande\",\"IRL\"],[490.0,1987,\"Islande\",\"ISL\"],[3.0,1987,\"Gr\\u00e8ce\",\"GRC\"],[11.0,1987,\"Finlande\",\"FIN\"],[3193.0,1987,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[41.0,1987,\"Chili\",\"CHL\"],[1385.0,1987,\"Canada\",\"CAN\"],[62.0,1987,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[113.0,12721.0,0.0,224.0,150.0,46453.0,0.0,2300.0,490.0,3.0,11.0,3193.0,41.0,1385.0,62.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1987\"},{\"data\":[{\"customdata\":[[898.0,1988,\"\\u00c9tats-Unis\",\"USA\"],[17951.0,1988,\"Royaume-Uni\",\"GBR\"],[0.0,1988,\"Turquie\",null],[363.0,1988,\"Su\\u00e8de\",\"SWE\"],[150.0,1988,\"Espagne\",\"ESP\"],[0.0,1988,\"Portugal\",\"PRT\"],[78744.0,1988,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1988,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[4075.0,1988,\"Irlande\",\"IRL\"],[1053.0,1988,\"Islande\",\"ISL\"],[11.0,1988,\"Gr\\u00e8ce\",\"GRC\"],[117.0,1988,\"Finlande\",\"FIN\"],[3400.0,1988,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[165.0,1988,\"Chili\",\"CHL\"],[3431.0,1988,\"Canada\",\"CAN\"],[240.0,1988,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"Portugal\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[898.0,17951.0,0.0,363.0,150.0,0.0,78744.0,0.0,4075.0,1053.0,11.0,117.0,3400.0,165.0,3431.0,240.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1988\"},{\"data\":[{\"customdata\":[[2554.0,1989,\"\\u00c9tats-Unis\",\"USA\"],[28603.0,1989,\"Royaume-Uni\",\"GBR\"],[0.0,1989,\"Turquie\",null],[771.0,1989,\"Su\\u00e8de\",\"SWE\"],[150.0,1989,\"Espagne\",\"ESP\"],[100.0,1989,\"Portugal\",\"PRT\"],[111337.0,1989,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1989,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[5500.0,1989,\"Irlande\",\"IRL\"],[1480.0,1989,\"Islande\",\"ISL\"],[19.0,1989,\"Gr\\u00e8ce\",\"GRC\"],[71.0,1989,\"Finlande\",\"FIN\"],[7901.0,1989,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[1860.0,1989,\"Chili\",\"CHL\"],[5967.0,1989,\"Canada\",\"CAN\"],[1750.0,1989,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"Portugal\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[2554.0,28603.0,0.0,771.0,150.0,100.0,111337.0,0.0,5500.0,1480.0,19.0,71.0,7901.0,1860.0,5967.0,1750.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1989\"},{\"data\":[{\"customdata\":[[3185.0,1990,\"\\u00c9tats-Unis\",\"USA\"],[32004.0,1990,\"Royaume-Uni\",\"GBR\"],[300.0,1990,\"Turquie\",null],[602.0,1990,\"Su\\u00e8de\",\"SWE\"],[355.0,1990,\"Espagne\",\"ESP\"],[120.0,1990,\"Portugal\",\"PRT\"],[145990.0,1990,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1990,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[6323.0,1990,\"Irlande\",\"IRL\"],[2716.0,1990,\"Islande\",\"ISL\"],[12.0,1990,\"Gr\\u00e8ce\",\"GRC\"],[157.0,1990,\"Finlande\",\"FIN\"],[13025.0,1990,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[9478.0,1990,\"Chili\",\"CHL\"],[9625.0,1990,\"Canada\",\"CAN\"],[1750.0,1990,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"Portugal\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[3185.0,32004.0,300.0,602.0,355.0,120.0,145990.0,0.0,6323.0,2716.0,12.0,157.0,13025.0,9478.0,9625.0,1750.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1990\"},{\"data\":[{\"customdata\":[[6661.0,1991,\"\\u00c9tats-Unis\",\"USA\"],[40657.0,1991,\"Royaume-Uni\",\"GBR\"],[1500.0,1991,\"Turquie\",null],[270.0,1991,\"Su\\u00e8de\",\"SWE\"],[553.0,1991,\"Espagne\",\"ESP\"],[100.0,1991,\"Portugal\",\"PRT\"],[154900.0,1991,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1991,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[9300.0,1991,\"Irlande\",\"IRL\"],[2566.0,1991,\"Islande\",\"ISL\"],[33.0,1991,\"Gr\\u00e8ce\",\"GRC\"],[574.0,1991,\"France\",\"FRA\"],[146.0,1991,\"Finlande\",\"FIN\"],[17914.0,1991,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[14957.0,1991,\"Chili\",\"CHL\"],[13499.0,1991,\"Canada\",\"CAN\"],[2653.0,1991,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"Portugal\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[6661.0,40657.0,1500.0,270.0,553.0,100.0,154900.0,0.0,9300.0,2566.0,33.0,574.0,146.0,17914.0,14957.0,13499.0,2653.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1991\"},{\"data\":[{\"customdata\":[[10028.0,1992,\"\\u00c9tats-Unis\",\"USA\"],[36302.0,1992,\"Royaume-Uni\",\"GBR\"],[680.0,1992,\"Turquie\",null],[388.0,1992,\"Su\\u00e8de\",\"SWE\"],[782.0,1992,\"Espagne\",\"ESP\"],[0.0,1992,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[0.0,1992,\"Portugal\",\"PRT\"],[124138.0,1992,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1992,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[9696.0,1992,\"Irlande\",\"IRL\"],[2125.0,1992,\"Islande\",\"ISL\"],[20.0,1992,\"Gr\\u00e8ce\",\"GRC\"],[600.0,1992,\"France\",\"FRA\"],[85.0,1992,\"Finlande\",\"FIN\"],[18364.0,1992,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[23715.0,1992,\"Chili\",\"CHL\"],[17305.0,1992,\"Canada\",\"CAN\"],[3300.0,1992,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Portugal\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[10028.0,36302.0,680.0,388.0,782.0,0.0,0.0,124138.0,0.0,9696.0,2125.0,20.0,600.0,85.0,18364.0,23715.0,17305.0,3300.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1992\"},{\"data\":[{\"customdata\":[[10750.0,1993,\"\\u00c9tats-Unis\",\"USA\"],[48791.0,1993,\"Royaume-Uni\",\"GBR\"],[791.0,1993,\"Turquie\",null],[4.0,1993,\"Su\\u00e8de\",\"SWE\"],[562.0,1993,\"Espagne\",\"ESP\"],[0.0,1993,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[0.0,1993,\"Portugal\",\"PRT\"],[155581.0,1993,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1993,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[12366.0,1993,\"Irlande\",\"IRL\"],[2348.0,1993,\"Islande\",\"ISL\"],[30.0,1993,\"Gr\\u00e8ce\",\"GRC\"],[564.0,1993,\"France\",\"FRA\"],[0.0,1993,\"Finlande\",\"FIN\"],[17660.0,1993,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[29180.0,1993,\"Chili\",\"CHL\"],[23483.0,1993,\"Canada\",\"CAN\"],[3500.0,1993,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Portugal\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[10750.0,48791.0,791.0,4.0,562.0,0.0,0.0,155581.0,0.0,12366.0,2348.0,30.0,564.0,0.0,17660.0,29180.0,23483.0,3500.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1993\"},{\"data\":[{\"customdata\":[[10906.0,1994,\"\\u00c9tats-Unis\",\"USA\"],[64266.0,1994,\"Royaume-Uni\",\"GBR\"],[434.0,1994,\"Turquie\",null],[7.0,1994,\"Su\\u00e8de\",\"SWE\"],[909.0,1994,\"Espagne\",\"ESP\"],[0.0,1994,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[0.0,1994,\"Portugal\",\"PRT\"],[202459.0,1994,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1994,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[11616.0,1994,\"Irlande\",\"IRL\"],[2588.0,1994,\"Islande\",\"ISL\"],[74.0,1994,\"Gr\\u00e8ce\",\"GRC\"],[856.0,1994,\"France\",\"FRA\"],[0.0,1994,\"Finlande\",\"FIN\"],[14868.0,1994,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[34175.0,1994,\"Chili\",\"CHL\"],[27773.0,1994,\"Canada\",\"CAN\"],[4000.0,1994,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Portugal\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[10906.0,64266.0,434.0,7.0,909.0,0.0,0.0,202459.0,0.0,11616.0,2588.0,74.0,856.0,0.0,14868.0,34175.0,27773.0,4000.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1994\"},{\"data\":[{\"customdata\":[[14075.0,1995,\"\\u00c9tats-Unis\",\"USA\"],[70322.0,1995,\"Royaume-Uni\",\"GBR\"],[654.0,1995,\"Turquie\",null],[19.0,1995,\"Su\\u00e8de\",\"SWE\"],[695.0,1995,\"Espagne\",\"ESP\"],[0.0,1995,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[0.0,1995,\"Portugal\",\"PRT\"],[261522.0,1995,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1995,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[11811.0,1995,\"Irlande\",\"IRL\"],[2591.0,1995,\"Islande\",\"ISL\"],[7.0,1995,\"Gr\\u00e8ce\",\"GRC\"],[894.0,1995,\"France\",\"FRA\"],[0.0,1995,\"Finlande\",\"FIN\"],[8539.0,1995,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[54250.0,1995,\"Chili\",\"CHL\"],[33674.0,1995,\"Canada\",\"CAN\"],[6192.0,1995,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Portugal\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[14075.0,70322.0,654.0,19.0,695.0,0.0,0.0,261522.0,0.0,11811.0,2591.0,7.0,894.0,0.0,8539.0,54250.0,33674.0,6192.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1995\"},{\"data\":[{\"customdata\":[[13906.0,1996,\"\\u00c9tats-Unis\",\"USA\"],[83344.0,1996,\"Royaume-Uni\",\"GBR\"],[193.0,1996,\"Turquie\",null],[12.0,1996,\"Su\\u00e8de\",\"SWE\"],[726.0,1996,\"Espagne\",\"ESP\"],[0.0,1996,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[4.0,1996,\"Portugal\",\"PRT\"],[297557.0,1996,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1996,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[14025.0,1996,\"Irlande\",\"IRL\"],[2832.0,1996,\"Islande\",\"ISL\"],[9.0,1996,\"Gr\\u00e8ce\",\"GRC\"],[800.0,1996,\"France\",\"FRA\"],[0.0,1996,\"Finlande\",\"FIN\"],[17049.0,1996,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[77327.0,1996,\"Chili\",\"CHL\"],[36475.0,1996,\"Canada\",\"CAN\"],[7647.0,1996,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Portugal\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[13906.0,83344.0,193.0,12.0,726.0,0.0,4.0,297557.0,0.0,14025.0,2832.0,9.0,800.0,0.0,17049.0,77327.0,36475.0,7647.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1996\"},{\"data\":[{\"customdata\":[[18005.0,1997,\"\\u00c9tats-Unis\",\"USA\"],[99422.0,1997,\"Royaume-Uni\",\"GBR\"],[50.0,1997,\"Turquie\",null],[0.0,1997,\"Su\\u00e8de\",\"SWE\"],[851.0,1997,\"Espagne\",\"ESP\"],[0.0,1997,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[250.0,1997,\"Portugal\",\"PRT\"],[332581.0,1997,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1997,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[15441.0,1997,\"Irlande\",\"IRL\"],[2513.0,1997,\"Islande\",\"ISL\"],[12.0,1997,\"Gr\\u00e8ce\",\"GRC\"],[950.0,1997,\"France\",\"FRA\"],[0.0,1997,\"Finlande\",\"FIN\"],[21103.0,1997,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[96675.0,1997,\"Chili\",\"CHL\"],[51015.0,1997,\"Canada\",\"CAN\"],[7648.0,1997,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Portugal\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"PRT\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[18005.0,99422.0,50.0,0.0,851.0,0.0,250.0,332581.0,0.0,15441.0,2513.0,12.0,950.0,0.0,21103.0,96675.0,51015.0,7648.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1997\"},{\"data\":[{\"customdata\":[[14507.0,1998,\"\\u00c9tats-Unis\",\"USA\"],[110917.0,1998,\"Royaume-Uni\",\"GBR\"],[40.0,1998,\"Turquie\",null],[0.0,1998,\"Su\\u00e8de\",\"SWE\"],[798.0,1998,\"Espagne\",\"ESP\"],[0.0,1998,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[360806.0,1998,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1998,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[14860.0,1998,\"Irlande\",\"IRL\"],[2742.0,1998,\"Islande\",\"ISL\"],[11.0,1998,\"Gr\\u00e8ce\",\"GRC\"],[760.0,1998,\"France\",\"FRA\"],[0.0,1998,\"Finlande\",\"FIN\"],[19176.0,1998,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[107066.0,1998,\"Chili\",\"CHL\"],[49475.0,1998,\"Canada\",\"CAN\"],[7069.0,1998,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[14507.0,110917.0,40.0,0.0,798.0,0.0,360806.0,0.0,14860.0,2742.0,11.0,760.0,0.0,19176.0,107066.0,49475.0,7069.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1998\"},{\"data\":[{\"customdata\":[[17739.0,1999,\"\\u00c9tats-Unis\",\"USA\"],[126686.0,1999,\"Royaume-Uni\",\"GBR\"],[0.0,1999,\"Turquie\",null],[0.0,1999,\"Su\\u00e8de\",\"SWE\"],[618.0,1999,\"Espagne\",\"ESP\"],[5.0,1999,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[425154.0,1999,\"Norv\\u00e8ge\",\"NOR\"],[0.0,1999,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[18076.0,1999,\"Irlande\",\"IRL\"],[2900.0,1999,\"Islande\",\"ISL\"],[9.0,1999,\"Gr\\u00e8ce\",\"GRC\"],[750.0,1999,\"France\",\"FRA\"],[0.0,1999,\"Finlande\",\"FIN\"],[39252.0,1999,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[103242.0,1999,\"Chili\",\"CHL\"],[61990.0,1999,\"Canada\",\"CAN\"],[9195.0,1999,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[17739.0,126686.0,0.0,0.0,618.0,5.0,425154.0,0.0,18076.0,2900.0,9.0,750.0,0.0,39252.0,103242.0,61990.0,9195.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"1999\"},{\"data\":[{\"customdata\":[[22395.0,2000,\"\\u00c9tats-Unis\",\"USA\"],[128959.0,2000,\"Royaume-Uni\",\"GBR\"],[0.0,2000,\"Turquie\",null],[0.0,2000,\"Su\\u00e8de\",\"SWE\"],[226.0,2000,\"Espagne\",\"ESP\"],[0.0,2000,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[440061.0,2000,\"Norv\\u00e8ge\",\"NOR\"],[0.0,2000,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[17648.0,2000,\"Irlande\",\"IRL\"],[2593.0,2000,\"Islande\",\"ISL\"],[17.0,2000,\"Gr\\u00e8ce\",\"GRC\"],[102.0,2000,\"France\",\"FRA\"],[0.0,2000,\"Finlande\",\"FIN\"],[33508.0,2000,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[166897.0,2000,\"Chili\",\"CHL\"],[72495.0,2000,\"Canada\",\"CAN\"],[10907.0,2000,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[22395.0,128959.0,0.0,0.0,226.0,0.0,440061.0,0.0,17648.0,2593.0,17.0,102.0,0.0,33508.0,166897.0,72495.0,10907.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2000\"},{\"data\":[{\"customdata\":[[20769.0,2001,\"\\u00c9tats-Unis\",\"USA\"],[138519.0,2001,\"Royaume-Uni\",\"GBR\"],[0.0,2001,\"Turquie\",null],[0.0,2001,\"Su\\u00e8de\",\"SWE\"],[323.0,2001,\"Espagne\",\"ESP\"],[0.0,2001,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[436103.0,2001,\"Norv\\u00e8ge\",\"NOR\"],[0.0,2001,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[23312.0,2001,\"Irlande\",\"IRL\"],[2645.0,2001,\"Islande\",\"ISL\"],[23.0,2001,\"Gr\\u00e8ce\",\"GRC\"],[90.0,2001,\"France\",\"FRA\"],[0.0,2001,\"Finlande\",\"FIN\"],[46041.0,2001,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[253850.0,2001,\"Chili\",\"CHL\"],[95606.0,2001,\"Canada\",\"CAN\"],[12724.0,2001,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[20769.0,138519.0,0.0,0.0,323.0,0.0,436103.0,0.0,23312.0,2645.0,23.0,90.0,0.0,46041.0,253850.0,95606.0,12724.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2001\"},{\"data\":[{\"customdata\":[[12734.0,2002,\"\\u00c9tats-Unis\",\"USA\"],[145609.0,2002,\"Royaume-Uni\",\"GBR\"],[0.0,2002,\"Turquie\",null],[0.0,2002,\"Su\\u00e8de\",\"SWE\"],[152.0,2002,\"Espagne\",\"ESP\"],[0.0,2002,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[462495.0,2002,\"Norv\\u00e8ge\",\"NOR\"],[0.0,2002,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[23231.0,2002,\"Irlande\",\"IRL\"],[1471.0,2002,\"Islande\",\"ISL\"],[28.0,2002,\"Gr\\u00e8ce\",\"GRC\"],[443.0,2002,\"France\",\"FRA\"],[0.0,2002,\"Finlande\",\"FIN\"],[44953.0,2002,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[15.0,2002,\"Danemark\",\"DNK\"],[265726.0,2002,\"Chili\",\"CHL\"],[114921.0,2002,\"Canada\",\"CAN\"],[14356.0,2002,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[12734.0,145609.0,0.0,0.0,152.0,0.0,462495.0,0.0,23231.0,1471.0,28.0,443.0,0.0,44953.0,15.0,265726.0,114921.0,14356.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2002\"},{\"data\":[{\"customdata\":[[16315.0,2003,\"\\u00c9tats-Unis\",\"USA\"],[145609.0,2003,\"Royaume-Uni\",\"GBR\"],[0.0,2003,\"Turquie\",null],[0.0,2003,\"Su\\u00e8de\",\"SWE\"],[27.0,2003,\"Espagne\",\"ESP\"],[300.0,2003,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[509544.0,2003,\"Norv\\u00e8ge\",\"NOR\"],[0.0,2003,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[16347.0,2003,\"Irlande\",\"IRL\"],[3708.0,2003,\"Islande\",\"ISL\"],[9.0,2003,\"Gr\\u00e8ce\",\"GRC\"],[544.0,2003,\"France\",\"FRA\"],[0.0,2003,\"Finlande\",\"FIN\"],[52526.0,2003,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[16.0,2003,\"Danemark\",\"DNK\"],[280301.0,2003,\"Chili\",\"CHL\"],[107228.0,2003,\"Canada\",\"CAN\"],[15208.0,2003,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16315.0,145609.0,0.0,0.0,27.0,300.0,509544.0,0.0,16347.0,3708.0,9.0,544.0,0.0,52526.0,16.0,280301.0,107228.0,15208.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2003\"},{\"data\":[{\"customdata\":[[15127.0,2004,\"\\u00c9tats-Unis\",\"USA\"],[158099.0,2004,\"Royaume-Uni\",\"GBR\"],[0.0,2004,\"Turquie\",null],[0.0,2004,\"Su\\u00e8de\",\"SWE\"],[15.0,2004,\"Espagne\",\"ESP\"],[203.0,2004,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[563815.0,2004,\"Norv\\u00e8ge\",\"NOR\"],[0.0,2004,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[14067.0,2004,\"Irlande\",\"IRL\"],[6624.0,2004,\"Islande\",\"ISL\"],[7.0,2004,\"Gr\\u00e8ce\",\"GRC\"],[735.0,2004,\"France\",\"FRA\"],[0.0,2004,\"Finlande\",\"FIN\"],[40985.0,2004,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[16.0,2004,\"Danemark\",\"DNK\"],[348983.0,2004,\"Chili\",\"CHL\"],[96774.0,2004,\"Canada\",\"CAN\"],[16476.0,2004,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[15127.0,158099.0,0.0,0.0,15.0,203.0,563815.0,0.0,14067.0,6624.0,7.0,735.0,0.0,40985.0,16.0,348983.0,96774.0,16476.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2004\"},{\"data\":[{\"customdata\":[[9401.0,2005,\"\\u00c9tats-Unis\",\"USA\"],[129823.0,2005,\"Royaume-Uni\",\"GBR\"],[0.0,2005,\"Turquie\",null],[0.0,2005,\"Su\\u00e8de\",\"SWE\"],[0.0,2005,\"Espagne\",\"ESP\"],[204.0,2005,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[586512.0,2005,\"Norv\\u00e8ge\",\"NOR\"],[0.0,2005,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[13764.0,2005,\"Irlande\",\"IRL\"],[6488.0,2005,\"Islande\",\"ISL\"],[6.0,2005,\"Gr\\u00e8ce\",\"GRC\"],[1190.0,2005,\"France\",\"FRA\"],[0.0,2005,\"Finlande\",\"FIN\"],[18962.0,2005,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[18.0,2005,\"Danemark\",\"DNK\"],[385779.0,2005,\"Chili\",\"CHL\"],[98370.0,2005,\"Canada\",\"CAN\"],[16780.0,2005,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[9401.0,129823.0,0.0,0.0,0.0,204.0,586512.0,0.0,13764.0,6488.0,6.0,1190.0,0.0,18962.0,18.0,385779.0,98370.0,16780.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2005\"},{\"data\":[{\"customdata\":[[10485.0,2006,\"\\u00c9tats-Unis\",\"USA\"],[131973.0,2006,\"Royaume-Uni\",\"GBR\"],[0.0,2006,\"Turquie\",null],[0.0,2006,\"Su\\u00e8de\",\"SWE\"],[2.0,2006,\"Espagne\",\"ESP\"],[229.0,2006,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[629888.0,2006,\"Norv\\u00e8ge\",\"NOR\"],[0.0,2006,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[11174.0,2006,\"Irlande\",\"IRL\"],[5224.0,2006,\"Islande\",\"ISL\"],[11.0,2006,\"Gr\\u00e8ce\",\"GRC\"],[1391.0,2006,\"France\",\"FRA\"],[0.0,2006,\"Finlande\",\"FIN\"],[13078.0,2006,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[18.0,2006,\"Danemark\",\"DNK\"],[376476.0,2006,\"Chili\",\"CHL\"],[118061.0,2006,\"Canada\",\"CAN\"],[20710.0,2006,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[10485.0,131973.0,0.0,0.0,2.0,229.0,629888.0,0.0,11174.0,5224.0,11.0,1391.0,0.0,13078.0,18.0,376476.0,118061.0,20710.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2006\"},{\"data\":[{\"customdata\":[[11001.0,2007,\"\\u00c9tats-Unis\",\"USA\"],[130104.0,2007,\"Royaume-Uni\",\"GBR\"],[0.0,2007,\"Turquie\",null],[0.0,2007,\"Su\\u00e8de\",\"SWE\"],[0.0,2007,\"Espagne\",\"ESP\"],[111.0,2007,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[744222.0,2007,\"Norv\\u00e8ge\",\"NOR\"],[0.0,2007,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[9923.0,2007,\"Irlande\",\"IRL\"],[1197.0,2007,\"Islande\",\"ISL\"],[8.0,2007,\"Gr\\u00e8ce\",\"GRC\"],[1100.0,2007,\"France\",\"FRA\"],[0.0,2007,\"Finlande\",\"FIN\"],[22305.0,2007,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[16.0,2007,\"Danemark\",\"DNK\"],[331042.0,2007,\"Chili\",\"CHL\"],[102509.0,2007,\"Canada\",\"CAN\"],[25336.0,2007,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[11001.0,130104.0,0.0,0.0,0.0,111.0,744222.0,0.0,9923.0,1197.0,8.0,1100.0,0.0,22305.0,16.0,331042.0,102509.0,25336.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2007\"},{\"data\":[{\"customdata\":[[16714.0,2008,\"\\u00c9tats-Unis\",\"USA\"],[128744.0,2008,\"Royaume-Uni\",\"GBR\"],[0.0,2008,\"Turquie\",null],[10.0,2008,\"Su\\u00e8de\",\"SWE\"],[0.0,2008,\"Espagne\",\"ESP\"],[51.0,2008,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[737694.0,2008,\"Norv\\u00e8ge\",\"NOR\"],[9217.0,2008,\"Irlande\",\"IRL\"],[330.0,2008,\"Islande\",\"ISL\"],[8.0,2008,\"Gr\\u00e8ce\",\"GRC\"],[1335.0,2008,\"France\",\"FRA\"],[0.0,2008,\"Finlande\",\"FIN\"],[38494.0,2008,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[11.0,2008,\"Danemark\",\"DNK\"],[388847.0,2008,\"Chili\",\"CHL\"],[104075.0,2008,\"Canada\",\"CAN\"],[25736.9,2008,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"France\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"IRL\",\"ISL\",\"GRC\",\"FRA\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16714.0,128744.0,0.0,10.0,0.0,51.0,737694.0,9217.0,330.0,8.0,1335.0,0.0,38494.0,11.0,388847.0,104075.0,25736.9],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2008\"},{\"data\":[{\"customdata\":[[14074.0,2009,\"\\u00c9tats-Unis\",\"USA\"],[144663.0,2009,\"Royaume-Uni\",\"GBR\"],[0.0,2009,\"Turquie\",null],[0.0,2009,\"Su\\u00e8de\",\"SWE\"],[110.0,2009,\"Espagne\",\"ESP\"],[2126.0,2009,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[862907.7,2009,\"Norv\\u00e8ge\",\"NOR\"],[10.0,2009,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[12210.0,2009,\"Irlande\",\"IRL\"],[714.0,2009,\"Islande\",\"ISL\"],[22.0,2009,\"Gr\\u00e8ce\",\"GRC\"],[0.0,2009,\"Finlande\",\"FIN\"],[51383.0,2009,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[1.9,2009,\"Danemark\",\"DNK\"],[233308.0,2009,\"Chili\",\"CHL\"],[100212.0,2009,\"Canada\",\"CAN\"],[0.33,2009,\"Bulgarie\",\"BGR\"],[29893.0,2009,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Bulgarie\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"BGR\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[14074.0,144663.0,0.0,0.0,110.0,2126.0,862907.7,10.0,12210.0,714.0,22.0,0.0,51383.0,1.9,233308.0,100212.0,0.33,29893.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2009\"},{\"data\":[{\"customdata\":[[19535.0,2010,\"\\u00c9tats-Unis\",\"USA\"],[154633.0,2010,\"Royaume-Uni\",\"GBR\"],[0.0,2010,\"Turquie\",null],[0.0,2010,\"Su\\u00e8de\",\"SWE\"],[79.2,2010,\"Espagne\",\"ESP\"],[4500.0,2010,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[939536.0,2010,\"Norv\\u00e8ge\",\"NOR\"],[10.0,2010,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[15691.0,2010,\"Irlande\",\"IRL\"],[1068.0,2010,\"Islande\",\"ISL\"],[10.0,2010,\"Gr\\u00e8ce\",\"GRC\"],[0.0,2010,\"Finlande\",\"FIN\"],[45391.0,2010,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[15.0,2010,\"Danemark\",\"DNK\"],[123233.0,2010,\"Chili\",\"CHL\"],[101544.0,2010,\"Canada\",\"CAN\"],[31806.79,2010,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[19535.0,154633.0,0.0,0.0,79.2,4500.0,939536.0,10.0,15691.0,1068.0,10.0,0.0,45391.0,15.0,123233.0,101544.0,31806.79],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2010\"},{\"data\":[{\"customdata\":[[18595.0,2011,\"\\u00c9tats-Unis\",\"USA\"],[158309.5,2011,\"Royaume-Uni\",\"GBR\"],[0.0,2011,\"Turquie\",null],[0.0,2011,\"Su\\u00e8de\",\"SWE\"],[0.0,2011,\"Espagne\",\"ESP\"],[8500.0,2011,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[1064868.0,2011,\"Norv\\u00e8ge\",\"NOR\"],[15.0,2011,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[12196.0,2011,\"Irlande\",\"IRL\"],[1083.0,2011,\"Islande\",\"ISL\"],[0.0,2011,\"Gr\\u00e8ce\",\"GRC\"],[0.0,2011,\"Finlande\",\"FIN\"],[60473.0,2011,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[10.0,2011,\"Danemark\",\"DNK\"],[264349.0,2011,\"Chili\",\"CHL\"],[110328.0,2011,\"Canada\",\"CAN\"],[36662.04,2011,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[18595.0,158309.5,0.0,0.0,0.0,8500.0,1064868.0,15.0,12196.0,1083.0,0.0,0.0,60473.0,10.0,264349.0,110328.0,36662.04],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2011\"},{\"data\":[{\"customdata\":[[19295.0,2012,\"\\u00c9tats-Unis\",\"USA\"],[162547.0,2012,\"Royaume-Uni\",\"GBR\"],[0.0,2012,\"Turquie\",null],[0.0,2012,\"Su\\u00e8de\",\"SWE\"],[4.0,2012,\"Espagne\",\"ESP\"],[8754.0,2012,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[1232094.9,2012,\"Norv\\u00e8ge\",\"NOR\"],[15.0,2012,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[12440.0,2012,\"Irlande\",\"IRL\"],[2923.0,2012,\"Islande\",\"ISL\"],[0.0,2012,\"Gr\\u00e8ce\",\"GRC\"],[0.0,2012,\"Finlande\",\"FIN\"],[76564.0,2012,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[0.2,2012,\"Danemark\",\"DNK\"],[399678.0,2012,\"Chili\",\"CHL\"],[116101.0,2012,\"Canada\",\"CAN\"],[43982.0,2012,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[19295.0,162547.0,0.0,0.0,4.0,8754.0,1232094.9,15.0,12440.0,2923.0,0.0,0.0,76564.0,0.2,399678.0,116101.0,43982.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2012\"},{\"data\":[{\"customdata\":[[18866.0,2013,\"\\u00c9tats-Unis\",\"USA\"],[163240.0,2013,\"Royaume-Uni\",\"GBR\"],[0.0,2013,\"Turquie\",null],[6.0,2013,\"Su\\u00e8de\",\"SWE\"],[0.0,2013,\"Espagne\",\"ESP\"],[22500.0,2013,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[1168324.0,2013,\"Norv\\u00e8ge\",\"NOR\"],[15.0,2013,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[9124.9,2013,\"Irlande\",\"IRL\"],[3018.0,2013,\"Islande\",\"ISL\"],[0.0,2013,\"Gr\\u00e8ce\",\"GRC\"],[0.0,2013,\"Finlande\",\"FIN\"],[75821.0,2013,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[10.0,2013,\"Danemark\",\"DNK\"],[492329.0,2013,\"Chili\",\"CHL\"],[97629.0,2013,\"Canada\",\"CAN\"],[42825.01,2013,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Turquie\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",null,\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[18866.0,163240.0,0.0,6.0,0.0,22500.0,1168324.0,15.0,9124.9,3018.0,0.0,0.0,75821.0,10.0,492329.0,97629.0,42825.01],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2013\"},{\"data\":[{\"customdata\":[[18719.0,2014,\"\\u00c9tats-Unis\",\"USA\"],[179028.0,2014,\"Royaume-Uni\",\"GBR\"],[8.0,2014,\"Su\\u00e8de\",\"SWE\"],[3.8,2014,\"Espagne\",\"ESP\"],[18675.0,2014,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[1258355.9,2014,\"Norv\\u00e8ge\",\"NOR\"],[20.0,2014,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[9367.6,2014,\"Irlande\",\"IRL\"],[3965.0,2014,\"Islande\",\"ISL\"],[0.0,2014,\"Gr\\u00e8ce\",\"GRC\"],[0.0,2014,\"Finlande\",\"FIN\"],[86454.0,2014,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[405.0,2014,\"Danemark\",\"DNK\"],[644459.0,2014,\"Chili\",\"CHL\"],[86347.0,2014,\"Canada\",\"CAN\"],[41590.66,2014,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[18719.0,179028.0,8.0,3.8,18675.0,1258355.9,20.0,9367.6,3965.0,0.0,0.0,86454.0,405.0,644459.0,86347.0,41590.66],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2014\"},{\"data\":[{\"customdata\":[[18719.0,2015,\"\\u00c9tats-Unis\",\"USA\"],[171731.0,2015,\"Royaume-Uni\",\"GBR\"],[7.785,2015,\"Espagne\",\"ESP\"],[10834.0,2015,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[1303345.8,2015,\"Norv\\u00e8ge\",\"NOR\"],[20.0,2015,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[13116.0,2015,\"Irlande\",\"IRL\"],[3260.0,2015,\"Islande\",\"ISL\"],[0.0,2015,\"Gr\\u00e8ce\",\"GRC\"],[0.0,2015,\"Finlande\",\"FIN\"],[80600.0,2015,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[428.0,2015,\"Danemark\",\"DNK\"],[608546.0,2015,\"Chili\",\"CHL\"],[121926.0,2015,\"Canada\",\"CAN\"],[48330.56,2015,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[18719.0,171731.0,7.785,10834.0,1303345.8,20.0,13116.0,3260.0,0.0,0.0,80600.0,428.0,608546.0,121926.0,48330.56],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2015\"},{\"data\":[{\"customdata\":[[16185.0,2016,\"\\u00c9tats-Unis\",\"USA\"],[162820.0,2016,\"Royaume-Uni\",\"GBR\"],[1.0,2016,\"Su\\u00e8de\",\"SWE\"],[5.162,2016,\"Espagne\",\"ESP\"],[12857.0,2016,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[1233619.2,2016,\"Norv\\u00e8ge\",\"NOR\"],[20.0,2016,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[16300.0,2016,\"Irlande\",\"IRL\"],[8420.0,2016,\"Islande\",\"ISL\"],[0.0,2016,\"Gr\\u00e8ce\",\"GRC\"],[0.0,2016,\"Finlande\",\"FIN\"],[83300.0,2016,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[1289.0,2016,\"Danemark\",\"DNK\"],[532225.0,2016,\"Chili\",\"CHL\"],[123522.0,2016,\"Canada\",\"CAN\"],[56115.197,2016,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Su\\u00e8de\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"SWE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16185.0,162820.0,1.0,5.162,12857.0,1233619.2,20.0,16300.0,8420.0,0.0,0.0,83300.0,1289.0,532225.0,123522.0,56115.197],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2016\"},{\"data\":[{\"customdata\":[[14685.0,2017,\"\\u00c9tats-Unis\",\"USA\"],[189707.0,2017,\"Royaume-Uni\",\"GBR\"],[24.39,2017,\"Espagne\",\"ESP\"],[13016.0,2017,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[1236353.0,2017,\"Norv\\u00e8ge\",\"NOR\"],[50.0,2017,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[18342.0,2017,\"Irlande\",\"IRL\"],[11265.0,2017,\"Islande\",\"ISL\"],[0.0,2017,\"Gr\\u00e8ce\",\"GRC\"],[0.0,2017,\"Finlande\",\"FIN\"],[86800.0,2017,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[807.0,2017,\"Danemark\",\"DNK\"],[614180.46,2017,\"Chili\",\"CHL\"],[120553.0,2017,\"Canada\",\"CAN\"],[52580.2,2017,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Gr\\u00e8ce\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"GRC\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[14685.0,189707.0,24.39,13016.0,1236353.0,50.0,18342.0,11265.0,0.0,0.0,86800.0,807.0,614180.46,120553.0,52580.2],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2017\"},{\"data\":[{\"customdata\":[[16107.0,2018,\"\\u00c9tats-Unis\",\"USA\"],[156025.0,2018,\"Royaume-Uni\",\"GBR\"],[100.0,2018,\"Suisse\",\"CHE\"],[20566.0,2018,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[1282003.2,2018,\"Norv\\u00e8ge\",\"NOR\"],[60.0,2018,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[11984.0,2018,\"Irlande\",\"IRL\"],[13448.0,2018,\"Islande\",\"ISL\"],[0.0,2018,\"Finlande\",\"FIN\"],[78900.0,2018,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[1030.0,2018,\"Danemark\",\"DNK\"],[661138.39,2018,\"Chili\",\"CHL\"],[123184.0,2018,\"Canada\",\"CAN\"],[61227.0,2018,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Suisse\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"CHE\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16107.0,156025.0,100.0,20566.0,1282003.2,60.0,11984.0,13448.0,0.0,78900.0,1030.0,661138.39,123184.0,61227.0],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2018\"},{\"data\":[{\"customdata\":[[16490.52,2019,\"\\u00c9tats-Unis\",\"USA\"],[203881.0,2019,\"Royaume-Uni\",\"GBR\"],[159.4,2019,\"Suisse\",\"CHE\"],[11.606,2019,\"Espagne\",\"ESP\"],[32343.0,2019,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[1364042.038,2019,\"Norv\\u00e8ge\",\"NOR\"],[60.0,2019,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[11333.0,2019,\"Irlande\",\"IRL\"],[26957.0,2019,\"Islande\",\"ISL\"],[0.0,2019,\"Finlande\",\"FIN\"],[95000.0,2019,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[1462.53,2019,\"Danemark\",\"DNK\"],[701984.0,2019,\"Chili\",\"CHL\"],[118630.0,2019,\"Canada\",\"CAN\"],[56989.34,2019,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"Suisse\",\"Espagne\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"Finlande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"CHE\",\"ESP\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FIN\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16490.52,203881.0,159.4,11.606,32343.0,1364042.038,60.0,11333.0,26957.0,0.0,95000.0,1462.53,701984.0,118630.0,56989.34],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2019\"},{\"data\":[{\"customdata\":[[16490.52,2020,\"\\u00c9tats-Unis\",\"USA\"],[192129.0,2020,\"Royaume-Uni\",\"GBR\"],[300.0,2020,\"\\u00c9mirats Arabes Unis\",\"ARE\"],[159.4,2020,\"Suisse\",\"CHE\"],[10855.0,2020,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[1388433.84,2020,\"Norv\\u00e8ge\",\"NOR\"],[60.0,2020,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[12870.0,2020,\"Irlande\",\"IRL\"],[34341.0,2020,\"Islande\",\"ISL\"],[88950.0,2020,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[1940.0,2020,\"Danemark\",\"DNK\"],[787131.0,2020,\"Chili\",\"CHL\"],[120427.0,2020,\"Canada\",\"CAN\"],[66918.495,2020,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"\\u00c9mirats Arabes Unis\",\"Suisse\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"ARE\",\"CHE\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16490.52,192129.0,300.0,159.4,10855.0,1388433.84,60.0,12870.0,34341.0,88950.0,1940.0,787131.0,120427.0,66918.495],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2020\"},{\"data\":[{\"customdata\":[[16490.52,2021,\"\\u00c9tats-Unis\",\"USA\"],[205000.0,2021,\"Royaume-Uni\",\"GBR\"],[180.0,2021,\"\\u00c9mirats Arabes Unis\",\"ARE\"],[160.0,2021,\"Suisse\",\"CHE\"],[14959.0,2021,\"F\\u00e9d\\u00e9ration de Russie\",\"RUS\"],[1562415.01,2021,\"Norv\\u00e8ge\",\"NOR\"],[60.0,2021,\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"PRK\"],[12844.0,2021,\"Irlande\",\"IRL\"],[46458.0,2021,\"Islande\",\"ISL\"],[115650.0,2021,\"\\u00celes F\\u00e9ro\\u00e9\",\"FRO\"],[1668.0,2021,\"Danemark\",\"DNK\"],[725280.0,2021,\"Chili\",\"CHL\"],[120186.0,2021,\"Canada\",\"CAN\"],[84045.234,2021,\"Australie\",\"AUS\"]],\"geo\":\"geo\",\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eAnn\\u00e9e=%{customdata[1]}\\u003cbr\\u003eTonnes de saumon=%{customdata[0]:,.0f}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"\\u00c9tats-Unis\",\"Royaume-Uni\",\"\\u00c9mirats Arabes Unis\",\"Suisse\",\"F\\u00e9d\\u00e9ration de Russie\",\"Norv\\u00e8ge\",\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"Irlande\",\"Islande\",\"\\u00celes F\\u00e9ro\\u00e9\",\"Danemark\",\"Chili\",\"Canada\",\"Australie\"],\"legendgroup\":\"\",\"locations\":[\"USA\",\"GBR\",\"ARE\",\"CHE\",\"RUS\",\"NOR\",\"PRK\",\"IRL\",\"ISL\",\"FRO\",\"DNK\",\"CHL\",\"CAN\",\"AUS\"],\"marker\":{\"color\":\"#151c97\",\"size\":[16490.52,205000.0,180.0,160.0,14959.0,1562415.01,60.0,12844.0,46458.0,115650.0,1668.0,725280.0,120186.0,84045.234],\"sizemode\":\"area\",\"sizeref\":624.966004,\"symbol\":\"circle\"},\"mode\":\"markers\",\"name\":\"\",\"showlegend\":false,\"type\":\"scattergeo\"}],\"name\":\"2021\"}]}" \ No newline at end of file diff --git a/public/dashboard/graphs/fr/hyper-growth-grouped.json b/public/dashboard/graphs/fr/hyper-growth-grouped.json new file mode 100644 index 000000000..a6832f892 --- /dev/null +++ b/public/dashboard/graphs/fr/hyper-growth-grouped.json @@ -0,0 +1 @@ +"{\"data\":[{\"fillpattern\":{\"shape\":\"\"},\"legendgroup\":\"\",\"line\":{\"color\":\"#fd442f\",\"shape\":\"spline\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Nombre de saumons produits chaque ann\\u00e9e\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,200,400,800,1600,3000,5400,58800,62800,71800,114400,194800,251600,330200,455400,791200,992200,1057600,2021600,2653000,4127600,5397000,7759400,11795800,13429200,22119600,33612600,45128400,53256600,49505600,61122000,74986200,93049000,110381200,129303200,137645400,161123200,179161600,206001000,217226800,229536400,252385200,253459400,263744000,275774800,290253380,290326986,287410398,347077708,414879620,418741582,469479592,476172829,449335712,471672610,485154518,525868687,544201051,581079153],\"yaxis\":\"y\",\"type\":\"scatter\",\"hoverinfo\":\"skip\",\"fillcolor\":\"#fd442f\"}],\"layout\":{\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"rgb(36,36,36)\"},\"error_y\":{\"color\":\"rgb(36,36,36)\"},\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"baxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.6}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgb(237,237,237)\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"rgb(217,217,217)\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"colorscale\":{\"diverging\":[[0.0,\"rgb(103,0,31)\"],[0.1,\"rgb(178,24,43)\"],[0.2,\"rgb(214,96,77)\"],[0.3,\"rgb(244,165,130)\"],[0.4,\"rgb(253,219,199)\"],[0.5,\"rgb(247,247,247)\"],[0.6,\"rgb(209,229,240)\"],[0.7,\"rgb(146,197,222)\"],[0.8,\"rgb(67,147,195)\"],[0.9,\"rgb(33,102,172)\"],[1.0,\"rgb(5,48,97)\"]],\"sequential\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"sequentialminus\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]]},\"colorway\":[\"#1F77B4\",\"#FF7F0E\",\"#2CA02C\",\"#D62728\",\"#9467BD\",\"#8C564B\",\"#E377C2\",\"#7F7F7F\",\"#BCBD22\",\"#17BECF\"],\"font\":{\"color\":\"rgb(36,36,36)\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"white\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"white\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"radialaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"zaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}},\"shapedefaults\":{\"fillcolor\":\"black\",\"line\":{\"width\":0},\"opacity\":0.3},\"ternary\":{\"aaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"baxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"caxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{},\"color\":\"white\",\"linecolor\":\"white\",\"fixedrange\":true},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{},\"exponentformat\":\"none\",\"tickformat\":\"~s\",\"color\":\"white\",\"linecolor\":\"white\",\"fixedrange\":true},\"legend\":{\"tracegroupgap\":0,\"yanchor\":\"top\",\"y\":1,\"xanchor\":\"left\",\"x\":0.01,\"font\":{\"color\":\"white\"}},\"margin\":{\"t\":60},\"title\":{\"text\":\"Production de saumons d'\\u00e9levage\"},\"font\":{\"color\":\"white\"},\"plot_bgcolor\":\"rgba(0, 0, 0, 0)\",\"paper_bgcolor\":\"rgba(0, 0, 0, 0)\",\"hoverlabel\":{\"bgcolor\":\"white\"}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/fr/hyper-growth.json b/public/dashboard/graphs/fr/hyper-growth.json new file mode 100644 index 000000000..61413b082 --- /dev/null +++ b/public/dashboard/graphs/fr/hyper-growth.json @@ -0,0 +1 @@ +"{\"data\":[{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Norv\\u00e8ge\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Norv\\u00e8ge\",\"line\":{\"color\":\"#2E91E5\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Norv\\u00e8ge\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,4.0,8.0,15.0,27.0,50.0,98.0,146.0,171.0,601.0,862.0,1431.0,2137.0,3540.0,4389.0,4312.0,8418.0,10695.0,17298.0,21881.0,29473.0,44831.0,46453.0,78744.0,111337.0,145990.0,154900.0,124138.0,155581.0,202459.0,261522.0,297557.0,332581.0,360806.0,425154.0,440061.0,436103.0,462495.0,509544.0,563815.0,586512.0,629888.0,744222.0,737694.0,862907.7,939536.0,1064868.0,1232094.9,1168324.0,1258355.9,1303345.8,1233619.2,1236353.0,1282003.2,1364042.038,1388433.84,1562415.01],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Chili\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Chili\",\"line\":{\"color\":\"#E15F99\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Chili\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.0,165.0,1860.0,9478.0,14957.0,23715.0,29180.0,34175.0,54250.0,77327.0,96675.0,107066.0,103242.0,166897.0,253850.0,265726.0,280301.0,348983.0,385779.0,376476.0,331042.0,388847.0,233308.0,123233.0,264349.0,399678.0,492329.0,644459.0,608546.0,532225.0,614180.46,661138.39,701984.0,787131.0,725280.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Royaume-Uni\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Royaume-Uni\",\"line\":{\"color\":\"#1CA71C\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Royaume-Uni\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,244.0,216.0,213.0,401.0,372.0,393.0,209.0,115.0,378.0,520.0,598.0,1133.0,2152.0,2536.0,3912.0,6921.0,10337.0,12721.0,17951.0,28603.0,32004.0,40657.0,36302.0,48791.0,64266.0,70322.0,83344.0,99422.0,110917.0,126686.0,128959.0,138519.0,145609.0,145609.0,158099.0,129823.0,131973.0,130104.0,128744.0,144663.0,154633.0,158309.5,162547.0,163240.0,179028.0,171731.0,162820.0,189707.0,156025.0,203881.0,192129.0,205000.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Canada\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Canada\",\"line\":{\"color\":\"#FB0D0D\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Canada\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,27.0,76.0,143.0,68.0,222.0,349.0,682.0,1385.0,3431.0,5967.0,9625.0,13499.0,17305.0,23483.0,27773.0,33674.0,36475.0,51015.0,49475.0,61990.0,72495.0,95606.0,114921.0,107228.0,96774.0,98370.0,118061.0,102509.0,104075.0,100212.0,101544.0,110328.0,116101.0,97629.0,86347.0,121926.0,123522.0,120553.0,123184.0,118630.0,120427.0,120186.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=\\u00celes F\\u00e9ro\\u00e9\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"\\u00celes F\\u00e9ro\\u00e9\",\"line\":{\"color\":\"#DA16FF\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"\\u00celes F\\u00e9ro\\u00e9\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1976,1977,1978,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[1.0,2.0,5.0,22.0,45.0,60.0,90.0,117.0,940.0,1370.0,3193.0,3400.0,7901.0,13025.0,17914.0,18364.0,17660.0,14868.0,8539.0,17049.0,21103.0,19176.0,39252.0,33508.0,46041.0,44953.0,52526.0,40985.0,18962.0,13078.0,22305.0,38494.0,51383.0,45391.0,60473.0,76564.0,75821.0,86454.0,80600.0,83300.0,86800.0,78900.0,95000.0,88950.0,115650.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Australie\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Australie\",\"line\":{\"color\":\"#222A2A\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Australie\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[10.0,62.0,240.0,1750.0,1750.0,2653.0,3300.0,3500.0,4000.0,6192.0,7647.0,7648.0,7069.0,9195.0,10907.0,12724.0,14356.0,15208.0,16476.0,16780.0,20710.0,25336.0,25736.9,29893.0,31806.79,36662.04,43982.0,42825.01,41590.66,48330.56,56115.197,52580.2,61227.0,56989.34,66918.495,84045.234],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=\\u00c9tats-Unis\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"\\u00c9tats-Unis\",\"line\":{\"color\":\"#B68100\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"\\u00c9tats-Unis\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[8.0,113.0,898.0,2554.0,3185.0,6661.0,10028.0,10750.0,10906.0,14075.0,13906.0,18005.0,14507.0,17739.0,22395.0,20769.0,12734.0,16315.0,15127.0,9401.0,10485.0,11001.0,16714.0,14074.0,19535.0,18595.0,19295.0,18866.0,18719.0,18719.0,16185.0,14685.0,16107.0,16490.52,16490.52,16490.52],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Irlande\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Irlande\",\"line\":{\"color\":\"#750D86\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Irlande\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,5.0,10.0,10.0,13.0,21.0,35.0,100.0,257.0,385.0,700.0,1215.0,2300.0,4075.0,5500.0,6323.0,9300.0,9696.0,12366.0,11616.0,11811.0,14025.0,15441.0,14860.0,18076.0,17648.0,23312.0,23231.0,16347.0,14067.0,13764.0,11174.0,9923.0,9217.0,12210.0,15691.0,12196.0,12440.0,9124.9,9367.6,13116.0,16300.0,18342.0,11984.0,11333.0,12870.0,12844.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Islande\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Islande\",\"line\":{\"color\":\"#EB663B\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Islande\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,1.0,5.0,8.0,13.0,19.0,27.0,39.0,56.0,79.0,107.0,91.0,123.0,490.0,1053.0,1480.0,2716.0,2566.0,2125.0,2348.0,2588.0,2591.0,2832.0,2513.0,2742.0,2900.0,2593.0,2645.0,1471.0,3708.0,6624.0,6488.0,5224.0,1197.0,330.0,714.0,1068.0,1083.0,2923.0,3018.0,3965.0,3260.0,8420.0,11265.0,13448.0,26957.0,34341.0,46458.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=F\\u00e9d\\u00e9ration de Russie\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"F\\u00e9d\\u00e9ration de Russie\",\"line\":{\"color\":\"#511CFB\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"F\\u00e9d\\u00e9ration de Russie\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,300.0,203.0,204.0,229.0,111.0,51.0,2126.0,4500.0,8500.0,8754.0,22500.0,18675.0,10834.0,12857.0,13016.0,20566.0,32343.0,10855.0,14959.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=France\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"France\",\"line\":{\"color\":\"#00A08B\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"France\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008],\"xaxis\":\"x\",\"y\":[574.0,600.0,564.0,856.0,894.0,800.0,950.0,760.0,750.0,102.0,90.0,443.0,544.0,735.0,1190.0,1391.0,1100.0,1335.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Danemark\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Danemark\",\"line\":{\"color\":\"#FB00D1\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Danemark\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[15.0,16.0,16.0,18.0,18.0,16.0,11.0,1.9,15.0,10.0,0.2,10.0,405.0,428.0,1289.0,807.0,1030.0,1462.53,1940.0,1668.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Espagne\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Espagne\",\"line\":{\"color\":\"#FC0080\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Espagne\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2019],\"xaxis\":\"x\",\"y\":[150.0,150.0,150.0,150.0,150.0,150.0,355.0,553.0,782.0,562.0,909.0,695.0,726.0,851.0,798.0,618.0,226.0,323.0,152.0,27.0,15.0,0.0,2.0,0.0,0.0,110.0,79.2,0.0,4.0,0.0,3.8,7.785,5.162,24.39,11.606],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Turquie\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Turquie\",\"line\":{\"color\":\"#B2828D\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Turquie\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0,1500.0,680.0,791.0,434.0,654.0,193.0,50.0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Su\\u00e8de\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Su\\u00e8de\",\"line\":{\"color\":\"#6C7C32\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Su\\u00e8de\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2016],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,10.0,15.0,30.0,50.0,50.0,75.0,118.0,81.0,160.0,224.0,363.0,771.0,602.0,270.0,388.0,4.0,7.0,19.0,12.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,0.0,6.0,8.0,1.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Finlande\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Finlande\",\"line\":{\"color\":\"#778AAE\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Finlande\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,251.0,312.0,9.0,235.0,93.0,92.0,93.0,11.0,117.0,71.0,157.0,146.0,85.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Suisse\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Suisse\",\"line\":{\"color\":\"#862A16\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Suisse\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[100.0,159.4,159.4,160.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Portugal\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Portugal\",\"line\":{\"color\":\"#A777F1\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Portugal\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1988,1989,1990,1991,1992,1993,1994,1995,1996,1997],\"xaxis\":\"x\",\"y\":[0.0,100.0,120.0,100.0,0.0,0.0,0.0,0.0,4.0,250.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=\\u00c9mirats Arabes Unis\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"\\u00c9mirats Arabes Unis\",\"line\":{\"color\":\"#620042\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"\\u00c9mirats Arabes Unis\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[2020,2021],\"xaxis\":\"x\",\"y\":[300.0,180.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"line\":{\"color\":\"#1616A7\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"R\\u00e9publique Populaire D\\u00e9mocratique de Cor\\u00e9e\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021],\"xaxis\":\"x\",\"y\":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,10.0,15.0,15.0,15.0,20.0,20.0,20.0,50.0,60.0,60.0,60.0,60.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Gr\\u00e8ce\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Gr\\u00e8ce\",\"line\":{\"color\":\"#DA60CA\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Gr\\u00e8ce\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017],\"xaxis\":\"x\",\"y\":[3.0,11.0,19.0,12.0,33.0,20.0,30.0,74.0,7.0,9.0,12.0,11.0,9.0,17.0,23.0,28.0,9.0,7.0,6.0,11.0,8.0,8.0,22.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],\"yaxis\":\"y\",\"type\":\"scatter\"},{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Pays=Bulgarie\\u003cbr\\u003eAnn\\u00e9e=%{x}\\u003cbr\\u003eTonnes de saumon produit en \\u00e9levage=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Bulgarie\",\"line\":{\"color\":\"#6C4516\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Bulgarie\",\"orientation\":\"v\",\"showlegend\":true,\"stackgroup\":\"1\",\"x\":[2009],\"xaxis\":\"x\",\"y\":[0.33],\"yaxis\":\"y\",\"type\":\"scatter\"}],\"layout\":{\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"rgb(36,36,36)\"},\"error_y\":{\"color\":\"rgb(36,36,36)\"},\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"baxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.6}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgb(237,237,237)\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"rgb(217,217,217)\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"colorscale\":{\"diverging\":[[0.0,\"rgb(103,0,31)\"],[0.1,\"rgb(178,24,43)\"],[0.2,\"rgb(214,96,77)\"],[0.3,\"rgb(244,165,130)\"],[0.4,\"rgb(253,219,199)\"],[0.5,\"rgb(247,247,247)\"],[0.6,\"rgb(209,229,240)\"],[0.7,\"rgb(146,197,222)\"],[0.8,\"rgb(67,147,195)\"],[0.9,\"rgb(33,102,172)\"],[1.0,\"rgb(5,48,97)\"]],\"sequential\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"sequentialminus\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]]},\"colorway\":[\"#1F77B4\",\"#FF7F0E\",\"#2CA02C\",\"#D62728\",\"#9467BD\",\"#8C564B\",\"#E377C2\",\"#7F7F7F\",\"#BCBD22\",\"#17BECF\"],\"font\":{\"color\":\"rgb(36,36,36)\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"white\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"white\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"radialaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"zaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}},\"shapedefaults\":{\"fillcolor\":\"black\",\"line\":{\"width\":0},\"opacity\":0.3},\"ternary\":{\"aaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"baxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"caxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{},\"range\":[1975,2021]},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"Tonnes de saumon produit en \\u00e9levage\"},\"exponentformat\":\"none\"},\"legend\":{\"title\":{\"text\":\"Pays\"},\"tracegroupgap\":0},\"margin\":{\"t\":60},\"title\":{\"text\":\"Production de saumon d'\\u00e9levage par pays\"},\"updatemenus\":[{\"buttons\":[{\"args\":[\"visible\",\"legendonly\"],\"label\":\"Deselect All\",\"method\":\"restyle\"},{\"args\":[\"visible\",true],\"label\":\"Select All\",\"method\":\"restyle\"}],\"direction\":\"left\",\"pad\":{\"r\":10,\"t\":10},\"showactive\":false,\"type\":\"buttons\",\"x\":1,\"xanchor\":\"right\",\"y\":1.1,\"yanchor\":\"top\"}],\"modebar\":{\"remove\":[\"zoom\",\"zoomIn\",\"zoomOut\"]},\"hoverlabel\":{\"bgcolor\":\"white\"}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/fr/mortality-rates.json b/public/dashboard/graphs/fr/mortality-rates.json new file mode 100644 index 000000000..a18bb8948 --- /dev/null +++ b/public/dashboard/graphs/fr/mortality-rates.json @@ -0,0 +1 @@ +"{\"data\":[{\"alignmentgroup\":\"True\",\"hovertext\":[\"Salmones Austral\",\"Salmones Austral\",\"Salmones Austral\",\"Salmones Austral\",\"Salmones Austral\"],\"legendgroup\":\"Salmones Austral\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Salmones Austral\",\"notched\":false,\"offsetgroup\":\"Salmones Austral\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Salmones Austral\",\"Salmones Austral\",\"Salmones Austral\",\"Salmones Austral\",\"Salmones Austral\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[2.67,2.55,1.8,2.1,5.73],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\"],\"legendgroup\":\"Nova Sea\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Nova Sea\",\"notched\":false,\"offsetgroup\":\"Nova Sea\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\",\"Nova Sea\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[4.18,2.95,2.74,2.9,2.8,3.91,3.21,2.65],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\"],\"legendgroup\":\"Australis Seafood\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Australis Seafood\",\"notched\":false,\"offsetgroup\":\"Australis Seafood\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\",\"Australis Seafood\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[3.23,3.13,2.93,3.62,3.98,3.5,4.16],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\"],\"legendgroup\":\"Blumar\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Blumar\",\"notched\":false,\"offsetgroup\":\"Blumar\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\",\"Blumar\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[7.26,3.34,2.73,7.44,4.18,5.0,7.13,4.0,3.95],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\"],\"legendgroup\":\"Camanchaca\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Camanchaca\",\"notched\":false,\"offsetgroup\":\"Camanchaca\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\",\"Camanchaca\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[2.8,15.7,4.7,4.6,8.6,4.8,3.2,17.8,3.1,6.6],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\"],\"legendgroup\":\"Cermaq\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Cermaq\",\"notched\":false,\"offsetgroup\":\"Cermaq\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\",\"Cermaq\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[5.2,7.0,6.3,6.8,6.2,7.3,5.7,0.0,6.4,5.3,8.4,5.5],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\"],\"legendgroup\":\"Leroy Seafood\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Leroy Seafood\",\"notched\":false,\"offsetgroup\":\"Leroy Seafood\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\",\"Leroy Seafood\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[7.5,7.5,7.0,7.8,8.2,6.1,6.6,7.8,7.4],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\"],\"legendgroup\":\"Salmar\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Salmar\",\"notched\":false,\"offsetgroup\":\"Salmar\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\",\"Salmar\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[5.0,4.4,4.7,5.9,6.2,10.1,6.7,11.8,10.8,12.9,10.3,8.8,5.4,9.5],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\"],\"legendgroup\":\"Grieg Seafood\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Grieg Seafood\",\"notched\":false,\"offsetgroup\":\"Grieg Seafood\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\",\"Grieg Seafood\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[4.0,5.0,11.0,17.0,11.0,8.0,8.0,10.0,7.0,8.0,9.0,7.0,9.0,5.0,8.0,4.0,9.0,6.0,17.0,10.0,8.0,12.0,12.0,7.0,10.0],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"AquaChile\",\"AquaChile\",\"AquaChile\"],\"legendgroup\":\"AquaChile\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"AquaChile\",\"notched\":false,\"offsetgroup\":\"AquaChile\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"AquaChile\",\"AquaChile\",\"AquaChile\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[9.2,9.29,6.74],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Multiexport\",\"Multiexport\",\"Multiexport\"],\"legendgroup\":\"Multiexport\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Multiexport\",\"notched\":false,\"offsetgroup\":\"Multiexport\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Multiexport\",\"Multiexport\",\"Multiexport\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[10.8,9.7,8.3],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\"],\"legendgroup\":\"Bakkafrost\",\"marker\":{\"color\":\"#151c97\"},\"name\":\"Bakkafrost\",\"notched\":false,\"offsetgroup\":\"Bakkafrost\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\",\"Bakkafrost\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[11.43,21.71,23.16,8.96,11.56,4.57,10.29,4.91,8.24],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"},{\"alignmentgroup\":\"True\",\"hovertext\":[\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\"],\"legendgroup\":\"MOWI\",\"marker\":{\"color\":\"#ff4530\"},\"name\":\"MOWI\",\"notched\":false,\"offsetgroup\":\"MOWI\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\",\"MOWI\"],\"x0\":\" \",\"xaxis\":\"x\",\"y\":[9.1886638,9.1886638,11.3615128,19.5848542,18.596662,9.1886638,14.5315492,16.5868032,14.5315492,15.5649083,9.1886638],\"y0\":\" \",\"yaxis\":\"y\",\"type\":\"box\",\"boxpoints\":false,\"hoverinfo\":\"skip\"}],\"layout\":{\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"rgb(36,36,36)\"},\"error_y\":{\"color\":\"rgb(36,36,36)\"},\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"baxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.6}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgb(237,237,237)\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"rgb(217,217,217)\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"colorscale\":{\"diverging\":[[0.0,\"rgb(103,0,31)\"],[0.1,\"rgb(178,24,43)\"],[0.2,\"rgb(214,96,77)\"],[0.3,\"rgb(244,165,130)\"],[0.4,\"rgb(253,219,199)\"],[0.5,\"rgb(247,247,247)\"],[0.6,\"rgb(209,229,240)\"],[0.7,\"rgb(146,197,222)\"],[0.8,\"rgb(67,147,195)\"],[0.9,\"rgb(33,102,172)\"],[1.0,\"rgb(5,48,97)\"]],\"sequential\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"sequentialminus\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]]},\"colorway\":[\"#1F77B4\",\"#FF7F0E\",\"#2CA02C\",\"#D62728\",\"#9467BD\",\"#8C564B\",\"#E377C2\",\"#7F7F7F\",\"#BCBD22\",\"#17BECF\"],\"font\":{\"color\":\"rgb(36,36,36)\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"white\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"white\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"radialaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"zaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}},\"shapedefaults\":{\"fillcolor\":\"black\",\"line\":{\"width\":0},\"opacity\":0.3},\"ternary\":{\"aaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"baxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"caxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{},\"categoryorder\":\"array\",\"categoryarray\":[\"Salmones Austral\",\"Nova Sea\",\"Australis Seafood\",\"Blumar\",\"Camanchaca\",\"Cermaq\",\"Leroy Seafood\",\"Salmar\",\"Grieg Seafood\",\"AquaChile\",\"Multiexport\",\"Bakkafrost\",\"MOWI\"],\"exponentformat\":\"none\",\"fixedrange\":true},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"Taux de mortalit\\u00e9 (%)\"},\"fixedrange\":true},\"legend\":{\"title\":{\"text\":\"Producteur\"},\"tracegroupgap\":0},\"title\":{\"text\":\"Taux de mortalit\\u00e9 des saumons d'\\u00e9levage par producteur (2014-2022)\"},\"boxmode\":\"overlay\",\"showlegend\":false,\"coloraxis\":{\"colorbar\":{\"tickformat\":\"0%\"}},\"hoverlabel\":{\"bgcolor\":\"white\"}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/fr/salmon-collapse.json b/public/dashboard/graphs/fr/salmon-collapse.json new file mode 100644 index 000000000..4e3404f28 --- /dev/null +++ b/public/dashboard/graphs/fr/salmon-collapse.json @@ -0,0 +1 @@ +"{\"data\":[{\"fillpattern\":{\"shape\":\"\"},\"hovertemplate\":\"Ann\\u00e9e=%{x}\\u003cbr\\u003eSaumon p\\u00each\\u00e9 dans l'Atlantique en tonnes=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"\",\"line\":{\"color\":\"#151c97\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"\",\"orientation\":\"v\",\"showlegend\":false,\"stackgroup\":\"1\",\"x\":[1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022],\"xaxis\":\"x\",\"y\":[16869,14823,20603,19963,22504,20679,20425,25293,20157,21369,20454,18888,21011,24197,23574,23766,18641,18592,16167,15420,18915,17299,15128,18150,14120,16322,19054,15809,16224,12634,9918,7646,8472,8027,9391,8367,7074,5671,5841,5400,7060,7472,6485,5872,5210,5125,4691,3426,3699,2814,3548,3654,3112,2757,2416,2665,2520,2447,2157,1820,1795,1242,1391],\"yaxis\":\"y\",\"type\":\"scatter\"}],\"layout\":{\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"rgb(36,36,36)\"},\"error_y\":{\"color\":\"rgb(36,36,36)\"},\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"baxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.6}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgb(237,237,237)\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"rgb(217,217,217)\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"colorscale\":{\"diverging\":[[0.0,\"rgb(103,0,31)\"],[0.1,\"rgb(178,24,43)\"],[0.2,\"rgb(214,96,77)\"],[0.3,\"rgb(244,165,130)\"],[0.4,\"rgb(253,219,199)\"],[0.5,\"rgb(247,247,247)\"],[0.6,\"rgb(209,229,240)\"],[0.7,\"rgb(146,197,222)\"],[0.8,\"rgb(67,147,195)\"],[0.9,\"rgb(33,102,172)\"],[1.0,\"rgb(5,48,97)\"]],\"sequential\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"sequentialminus\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]]},\"colorway\":[\"#1F77B4\",\"#FF7F0E\",\"#2CA02C\",\"#D62728\",\"#9467BD\",\"#8C564B\",\"#E377C2\",\"#7F7F7F\",\"#BCBD22\",\"#17BECF\"],\"font\":{\"color\":\"rgb(36,36,36)\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"white\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"white\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"radialaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"zaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}},\"shapedefaults\":{\"fillcolor\":\"black\",\"line\":{\"width\":0},\"opacity\":0.3},\"ternary\":{\"aaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"baxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"caxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{},\"fixedrange\":true},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"Saumon p\\u00each\\u00e9 dans l'Atlantique en tonnes\"},\"exponentformat\":\"none\",\"fixedrange\":true},\"legend\":{\"tracegroupgap\":0},\"margin\":{\"t\":60},\"hoverlabel\":{\"bgcolor\":\"white\"},\"title\":{\"text\":\"Saumon p\\u00each\\u00e9 dans l'Atlantique en tonnes\"}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/fr/top-10.json b/public/dashboard/graphs/fr/top-10.json new file mode 100644 index 000000000..2312c127b --- /dev/null +++ b/public/dashboard/graphs/fr/top-10.json @@ -0,0 +1 @@ +"{\"data\":[{\"alignmentgroup\":\"True\",\"customdata\":[[0.5381462711076805],[0.24980989366517833],[0.07060863142698208],[0.04139594622772326],[0.03983360109527062],[0.028947897320490062],[0.01600163804309626],[0.005679868530337934],[0.005152363500079146],[0.004423889083161745]],\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eTonnes de saumon=%{x:,.0f}\\u003cbr\\u003e% du total=%{marker.color:.1%}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"Norv\\u00e8ge \\ud83c\\uddf3\\ud83c\\uddf4\",\"Chili \\ud83c\\udde8\\ud83c\\uddf1\",\"Royaume-Uni \\ud83c\\uddec\\ud83c\\udde7\",\"Canada \\ud83c\\udde8\\ud83c\\udde6\",\"\\u00celes F\\u00e9ro\\u00e9 \\ud83c\\uddeb\\ud83c\\uddf4\",\"Australie \\ud83c\\udde6\\ud83c\\uddfa\",\"Islande \\ud83c\\uddee\\ud83c\\uddf8\",\"\\u00c9tats-Unis \\ud83c\\uddfa\\ud83c\\uddf2\",\"F\\u00e9d\\u00e9ration de Russie \\ud83c\\uddf7\\ud83c\\uddfa\",\"Irlande \\ud83c\\uddee\\ud83c\\uddea\"],\"legendgroup\":\"\",\"marker\":{\"color\":[0.5381462711076805,0.24980989366517833,0.07060863142698208,0.04139594622772326,0.03983360109527062,0.028947897320490062,0.01600163804309626,0.005679868530337934,0.005152363500079146,0.004423889083161745],\"coloraxis\":\"coloraxis\",\"pattern\":{\"shape\":\"\"}},\"name\":\"\",\"offsetgroup\":\"\",\"orientation\":\"h\",\"showlegend\":false,\"textposition\":\"outside\",\"texttemplate\":\"%{x:,.0f}\",\"x\":[1562415.01,725280.0,205000.0,120186.0,115650.0,84045.234,46458.0,16490.52,14959.0,12844.0],\"xaxis\":\"x\",\"y\":[\"Norv\\u00e8ge \\ud83c\\uddf3\\ud83c\\uddf4\",\"Chili \\ud83c\\udde8\\ud83c\\uddf1\",\"Royaume-Uni \\ud83c\\uddec\\ud83c\\udde7\",\"Canada \\ud83c\\udde8\\ud83c\\udde6\",\"\\u00celes F\\u00e9ro\\u00e9 \\ud83c\\uddeb\\ud83c\\uddf4\",\"Australie \\ud83c\\udde6\\ud83c\\uddfa\",\"Islande \\ud83c\\uddee\\ud83c\\uddf8\",\"\\u00c9tats-Unis \\ud83c\\uddfa\\ud83c\\uddf2\",\"F\\u00e9d\\u00e9ration de Russie \\ud83c\\uddf7\\ud83c\\uddfa\",\"Irlande \\ud83c\\uddee\\ud83c\\uddea\"],\"yaxis\":\"y\",\"type\":\"bar\",\"textfont\":{\"size\":12},\"cliponaxis\":false,\"textangle\":0}],\"layout\":{\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"rgb(36,36,36)\"},\"error_y\":{\"color\":\"rgb(36,36,36)\"},\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"baxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.6}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgb(237,237,237)\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"rgb(217,217,217)\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"colorscale\":{\"diverging\":[[0.0,\"rgb(103,0,31)\"],[0.1,\"rgb(178,24,43)\"],[0.2,\"rgb(214,96,77)\"],[0.3,\"rgb(244,165,130)\"],[0.4,\"rgb(253,219,199)\"],[0.5,\"rgb(247,247,247)\"],[0.6,\"rgb(209,229,240)\"],[0.7,\"rgb(146,197,222)\"],[0.8,\"rgb(67,147,195)\"],[0.9,\"rgb(33,102,172)\"],[1.0,\"rgb(5,48,97)\"]],\"sequential\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"sequentialminus\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]]},\"colorway\":[\"#1F77B4\",\"#FF7F0E\",\"#2CA02C\",\"#D62728\",\"#9467BD\",\"#8C564B\",\"#E377C2\",\"#7F7F7F\",\"#BCBD22\",\"#17BECF\"],\"font\":{\"color\":\"rgb(36,36,36)\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"white\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"white\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"radialaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"zaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}},\"shapedefaults\":{\"fillcolor\":\"black\",\"line\":{\"width\":0},\"opacity\":0.3},\"ternary\":{\"aaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"baxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"caxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{},\"exponentformat\":\"none\",\"range\":[0,2000000],\"fixedrange\":true},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{},\"categoryorder\":\"array\",\"categoryarray\":[\"Irlande \\ud83c\\uddee\\ud83c\\uddea\",\"F\\u00e9d\\u00e9ration de Russie \\ud83c\\uddf7\\ud83c\\uddfa\",\"\\u00c9tats-Unis \\ud83c\\uddfa\\ud83c\\uddf2\",\"Islande \\ud83c\\uddee\\ud83c\\uddf8\",\"Australie \\ud83c\\udde6\\ud83c\\uddfa\",\"\\u00celes F\\u00e9ro\\u00e9 \\ud83c\\uddeb\\ud83c\\uddf4\",\"Canada \\ud83c\\udde8\\ud83c\\udde6\",\"Royaume-Uni \\ud83c\\uddec\\ud83c\\udde7\",\"Chili \\ud83c\\udde8\\ud83c\\uddf1\",\"Norv\\u00e8ge \\ud83c\\uddf3\\ud83c\\uddf4\"],\"tickfont\":{\"size\":13},\"ticks\":\"\",\"fixedrange\":true},\"coloraxis\":{\"colorbar\":{\"title\":{\"text\":\"% du total\"},\"tickformat\":\"0%\"},\"colorscale\":[[0.0,\"#151c97\"],[1.0,\"#ff4530\"]]},\"legend\":{\"tracegroupgap\":0},\"title\":{\"text\":\"Top 10 pays producteurs de saumon par tonnes (2021)\"},\"barmode\":\"relative\",\"hoverlabel\":{\"bgcolor\":\"white\"},\"modebar\":{\"remove\":[\"zoom\",\"pan\",\"lasso2d\",\"select2d\"]}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/fr/top-comp.json b/public/dashboard/graphs/fr/top-comp.json new file mode 100644 index 000000000..75b05c5e9 --- /dev/null +++ b/public/dashboard/graphs/fr/top-comp.json @@ -0,0 +1 @@ +"{\"data\":[{\"alignmentgroup\":\"True\",\"customdata\":[[\"MOWI ASA\",1964,\"Bergen, Norway\",\"https:\\u002f\\u002fmowi.com\\u002f\",\"$4.9B\",\"11,500\",\"\"],[\"SalMar ASA\",1991,\"Fr\\u00f8ya, Norway\",\"https:\\u002f\\u002fwww.salmar.no\\u002fen\",\"$2.0B\",\"2,266\",\"\"],[\"Cermaq Group AS (Mutsubishi Corporation)\",1995,\"Oslo, Norv\\u00e8ge\",\"https:\\u002f\\u002fwww.cermaq.com\\u002f\",\"$1.4B\",\"2,790\",\"\"],[\"Ler\\u00f8y Seafood Group ASA\",1899,\"Bergen, Norway\",\"https:\\u002f\\u002fwww.leroyseafood.fr\\u002f\",\"$2.8B\",\"5,972\",\"\"],[\"Empresas Aquachile SA\",1998,\"Puerto Montt, Chile\",\"http:\\u002f\\u002fwww.aquachile.com\\u002f\",\"$1.4B\",\"5,827\",\"\"],[\"P\\u002fF Bakkafrost\",1968,\"Glyvar, Faroe Islands\",\"https:\\u002f\\u002fwww.bakkafrost.com\\u002fen\",\"$989.0M\",\"1,778\",\"\"],[\"Grieg Seafood\",1992,\"Bergen, Norway\",\"https:\\u002f\\u002fgriegseafood.com\\u002f\",\"$747.8M\",\"718\",\"\"],[\"Cooke Inc. \\u002f Cooke Aquaculture\",1985,\"New Brunswick, Canada\",\"https:\\u002f\\u002fcookeseafood.com\\u002f\",\"~$4.0B\",\"~13,000\",\"No public information or report found\"],[\"Multiexport Foods SA\",1983,\"Puerto Montt, Chile\",\"https:\\u002f\\u002fwww.multi-xsalmon.com\\u002fen\\u002f\",\"$611.6M\",\"2,586\",\"\"],[\"Australis Seafood SA (Joyvio Food)\",2003,\"Puerto Varas, Chile\",\"https:\\u002f\\u002fwww.australis-seafoods.com\\u002fen\\u002f\",\"$621.2M\",\"2,539\",\"\"]],\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eTonnes de saumon 2022=%{x:,.0f}\\u003cbr\\u003eNom commercial=%{customdata[0]}\\u003cbr\\u003eDate de cr\\u00e9ation=%{customdata[1]}\\u003cbr\\u003eSi\\u00e8ge=%{customdata[2]}\\u003cbr\\u003eSite internet=%{customdata[3]}\\u003cbr\\u003eRevenus 2022=%{customdata[4]}\\u003cbr\\u003eEmploy\\u00e9s 2022=%{customdata[5]}\\u003cbr\\u003eNote=%{customdata[6]}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"Mowi \\ud83c\\uddf3\\ud83c\\uddf4\",\"Salmar \\ud83c\\uddf3\\ud83c\\uddf4\",\"Cermaq \\ud83c\\uddef\\ud83c\\uddf5\",\"Ler\\u00f8y Seafood \\ud83c\\uddf3\\ud83c\\uddf4\",\"Aquachile \\ud83c\\udde8\\ud83c\\uddf1\",\"Bakkafrost \\ud83c\\uddeb\\ud83c\\uddf4\",\"Grieg Seafood \\ud83c\\uddf3\\ud83c\\uddf4\",\"Cooke \\ud83c\\udde8\\ud83c\\udde6\",\"Multi X \\ud83c\\udde8\\ud83c\\uddf1\",\"Australis Seafood \\ud83c\\udde8\\ud83c\\uddf1\"],\"legendgroup\":\"\",\"marker\":{\"color\":\"#151c97\",\"pattern\":{\"shape\":\"\"}},\"name\":\"\",\"offsetgroup\":\"\",\"orientation\":\"h\",\"showlegend\":false,\"textposition\":\"inside\",\"texttemplate\":\"%{x:,.0f}\",\"x\":[472000,194000,171000,152000,138000,91000,88000,86000,77000,75000],\"xaxis\":\"x\",\"y\":[\"Mowi \\ud83c\\uddf3\\ud83c\\uddf4\",\"Salmar \\ud83c\\uddf3\\ud83c\\uddf4\",\"Cermaq \\ud83c\\uddef\\ud83c\\uddf5\",\"Ler\\u00f8y Seafood \\ud83c\\uddf3\\ud83c\\uddf4\",\"Aquachile \\ud83c\\udde8\\ud83c\\uddf1\",\"Bakkafrost \\ud83c\\uddeb\\ud83c\\uddf4\",\"Grieg Seafood \\ud83c\\uddf3\\ud83c\\uddf4\",\"Cooke \\ud83c\\udde8\\ud83c\\udde6\",\"Multi X \\ud83c\\udde8\\ud83c\\uddf1\",\"Australis Seafood \\ud83c\\udde8\\ud83c\\uddf1\"],\"yaxis\":\"y\",\"type\":\"bar\",\"textfont\":{\"size\":12},\"cliponaxis\":false,\"textangle\":0}],\"layout\":{\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"rgb(36,36,36)\"},\"error_y\":{\"color\":\"rgb(36,36,36)\"},\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"baxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.6}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgb(237,237,237)\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"rgb(217,217,217)\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"colorscale\":{\"diverging\":[[0.0,\"rgb(103,0,31)\"],[0.1,\"rgb(178,24,43)\"],[0.2,\"rgb(214,96,77)\"],[0.3,\"rgb(244,165,130)\"],[0.4,\"rgb(253,219,199)\"],[0.5,\"rgb(247,247,247)\"],[0.6,\"rgb(209,229,240)\"],[0.7,\"rgb(146,197,222)\"],[0.8,\"rgb(67,147,195)\"],[0.9,\"rgb(33,102,172)\"],[1.0,\"rgb(5,48,97)\"]],\"sequential\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"sequentialminus\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]]},\"colorway\":[\"#1F77B4\",\"#FF7F0E\",\"#2CA02C\",\"#D62728\",\"#9467BD\",\"#8C564B\",\"#E377C2\",\"#7F7F7F\",\"#BCBD22\",\"#17BECF\"],\"font\":{\"color\":\"rgb(36,36,36)\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"white\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"white\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"radialaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"zaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}},\"shapedefaults\":{\"fillcolor\":\"black\",\"line\":{\"width\":0},\"opacity\":0.3},\"ternary\":{\"aaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"baxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"caxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{},\"exponentformat\":\"none\",\"fixedrange\":true},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{},\"categoryorder\":\"array\",\"categoryarray\":[\"Australis Seafood \\ud83c\\udde8\\ud83c\\uddf1\",\"Multi X \\ud83c\\udde8\\ud83c\\uddf1\",\"Cooke \\ud83c\\udde8\\ud83c\\udde6\",\"Grieg Seafood \\ud83c\\uddf3\\ud83c\\uddf4\",\"Bakkafrost \\ud83c\\uddeb\\ud83c\\uddf4\",\"Aquachile \\ud83c\\udde8\\ud83c\\uddf1\",\"Ler\\u00f8y Seafood \\ud83c\\uddf3\\ud83c\\uddf4\",\"Cermaq \\ud83c\\uddef\\ud83c\\uddf5\",\"Salmar \\ud83c\\uddf3\\ud83c\\uddf4\",\"Mowi \\ud83c\\uddf3\\ud83c\\uddf4\"],\"tickfont\":{\"size\":13},\"ticks\":\"\",\"fixedrange\":true},\"legend\":{\"tracegroupgap\":0},\"title\":{\"text\":\"Top 10 producteurs de saumon par tonnes (2022)\"},\"barmode\":\"relative\",\"hoverlabel\":{\"bgcolor\":\"white\"},\"modebar\":{\"remove\":[\"zoom\",\"pan\",\"lasso2d\",\"select2d\"]}}}" \ No newline at end of file diff --git a/public/dashboard/graphs/fr/top-land.json b/public/dashboard/graphs/fr/top-land.json new file mode 100644 index 000000000..c9f366599 --- /dev/null +++ b/public/dashboard/graphs/fr/top-land.json @@ -0,0 +1 @@ +"{\"data\":[{\"alignmentgroup\":\"True\",\"customdata\":[[8,\"Arabie Saoudite, Etats Unis, Chine, France, Japon, Lesotho, Brunei, \\u00e0 d\\u00e9finir\",\"Financ\\u00e9 par 8F Asset Management\"],[1,\"Etats Unis\",\"\"],[2,\"Royaume Uni, Norv\\u00e8ge\",\"\"],[2,\"Portugal\",\"\"],[4,\"Etats Unis, Cor\\u00e9e du Sud, Norv\\u00e8ge, \\u00e0 d\\u00e9finir\",\"\"],[1,\"Su\\u00e8de\",\"\"],[1,\"Norv\\u00e8ge\",\"Financ\\u00e9 par Lighthouse Finance\"],[3,\"Chine\",\"\"],[1,\"Norv\\u00e8ge\",\"\"],[1,\"Etats Unis\",\"\"]],\"hovertemplate\":\"\\u003cb\\u003e%{hovertext}\\u003c\\u002fb\\u003e\\u003cbr\\u003e\\u003cbr\\u003eProduction en tonnes=%{x:,.0f}\\u003cbr\\u003eNombre de projets=%{customdata[0]}\\u003cbr\\u003ePays des projets=%{customdata[1]}\\u003cbr\\u003eNote=%{customdata[2]}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"hovertext\":[\"Pure Salmon \\ud83c\\udde6\\ud83c\\uddea\",\"Atlantic Sapphire \\ud83c\\uddfa\\ud83c\\uddf8\",\"Norwegian Mountain Salmon \\ud83c\\uddf3\\ud83c\\uddf4\",\"Maiken Foods \\ud83c\\uddf3\\ud83c\\uddf4\",\"Salmon Evolution \\ud83c\\uddf3\\ud83c\\uddf4\",\"Sotenas Marine Park \\ud83c\\uddf3\\ud83c\\uddf4\",\"World Heritage Salmon \\ud83c\\uddf3\\ud83c\\uddf4\",\"Qingdao Guoxin \\ud83c\\udde8\\ud83c\\uddf3\",\"Sande Aqua AS \\ud83c\\uddf3\\ud83c\\uddf4\",\"West Coast Salmon \\ud83c\\uddf3\\ud83c\\uddf4\"],\"legendgroup\":\"\",\"marker\":{\"color\":\"#151c97\",\"pattern\":{\"shape\":\"\"}},\"name\":\"\",\"offsetgroup\":\"\",\"orientation\":\"h\",\"showlegend\":false,\"textposition\":\"inside\",\"texttemplate\":\"%{x:,.0f}\",\"x\":[260000,200000,115000,106000,100000,100000,100000,80700,66000,60000],\"xaxis\":\"x\",\"y\":[\"Pure Salmon \\ud83c\\udde6\\ud83c\\uddea\",\"Atlantic Sapphire \\ud83c\\uddfa\\ud83c\\uddf8\",\"Norwegian Mountain Salmon \\ud83c\\uddf3\\ud83c\\uddf4\",\"Maiken Foods \\ud83c\\uddf3\\ud83c\\uddf4\",\"Salmon Evolution \\ud83c\\uddf3\\ud83c\\uddf4\",\"Sotenas Marine Park \\ud83c\\uddf3\\ud83c\\uddf4\",\"World Heritage Salmon \\ud83c\\uddf3\\ud83c\\uddf4\",\"Qingdao Guoxin \\ud83c\\udde8\\ud83c\\uddf3\",\"Sande Aqua AS \\ud83c\\uddf3\\ud83c\\uddf4\",\"West Coast Salmon \\ud83c\\uddf3\\ud83c\\uddf4\"],\"yaxis\":\"y\",\"type\":\"bar\",\"textfont\":{\"size\":12},\"cliponaxis\":false,\"textangle\":0}],\"layout\":{\"template\":{\"data\":{\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"bar\":[{\"error_x\":{\"color\":\"rgb(36,36,36)\"},\"error_y\":{\"color\":\"rgb(36,36,36)\"},\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"baxis\":{\"endlinecolor\":\"rgb(36,36,36)\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"rgb(36,36,36)\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"choropleth\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"contourcarpet\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"contour\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmapgl\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"heatmap\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2dcontour\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"histogram2d\"}],\"histogram\":[{\"marker\":{\"line\":{\"color\":\"white\",\"width\":0.6}},\"type\":\"histogram\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scattermapbox\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolargl\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterpolar\"}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"},\"colorscale\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"rgb(237,237,237)\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"rgb(217,217,217)\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":1,\"tickcolor\":\"rgb(36,36,36)\",\"ticks\":\"outside\"}},\"colorscale\":{\"diverging\":[[0.0,\"rgb(103,0,31)\"],[0.1,\"rgb(178,24,43)\"],[0.2,\"rgb(214,96,77)\"],[0.3,\"rgb(244,165,130)\"],[0.4,\"rgb(253,219,199)\"],[0.5,\"rgb(247,247,247)\"],[0.6,\"rgb(209,229,240)\"],[0.7,\"rgb(146,197,222)\"],[0.8,\"rgb(67,147,195)\"],[0.9,\"rgb(33,102,172)\"],[1.0,\"rgb(5,48,97)\"]],\"sequential\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]],\"sequentialminus\":[[0.0,\"#440154\"],[0.1111111111111111,\"#482878\"],[0.2222222222222222,\"#3e4989\"],[0.3333333333333333,\"#31688e\"],[0.4444444444444444,\"#26828e\"],[0.5555555555555556,\"#1f9e89\"],[0.6666666666666666,\"#35b779\"],[0.7777777777777778,\"#6ece58\"],[0.8888888888888888,\"#b5de2b\"],[1.0,\"#fde725\"]]},\"colorway\":[\"#1F77B4\",\"#FF7F0E\",\"#2CA02C\",\"#D62728\",\"#9467BD\",\"#8C564B\",\"#E377C2\",\"#7F7F7F\",\"#BCBD22\",\"#17BECF\"],\"font\":{\"color\":\"rgb(36,36,36)\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"white\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"white\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"radialaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"zaxis\":{\"backgroundcolor\":\"white\",\"gridcolor\":\"rgb(232,232,232)\",\"gridwidth\":2,\"linecolor\":\"rgb(36,36,36)\",\"showbackground\":true,\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}},\"shapedefaults\":{\"fillcolor\":\"black\",\"line\":{\"width\":0},\"opacity\":0.3},\"ternary\":{\"aaxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"baxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"},\"bgcolor\":\"white\",\"caxis\":{\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"rgb(232,232,232)\",\"linecolor\":\"rgb(36,36,36)\",\"showgrid\":false,\"showline\":true,\"ticks\":\"outside\",\"title\":{\"standoff\":15},\"zeroline\":false,\"zerolinecolor\":\"rgb(36,36,36)\"}}},\"xaxis\":{\"anchor\":\"y\",\"domain\":[0.0,1.0],\"title\":{\"text\":\"Ambitions des producteurs pour la production de saumon en tonnes\"},\"exponentformat\":\"none\",\"fixedrange\":true},\"yaxis\":{\"anchor\":\"x\",\"domain\":[0.0,1.0],\"title\":{},\"categoryorder\":\"array\",\"categoryarray\":[\"West Coast Salmon \\ud83c\\uddf3\\ud83c\\uddf4\",\"Sande Aqua AS \\ud83c\\uddf3\\ud83c\\uddf4\",\"Qingdao Guoxin \\ud83c\\udde8\\ud83c\\uddf3\",\"World Heritage Salmon \\ud83c\\uddf3\\ud83c\\uddf4\",\"Sotenas Marine Park \\ud83c\\uddf3\\ud83c\\uddf4\",\"Salmon Evolution \\ud83c\\uddf3\\ud83c\\uddf4\",\"Maiken Foods \\ud83c\\uddf3\\ud83c\\uddf4\",\"Norwegian Mountain Salmon \\ud83c\\uddf3\\ud83c\\uddf4\",\"Atlantic Sapphire \\ud83c\\uddfa\\ud83c\\uddf8\",\"Pure Salmon \\ud83c\\udde6\\ud83c\\uddea\"],\"tickfont\":{\"size\":13},\"ticks\":\"\",\"fixedrange\":true},\"legend\":{\"tracegroupgap\":0},\"title\":{\"text\":\"Top 10 producteurs de saumon d'\\u00e9levage terrestre (ambitions)\"},\"barmode\":\"relative\",\"hoverlabel\":{\"bgcolor\":\"white\"},\"modebar\":{\"remove\":[\"zoom\",\"pan\",\"lasso2d\",\"select2d\"]}}}" \ No newline at end of file diff --git a/public/dashboard/maps/en/ras-map.html b/public/dashboard/maps/en/ras-map.html new file mode 100644 index 000000000..c7beb51df --- /dev/null +++ b/public/dashboard/maps/en/ras-map.html @@ -0,0 +1,16536 @@ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +B`=4IZ)#NW4qL2I)aIevCwAa@Y3rOOIp%D{&4 zsLB<1`_gl{JT#LXNul|}um*`UL4tTzfJ;~pgQxZvED8&a*bW^Kz}M#m9#joZ zxeE)2-bt &+rywB5mKJc`WTDqE5zR*bopry}3Xb~(+jWj_H zqzJ%fs|0MKNK0r7H*2x7!$j)IhfDJA3k{nyU)|BiqprEJ;r%_`#=b@u=TRwvJ^;jC z-*6u>v@{kb7&W{E9R-m}z~;zPx oRmkia*IKLjXhsUOA?V>Q~VO$uwqZDK{xEQDRGXJlz?d$&WZO&kn_=U{*( zFt$v{4n1P~z974JtKm^<&n13r!I?VD(gG={XB4BGU8reP254n6Q KWbB+5$L}5ax9eH>qMB(8=oyMBd;&3OqdzgJWZdHki6Ku%z zy<$rXt$jp{B?gd&yQ2VYDnS}{^F9e|0b)`lv6kHc#>r@wDxySOqI^|_QU|$tmpj(c zmls};9A|v$vR_Nnqg P40QmsWec^(tm{v(hxxh0oD|XB z ;_q>--sJd6d~ `%)@OuBILRJN`FsG<6`_wU@;$S9$T@x+ 8c0nyYrqjbhTKUS>H D0Q$Z+I3o=y8iiQ@PO4#ojd3jxN*2zm1Q@rSL{;g7wpML&LeCG?A4oNxvGPukB zWQ7Bj`G8dC44t;a1BB+O{tiv89$SsyxG4(iMq0wEpRGxuxgx!>cZTv=kB%VO_8C(a zE%iiaJl|X|C|Ha>9&;$;7?A)L_{ko DcFEO-+a71?SJ7T+c!oyKV8dc*A{B3uNO{nZ@xX z0=34iW%VD4hmXd#LZNs<#Bs8?p0@8L1UErq<<7*B{dnVH6`a&$U;2+8plV7UynnHg;Iw65K4EoO|1` zpc+wyX3vn~%f$Y?dl}W+%-QrfrA4YR3q#IcxQVf}bK_p|_Hy3*C|-P2H}+1s^EE5@ z#6fx#*4peBlUnFyt8!SmS+BX(C8Qq%fZ6kG@gGv79*ilkEg@qLIE%{sQ+iCR+pR%m zsbt|I Tzg BxiYL?a za7-QyHulVv7E?K=RG-A;{a%tMw1l-pJG%VO6TgPMCi?3Jl~+_Ck|V4(%30C$PP)we zcFbDAxs- km%Qtk4?jpGxc% zlP343;v>mP7bt%pds~pVAs4TIejg;phZRoRgP`{Y)y{A=G2HDrO2%UmQ3QsCEk%(s zC0OKl^frp9GPODwcd@N7DYL *!39T{~uMcO$ zucxdFPh}$nnu$|A7vqpxP>w@`hjMc_zu=bSwn6mHhjV|vU-2rbt`8H8^>-KsRQZze zg? <@u@t^Kjl@XEt(4bH2J9rOKd8=E2hwAa zs-&9i9uXwBrUwcr0uzmpZbf9gP =`8i>;(^EWV?mk`Rf7So0vo-tI z=Qi1lC|neW8p;d9j$$JHn*Cv;* @UYCs7Qs 9I=wMKVr$_M3*(jROy- `W%-A3Dj( y6skM+IUUtQi-NWoLu+nH$^g|lM9}!U5y6EU@HRnG2_;t)* zYxduDS*fV*B}=N9AHV;xYv#AEL(K)u^Qx}NiN!g@J#svfXb TnLL z0gq0SJqO+7x3Yda)OE-s|9NTs$HDswP_O>Gs E~5(k#Fpdo8+-nx(5LpAHLd#rx?2l=IR7hdpD&Ik;p^w%%=?lDD9 zbJ0aGJL)tmC@Il@PT*g92px%M+i6-R9~r_HLyXvl_@%^ekE@LOT8TH1KmKswtIg)K ze|~>MXJTjgiof>Eq5O|G|G53-{faYOg=uA(A*FE>@hlx203$sQv&5U=jP*ZkDg{(! z=U9+N=V|^H%0(7C-9An{;S$we7fd$DxlLA_Ir?a}EH0Wl IA5vBjL!;!qIMNx9D7BdclT>1QNpYD8g>x z!{%a(KGzJCEZ-|Dh1Ek6&va&-9%;W2<8*U!Zf9#JeR}reFJ1pUasKbn%oBE+dJ&fh z?V1mjwf3gL`yKHp|1z V=x!gkh(d<|P? z+^%6z^QfoQ4KwaZCuP`B`s#93?~%{dYI5)tjwWe#R0af6>rU|Fg))f0T>zALIexyq z51V<<)!q|TJ^R}5x^Q|Uo!&1IHJ&EuqwdgUO6P%89Zvgdc2(4?UxR4NmG7_ebJi6u zA#cCS|A@}|eARBqA=ubiu&)Q+VjJ6?99bERpD^|$F@suw!$DpYi@*R*>ovW3exh)K zQDcX 4gC8CI+)lEA*};a=REI5&!@y&&B5R~d!X x;7Gw=OXabA{WY-!vwT!2=-r6kX8TUdcAiGdbn#UU8Ofu*(}jbKm@Hmt!+e80Oy z%b^45lkgD1s4=?+)6vqbOa<34dD7dG-jm$G4rwk=wMIWae7ezVyebhH-NrrtWpJ*J zG?Y*oh_k5N%PX2zc{zp6U1_N_vh5ulbtPv>pbLFy*Dh0quDmNKw~f3izqx)jC_TJV z5)E=NyX@;Uy$*TFTVGZ_JNm%ZxSx{N#9B#|-&BdD4=FtYykSd3nT@_302rqj#6$Q& zLVsI?Kj?0lHrUiS48{@qSU? 0~CaBhk>)N~NM8OZZy8 z5!LDWaqeJTIK()v%9fZI?`v+{>iIR%&POLwn07G|q0`=Rm|a{= _!=!>>Fp9jhW9d3=mT*S8MUxsLQS$yeBEcuNuhxr)?=uZDgPYn_xq1p)9di6V@rz zQG OZt+}<`)u0uiWz+C z&dAYEfu*H;kb7*Q(-zd>zn#ovdN>rD!y=$<<4QuVMg5+AeW%M|d`VesAJE|FQ>pwV zGF*?(j(+M)`8eGpAGy4xS~M(uNwSHDN454DhQ0Mj%2CL2s|;{X6I4u@_>Q18*-*zs z7vl(lg=L0o1 6$@9t~BPxHpwh zj2@V+v$pFpjR=jiZ=);L+}D3|qCHR){Np>bjlO*+ZSp8L9n6bJfsj~up!5u{=oTu} zDTDG+>Xf4hjmNnitg=LO_`@Q7EH3$gZ2}QsBGMv&&|KJY(38Z_!DXcFE_xsbyHg2F z2G=`e5NY<3LfzvmRJ?bm$K*dzWfwAkuQRRs@%!u4Mr3y^vPYVTW7V(t#*=%?9A3#@ zI+q62WyHBGPx1v18^5gW$qO6LrhJUtc!Rom)bsS+aArfV-Z*x{<_F3(Y+)kodI+ke zrhHUFjoG>W<#hfwy^lw!ycr9Q(#xJ;p)jNuYIFy|!i2(^!D JTBKFuxxtMx~B&un57Dr z_FEBEd!m)XXXwfLa-)Z*NkRB^;U~QO&uzCh&G|$RwkRssb=927Tnf!z#lLYdA;xNB z>>SG~XK2|v+*V2{73pBXDFMN+d%G+0hF(2GD?Fr~k=V%E#2M^3#}}((;)vVtWaDEG z>efTid~%bzs0F9_-5+k!yCvv)NBo_t;_4@_Q*9^$yj0}XB+S_3Z~~r&<5PO36!@$! zw{w~ar4ECIwZCS!OR*1ClGdB?O(}KM%1?<`oJO2}JwFgrth$)ik^P(}BKjo{bz%=1 z4J0Mp4?XQzZ?Y=HZ;<8f!HB8oGzFX_EDPO#1mmbx9c>lp0B?_aAn{{ M(CY;&t)aA0MmAKauTfWEro^j@AiWW%>FkJT=b zN@w`@Q%*ya=yHxju&Ka+kV4OLB}e+uS8qky>IL)nN8XH*^CojvLgzwxl9DgC>5n|$ zW=m7Cwg!o2p$YX5IW5o`7Ig59{OgWlqX+$drEUN0_RRFw)IF) @JqauY#x zgNvnf@^@B*wR*+kNi5CW{_M(k$A;b=e5f$X$>7I}E*yS2ycXP}K)=50)p0jW`Up+y zx|HD|at~ ujLcUy2c|iH=`SLqvV{g`3mkamgvUu(DyI4 z#!Th+YJ)9^`j4b|V<`BHyr~+!&3`g@C XU|(C?X180VM9%O?ua|{s%LNwUUX0z;-b>_Nde?!}@FW~kwKq1&zR7#%-cBUG z)=dqnJM6kHE~uVSUL~`_tgnz74omM%0T#1HWMf|tl^C|zaCZ3JtzXl>9nMr7ZrGfR zj Ume`dkX!e6lHK~>i@etrL&Ldu&r9johhF8VNHYC0 l~_CD_UH)a9sC4lfek{D4*5YT;dKklS17GZgluxaHp_IkvM7CGTVJAt z+>tK)>XLzaGjnGl|FgGLF|SNdBsP$@sGkF_2IWqToagO)d3yF`agjRJe}6AQU`h{R z)!jIFPP};Kto*+D9&L9kJ6K?CoYCxRcE??^!D0DW;vM$n>KSj{_p1DN{K57i>dp2! zGCewiOww#zSbxkF%yl{PC_!hW#>qiv^jFb58(|Q$6|a3$F9FVcuxy|s)H`uJJ+M*l zX##O-GQCzuUm97`xhf?Cw>@u~M4CZ1B&{cOd>2Ce@bX8kT+a)^t*U{#CEi>4ZP7U; z@8-_uUmLcnE6|Irq~b$ fJPy`Z3n%bE?irZzl`G8 z!Kl{uu7P2dRY5E ddxhF&mQ5h}o?&FG;o{p7LJdnLBCU_>oiEk>J9JGq=~;oC}p)w+ox0^txa| zgpoGZ@QDOUe_Ek+aGTfj$?PdgI*Ql$M6MR^Atg^fBMEl>_WiE;&G*q+67q_7?Z^eQ zYIy3#fai^>_>hOH5uEVzuYU2&4C+;fw4R0g=zRo56q~S`z0sMj*B5OwnuRLg-0zS* z8`AnqzwLtxQ)tzGQiDEe*?`JiPQLkV<@J?^Nf#cj)V#Ti{_yIn?%&$^d8%)J{K1j0 z*Ipo<;|gRk9x+G1@`sibc}diJ@6jrcCNtH{Nb0D6fQ_$ZaDuczyu`*MiCATVUK~aM zW2QA&O-WmkJKfda#tbGDPliZP8g3}Lv{n{BoP1N+l-nf1t)S{F$#cV}v&}*&3S+MZ z! _C%4YO+1{GWX^a|CI4^%^d^3r<|J(DMNjHQ_ zRR*_q@k+FEop$V !%R_^Z!aW@0|&UL&h=mFpj0yv+Nc6cz?riNVcQQSwim zlxc)*u+37dz}D){DOW}0G#4X1|MSmX0`Z{gDPQ=`+6`BIW^VCHK%WP%-qU&T)Qvz{ z{CNdFw33)i<71aqxaI1RoXC1ITBaf;VQw{5qy~%Y;l$m`>m8{$XTIl!^Uv%=r+2ob z><(4Z`JAex+ebFUA$p>EMX@3%a)g+ec)5>rD)Imxu?H39M0@A@Thc*i+Fixtn34Qf zxAF8F%g!&~MSJFLgii|J)BcHC{Py6z)!%+>SkIj>z1lK!Rq^3j>zvb7jSKy!vs7yS zKJ8>@a2poO4G@~xLaz1sU79VF0KzcS0#+NDQj!j@pIh;3|IO@IMSO$fw0iK4$X)X6 zSbcknlbGW%5x>>cP(5-XpNT9h$tKopJJO$d$%)A*xl*RXd{RD8+OO!4-ySLW@-<4{ z+vWWsa2u8Ogaaw-mkhr>r~F;cE|QpbI66&N*-UpbQG=KgI(gA)CO24q&T~!ix9H4v z_9MYh$F^q`e><#;JT4yXd$)McqZ%h2-u;ok^hLHqMt-boetzSDYGu<^G}Ck-KmC@? zqbR05F(3V9_}kC1xmmej%nmk$H0$ZG?J^Y+UQmhh%_60b?Ia0{ z S`&L3=gvdNMp zE3t4|6DgF2Ri}NdUa}hWxu#L4`Pm0CCMO=L{>Lrr$?gx1felX1eUSv;2U7S9oOsUQ ze|$z>KKtp|P;_ig$lylw;*#9uMv7VX8s9Wp_0661FQ3f?;-?4c(Lelr=1t)0K;uc< z$dSYeGYrvea_;N--@G?J?5xGM82Gxp j8 |Fz*DqK}NH@AX zcfPLAZOv75{lnw@5sxXG1uxfIG4W|Rvr6eC*#Zv|fYo>)w)Q*98+*G>59i`pxSOn_ zmDYQ9Oa5NoFPAD%{O4?(isnsgPjW! DZ(XrOz83MEpC%oB*+yD1`a9K zyLzknUsm$y;kaz=NWOLQ!1S8`?{D5`cqD}+B%M@|X5Of}9>Q<(4w6~CV4q+%S=Re< zckb6kuJ)I*2Xn{%%*=WDU3x)Y=tia)c70Ca`LWo6fmMR1#AO;St20dzbYc67 dVdTSaezN$pk1o;La&o@0 z8Bu%m(@357xz0~s8|SD6@D!8EzQo!0yK{HWC`&S|eD}NMth5MY-rp6*`n{XG+RLZE z`?Y@L{0&!|=4PP IUJqqe;fa*jliCg(G+j=#C(sU)lx6Vi zCyPxT>JnE%2=P&mdp@M*@hem_*U|sJI1@8)J!^1^e3ExAJ15v~=jLw*yJLQy+VQ-3 zbsoAFq2P9$zKZjBP`}A+=ll{Bz9+>v|L?3XE9oTqau7VvCimoIWG+Q6rY-X*f4t)m zKU`}Kwlzm)_nN()k7vW{B2l%*H0r|A(7pX0@hA9SzRDLC-Zij>6>0Uabb21Gc4k=h zTJiyolqP84LUPqI7lh*ttR*`gnf>TNqzu6q0=pN8)Npp9HHXuZYTNp A ROh5g?C@>UWD)#$KkC4014m>P0lYV9LRe55k s5Yl9XV2SWip9%Fz&wJ`hExlS4?TtSH!!no1(&Mz^o$;qIU& zP!G g{fpOv4SM7z6mbZ5a!sg~a! z%RFY<`*ZX^PycvG_Y%A EAv=ZolEsT81CD+Rhb-0``QO z)l;Y4xW;x-DJb6aq$KR{6G?tl>!KG@_GZO{nGs*Ifodu_w=+m_?jV(vVgpo^z7!(c zq4R_nu`dY`GDLZeSV+T(Xy~1hf^cR+&Q(k$*T!LsED<-Z==ev@D%PGnv3GEY& zB)Hnl4H~YWPio`Z{?7aS?)wLlN!7=zrEB@CQ||Sz_x@NgckJ1L1H0B+)Z39;F|+*3 ze7*b6{BlDe0`o^#3?5&ZOO(M%^{S(Zxs9)Hx%IWRksn`m`nl0_uo!Ba4oA8YF=i)1 z7I`X(y`52=qwS2fW3YpC$n&)#Z2E)~F~un;FPDvyOPma8SI+u%bF>F+_SmCw(^3va z(9i>OGNe9AiVwIsqfJ1{tEfu(^(p}0>M&1t`u(&ZS(lsZ`04#sUc*+MCtZKLi60ztc=VgKFk6i#j$~Ak$=frks|mlIL~Z0;yWkX~@~pn JFT@6cSYJtCH#7X8xk>`Ip@$EnV=X<^=tY%s#p>e?!_2?03#!6fUzke|U zEps?y7Frc2kHoJ#wO+$EjGl2!Cs#+Vod0TDf0{r|NwZ;TVR3~Y6n74^7vh;?JKRv7 znKVw;aXR~+m#Tm1mfzv%jzW~JRTR2UReXxNb79XS>VAEE{>F0}HjRH~F0qMsD0tiT z)0Y=Lr-uK1;l`CLnJ_8g9+_}kfA{3mLyANDx-Lq$sQ>!1GWacZExl>Pbu&@0k)E*f zGkqu8^RL0iKZtm$kJ)@2=R@;SFY4;qS5Gz+NB{mqb~zRvX)?Xf` ot!j^}UwwQC*;deI^l0u!FC|5pHFwBCF(_0lw#}W+dfeuH z> Yx0% za(B1w*_P^S{`5a;o_;yd1V__)BPNn^oG=T~yvSwLuIb2azToBCv%FIoEApRzpyVI@ zIMXm!)xnP^ypWt^%I!VmQ*nFt`t~Z%gmy2Lvz}gPxZ0;&{LS@+_rL$)@&{SRMcnr7 zIoFO(X=_nvosLlm*4Lf1r6QAc=22FHka)_rBi1x~3_a~8@k?Yc&|JOT0?H`;_?H8P zD6Iz7<3-^vW zJaE3`bRBi4xBvB%r#X`$v+ @J4n348SfNfqut@6uKT% gq z*ojiyHOf $~i+7|ih81FkY|y2>!7EMWlU)I4?nX^{ F;bL-@f>y1QI zy$j1;Iv-3AiguY-7@u}}KS!m_^OqEtw?CO|ZGBpQ-}GB869%lCzag-yqu}EpI}9L5 zhH`xT;Vt^m(T;>WNSi=?*7be{6QV~OUO`8t^(Ug{q+3&-A;YrM*`nkHau`iJnX_L5 zrJ&SHL*?wY);)C34wfQ1@#Dtrz^%y)>nm69skWzY&{rt`X1@P(q;Y5E7=CqaJ#x|` z8h8B7k5(H7WOeoGcCcTh%pcDlDafdHrhKKlE!6dF6eN|Xj-E!?!-Me4uJO4q71>Dh zsNK*fOS0YdpWpp-h`sgYkII(P4SA!O=nS)=WntA-ItU;TTW(Xq4(MiHvN!K;fN2g` zg_#;hT{Dy*LsN@UY<|EPw^1>sEb0qy@5gX#?<>Owsn_ity-sjst|EJ }XocuV~@c%$|0I=VQts zTU78Qr^`LJaCoiEJ2Xl5Ztho)qg&GgAEwTrI9vx=kAGtq^*ANvy7Z?Xy`&C-l}T{7 z312Lh86?zOWOO9%Bexn=`Gxu7r?qg|%!y(~IY%eB=TaP^m+H(0< lln*rU@3a&aDqto r!iO{DN?Ya+f@LF}a2$`yqde+07aa)bhjI3!A}Dv&^(Cj%UrL7VIA>6{@zoQb zcUBZCMc0qi_)AffW`BAeqo2 kN| zVuy vf#U;KBf5!Ae>=n zqDR@`r65TH<;;_fA$bE%nj}E2puav`Gw3v%lb>)$-N~OAfAWgk$@QX{!Xx4OC7->s zr`v)>q}rss1#%TV&Qlbp>{xJ$V*5z~S$PZX##Odk+@5F02e)MJyzx&bjpp>f=5M{F zuXr5)=RaTlq2x8=^_Jsc_Yj(zGnzB@0#x>_BH;$4eo%ZDRJpg~7dIkcDS*BdkG12c zta(;}iM}D22|J@eR3;gLRTdRv9aMCFd>mNe&_~~GtIFT_ns__$Dq#h+X8I~A+PN^c z++}FyY?jd``NaMt=eaoEf|o(y1LD-&zEowWG-1Qlyj3TNo#}{k)_p^hc(x>x^A#1; z$ 6 z=j|GqNx3OCJ$ }D-(k!ipx>`@Urdq^gvcRPE~ z0%u6C6$NdxE^;;9SajlB{;|||4`fe|{#ip!yG>n3W{L{Zlrc2K(sp5Y>z q3Xfr66&2J7wGW)?|9Y--o>a{C1AJ@n53N z-dQ(8K@jBY&4x8vXR7DB(W@R|^2&u&?uDJN>E~X`p0C+?@RpPB&6-x|hnCsc#sk;% zLC39H4w54<+E&!S!3OgIjpBgrI@IN%icGHaRl>3?NYc@`-!thrjh@hR^Xt)fmkyp^ zXR7S7B`rpBPB5E?%k9ZjI13iiqllfB2V^HHH|LJdxvaZ&Sd&F}X-7nKE@exdatUVN zLM^9%hWC?*4(kzW3~su5XsbGv==U*(^7mi$4}F0{0hI`dZ(t<9E_$(Zb>&!w+(QLn zHE#005&p|- NDb*zO(;Q zP1q*o^4{#a7NqJ|8n3hqTuMlT>_jW8S$MzvL)p-?E{~OJ-h^d*bDUw$LqovwL|_Kr zASS(lE?kgzT?q;9*K??f;!O~rI=@MZc8%ef(a-WGwZ+A=*0z2=`a)?Ml{wm7VxOvK z8&QPdVY-8zQd=Bq5QG|nZR#jfpL*3xLD_b7Jt=C~8^2sFiau+*p*TBOBq3v1Xq < zVng)9;cSO#i%mCW4}qz&`D%@GP_W5 #CD(J9E;N&Qc3g%=+cFj-uFoZ*KT4!7 zGrS)?eq-j|H*++!D$@#Y9Fip SYZ>}N{eXpr?AIca zr_kvZZCS>r3%7M?jlZwCcEBpodE~7_wpECmZ0p3WpZrcrQoMDtBodE6d*w~KQZ{+u z75ABJTaih=CSj_6ji`62bBQyRPl+J`t5Nb>vM2ovA3H27-gN#HCUZ-;&|AE+3v6 zLD90e9G2LLq(N`HtAh2%zd1R^do|YaKJ0v+Mrp=|>575EgGr`1p31=~zrTk-Fnm#! zl4xs#GH<^wg13Uo?}Ux_S82hQmK|3D@;MW?$@8tp`RiMr+vY!+o|nZ|aM4rxsjfXI z((|nSBVTj94oeqg`|8v1%Z)dVZp}B$qXxXr#LzrHx+ED+SsM0O!tdF0qPc=I@MdRV ztTfBL)KFW2FZ>}fMZCiQ7~g67%;uTfN`r8NJm}@&t%my37iU(E?agvJI9uvx8pJqk z5l{-Xvc%Su;i0a?+&ywX#u0yLrcd7~6QqenGt$>g+P=ueO3y!yitdzn;>o+YO@E22 z&%ZL-e+X6o yGu1j z?U2nvmUCG^Y%aN75o{b?V6>Ukb^HuV4XizXnn_7dmqdGx4389LKFQ}PtEG#`nu~tz z%|LUlP8d*vsKuKYfdnI`FCRKs(;X4cPl7NBwLR*7P^h|RX }ijd1f9pm2@o9 zNOX?I#*rTKQgfctadZ4IIj&waRVGP^ET5r1@4_CevISc7o7tq-&>-j4RxkUkR8NY! zM`N?7&j@61hR!s5cu6OwD@fJX#2@|_UDd_qm*L-UH*pFYKfC8YJ^I&UWmZBMNL>OB zVFrcvTLSvdr8??v8+~!5rlr|_z9QFB{}f%jLS~A<7L9gmHtSGm$%;BU^^3&(bK^CV zZfdYw4{@XEOx1KSmcuTR>KiA^nG1gCMAB62J!ck+kGfq?LrxJjtJw@FRNYS;weJTX zD2TV}i}*F-YWt`ByvN=@9joO}O*Y&e$$wXJLXS>NwhTLx UPVF%$zFM06K6b@e~%n~}&> z9 jnXa;l40zvz-wbwvQ~<-IBQqY=Zg7_yFuL zhCm1k=Crit`8JfkRuGbsze~0?SusY3jP!hQ$M&~L&~J`kpfBtU6suCBFwe2##{sR# z)Un+ovrxCSF|;jAAC%uiI=o(NYx)w;hmQ~Ln=}i9 zHMd(r#AAY a*>-AIIf6x?#Rc=9G*c~g?qoS zh7wZL9%$Q+WyFE*v!Gb;5p7Ux20)tdd2W;XfYaWCJcUCAT7XSQ)Y(Wws130l7w%?l zVf=fm8%F7`XWbLfs%{73sR8zqxZ(<^9|GTO*c!IdvJib%sjPQGljdvkG*9L~tE#^J z`HB}wmO{s^u|>!pKaf+Z@?mElCGEbwe@h-GqJey$@EX^e&a=d@_eIuf8nOVB!h>~) zj-n2TzZtafm%OO L=WD3vCKxlRfKB*WUfd&0 zCL$6s)N_T-2pG;1L|aC`zd?_o@YYT~iNYJUo>tKsybn+Q82A3eQ&-O7Z O@-LKo^Z?KCaW3kpgNVD!NZJ3#y3d=SJo&ms(DZV0+PV`@{`QceIn z_^A7kd<@4eTaX7!{dIiRO_O3mk+Uv<2xtb(g03k`%jFeL ||iVE*_np5Jxy{ZecR2X?X`b?ip!SRQBJdY{O<nMPJqL^W#6}^Lc-s_w&4-*YmtT&x>>vPLTrv=eGe40IkD8Wh%jWZXdX#8I+25 zlERoL@}Zs-VVasl9Ux_mI4-;qINf#=wlch5?#cV#=e`B`IvgNOyWUcSs9C$g$;UM@ zB)qC~8ctW&6qymln{w}-uxpTcU&lZ=Lu*eV09X}*1OQ1@WJR91 Z& v@?Gt}Z&xU-~+m_g;DLeS%)5) hm#2Fi=gKc-tA&m BR &TuD3C>)GD+CgtSQp4q3>?>^EmVU<*|V@N2vj0_oI z zZ7GDoXG)M9lE48nJR6*)v;cbTQF$;}DGq5~j!9%^PRtgc)tNLN@z unzh7EO{uBM`x4dP!9Nsq*_Kh;|@S{PX%W_#US)C;Ak_5(T^bM zY#<##_2Ch$(o-qWY7$^xj>L)BfzSNN0k|4iowS2O(Q+qoq8p0iyKWUMkM8RYP5}hs zR}FDh6lyKQ@JdQf9$O-hdj-s^ h1kB6cMg95FA)AaN)X{$UxOswM6W;3t5*8(50egj@7#alB9A!Rpfu z^5F1&pxO;A!iNCZAd~7LSy(4}YfkAY(H&-reySwIGJ=SLqdXXoz!^Sazz9PBge!$Y z($jWMTUaPUk~C{Tp#qe6o)k=|6sB+HK+$Y@1UNvjDMWKNtW2?^409aKhWN?1)rk3N zw=vbcGVx>JduE1sv(7P$s+qJ4OepoZlr(o}C&2d42Yl-t= dM2!Lf z>X>e}2&G(xcqboV_kbD$B1e;|*z|GwCs-ASsmX?eO)pi@;_@i=aiYXHGOt!uv<`s7 zq(e{Z(HKNiMD2+awys^6s+7?5vG!YeBX!Ow(Lgw0IDYv!1maAQ_8$ir4nUAAQ~;Pc zuuy7dX%r!#n&X8pXXI&;m%y6=pKy-Yq(+JmTOC#fih{r$dM!{uiVzzxrFjXgDMS&6 zNUiklQ%yK2ec$2Y#=v @oit14T zx++193}Y~e04Z5iJDJWVPw-SJa3`H0a#Fb=qsO+9Bo9|Ibx3t)J0fs3w$uiGBOQvK zfKWILP~{*6AmgAD&H%&-%&K{5sujvbie(JJj1 GMP-Fpai94Ruzd6gb;Z~ zM3p-OsGeFlMPOc|1fcooc1BNWU7CMpVuyp26pvI6tM_2Hvr3UjGjL}nDfsjZ8kAY7 z4p*ZDE@R6`Pym}sm&dV@Ep+or04j&q@Tef?^aw$^0ih}&&y><4YL0^D0Km8g4%Xz( zjv?aM;6M=|#U={ps-a*IAkR`rmFS}9 0q4Ns!i`V|B*j@20AUjce(yj)*>pAl( X)aX@u&@Y5SrV=qz tB9JGl$MQi45t-~qgbQY9}f}|aXLel(j zW_cRguv$D5fU$v9OA53RE?#8~nAaf80RUsn#xk&}wJ=nZqcsCtMTY|aM>iZgt&c{w zV4y^u=@S&pKw@$X(puHt5 XC(Fv3kU11^$lAdgygKnpfbx?F+LRrlxPPhxiu*-PUQj}l}jf4tS zCzh#Ez-)s~E0u>j1j?+EPSsD8AuEY7wxB>j+6tvy>K&yC>D(PCC?%d^lgvCE02Zj~ z6qt@_RrQ6AgAyi8BB%m{5>H?&5t-mFkkC*E7Kn_2h=?kFEuCE%M9xD3kwASB8&Ex7 z3UwGaC%Tkrb_;Xd$3-XIF{KU&vpk?os+0thlVp7ukt72^#Ji REnrMk%{M+B7ms3*c5~aMUI_EIAJTyF{P?H3*h)<2mps7DMBemWW0Ns zI1-EkHm?3s$jDVfT0s@1N*D)Vai9~{1C@q28Lcu$-2^I&4P~P*-N>Uh0u)rYgc{8O z+%Rk{NQ6*%Ks62vjPpw$<>^Y9IwWG@60Y>5bjDTiBPsYX(B(z_6d9-#Sf((b*}}25 z{QZ7HP_FFZ!AOHkK`1FuDZ?F#Zr0#yQGl6XhLo7YCV{30QgEfGpvduZuNM@pa#t?W z6ha0NC%|lNf!0Kc!T>E8K(4iLZ!$|nC(i%?7|}4HWXceXPQiilNsvsE3{>i#%zNdW zIx@9Imwf^Ox5bqLIMkyApa*H)OEXOeAQRwy5JBW#vo0A;RpJR#C|magG67Wg0e09@ z000NDcbIAdqNX7^ _230d zVVYHdV1TKFB5~Z2U^^>G2&8OLi>hYM3~iTEB->m{2(=6map-ms1&bJvRR9j!ITGY5 z2{lW+#!Px8$t+Js3vd)?6RA6_kGqd4gUAF0QcVMsw4Kr4S98gV{3oSmSVS2d+$c6c zrw}WhK^Z3pwhy%w7*8NO075)9OCk^CHM;b1vNJ#u#{IuRkc TBI~lc`{Nx_3~VK z9Mmr`50a?GR7BswR{2=!`Zf^2ECNxx0ZB)~gnvKEL-jyJDG(Y3`^n6Olt~BGoO%oa zb2iA)Ea^8u^I^+Gg%isFK`F?U$SBb8E2b2{j1)sJ1vehmbVXQKswExWj;tgB7@!*h zS2d-GA$+P40tCdg9AwSxcgTc<1|k`h;~)uH;{VSR1TdjWeH4TZ8WNO+K
9wwqGv<0PC^6}TEO-avRS8)%|v!j2PRLNX3)=PE#$48W-n(HJehsyl*&EiDH* z&vBrND^bM`ESty!Amwseh!Yeu01K84z!*BEm6Ful2dYlEJZ_mxr_#$vAY+GBl7#_S zCaehssEVOLshv`KPPZ9W6eff;6$K;R0d%xdXEO*_#>F}>m6Zo6cSV3C8Gx0E3MLkj z5NqM|aX3L3^br750|OkP=)8v{haRb<+T&bkUAco908OVPi#Rw4K-@#+wUD4-by yUnYAd{Y>%_Gh^Z(94lS|+WherB>7a9=#=sCZ2csMSCYIF7-~^1Qc^R0q z;1VSElr^w&Sx1a~LcAN9gl9W}t_OyV22dx@UPiF?dU$Gs=>wF&+S3kn0}jALsEcTn zIEoF^giP|D4FOI`y09v|QwkFXQVM_#90wPV?WKa;@G_2REyC19G5;@029)DmGXW?} zqY^5w3*h0kV8Vp3#d{2K(n FKF(gs_l-W)uT&YG30! Pe zLJ4p@hXVQ%zZ9?_x?9>wRE;3|0-ecVJ;b1wvB3l_R3rW<4+)dX>7W2i{bc8NqAYAJ z2wvSFo(SU*fLJI=3VcK;)&ZrMCj(SUYYFg_l>tB$EFY*CFwug9q11r{aS@UNLyaw9 zBuSZLr7oW?dS>IyE--~yi?~lXgK>c{lQS$U3r 7M0PBWnO4O4<4 ED{xmD0MyPYaIj2wKk + zChedg@M%zps2@0Z;4EsMq&1FVLH#Hop&~&Oq?(k+U=WHqDg}QPPXUz^Rg+N5G7vyI z)47h{7*rlY6!Vi4rr-;j&rsMv6arQ|uE7Tzb^ 3d2E2+`LjCNsHS{(j|Ey zoZpFq6eVh0JsJNPEPM8K=exOs?pr+K!qw6=$ybZ zGy$D}7D5VxXiKf7RAvGc2V^lcMcWK1BH+M LqnH% scsR7@QYI(t7I>rQuoVv!J0n5I0)Q;)MB<&d#R z(0vSjs7+9309%SY4&afFaPZR zPH 2bA}KuB0+AvC_@rb_gljFC z4kY0-D<_uJ8*{0pY$$;0rI=Dc40 i|JT& z8MtF$#RgWhld9-;kk(QR;dFWYM2b`?05aklILQA*D+P{*W<4Faa-ttDkeyTt2Xp}` zRJXZh5OJ`mHmZ!NgeY) jjE^NKU4%|dqPL$= z6@~1i$w>j-!fcVFiRC jF1*+uaI@q5u@du( zRu{6lS+|wS4<$*gly^z_4wO{ho^Cz)>E{YJd40NOV(w-CM9lR0l6U8Vz8`Ba3|ss8 zpW!IEnS1!px$C3XXV$KNSfA*vSmo9!)XAJ&eoB?7|A9;Jcy``qs-)$E+Yi;1IL6qY zzQ31#1i1fds4K}1Ii!80?PZC59QLKO>iK&xlK|Osc7LM3D9wg_>HMydO`rXb_Dg46 zUg!IRr;WdN-`b9zZN0LU(d*MIgTHR`?fKr3-#Zs*zdS>3w$Ht?&mFsW#zU*Y<(ImV zn0@Z`g=Nnl7w`|aeqOIWwBvJ4!-ui#!1{rD75DM)k0oG-A3T&lrEz=q{)1xW3mJwN z0-lvv{BGHs_gmfKb55&LxWL@^;H05vGYyyRdGXju&u^3R$Fj@sDUFo`$Q*lrqA@Y7 z-BqAxrA#BNDoUJq>fQ7E#_f_W)(?f7M`eGUoVuSobz|`3wI CXSwdHu9(c zUEueQ(#RpjL?6FK&ngsw(xVZS!M~ZA;nS+raFVWj`uX9^|7unY#^Zvc__R0WafEBh z^*?r-Z%$i985d4Gk~HA RZzaVIT2NSQOV>`=uw@?Lu${84}Rp&qBX)i51yB-9L<>ETYRiG zk{myr8MjJX< 3@wpxUd5G1M6I3Rwb8>k#!g zC-`_FbM=sCaQn6`I^6n=bMDmMjCS!)KE8aKA;D9u!P0Vk{7?}8>7Yv$L%;f(8gW H?QKtvUr2eS)6lAM zevA9!h^zX~J~xF^NsX`K0%(&07By{LF^Z>CXr)U#49@EK^64eq2gB!$qV8Vms5!5F zs9}Q#*PB4hDW=*Mo;Kh|=JEz|`FiB47g=%QW2Xajcq4LsvxY~iS`HVjDz$`YTmHC~ z^|WWNQQ$Dsx4~f+7TA${BCtMYbcejtYIeYFjr}yQ&TDC_{HQnOsE?^sF2VU}YwtG~ zMF|*9*w=@!NFx++-;ESMzNKEH7{B>5UGXls~=PH4znLTPC?|pY3h^UJd<@7E<^` zR%zfLz$G|QT~Ma^HNEB5&rjqW!co)vmDSP*PKMjYnabST?Uh@-n67Tvu`(FY(JI~I zPcv+aF%T OFlYgs*{18-#ZHgY~LOv>Dw>NJjD!Jb~%nAvDpJp241Yd4ze+9_4U zrB?jd4V`YjUKX@Du6LxdiJq;j^aHouN|Vnx7OUJFDOYf7I=4~47&xfBb18AFP`~q( z|4xxlG*`U}e(;n`bSo``qckCw%*>jSEi4ZcYkTXY+1oNud`88aTEuy2J{_HiYqnzC zw^0A$cF5JQ(MYS6##$~$z0e~RpB-2p&(Otwli&6TSv(ul^AAwW->g`lG91la4tw@{ zV~%U`*Re*2|2$$L?3g5m%Il|IP Rvj*kHn Io zg(t>?IZzv61@U>q9?#A+riy1}$m;KYcsZk~%O_y4rN?%LcMJ3OZ;$+cyABPu>04*L zx8piQwn^H?^rS3ax{yK}$i0x2X4S_JHQn*{Px@lZE0d3HXP4*JH{|wtFn#Q)%Q@|D z>RLU9b}0-r+4$yS))+Hejd@Y$N^Wpeo_nV*e5(|vS^NziHCv9m=NBSl-Er==Lp>Ue z5hplz*u+l{xtexG%e=nf nkQtze%6`7M~d)$qA+}#9N#udDtGd=?#gM8un^mVCh=UZ%#!& zwS4jP*r1>}Socz4UJ>6ux9i6A#~T0S2AR-MGrjQ~GftpKsPRps%SM@B S;x{N>jeAXL$6gv?8r}g&j;yr2h&-8F<2#y$k zmblwF ?Q%D_CCXK-Dhq=K zu|)+DkEgAvQQ?+#P58@AX}6h0S)?c9-?t48!k3Gr#hX-r&EV~ zwY-O3n-qpj{5_bRv(fU^)i<9tD7@=CE}9ypoI3u%mh;`7-!WGeU-tP;nUinv$jtA* z(U)Z N%K+algQGhc0n<_|xv`>hqIE{QEYfP=qoJaN&~SIGNBr!bTOYr_b&+o$ zoy6?%u$1dF(iv>%h-3&Kia)k*=J%c*?`ecZdwws0A89~4gx*)HRPn9)x8fVgLzwyu zZM*NqN**h7WhI7FYl=7SyXGA8$wN;S3j{a9LiPHSU(NJqX}8;XN^00R7pv!0F4UY3 z^RcvU-+o@RuKqIbbfBB1ZGBaI!@=R4sq|`_!`2E)Dv`TBQ9ruY0P+OT0gT^EmX% zr_8|XS)r-^1DlxO{`8t~d6R{6?nC4LdiM8C1i3O*D-lz?vESF)t}F2f*KNW~3`6PD z$E;K;b1O@-RH~!-aX4zmJ3X#hOIBr(m_a9VeERF@O9R6p*LTB1j|ufrWqZr_8oOy9 zzkP7Rkib*AwEL+{PF9+dW!U6@L5g_onSPF-yQeYzMa8`K&lcOCl6o>$;Z2{@944k1 zHa=w!pB31?^pG(a*l71O^1H6Ivgo>o-M-uZ%i(U3`eF%{AFeG<*jY~t&^WmI@+GsM zF&Sx>)oy3n{=2O*tyn^ZFySX~U#zcM_o%bmqiuY4t%T>LzIKdjtEYNytgULUhZ%KV zF8z%?^N>&TaW~~CzK8nzQAVdh1&>q|`p0H2&KK0a8WI0^*fOW|^Rq9`4|tASLL0n4 zZU3eHeVMIW{5Yp&@y^+kjuo6aBTSm&fCt{Fcn%*huwO;dq$?se)7x8bztWzU6_{H3 zav}nk<;N+MoVs;y|1h@VNcYo+o8uW{anrp#LT-70Qa(?0F5PV)qw=-!%aAkv`R6yh zsy?Q#7YWSEW#W$5Ki>Oz;0*5-^Y4MAm|qin9^?D^rOnZCk!7UVK;td(rO~$=ZFeFT z2hQjy{NgQ&_!-5D&q>Sq)#lVj)b)x57Gc{K%Hp?&!!h52_nUNzZ7HmwGP3m ZnzOQsxB<${jntZ*iZ6pt*Ns*Tn%_>o zS{3Qw(bE63HY1i+^1^3h$Kq_sOb7Q*zyCySbA@2n@A*JM>saxY{NsBnr)-F$ebo4a zQ3LW8uDWEc=fSMp7R$4LO_G_OJzpoTXS}+vuyOS1vidHS@PhEQ5OwcEt9`OBosImA zx$w1tHx^ThtotuVt>TvdPP6XY82vD6Cz?en+fPm%lC1uH0kOjTdr{^{<#gK1bDYoi zttMP^>s; H zv>d+ud)?Ooc^P`ZH RP1$q-P*ZV)PqWEzKam>E#iVt;) z; -tF=n; zeq~3w+EJrLfAWS2 9p}673IhlujjRQ^Y;^X z62-1A7kfY(dE+ws(-cJ}zjD5-Iy%>DpO9ygLv>C^>Yf)Vlzv70UH$R2;8na}h4mvk zY9KRTbKb){bk92GN#x|>yfSTY^(*Zu{Z&m)P5+l6+n77Jjx*biz0CMKL(Q10552u) zw6|n^hg=4>l;CQ9k24CN8fhI>oaK2nAFa<|R&>}0HGz;{^*75&dQ?LDl;-n<5MNd& zDf)F+b79Axm+{48jg4zHpCgi8vq$^M e}eWp`Z?QMuc4DzvDjbZ@72s`!p+vcxQUQd7KAXt3d=``{Q z?-zEx%NV@#vVL*(lC+%bP+>f_;rCqw Iib3@-U{A zKRn_6Ltp3HMOkG$f%V1l{f9yMJHBVu f0psJ~r0;ofEtX47RPFmHdc%752dFHc+# zIwC0uE#5W4(!pO~?m&^0OI{le(UF@UPR{j0!tbBfJ`IRl|4id&5od-crx`i}}c1 z%=$Z( R35(d}J3x-n2XEZMNzuo6TY^jh>ddD0wGIH-v`5Dn$ zX{Gq#ZLyDEwA1ZWZ?isTtn-3ntx;y~&7u0c7QI=kh*|Mxgttl0Oa$M2mhK50PbL+t zSNF)ungyor#}Bmq39g(Kq4g@gAFUDgK4I(h7xUqCe{avQUMwcl+h{POCD#2c=4|~L zE#yFKuwjG3l%40}4T(6z&UVk}_@E53S_!swEViEeSLuQIe+R67KJy!~bWz(~86u-? z=*=CoU4B))r(~!<7u^whRH0RCwoTEt{lM0o1 PvvT%`X2Sqf|Cax2?4hCKvr=8DvepdsX 6P64 zw~7v<=gQLfO*1jn{5zy81wvQWlv%xf>0MKkPm9jBF dzIc~fsMyrBddo>iMm$gXBThOkBffrId@?Gy|Wu@U#Go% zSdFq#TQTxZ$in7p*E7NEveuu=?_7RobVTZuMmS+;`_5sf9omyVNd!*Z1@&~gqV0Wh zHC*)V1txCZ^cKh5XG!(e%$*l)nr2p~-qSYcsVLXl4?Qs*#j%Qwc3A(ugMOFge45pZ z=OW!dZqGg2xcF>|8PM}ox})~K&bs-qX}izh)!y}n+4-va8xyC!J7^oR=T>UpPAl3R zuS!iHINc~AbGUY*3+MTrW)vSdIF)0c$&c#rl -zRz`GcE*7I}hxk2}_jLv!(6YMw4f_q {!51W#9}oVjDQXaCzR zeF2YI2qbAj#^ _XT nj%7DqOD1)vEpj zQ(-3+1 _z2oK&HPlC^vh1e@|@HF zl|jM^*W=p>56 XpEoN$ZCuf}f_?yt <}Z!Y=P9p-e%i7pAE4L0JJM(+2hhZ(;Iw)Wzk;< 0YZh za^c?V 5<58zaRl8>8 z{KwS}+p1UF8f2bTwFq{ORkewg;CF2|wrhJ&pN(W@@3oDsyDU^~uf8BGV`L($AoDO+ zyYF%dQKv!SN87=K4E)J&+BKISjU2Ja;(UtdN2<^aBpXF%GhL@puKb7>wdVVCqxaiR zxMtH>XzdfO=Wm7IVA&t*-y@IjNl(5Hc6SO${{Vjj3#y*Vz3P6f=hN;cCF@xMU7R$$ zbT)te%eQ?;3BB39(Rs8DLyQb_akDN%V>wpjTayh-DJ+;5mG1paBPfo{r^y_)TX3_2 zUilKhzufa7PR;nNNsHGtjn)@McEf5qDhXMazutPFFwlDR@6xSGkH6P@-R>JpmCjyR z;(uK^lo@^Dg0X?d#T|+veTlgBh>6GRccV7OugQBX+;PwMe|#BtS1*}f#;9#R0I{liVDNPB(?YRt zYOf|`k6;QG4!?@{9NBIZ>FQy-yC~Ya Z!RwE+EcNFb?(SY+TytO3Z_G(%qUrnTZD1GOL_YIYt54kas%TS6`*x5T z?YYmQFaEg)CU1yrBu?#nn>W(#cOfjB{k`kx@q6iA=siNU_2J%QPLXwrk2e!?g*4xN zp3^h*x%0AGQqR`4De%QP!de) ~E0PX^oj#KJ{YnWpet|N>6`^4dFs FtP6DwMuU5>WzYs-r5^4A0V^RqRFW`&K_&A3kkZ#T?gE?^-06zwzr v~Y&2|s-^dzXMaj48-~mY-EK_ObHi+Qy8t>f>`ZOiKpe9aH;b+-cOwdes=C%|KpW za`al)F@G2(xSJVR?Q)*LY%iF@-MKV)FT+ YpsZR_|=a%Ws{A@2HI z_{Mzg3wbB>Ub}ii{7U-In5QZ86=^P-Z~Aro+?oPw4!m6tdUbR6(9o0hb(@EtW$kVp zm9-jz_e+b*N~-FAY&yyQpM8h3CH^MAk+r$`Fstsdz>0^cs`uT@-D_Ere0BPI?8N3b zBLNER;^+*~_x O00?`LDgh+s1H#byV7n8Q>Ci?{eHPSwakE=)LOI zia&zf$)8$xoO|=0a_?T}>L!YO$JUoQdj`b~I+Op7k>wmu=7nb%Nex_CP2Lynmy`3C zk!VkCow)GfPnw ERH*LR8Iq{!^q1d{R3o~bKugkiAz1}bF zX5;(#B$2g#F5t)9{r!8FPPvE>X#dGBkKgCVx-F#t{L_Wjv*)YnIvwJTxX&k3T~1^y zmAel0U-4aOIb>9B&!my^OyP%p+>XtbiR}t#k02cjldR*VyK?t1Ked$qpilQZn@bwd z{D+y7Hm@e0ci6|b=d#99!vwrO3!x@!6OFmN+#SlRuC%$jhdb>FqVuB!xzaEc5vl>( zmD3d@+v(FciqUUAP_9_DvG>54wZDUp1~s;^XYP?t51K0!ggcL9We{y|mVWcUx3RU? z9&_?XS-?NQig^9 C8(XU^p z;f%$}oR_YhnE}7OsXj6CGtF8dgmmyYfn#)b_T=764 rM^Rmg>YNno?`~dRG-GM^CJ+BfzSoV2ws^aQ5Z0VBq!Oe9w!bgX)7e07yYhU;H z<7h~8thCHtK>M^UNlWInc(o-AdbTQ$HoX`cI2rt<>cT~%pkQXAS{Kjb)kfVeE@9?t z*F#W{rNB5{sYLOLhR?2)kFGzoNlo5=hSqNuc6*!~e$*WI9(>mQE4dnt-xp5|2Om=q zq-rglHLhRjw^!k`tywqpJoJqrf8rP@MrREgfBM;fOyxjRg&E;mo)Y}mU}A{x$1R<% z$Rm%Im&W^$mD-Os8!qL%Q2)tL&d?gX-+aSz1z(X_gzwGCXxaHL+`vO4(Dh~hkRq2B zIQY$~4fR{2D=LY%mE<{Jd#U~1vqr^7xp}g!++D-BzKHq0c(V~0_}=HRP36bZuFRQZ z-|EX_Wm@_ef2iXjk&!MwHv6|D-eg=jnYQjJH@Ayho%h!F+fkS8jDsgtH25RJN0gt$ z?%L2=94wBo`Lj#5%VlAv^U#aHhuMY03+vu`2Lg^9zV%cmxrb%FelBFM?B+;}=AvqP zp4-gdUR2}N!Iv@puI-7!op%}cy+gcb_ih|gvGB=x-O3mYVs2<354=#aBziBvUOgp( zWg8bS$jvol1-9DGB8PVPsSIbWnN{-3n$|oHBi*8pX7iU9 4l}f)vzYcm-&A{|G+SFu_piNj)BGd zHscm1t7^fmuPtRvzHFxb13ukVZKk`&Sf0@xEq}gJ?90 9|BaJv}+Oo<+;Yn}K1HEt`IRnQ3vR#QQ<@8idY6ys!4zmQ4EgK5E+{ zzw%^Qzh!vRQyzkqrX!`ET=i4UcW{3cotPh3=3hQX 7pH${BCjbK;Ai?}!ZmnI zTK3M9y kwar>6`` qaIbggF4kYkmfqIL9_jFWQXIJz zRpzzVsvz{@;@N@g$@68Kn@anW6C*y{v-iq2kvXC?m066Q3R1jLu(0JC-3$-N6|46y zym!0<`%$Ihl*Vr*yZ*|YQI+n38-EddzE(#uJw8+VOsNMaH?%Tn6a5f;_}k5si{Z$! z!lEdvheowhmQ2A+_y}h23M=T9oPS5|Zs?Cf=lIZ5g1Kn5qf;iH8sG16$n7pT_fKx} zyS{CcJN_uhU%4^Oxm^KrGV}iKyZ?Znu4awd)6;KQzX|4Af|2h2#l_57jdKb~tc_dq z4>_^B&s38={~%jp_Zeq@fBN^a>cxHDyS_I*FMK~T$NO|fgtt1dh*#VL!}!a^dMvzt z`6lg)*R9j C69E7kPi4j)phsW#|-sIv%Yte z`P54BI4?&@>2 yS-G2o zx%3Ko)T-S<%Y(Fj&!?PFC+fuDq7NARe_lMzy|xva?mXOKqPo`7W1XetvG;)LInVAp zs&5w-mNpG?qgv5RxncsX*ge`__bpQw7x!AeQ7Tkhd{ONg*>PCia x-U(gZ%K >fBq-V6*#I8#llo{}PMz2Sf>pdPF6KN?rbNykK^9T5s{a@YP8;9Nn zm9<3ZKMUWrzLv39;qT*~&s)b 0Rd2#MV$4Wl$ ZEY39B~T)%zU z3j4!0U)$*{jBvc~yK&cjKQgVaHSuXmVCgv(%$ZzdP3=qRQ&y?iYLK1q&RUVtu0+Kv zFSTAhoOD6yT<|C6lU#0-4o~Tgy{E&bRPo&yjlLvh!|uu^V$9Rc;uku~GV9L6XBOV} zX7p`rp3(95>HPTH 8WT~VUcx3Mu_zp>uveX#JQ^1UxgBQ1I-756Aj z=^Ka%e6w=v1GHvd<{P1%J=C*zK6!U>P34G*f^o#Mb>pa&5>G`bf8_gG`Dz^Hw#;~W z%{;vNMawM%Ef1~F8p#!mqh?!C6%(R`7&G#4kgP(6TezM+pMR#dh~2?L8iyzuqcH zFpa hSnYI-MhEmWc 8sFfL7u1k76nDp5=Cqd{l#ps|U*2FUDkKLoGPqSk*t^ z!}1Yo?#J$d3EgYAn9bMB84(y*M$>d>qo8^9UDJLSHM)k<*)}ChQ(+H`uT6qZh(=5K zi4C=**Ci~FUw#rA-iTziPVN~#X#A@{>s?!{%h$7AItN*xs&Dxw=jI+Y>OrZ&Z#5dR zavWI$OqbGZgW_ Qh `UBcLx1nm(dP=h++6ET0~9$YGeUnM zTM#=i)M` wg?k!p8OZyb6X8dqcr455_Qs+ej)#8wOxVr*1YgHo@I}__P3ft8 z=fpxxA*`F#)%!0Yk4-jZ|BtD+j%)gR-^Wo=38gzlQc^&q*$YsRjuC={v@`?hQbHO8 zBt}hgjFe`iw6t`M+UOV{H5h~6-k Zp`?}7#t*?&Q%j1d9 zGvr%Mb!JnrVd@_jxT)~1+}U+&nB7ZUWaF@|nXl>oqqQ?=n<79x-TsM#^6&%idnR+D zn#6*Vg*QT!8jJv=o48o?7%3lHBJ}r?fEds4&4N?B1Lp=(Cb7a$R?txF)oTqrocB$! zh7VMrN~N}=X@t);=)X_kmN>4iG_Dv0-^5mwSnx(}=G&H6UzfFy!Oxz(ujpIf0#xSG z)svmSLE0cgN(QJCQ`{5@9S6IZ`%|H7Nv4nInu-RF@hFC4f}%^Bm^q&Cr<0S%E9ds> z7zsRkN1d7v@QT6dx^=80_` z=s9EeHfe6__rLkcWFyAbJ^+wjW~XtS?E04JxQKxx;pcq492a9@1G|5@&Kq0p0| KLIQEOF_#F9mc{e~8)?<&>ht|0*o^`D&Ii58iX%slN1l; ?yvuuju?*Y&>6I-9|aWV)9~= zFq$ K}Rgka?yUJP?^i7`G=O}d39f3ZBoTpA7|?E#f Kob%1i0IB%fTLk(b zM$;C=rq@)KY?%BY<#EkW@BHd}{zwC^$R)wuzU=})qX_T!13UO@fxX&dy+!!^!p2G2 zYQ{G}jnYE3O{z2t82%(N-oFy~_}YXLh0keGn?3`7#!+1vEKh7EQfFg$XWpc|gD6j& z&2)`E9pvSxi{38_Fw6u8kkfM=7X>+9*#vO1Ha0XE3g{IO@y8-vEm_M9lRVF4Rb2*< z|Ab<6NBslJGEcrI_sxgMqr&N4&_@rTx|UQ)a`;tp#%%t`*3`t* NynWz@M`4B;i?Drn`gAza>kYn~Wfvwx;3WHs2s5wP8%t z1y8=>H5i;qmJu$}Y5lYoB=cQs&uXN?gwJkIo?S( 7eL<6o|JiLtFp1nm0Gkf@3p6@`Kdl^=_%1b)}QVgTYov( z37CkAm+tMm8Pe@EPs2&_1bWI6qaubrZ {w;NB%wJkvP_kmj< zXNEh1!7}YM5tI?kw74qH_HC6cp2|VC&6zAuF{Uso1{W<@XtUwbRQXUMGyncTP!N>} z<@5nLP>0KfJ`h%>zY0+h^O&$4t>_e>W=}=xcIIxF%bM&n;R%Y=F Y5rRd}<#O;1HR-Y7I9Mey!Pmq3Pb?R!oGT`)YfbFfXSGg%~QN1yLjf<_g7x=?- zJ?EUhEb@amX g$LtnF^xA2VPdY3TavEXOf+v6v)1JOJLzj)d?$vAb!p5%Zt> zwR|wRYpO`9rpyIVCtCzmfpHq-{UeEVlCuFt5WUaO$8Q@Wp3kzzy!0n49EnO%k*2bN z**^be@ydkkxLU8Qoi;8-W70%$^}Uj9ikEDZc=8`S2m0OQLw)%a8=DD+)=yAIS$zwP zC}Z15hSbKdHm?X4MoYGXuC*dxIWqx~Ya;yKyBpq$OiHh3Kj-om1Z)`5?zs#XrM^S@ zOf1OKNxet@u{|3%_}|FKfGZ6Y4OHgJrNqC$Cb&I8p@{sD(a2bBx^gF=sdmf)$pN~q z#q&)Ho|cF2aC}8ZTV;bnk&wlt>w9~8f6rdO6>a06gJHja`^Z^ysmhVhgAQizMKexC zrw2D}J7S^zsS~{s|BFk`bl&XBQy1;Dq|8}U_CuLii$aYwtixlTMC}Ydx1}kxtJH_k zecfk$srbRP_}^<^hO_zkA1-*GrSGOJDLEI+`Hq7EWET`@5^5BESQyKxcCmDZyc&q< zWwE_&6#e_>`!eMUYhDZ`QxzD$&ZGpZ;t>sf15@p4^#fVa s7*e?H6d+8&74*)-TR*)(~@;g98_b>VNv7x{V* z=MP!%tl!uPS{0N9K8v+HpN{w-!Ebj;>Q86WejxubulUhQ2NHIj`o jP!}=R`Z^z&VQd zwrRK=_Ar$peIt$0n$Y1t^$WXq1XmauqsI5|Qa;;oz5%y6!;kq_HiI 3NFy%!(v~l#58tS-rlW5&D@V+M3de=yz{ERa&5|FBqb+ 9g>}FjKYXwv@#%;rS6jrK@lo zV84XlxIBd`*EaX{Yfjaj6SiI)zuL~~JV#f}bxsTy#7JJKW#ak#u)j~(tbmE5Gn0#e zk?gl?MYed#of6N9^CFPoxAvP9Z3sj~A`gBc8z82mbY9k5&@^PRSp{UR(EqN6S4ps{ z(Vb7olx6;UZ9y?%cQ$|FBp<=@?u@rsk?{Geo;UI7E=|LBPD^EKI(4vz0~6i*1u~rZ zBn2KK+{#0lM|vxT&N~7K)tWH2?|tSD(@Q03DrPYm!`J9#5J}CU?Z)8FfSU;1R`Xh) z$M><1&fkq>v0!3ewR7J2L0%!=1vS&bRGzVaX#L~^-WhYy)UnR2!|qH`M(x`QJq^?u z`1*$OEdKMxA&pU84VhEB-?OB`fxpmQuRX4%ER^vdv?8nMZh21jPD*f2%55b;zp^=_ zp+Z&vTwltR7~3MBw=6J|qJqoGiBajfmbtb~JuGrx)G^()D8LFojkyj=Ewja8J2fd( zQnYJ5x$;UmXCV$;ICghag)|v1#Rv25CS0rUuiJv9gQ*%)n*Y3OAH3c;15^zv6ea9F zH~MvAD{CZxVn6@eXg%k?pjsb-4#}4P YC>YH;mLTz@9jc=xDh*tX>TuAQV0|D@>gZFpYyGPAVTvKIsV zJ$Vs2(}hc2gr5}&DR0>E(zQwBWnGDjY4UwO_htFpUP!TG4Hs^-2H>W1Y>N|9yG%W2 zxS+h~?+x5J S{GbsOOk^&8`2*`O z&GPLUnvc6rbWMYOf4#AD+n*BrUMj~Z^?Zey z(i`#OcPI>L0Rx-|CV3Y+BKj`$twW7d)Gi!x*?%BaIzQ*sL+usshrTxt%A&>5o|oeN z4(I&940J+A^+GPdxgg~C=0y(9LIIT$z`LV&8KxWzykNmW*zNGPp$4#3N&eeW&9;c| zuxeG9LeaJOksfD&n!?KeT6y xpj(DQYL$PcnRZUi}N- zDou^%!Vf*=-v)@vyPdZke-fmr59j{USF<|~4$pTH1{$;vVMWi? `WLutL P&iYk-NqYVHno8h~fK-TU^D+l_@3R` FwfgyGg_750g|qxiMYd(J5KO`c-eo=f zml|VCLP-?a-MiQoAr@p@p~NLR2)%P@Y3k|f1Dk_C*EyftUmO%c+JEA+{Brb9Tii0& zwXTRa&&V1GTcURPPp9$$bVctFI S9q5w%HUz!E_ z^G>F` g;_T%*uL`w2F?6pHNKqBl6g&>gGL^?tw&0p%URR(KfE z9RULRf9Cbz|Cv|Py6^wYD~27TleA9sENNZhMzHgn hb-HIOCgp_?Y&WY16Li zv1aOS^$pL!@%>wROFPlv^!l%JQ%O~#0U`&|ysDNpa|@-WiyaZE=QBHiVu0`SfEJvB z!cdY=UR9x`g~isZ1m0Ce!a(o8f9Do!)d263>>
lw*y`8qESLWPLo#485FOc^>XX6ej z1Slre&;u<$DKg #ITvxJXH!EAd(c;~=NMRa|0J#p52`4_~h%}X7_ZjoSfh%fp= zsbhNabG0t-8+Qfe5&PUTq)d)BSMb{d9n)a1y+-cY+fJqvDHd(s`|?@%2k>Tny3aIT z(!$U&beQw*VkBfS05w0ps0)(93z+{mQKZQiCCetTh8OXa6=X$$T)4J#4(ub<1qwyB zxJe?Z sk>Ft&%XZk8_=nzpDfA)^O~F)zd8H8BWD}@yFKfi0#{G>bFKx_ zX|Af{MHm=^)eEH8n@$4BYoMbq G8`vusL0EgYbApAImO=H!rJ#}XO4r7J6f)DX#`tzIRauJC0D9Q?3I+Y9v zRO7s$0CCQ0ZeGUc#9aJRg+9hZHEICkkaKLvo76L3cNH~WwQH9^_$4*E@NWXwhL?2e zfx`ju85hKg3+pF!tyh$|{XBR&^~@hDMuZ12v6N?nTsZ##;hv@`sL6$=8o-8odI9f9 z@j%7(KQ(#k39i($nF_qF5f{;r66`1)?5T#OlUGG^?oXUcaZZ{7T)A+_7T(EV>YK-` zPp@_IJJ)=7)t+-f)+GL}9>?yuW8RWt^qxyV*15~?2qwht2$q`gl-c_h0YxdHk%jN^ z>fc+sq?`W+0ikyU|8JGJ{|InjWbpq@>HpvLy?glkC$}BMbKN_41YZ({J@+vV?2$Ty z5?xZs>vFdQY|K-~X5q)7;||6rv#pyLevHmq#S1`K4aS$9WNyvx1lk=$Ic)<7o0(VW zsa~sz^|QS(WTyajUmq5twBa8<2hYByKAsryR5-qo!q8iOk?}ks8e|FKWbXA73X*J{ z{7Q2}BjwbXqg2iw23`9$d~tLh%N9Z?gP|4E7CL?%hvQA+8sLnLeXdh#ye8_A+*0S> z17S%T|6C&UIgwO%aJzFnOtNgMOCDAg$($Rc4m*{6V*WJO0MiGYJeT!5e&qcgvH!2T zRb_?q73Ni?B+jUuXEf(<)!VgSlER18Q$Z~E^&ZNV*-tZ}jjr=!143!S!?}^{=TY4+ zmyVyFD(gK)I)dyE+@}C$DaG0|`}H1KM^(5NhgyDUtq*=IGDofh4wC#W;kCJ`vZsSH zDl(ru;?afT{O-q*ZR!bV8YrpOzG3dl?CRO_YAGYH=WbHE128jEZVJTEuML;s LC5m{POLZAM z^gHJmPsf>^gqyW#b%&IaTly(-XUjEc27EmWZ5TOuwI)4{>G-+qX6yo9(EeE9l`u5) zG-i7bYW=t39QBj^)mHyMezG*Gc5csQndhzHL66G?*I~h3uh~dbl39+^c7+SOR;_df z)x& OB0VOMnXod&tzvTRgov0%q>xE+7gVE0gzUB39W z>i{t+W`EGroKo;T=nsNqCtv2Fgn6j@mnNEp04pQipo{pQALq!ko_xqI1!zGGZb;%S z7IrFgC7mq)uuWfh0DH*tp1x&vKk6sRVcYjM!6`ajw3`L+9W|W-8QNX9BZ09Xy 0~1- zQ=(&5uifhYtmKa1Po3^gL*T>1jn;3hVvf!2< 1?q5HZ>?xT@2=Z2$~i$ZfrR^k zzU1<=gfAGTh!;fX_Zm^I%k=-g1Vmi){fX-^`Mkn5Q?^h)72>5;lt$8uWfDFbe93oS z;MIfEYl^jWmWSF^ma{jftj{3hzT+XP5LMRgg>5A2(Gl=2Zx0D7{Ih z+|M78I7z|S<%G739n&NR&c^@zL+qwb)gE=WratfME-^7rIPIBAq1m1ctkAW4=Q=6r zmR;}i>X_k+U)86xG@|`#LS!V_6ElHoTpL}9hv8=kH`QZWk% &nwv#yal)XtMfWOFjR;^#fmZt1fR#v|4 zGS%L=f#qGRs?%hg^1bH!&$uA0&rv+0+c)B{Y_c^Z8-GA(nr1`ylTu(x=8U1Cp&GyV zZTVSm-Gf0<`QiGYzcU$mCivUkv5IEK736XZesR2`47GK-M|Ic98^A~!?UuEnPC-UZ z+VNqBmt|Lc?fiz+q~>YNMCQYdvCY~v-L85z_J CnPMd$K(TsLZ_Ltgu&4>& z|A+@*UOicXsiZ!W`2o|BQVJNX^f P!P0oH1-mMZNq9MYe`T8uXBvrB{0*U0LXDlCT+wx)rQ%XkMJ*<(_%rUa^j&V%QP& zgnWsVuq|(!cnL%IkwAl?w%@R(yn6Un>Er*36&G}(sNS>B03MPklMo8mH~(k(;A_|6 z^@|drEKzR;X#;Ic0Qk+CAK#Awx<++}h&gkwf27lh+)zeruH!YdrJv2_*2yD;xbKdD z+i*|DpI=Byq8@1Wz1UDKa-rN<>W(1AD>Ojp8P69)>Mw3qQHRY4v*AWHWi)*=pJuU& zk6!%8B?gNET95B9tNz^MD!?kV=4|FLa|y#D>9WIivLE>fWSaj4C1lfJ-cnbejSOO{ z_B+%LIZ|IGO8wzSYKR?bL%Cn3X{Kqp4mQZR5F<1DVhK;R@lQjdSru~<l74t*D(Z z4(sMtj}&W{wKVvr>jgh<`6Xxk@{_R{x6`kiRGPUYfeb{gtA48;P~d~3g5vb%BsCRz zvNuV2iOhd#<%mqxFMZ?ipKRs0QPn(h??GIBZ}XqurZTnRFKU6reRFQ|W#z3T8&wwm z^S05WQlIB1-clQnY87s@Yt-{~$5hoPwnDVxT}$h!E@Bnbt2T?0vK$U1NX;QHTLab6 zY45hczLI}B$PcO5Q;sS<=;nXt*@Xp0PmOhB)a4idBZEV=dZ^qg#O}|<%hIF?sALEI zCb>5=dLe2az7a9+IZg` 4wkWD N{8WIbOJ=8STRtGY&kT^t^ z&Wr2-|9a}`$^7QmSkuTgyAN~IiHm2PvYm=pmr{>s`n&m>BHLl@CE-}!PQ?rW|w*Pku6h&9RZL-nqL6Jt+avP3Kb)PwwvKkTVn=`bT_}$2O2p` zn2J30ZeSRSug>!EfRdFNyAuxVM4q^|JAJv7g$vJ<9xg5WzUsx%pUjhkU!dIu9L|ZW z9#<3g3z=s~8``}yeEnl?Dl2TixvtV;wY9utn-4I|fZz}V<>0VtER5_8J8M_YwJ!Yg zuiuk+jXfMlCr{@V?G{V5EBdMrCDyB(o)~|%X%%i8$xj{Q_5v-^^-g6t(6rnHe$`Si zRc7ouc$ikGIip6v*IbPxjJ#=4RK&?e(e}@bzD|2xi!M9lS6RDP7+L-mv6?uDamcA? z_>>q(Z0^b4 l#n~Gk +cP;NSzFLP|9&8lyq zi!;9Z*@wQT|Lvk%n$M8AInO>{cxgKi>e3L?6zqSY3#>p;V84#jE;5RyEf~s%Z@MJZ zyU4cVk7`X2_4cS+em?wW@ttXQy*D%4qSaLF)S=w5`R^q89~_}@8`Do_uFOsg&`-OF zlpHnlp}_x4D|~i|liWvM{5lh+D|i)5Z-|It+n(_yCeGgY+5g0P<~MYz=%HbCZ23mc z^INp0afx(^tZIYj@#8_w%J7FAjjyqdbS;xR!Bd*4DHZd2p%-``OIDQ_c7g2DrYKhN zgHLaNg)6*X)mDCd$>l*DW1a7K`KTP=%RO&N1SFj)I@UK=-}#y=mztt1WLYGvmb&m( z>NQQo?-!cN5!zoYGe5i6P5tq!`={?!_XRODc{IcBdvp&k%0!{AH|@+)GbVViYvO~) z;UAlm7uP4`rncdQ?>tQ=9t(oX<~|YL5qNxdm-AO)O=r%kVAbyHs~P9yBYBXgVK_n4 z6E@>Cg}#43I~D8jn0vaUV3PV?xLMK?THx@zt9HIb?|pc@iTK*)fBnx+b-l?8LP)Dl zNqlN@n@YQNFWNg@OjTK!NjtW06)%oxnlyvW_&d#$CqNB*5#gH=+Xu~y=dSTQq3KMn z^$34rQ#U5J4UdQNU+)Mc w{DaFO%U>eXhPK^_SxQcBPG5!@#akv9MC4K}!mvutv;^_!ph5(Z5V5ZcVGL>gOh zc}Ynd?KWu`D$sUeTva_3)R*3dElbG#bENl~NlgtWjb{1w63PIqiO}gp1FwM}w234A zpPzgQV0hB% -*@%SFJj3)MI@Xeo-BF?>2G$Aa%!hJU<8M zvLw(sOax45#Ln$pU=Yz4)pHIH;?s#Mg%@ndU_G7mI>~9=^5weRqx9b6PU!Dh^TZ?D z-V9XHe*B(ePa_RfhD&rds^2bnU6r(mb)ylm XXVnXgSb0_^pUwJbLbxYMaj8z(fU2H5{I!pkByvz0JksZhwZCypN)@}vW5z( zz&MW{V2h_iO4dI;&D77IwcLj}#Ry8)60<%I);Nbloeu%q1qWv(#M5jeTnD88jPGeP z6B!OZr;c@nN{GGwPx$$YoqWeub$Z`%Sq=jdBkRw1?fT)-LN~#ZYb93sBlZWemMbtd z$%*{5YbRQ_K{ihVH|1#A`A^4V(*K1vt<}Tg;$I}Nze+og)0xUj?t>SoV)lQPWu59p z8O*Nry1CaxT-nIRTNyuMW{~QjY_EHvUseRwqy~4>Y{X^wu>H(Qb6+eR)YgbxCSH-Y z9-D)f{a6>5aUxTExZ}<7gU5gH-kgU^|8h31ktMom&?hh*^3zPAEU8_4GH&X{)Dvbp zxXNOtwog}W%Wh3_@-JaXSXsd#L&uMP>f^Q8G~&p~Ppw~VZ^YuF2-&vejLHo*J`bzU z)JDphn|{$WH1zSFSDC2!F|Y769J!Q=Vy0jC+NGe1N?^(P91O$#ff;C>X@B8)MB8=N z*~sq^Uqyc@(iEC9<0g|(+pb(zRm|Y41bXvoDmJGG>bKdDX2#-1-6CVV!0af?u)+ut zEY+-fJiXuqm8hr>)zd5~UBmeFKU%td%c7k|0{Xg`FEK}8jLnx^Chq!OfDK2mN)!VK zZ(dg;$=kG_evcEROU0Ski%Zh18WyuY^fnCs&PrQ?yb;}^E?B=w?MQMDLm!>$eY8j` z>vn0)R2q(39?!}QaFa3rVV3<0(~EYG@*aul%aAXoW)Lu3S*dy(V4{?^>^XH9?2+>? zUn*joYiPz>Xbny{`(vZvo}rF@W?h6*a7Q`4-z0G9^SKt9Y-(UF6Y&Z*%rClOknkUf zs(#*$ZGA@x{dQQ4bFs 9UnmqBYX$!d%()}jgG_5N>bOFh1Y9g*&$=Hj z7)}6YHexPi3O}yp((;QnuJbXIRQuAF?3+()9)CF4DdMT}Y3aHa@|l0z*5zF=2geZX zE$O(9DmW>?Ag>N^8X8Uw=6=@#F%cTgrY>K%a&mXOLFU~GkK%cmHpBnDGOcR#UyNx` z*)~8->?IzWEs|gH6>g)(vuc`irUzBc8*7Ef09x@FU|41nbMVplvu^s7B%g^baMwTO z0?&>W@pN6{CWTHa gM9W$6xdmwdPcVt +Z*g;+(5J6imE`#q e(NZ351H6I` e3en z7}yMR@!K%RuT$l;x-g!TX 7eydCr> z?{zk>t2ZtQcKBPph6+kp8w|RGSeuc(Qd-qYcLci7N3vwi#_}FHcGDk$i!3~j2DX=G z!&))u>aa`x2h)*H d#V25MAO=Qw7-Q7 m!cO!s4=0$BEQs!3dNV?#S1C} z?_gb5g;T8j$5OC)g%D)Eq1u9a5^+I^#4xQ6$ZM__a;jh7`DrcFg`L@TgHlQ aKPPZ<+pol zo$SqOC4h(Iy;wve8*_#%%w$}DYdd7Bl#=@-)QvCwSX{qYHrHbur%5DT>l?%i^eO{m z)#KtvlqenhTCzpSOfD1xBQA`;48y0XJ^ZXBMpZM;$DCR+M5s=|{!aERPRw~$Puvs& zW3}+-^&Y{{Y=4$5A09=_Ne~~=pW@$C+7VGP;@eSdgFlQTSG!pg