diff --git a/findex/_targets.R b/findex/_targets.R index 3289c440fd54fe185a3edcf4df647ef77a1e199d..4d9fc2f5fc30fb7b91b11366f39152fdd4115746 100644 --- a/findex/_targets.R +++ b/findex/_targets.R @@ -187,7 +187,8 @@ p3 <- list( threat_category = p2_threat_categories, threat_pal = p2_viz_config, proj = p1_proj, - hybas_habitat_types = p2_hybas_habitat_types_sf) + hybas_habitat_types = p2_hybas_habitat_types_sf)+ + theme(legend.text = element_blank()) save_legend(type = "threat", plot = final_plot, threat_category = p2_threat_categories, @@ -225,7 +226,8 @@ p3 <- list( threat_category = p2_threat_subcategories, threat_pal = p2_viz_config, proj = p1_proj, - hybas_habitat_types = p2_hybas_habitat_types_sf) + hybas_habitat_types = p2_hybas_habitat_types_sf)+ + theme(legend.text = element_blank()) save_legend(type = "subThreat", plot = final_plot, threat_category = p2_threat_subcategories, @@ -235,7 +237,72 @@ p3 <- list( }, format = "file", pattern = p2_threat_subcategories + ), + # top threat in each basin globally + tar_target( + p3_top_threat_map_png, + { + final_plot <- top_threat_plot(in_dat = p2_mean_weighted_threats, + threat_pal = p2_viz_config, + hybas_habitat_types = p2_hybas_habitat_types_sf, + proj = p1_proj, + threat_category = p2_threat_categories) + + theme(legend.position = "none") + + ggsave(sprintf("../src/assets/images/%s_threat_by_basin.png", str_replace_all(p2_threat_categories, " ", "_")), + final_plot, height = 6, width = 10, dpi = 300) + + knitr::plot_crop(sprintf("../src/assets/images/%s_threat_by_basin.png", str_replace_all(p2_threat_categories, " ", "_"))) + }, + format = "file", + pattern = p2_threat_categories + ), + tar_target( + p3_all_top_threat_map_png, + { + final_plot <- top_threat_plot(in_dat = p2_mean_weighted_threats, + threat_pal = p2_viz_config, + hybas_habitat_types = p2_hybas_habitat_types_sf, + proj = p1_proj, + threat_category = "none") + + theme(legend.position = "none") + + ggsave("../src/assets/images/all_threat_by_basin.png", + final_plot, height = 6, width = 10, dpi = 300) + + knitr::plot_crop("../src/assets/images/all_threat_by_basin.png") + }, + format = "file" + ), + tar_target( + p3_top_threat_thumbnail, + top_threat_thumbnail(in_dat = p2_mean_weighted_threats, + threat_pal = p2_viz_config, + hybas_habitat_types = p2_hybas_habitat_types_sf, + proj = p1_proj, + threat_category = "none", + height = 6, + width = 6, + dpi = 300, + out_file = "../src/assets/images/threat_by_basin_thumbnail.png"), + format = "file" ) +# tar_target( +# p3_top_threat_legend_png, +# { +# final_plot <- top_threat_plot(in_dat = p2_mean_weighted_threats, +# threat_pal = p2_viz_config, +# hybas_habitat_types = p2_hybas_habitat_types_sf, +# proj = p1_proj, +# threat_category = "none") +# +# save_top_threat_legend(plot = final_plot, +# dpi = 300, +# # change to actual directory once design is finalized +# out_file = "../src/assets/images/threat_by_basin_legend.png") +# }, +# format = "file" +# ) ) diff --git a/findex/src/plot_utils.R b/findex/src/plot_utils.R index 94a311c89d38e1bba19bc42d8a954bf1a44800f1..dd8abe46d5be9a3db7abb6deb1f725e9db5ff41c 100644 --- a/findex/src/plot_utils.R +++ b/findex/src/plot_utils.R @@ -22,8 +22,7 @@ general_threat_map <- function(in_dat, threat_category, threat_pal, hybas_habita limits = c(0, max(proj_df$MeanWeightedThreatMetric, na.rm = T)), na.value = "gray80", breaks = c(0 + max(proj_df$MeanWeightedThreatMetric, na.rm = T)/10, - max(proj_df$MeanWeightedThreatMetric, na.rm = T) - max(proj_df$MeanWeightedThreatMetric, na.rm = T)/10), - labels = c("Lower", "Higher") + max(proj_df$MeanWeightedThreatMetric, na.rm = T) - max(proj_df$MeanWeightedThreatMetric, na.rm = T)/10) )+ # scale_color_gradientn( # colors = colorRampPalette(c(rev(unlist(threat_pal))))(100), @@ -126,28 +125,45 @@ cowplot_legend <- function(in_dat, legend_png, threat_category, out_file, height height = 9, width = 16, hjust = 0, vjust = 1) + draw_image(legend, - x = 0.08, - y = 0.08, - width = 0.77, + x = 0.079, + y = 0.35, + width = 0.74, hjust = 0, vjust = 0, halign = 0, valign = 0)+ # min max values draw_label(as.character(min_val), x = 0.02, - y = 0.54, + y = 0.55, hjust = 0, vjust = 1, lineheight = 0.75, color = "gray50", - size = 9) + + size = 8) + draw_label(as.character(max_val), - x = 1, - y = 0.54, - hjust = 1, + x = 0.84, + y = 0.55, + hjust = 0, vjust = 1, lineheight = 0.75, color = "gray50", - size = 9) + size = 8) + + # higher lower labels + draw_label("Lower", + x = 0.075, + y = 0.11, + hjust = 0, + vjust = 0, + lineheight = 0.75, + color = "black", + size = 8) + + draw_label("Higher", + x = 0.815, + y = 0.11, + hjust = 1, + vjust = 0, + lineheight = 0.75, + color = "black", + size = 8) ggsave(out_file, final_legend, height = height, width = width, units = unit, dpi = dpi, bg = "transparent") } @@ -225,6 +241,8 @@ save_map <- function(type, plot, threat_category, threat_pal, height, width, dpi ggsave(out_file, plot, height = height, width = width, dpi = dpi) + knitr::plot_crop(out_file) + } else if(type == "subThreat"){ name_conv <- threat_pal |> filter(ThreatCategory == threat_category) @@ -234,5 +252,121 @@ save_map <- function(type, plot, threat_category, threat_pal, height, width, dpi ggsave(out_file, plot, height = height, width = width, dpi = dpi) + knitr::plot_crop(out_file) + + } +} + +#' @description create top threats by basin global map +#' @param in_dat dataframe with mean weighted threat scores by threat type and HYBAS_ID +#' @param threat_pal dataframe with color palettes and file name templates by threat type +#' @param hybas_habitat_types shape file with HYBAS IDs and their habitat types +#' @param proj character string with map projection definition +#' @param threat_category list of target threat categories +top_threat_plot <- function(in_dat, threat_pal, hybas_habitat_types, proj, threat_category){ + + processed_df <- in_dat |> + group_by(HYBAS_ID) |> + filter(MeanWeightedThreatMetric == max(MeanWeightedThreatMetric, na.rm = T)) + + processed_sf <- processed_df |> + left_join(hybas_habitat_types) |> + st_as_sf() |> + # remove visual bug with robinson projection + st_wrap_dateline() + + proj_sf <- st_transform(processed_sf, crs = st_crs(proj)) + + # make non-target threat category values NA so they are not plotted + if(threat_category != "none"){ + proj_sf <- proj_sf |> + mutate(ThreatCategory = case_when(ThreatCategory != threat_category ~ NA, .default = as.character(ThreatCategory))) } + + pal <- threat_pal |> + select(MajorCat, pal) |> + rowwise() |> + mutate(pal = first(pal)) |> + unique() |> + mutate(pal = case_when(pal == "#4E6D6E" ~ "#648E8E", + pal == "#7A562B" ~ "#a27846", + pal == "#835192" ~ "#845c93", + pal == "#B74F49" ~ "#b24d4b", + pal == "#002D5E" ~ "#265079")) + + threat_map <- ggplot()+ + geom_sf(data = proj_sf, aes(geometry = Shape, fill = ThreatCategory), color = NA)+ + scale_fill_manual(values = pal$pal, breaks = pal$MajorCat, na.value = "gray80")+ + guides(fill = guide_legend(nrow = 2,)) + + theme_void()+ + theme( + legend.ticks = element_blank(), + legend.title = element_text(face = "bold"), + legend.title.position = "top", + legend.text = element_text(size = 11), + legend.direction = "horizontal" + ) +} + +#' @description save the legend for top threat by basin global map +#' @param plot ggplot map to be saved +#' @param dpi png dpi +#' @param out_file file path to save the legend to +save_top_threat_legend <- function(plot, dpi, out_file){ + + plot_legend <- get_plot_component(plot, "guide-box-right", return_all = T) + + ggsave(out_file, + plot_legend, dpi = dpi, bg = "transparent") + + knitr::plot_crop(out_file) +} + +#' @description create and save a thumbnail for the findex global maps page +#' @param threat_category list of target threat categories +#' @param in_dat dataframe with mean weighted threat scores by threat type and HYBAS_ID +#' @param threat_pal dataframe with color palettes and file name templates by threat type +#' @param hybas_habitat_types shape file with HYBAS IDs and their habitat types +#' @param proj character string with map projection definition +#' @param height png height +#' @param width png width +#' @param unit png height and width units +#' @param dpi png dpi +top_threat_thumbnail <- function(in_dat, threat_pal, hybas_habitat_types, proj, threat_category, height, width, dpi, out_file){ + + # these coordinates are NAD83 coordinates that correspond to "EPSG:4269", so will only work with the other data if they are also in "EPSG:4269" + bbox <- st_bbox(c(xmin = -25, xmax = 60, ymin = -35, ymax = 40)) + + # get bbox of projected area of interest + if (!(proj == "EPSG:4269")) { + bbox <- sf::st_as_sfc(bbox) |> + st_as_sf(crs = "EPSG:4269") |> + sf::st_transform(crs = proj) |> + sf::st_bbox() + } + + # call custom plotting function + threat_map <- top_threat_plot(in_dat = in_dat, + threat_pal = threat_pal, + hybas_habitat_types = hybas_habitat_types, + proj = proj, + threat_category = threat_category) + + # crop for thumbnail + coord_sf(xlim = c(bbox['xmin'], bbox['xmax']), + ylim = c(bbox['ymin'], bbox['ymax']), + expand = F) + + # white background and add margin + theme(legend.position = "none", + plot.background = element_rect(fill = "white", color = NA), + panel.background = element_rect(fill = "white", color = NA), + plot.margin = margin(t = 2, + r = 2, + b = 2, + l = 2, + unit = "cm")) + + # save in square ratio + ggsave(out_file, + threat_map, height = height, width = width, dpi = dpi) + } diff --git a/src/assets/content/ChartGrid.js b/src/assets/content/ChartGrid.js index 62b4cc02c5417328841d1eb610d0c019abd955f2..ceeed6265425d1576b829bab6979b08b9c1e3f33 100644 --- a/src/assets/content/ChartGrid.js +++ b/src/assets/content/ChartGrid.js @@ -17,7 +17,7 @@ export default { project: 'Findex', vizKey: 'FindexGlobalThreats', vizRoute: 'inland-fish-global-threats', - img_src: 'Placeholder_thumbnail.webp', + img_src: 'threat_by_basin_thumbnail.webp', alt: '', chartOrder: 2, description: 'Inland fisheries are threatened globally.' diff --git a/src/assets/images/CW_Change_in_flooding_legend.png b/src/assets/images/CW_Change_in_flooding_legend.png index 13ea4fabd0a42f5281e776ddcba92b7f7ba44d1d..1b787fe10671e06f7d2276a0253fd0f18faa2a7c 100644 Binary files a/src/assets/images/CW_Change_in_flooding_legend.png and b/src/assets/images/CW_Change_in_flooding_legend.png differ diff --git a/src/assets/images/CW_Change_in_flooding_map.png b/src/assets/images/CW_Change_in_flooding_map.png index a6e5c543e23ad0d5e81ab3b52fc15528b6824787..e641b44b15c257a5524cb360296b4fe65320c41b 100644 Binary files a/src/assets/images/CW_Change_in_flooding_map.png and b/src/assets/images/CW_Change_in_flooding_map.png differ diff --git a/src/assets/images/CW_Change_in_ice_cover_legend.png b/src/assets/images/CW_Change_in_ice_cover_legend.png index 61cddb53bbce8f9d526cc374c2e80140dc7b89cc..de77e8644b0e4fc48aea40d5f62ef265a8248aec 100644 Binary files a/src/assets/images/CW_Change_in_ice_cover_legend.png and b/src/assets/images/CW_Change_in_ice_cover_legend.png differ diff --git a/src/assets/images/CW_Change_in_ice_cover_map.png b/src/assets/images/CW_Change_in_ice_cover_map.png index 112f581f694d8cb7e580a54c6ae937110adee732..86c0bf76d704cb06f87fadba64b07b99f1ba9406 100644 Binary files a/src/assets/images/CW_Change_in_ice_cover_map.png and b/src/assets/images/CW_Change_in_ice_cover_map.png differ diff --git a/src/assets/images/CW_Change_in_water_temperature_legend.png b/src/assets/images/CW_Change_in_water_temperature_legend.png index 0f9da582d30541dacf61025d4b5f1f2b61546414..92901de3ec5bf2636f243f3592ef31e07c94f164 100644 Binary files a/src/assets/images/CW_Change_in_water_temperature_legend.png and b/src/assets/images/CW_Change_in_water_temperature_legend.png differ diff --git a/src/assets/images/CW_Change_in_water_temperature_map.png b/src/assets/images/CW_Change_in_water_temperature_map.png index 95449e67cf397958e93a3431d39482f0f2649ade..fb9a247a8be215d54e6212f2f041462a7aecf992 100644 Binary files a/src/assets/images/CW_Change_in_water_temperature_map.png and b/src/assets/images/CW_Change_in_water_temperature_map.png differ diff --git a/src/assets/images/CW_Change_in_wind_patterns_legend.png b/src/assets/images/CW_Change_in_wind_patterns_legend.png index 76b28a810f4532772a0f18dc05a0a3e91ee2b010..b327a6012dbef81f6b6e46350d6c3a4080c2a84f 100644 Binary files a/src/assets/images/CW_Change_in_wind_patterns_legend.png and b/src/assets/images/CW_Change_in_wind_patterns_legend.png differ diff --git a/src/assets/images/CW_Change_in_wind_patterns_map.png b/src/assets/images/CW_Change_in_wind_patterns_map.png index cb09d6a336fd6bb6a6f57d6cc72e40235d06c045..09a66316c3392f0b0c257f467f9b24283e10b95d 100644 Binary files a/src/assets/images/CW_Change_in_wind_patterns_map.png and b/src/assets/images/CW_Change_in_wind_patterns_map.png differ diff --git a/src/assets/images/CW_Drought_legend.png b/src/assets/images/CW_Drought_legend.png index 78975a2cf723c68ca1e3c1c1d8f37c7ff3fa4f14..f999e492879701c410f7b6d8cba47b8306a106e5 100644 Binary files a/src/assets/images/CW_Drought_legend.png and b/src/assets/images/CW_Drought_legend.png differ diff --git a/src/assets/images/CW_Drought_map.png b/src/assets/images/CW_Drought_map.png index 09b5a99eb008eb3dbe766560107db22d1b4b3102..abb8bdb44b3209a41b439e542d543377b704110b 100644 Binary files a/src/assets/images/CW_Drought_map.png and b/src/assets/images/CW_Drought_map.png differ diff --git a/src/assets/images/Climate_and_weather_legend.png b/src/assets/images/Climate_and_weather_legend.png index 545f7c169d83b75fe862b088ae50b4df9e3b90e4..293fe6efa4c6439c5389f2f6f4541b995471c168 100644 Binary files a/src/assets/images/Climate_and_weather_legend.png and b/src/assets/images/Climate_and_weather_legend.png differ diff --git a/src/assets/images/Climate_and_weather_map.png b/src/assets/images/Climate_and_weather_map.png index d01d794ce5eba435cb88135834e81831c099bee9..04b65ef462e71c543a1a94a18dc04c918b1de5ce 100644 Binary files a/src/assets/images/Climate_and_weather_map.png and b/src/assets/images/Climate_and_weather_map.png differ diff --git a/src/assets/images/Climate_and_weather_threat_by_basin.png b/src/assets/images/Climate_and_weather_threat_by_basin.png new file mode 100644 index 0000000000000000000000000000000000000000..f05c5c52b3fb0aa2004084b9176da1f79b8df079 Binary files /dev/null and b/src/assets/images/Climate_and_weather_threat_by_basin.png differ diff --git a/src/assets/images/FP_Overfishing_legend.png b/src/assets/images/FP_Overfishing_legend.png index f2df03d065ecb9c98bea0ae0a55fd6bc0a9cb498..d112ab178a50977533cbe412bc98bb29d46d9158 100644 Binary files a/src/assets/images/FP_Overfishing_legend.png and b/src/assets/images/FP_Overfishing_legend.png differ diff --git a/src/assets/images/FP_Overfishing_map.png b/src/assets/images/FP_Overfishing_map.png index bbe512728536c0bd052962b91e7080e6e400a8d3..1fd1a9a68410002f55edf885a63e128e98f86378 100644 Binary files a/src/assets/images/FP_Overfishing_map.png and b/src/assets/images/FP_Overfishing_map.png differ diff --git a/src/assets/images/Fishing_pressure_legend.png b/src/assets/images/Fishing_pressure_legend.png index f2df03d065ecb9c98bea0ae0a55fd6bc0a9cb498..d112ab178a50977533cbe412bc98bb29d46d9158 100644 Binary files a/src/assets/images/Fishing_pressure_legend.png and b/src/assets/images/Fishing_pressure_legend.png differ diff --git a/src/assets/images/Fishing_pressure_map.png b/src/assets/images/Fishing_pressure_map.png index bbe512728536c0bd052962b91e7080e6e400a8d3..d580d74005cd1906f1fd3adc8cc8041bc6751239 100644 Binary files a/src/assets/images/Fishing_pressure_map.png and b/src/assets/images/Fishing_pressure_map.png differ diff --git a/src/assets/images/Fishing_pressure_threat_by_basin.png b/src/assets/images/Fishing_pressure_threat_by_basin.png new file mode 100644 index 0000000000000000000000000000000000000000..7f23ec98dcec45c13a92e15f26c6d09775f9bd95 Binary files /dev/null and b/src/assets/images/Fishing_pressure_threat_by_basin.png differ diff --git a/src/assets/images/H_Agricultural_extraction_legend.png b/src/assets/images/H_Agricultural_extraction_legend.png index 1b4b7858f9af0843792a60c4429990614b109b35..33f3dc66959a858c39f507f82ebc4ed3724e6cef 100644 Binary files a/src/assets/images/H_Agricultural_extraction_legend.png and b/src/assets/images/H_Agricultural_extraction_legend.png differ diff --git a/src/assets/images/H_Agricultural_extraction_map.png b/src/assets/images/H_Agricultural_extraction_map.png index a35e1a708fd97084bd76cfbb24a6376ef5494716..e9fd9585077151bf7ac027c34b91dc1d5c578597 100644 Binary files a/src/assets/images/H_Agricultural_extraction_map.png and b/src/assets/images/H_Agricultural_extraction_map.png differ diff --git a/src/assets/images/H_Dams_legend.png b/src/assets/images/H_Dams_legend.png index 333babaae5a7f1f15483c13968dae2ec1d169a06..44438bf6cfdf6b2e6d1c2237665e9ef15acf7196 100644 Binary files a/src/assets/images/H_Dams_legend.png and b/src/assets/images/H_Dams_legend.png differ diff --git a/src/assets/images/H_Dams_map.png b/src/assets/images/H_Dams_map.png index 044631722dac6afd1a7d7faf7227042f0d2a67bd..20ae6479496062ae0174d607a0c88503d0626943 100644 Binary files a/src/assets/images/H_Dams_map.png and b/src/assets/images/H_Dams_map.png differ diff --git a/src/assets/images/H_Deforestation_and_associated_runoff_legend.png b/src/assets/images/H_Deforestation_and_associated_runoff_legend.png index ba9a4b8672815147d4f2472deb0ebca36b4db041..a95fe479b89f9d7f3446fa30047952e6e73305d4 100644 Binary files a/src/assets/images/H_Deforestation_and_associated_runoff_legend.png and b/src/assets/images/H_Deforestation_and_associated_runoff_legend.png differ diff --git a/src/assets/images/H_Deforestation_and_associated_runoff_map.png b/src/assets/images/H_Deforestation_and_associated_runoff_map.png index 5ed0f19672846483635b3b470f03aa71ba536829..033068fef9e123eeff32556623c279b62d5d106d 100644 Binary files a/src/assets/images/H_Deforestation_and_associated_runoff_map.png and b/src/assets/images/H_Deforestation_and_associated_runoff_map.png differ diff --git a/src/assets/images/H_Industrial_extraction_legend.png b/src/assets/images/H_Industrial_extraction_legend.png index 85abdfa024cf65a83a428b8bd953c8a56f3ccbdf..529b07d2106ecd52fe860e39aeb1284be4acb1e2 100644 Binary files a/src/assets/images/H_Industrial_extraction_legend.png and b/src/assets/images/H_Industrial_extraction_legend.png differ diff --git a/src/assets/images/H_Industrial_extraction_map.png b/src/assets/images/H_Industrial_extraction_map.png index fc95086710b5988dfa9877b13ecdb12f3d4fbe42..bc90d274e2e35cf3b12a084c9b7a7754631d0fb6 100644 Binary files a/src/assets/images/H_Industrial_extraction_map.png and b/src/assets/images/H_Industrial_extraction_map.png differ diff --git a/src/assets/images/H_Riparian_degradation_legend.png b/src/assets/images/H_Riparian_degradation_legend.png index ba9a4b8672815147d4f2472deb0ebca36b4db041..a95fe479b89f9d7f3446fa30047952e6e73305d4 100644 Binary files a/src/assets/images/H_Riparian_degradation_legend.png and b/src/assets/images/H_Riparian_degradation_legend.png differ diff --git a/src/assets/images/H_Riparian_degradation_map.png b/src/assets/images/H_Riparian_degradation_map.png index 9cda0c443c2ed65c8c1b9e543c52311cf3fe8f4a..f082a75349df1c0bc3f11eec94dd8d3611401494 100644 Binary files a/src/assets/images/H_Riparian_degradation_map.png and b/src/assets/images/H_Riparian_degradation_map.png differ diff --git a/src/assets/images/H_Urban_extraction_legend.png b/src/assets/images/H_Urban_extraction_legend.png index 85abdfa024cf65a83a428b8bd953c8a56f3ccbdf..529b07d2106ecd52fe860e39aeb1284be4acb1e2 100644 Binary files a/src/assets/images/H_Urban_extraction_legend.png and b/src/assets/images/H_Urban_extraction_legend.png differ diff --git a/src/assets/images/H_Urban_extraction_map.png b/src/assets/images/H_Urban_extraction_map.png index 1ebda542e1e7af637b7451c60717b90e645e3593..ef38e159b6a99d1156416db2ffa0d18c4021dc11 100644 Binary files a/src/assets/images/H_Urban_extraction_map.png and b/src/assets/images/H_Urban_extraction_map.png differ diff --git a/src/assets/images/H_Wetland_drainage_legend.png b/src/assets/images/H_Wetland_drainage_legend.png index 8f2bdb2215395bd0519d1a282f19a77a46449701..3d8990e88129035deea601a0bb0b6541c543b749 100644 Binary files a/src/assets/images/H_Wetland_drainage_legend.png and b/src/assets/images/H_Wetland_drainage_legend.png differ diff --git a/src/assets/images/H_Wetland_drainage_map.png b/src/assets/images/H_Wetland_drainage_map.png index abec81d80f1164cc367fefd5b90ac40bfbf72658..edb5952119ec7ee5f5d42ba2fc86ede5ae6d2c3f 100644 Binary files a/src/assets/images/H_Wetland_drainage_map.png and b/src/assets/images/H_Wetland_drainage_map.png differ diff --git a/src/assets/images/Habitat_legend.png b/src/assets/images/Habitat_legend.png index dd3754cd87f8d9fa51a80de0221d96a9d93a7c72..6fc632064cf07dba4e999de15199ebde7811e57c 100644 Binary files a/src/assets/images/Habitat_legend.png and b/src/assets/images/Habitat_legend.png differ diff --git a/src/assets/images/Habitat_map.png b/src/assets/images/Habitat_map.png index d200cf1d2a7bf0a0d1296b3c63f01b633b0dcc8e..ab5f7f4b6b648ba385f797181430ac1ee1582a25 100644 Binary files a/src/assets/images/Habitat_map.png and b/src/assets/images/Habitat_map.png differ diff --git a/src/assets/images/Habitat_threat_by_basin.png b/src/assets/images/Habitat_threat_by_basin.png new file mode 100644 index 0000000000000000000000000000000000000000..4deecd0f6dfe2c29d38e2f2cee22c25173c1dcef Binary files /dev/null and b/src/assets/images/Habitat_threat_by_basin.png differ diff --git a/src/assets/images/IS_Invasive_non-native_species_legend.png b/src/assets/images/IS_Invasive_non-native_species_legend.png index 243b5dabe0f3c939681f20165e4b000838abc1dd..1e5e6e063c240fd5acbcd8bec6f65c3910d02e42 100644 Binary files a/src/assets/images/IS_Invasive_non-native_species_legend.png and b/src/assets/images/IS_Invasive_non-native_species_legend.png differ diff --git a/src/assets/images/IS_Invasive_non-native_species_map.png b/src/assets/images/IS_Invasive_non-native_species_map.png index 5fcc5dedca42897eb73cf48a9213cdf809d7b0d4..d565368b86f9155fa64a12e0b60c54a5e9711f6d 100644 Binary files a/src/assets/images/IS_Invasive_non-native_species_map.png and b/src/assets/images/IS_Invasive_non-native_species_map.png differ diff --git a/src/assets/images/Invasive_species_legend.png b/src/assets/images/Invasive_species_legend.png index 243b5dabe0f3c939681f20165e4b000838abc1dd..1e5e6e063c240fd5acbcd8bec6f65c3910d02e42 100644 Binary files a/src/assets/images/Invasive_species_legend.png and b/src/assets/images/Invasive_species_legend.png differ diff --git a/src/assets/images/Invasive_species_map.png b/src/assets/images/Invasive_species_map.png index 5fcc5dedca42897eb73cf48a9213cdf809d7b0d4..ed38967d6fe285b1584cd3deeb844fd8122e6e81 100644 Binary files a/src/assets/images/Invasive_species_map.png and b/src/assets/images/Invasive_species_map.png differ diff --git a/src/assets/images/Invasive_species_threat_by_basin.png b/src/assets/images/Invasive_species_threat_by_basin.png new file mode 100644 index 0000000000000000000000000000000000000000..0f97e2627ce6b5b3d20dd2fdab9b2e15c5f133be Binary files /dev/null and b/src/assets/images/Invasive_species_threat_by_basin.png differ diff --git a/src/assets/images/P_Agricultural_effluents_legend.png b/src/assets/images/P_Agricultural_effluents_legend.png index 095f0c96fb71aeb1373f208a52a5ea25440a7e08..69e99af6343debf4dde6648a0ebccafd03144716 100644 Binary files a/src/assets/images/P_Agricultural_effluents_legend.png and b/src/assets/images/P_Agricultural_effluents_legend.png differ diff --git a/src/assets/images/P_Agricultural_effluents_map.png b/src/assets/images/P_Agricultural_effluents_map.png index 2b5537c9a6f63e31294baefc5659f5f90f1b730b..bc7d56c2a88ca060338def87392b823fc295e053 100644 Binary files a/src/assets/images/P_Agricultural_effluents_map.png and b/src/assets/images/P_Agricultural_effluents_map.png differ diff --git a/src/assets/images/P_Aquaculture_effluents_legend.png b/src/assets/images/P_Aquaculture_effluents_legend.png index 44fb9782402f45ebb1468534c544a650e90f8e11..bd509006f7e7a6a9e983555b649a8fcaccd0c16e 100644 Binary files a/src/assets/images/P_Aquaculture_effluents_legend.png and b/src/assets/images/P_Aquaculture_effluents_legend.png differ diff --git a/src/assets/images/P_Aquaculture_effluents_map.png b/src/assets/images/P_Aquaculture_effluents_map.png index 374003e407225799f9f2e64af955c8fc000692b4..cb47e3f04bfbdf6ee18415804944864de5c188e5 100644 Binary files a/src/assets/images/P_Aquaculture_effluents_map.png and b/src/assets/images/P_Aquaculture_effluents_map.png differ diff --git a/src/assets/images/P_Industrial_effluents_legend.png b/src/assets/images/P_Industrial_effluents_legend.png index aa99346d19b21c226026654a99810ba542a74fcf..1df92dcfb548d23d45b84bf3d973948485960e23 100644 Binary files a/src/assets/images/P_Industrial_effluents_legend.png and b/src/assets/images/P_Industrial_effluents_legend.png differ diff --git a/src/assets/images/P_Industrial_effluents_map.png b/src/assets/images/P_Industrial_effluents_map.png index e0cc805801cadfdaf5277627fded96454015a158..5e5501debc5a72c3d933241b7d86a6590571c58a 100644 Binary files a/src/assets/images/P_Industrial_effluents_map.png and b/src/assets/images/P_Industrial_effluents_map.png differ diff --git a/src/assets/images/P_Mining_legend.png b/src/assets/images/P_Mining_legend.png index fc217658398cfe03a52b684ae43b4c4ff49a191a..5a3cc1c94348cbf873097c10b4c5409203b3fdfa 100644 Binary files a/src/assets/images/P_Mining_legend.png and b/src/assets/images/P_Mining_legend.png differ diff --git a/src/assets/images/P_Mining_map.png b/src/assets/images/P_Mining_map.png index f969cc96cdccf20b6089773c5eeeb178a73ac2e0..1c770686095653b1cd3d5527fae3ba27d3543ee5 100644 Binary files a/src/assets/images/P_Mining_map.png and b/src/assets/images/P_Mining_map.png differ diff --git a/src/assets/images/P_Oil_or_gas_exploration_legend.png b/src/assets/images/P_Oil_or_gas_exploration_legend.png index ddef580aa6c6e4f66412687313af0442aaed6114..c4d2f9a87800e0f431b8ad7a6d245109e98f28ab 100644 Binary files a/src/assets/images/P_Oil_or_gas_exploration_legend.png and b/src/assets/images/P_Oil_or_gas_exploration_legend.png differ diff --git a/src/assets/images/P_Oil_or_gas_exploration_map.png b/src/assets/images/P_Oil_or_gas_exploration_map.png index 80d677f3fd097be20912ffcb4a0783aa62178a1f..1d7309498164ffd067cb15c56268b2c4e4346f51 100644 Binary files a/src/assets/images/P_Oil_or_gas_exploration_map.png and b/src/assets/images/P_Oil_or_gas_exploration_map.png differ diff --git a/src/assets/images/P_Pharmaceuticals_legend.png b/src/assets/images/P_Pharmaceuticals_legend.png index 65ca75d4893993bf740ed7d767d972d040325ea9..4801a253f8508eea662b1c663ef264ddcb90b55f 100644 Binary files a/src/assets/images/P_Pharmaceuticals_legend.png and b/src/assets/images/P_Pharmaceuticals_legend.png differ diff --git a/src/assets/images/P_Pharmaceuticals_map.png b/src/assets/images/P_Pharmaceuticals_map.png index fd77aa0454ec0533a1a95265f689e0b854c85e7f..2a0e1a4bfc906c4463333440ef6f1c294ca317eb 100644 Binary files a/src/assets/images/P_Pharmaceuticals_map.png and b/src/assets/images/P_Pharmaceuticals_map.png differ diff --git a/src/assets/images/P_Plastics_legend.png b/src/assets/images/P_Plastics_legend.png index 65ca75d4893993bf740ed7d767d972d040325ea9..4801a253f8508eea662b1c663ef264ddcb90b55f 100644 Binary files a/src/assets/images/P_Plastics_legend.png and b/src/assets/images/P_Plastics_legend.png differ diff --git a/src/assets/images/P_Plastics_map.png b/src/assets/images/P_Plastics_map.png index 2cd42f8bec2483833ff6de70d08ad1ee9113c7dc..f9e1a868b61bbcd5d7a0da8233349fac7e6c2d4c 100644 Binary files a/src/assets/images/P_Plastics_map.png and b/src/assets/images/P_Plastics_map.png differ diff --git a/src/assets/images/P_Urban_wastewater_legend.png b/src/assets/images/P_Urban_wastewater_legend.png index aa99346d19b21c226026654a99810ba542a74fcf..1df92dcfb548d23d45b84bf3d973948485960e23 100644 Binary files a/src/assets/images/P_Urban_wastewater_legend.png and b/src/assets/images/P_Urban_wastewater_legend.png differ diff --git a/src/assets/images/P_Urban_wastewater_map.png b/src/assets/images/P_Urban_wastewater_map.png index bae04a2c313c57d98adb1959735630780590225a..7ee72edcb21572f4dceb3bfe13b408bbf9df285d 100644 Binary files a/src/assets/images/P_Urban_wastewater_map.png and b/src/assets/images/P_Urban_wastewater_map.png differ diff --git a/src/assets/images/Pollution_legend.png b/src/assets/images/Pollution_legend.png index 3ad8c414d55cf2a16e178d84dbdef2ca25be08d7..518840e20478a19ffad7e1334ee94443cc4deca8 100644 Binary files a/src/assets/images/Pollution_legend.png and b/src/assets/images/Pollution_legend.png differ diff --git a/src/assets/images/Pollution_map.png b/src/assets/images/Pollution_map.png index 43f18c47a590d446b405908c80f9a4150bc6af1d..e16563dbec24d9af54b21760d8dcbfb9d02a71ff 100644 Binary files a/src/assets/images/Pollution_map.png and b/src/assets/images/Pollution_map.png differ diff --git a/src/assets/images/Pollution_threat_by_basin.png b/src/assets/images/Pollution_threat_by_basin.png new file mode 100644 index 0000000000000000000000000000000000000000..d44c896bfe65fb97b148e64cd1d12a31e9e6e937 Binary files /dev/null and b/src/assets/images/Pollution_threat_by_basin.png differ diff --git a/src/assets/images/all_threat_by_basin.png b/src/assets/images/all_threat_by_basin.png new file mode 100644 index 0000000000000000000000000000000000000000..dc66f4d03550790e19beb6fe22e90696f63a12dc Binary files /dev/null and b/src/assets/images/all_threat_by_basin.png differ diff --git a/src/assets/images/threat_by_basin_thumbnail.png b/src/assets/images/threat_by_basin_thumbnail.png new file mode 100644 index 0000000000000000000000000000000000000000..c7d1284be8e93a904f5e7059b68362bb2e38317e Binary files /dev/null and b/src/assets/images/threat_by_basin_thumbnail.png differ diff --git a/src/assets/svgs/CW-drought-002D5E.svg b/src/assets/svgs/CW-drought-002D5E.svg new file mode 100644 index 0000000000000000000000000000000000000000..b02af6e69695997a43cd71060fbf427e3e7d9d48 --- /dev/null +++ b/src/assets/svgs/CW-drought-002D5E.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m651.36 185.88c-0.875 5.5664-2.5312 10.98-4.918 16.082-51.602 70.078-51.961 156-70.199 235.44l-0.003907-0.003906c-1.6172 16.441 1.1992 33.02 8.1602 48 12 34.441 27.121 68.16 44.762 111.72 14.879-34.559 26.641-61.441 38.039-88.559 3.9609-9.3594 6.1211-19.559 10.441-28.801v0.003907c19.285-41.746 24.344-88.664 14.398-133.56-7.8008-42.602 0-88.078 1.1992-132h9.1211c10.078 43.441 20.039 86.762 31.078 134.4l186.6-161.52 7.5586 7.8008c-45.438 54.082-90.957 108.28-136.56 162.6-47.039 55.441-61.199 122.52-71.039 191.04l7.6797 6.4805c44.398-39.359 96-73.32 131.16-120s53.16-105.96 78.84-159.84l10.199 3.1211c-7.5586 42.961-15.121 85.801-21.84 123.6l124.08-0.003906-1.0781 3.9609h-0.003907c-33.801 9.6289-67.016 21.211-99.48 34.68-19.949 11.008-37.754 25.52-52.559 42.84-10.734 13.637-20.402 28.082-28.922 43.199-25.922 37.559-25.441 36 15.719 58.199 52.922 28.32 106.68 45.602 167.4 24-43.199 33.48-87.238 56.16-142.56 33.961-28.32-12-58.68-18.238-87.238-29.398-18.84-7.4414-33.48-6.8398-46.078 10.078-1.6797 2.2812-5.2812 3-7.6797 4.8008-51.602 40.801-75.961 85.32-56.281 157.68 20.762 76.199 24 157.68 29.398 237.24 2.6406 40.801 10.922 72 51.602 87.359 5.5195 2.1602 10.68 5.3984 16.078 8.1602l-6.1211 9.6016-114.84-21.238v39h0.003907c-13.32-6.25-25.852-14.066-37.32-23.281-18.602-19.32-33.121-21.48-48 3.4805-2.1602 3.9609-7.4414 6-14.398 11.281 0-34.32-20.879-34.559-44.398-31.199h-0.003906c-29.387 4.4023-59.09 6.332-88.801 5.7578 9.3945-7.1133 19.684-12.965 30.602-17.398 60.719-16.922 77.52-66.602 90.719-119.28 6.6016-26.762 13.441-53.52 19.801-80.281 12-50.039-9-94.801-24-139.68-7.1992-21-26.52-24-44.879-7.5586-58.922 51.359-134.52 46.32-204 61.441 48-40.559 121.08-37.68 162-101.88-58.559-21.84-94.922-92.16-172.08-69.238-38.16 11.398-75.48 25.801-113.16 38.641l-0.003906-0.003907c-7.3594 2.6875-15.438 2.6875-22.797 0l80.16-48-108-67.68 3.4805-8.3984c37.078 7.6797 74.281 15.48 111.48 22.922l-0.003906-0.003906c9.6719 3.3242 19.938 4.5508 30.121 3.5977 61.078-16.922 110.88 12.961 162.48 36 28.559 13.078 57.961 24 96 40.199-6.1211-27.359-9-48-15.238-66.961-10.441-32.16-22.199-63.961-35.281-95.039v0.003906c-4.793-8.3008-12.695-14.348-21.961-16.801-52.801-12-105.96-23.281-159-34.68l-11.039-2.3984v-8.3984l176.64-0.003906c-38.281-61.801-67.922-117.72-106.32-166.92-13.441-17.281-48-18.359-73.199-26.039h-0.003906c-15.844-3.4492-31.203-8.8477-45.719-16.078 41.16 0 82.32-1.1992 123.36 0.96094 8.7617 0 18.961 11.039 25.078 19.32 31.559 42.719 61.801 86.16 92.762 129.12 4.4414 6.2383 10.078 12 17.398 19.922 45.844-69.004 49.082-161.29 131.4-205.57z" fill="#002d5d"/> +</svg> diff --git a/src/assets/svgs/CW-flooding-1760091.svg b/src/assets/svgs/CW-flooding-1760091.svg new file mode 100644 index 0000000000000000000000000000000000000000..8db33fb966c02eced58ad6964111dfda831dfc90 --- /dev/null +++ b/src/assets/svgs/CW-flooding-1760091.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m1074.5 308.31c43.629 44.59 65.449 97.711 65.449 159.36 0 62.613-21.82 115.73-65.449 159.36-43.637 43.629-97.242 65.438-160.79 65.438l-739.92 1.4414c-31.305-0.94922-57.871-12.34-79.695-34.16-22.758-21.809-34.137-48.363-34.137-79.676 0-26.566 9-50.742 27.023-72.574 17.078-20.848 38.895-33.656 65.461-38.402l-1.4297-24.188c0-41.742 14.703-77.789 44.121-108.14 29.402-30.352 64.977-46.477 106.71-48.375 18.965-53.121 51.223-96.27 96.758-129.48 47.426-34.137 100.08-51.223 157.94-51.223 55.023 0 105.3 15.645 150.84 46.957 44.578 29.402 77.301 68.777 98.172 118.09 33.211-19.91 69.727-29.871 109.57-29.871 62.621 0 115.74 21.809 159.38 65.438zm-563.49 654.5c10.434-29.402 35.574-74.461 75.422-135.16 39.844 60.703 64.98 105.76 75.418 135.16 17.074 55.031 11.855 92.977-15.664 113.82-15.176 10.441-35.086 15.668-59.754 15.668-24.664 0-44.59-5.2266-59.766-15.668-27.508-20.848-32.723-58.793-15.656-113.82zm-135.18-66.855c18.023 54.059 13.285 91.523-14.227 112.39-15.176 11.379-35.574 17.074-61.184 17.074-24.668 0-44.578-5.6953-59.766-17.074-27.496-20.871-32.25-58.336-14.234-112.39 8.5469-28.465 33.211-73.523 73.996-135.18 42.688 64.5 67.828 109.55 75.414 135.18zm391.3-45.539c9.4922-29.402 34.152-74.461 73.992-135.16 39.836 60.703 64.508 105.76 73.992 135.16 18.973 55.008 14.234 92.484-14.227 112.39-15.176 11.402-35.098 17.074-59.766 17.074-24.664 0-44.578-5.6719-59.766-17.074-28.457-19.91-33.199-57.387-14.227-112.39z" fill="#002d5d" fill-rule="evenodd"/> +</svg> diff --git a/src/assets/svgs/CW-ice-cover-5314745.svg b/src/assets/svgs/CW-ice-cover-5314745.svg new file mode 100644 index 0000000000000000000000000000000000000000..82aac3d9a09367dce8422801100b01c57cd0b148 --- /dev/null +++ b/src/assets/svgs/CW-ice-cover-5314745.svg @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m557.3 581.18h514.05l-76.027 60.352c-1.3125 1.0352-2.4844 2.2422-3.4766 3.5898l-67.273 90.82-147 91.883c-1.9766 1.2422-3.6992 2.8477-5.0898 4.7227l-112.54 149.89c-0.83594 1.1602-1.5352 2.4141-2.0859 3.7344l-53.613 120.48-41.75-152.86v-166.22c0.007812-2.0273-0.3125-4.0469-0.95312-5.9688l-35.598-106.57z" fill="#002d5d"/> + <path d="m130.55 581.18h387.2l-29.297 87.891c-1.293 3.8633-1.293 8.0391 0 11.902l36.547 109.64v165.67c0.019531 1.6367 0.25391 3.2617 0.69531 4.8359l37.574 138.06-118.69-118.69v-0.003906c-0.89844-0.875-1.8789-1.6602-2.9297-2.3438l-161.94-107.96-17.434-104.52c-0.46875-2.8945-1.6094-5.6406-3.332-8.0195z" fill="#002d5d"/> + <path d="m857.11 304.99 74.742 56.871c1.5117 1.1758 3.1914 2.1172 4.9805 2.7852l79.32 28.234 52.148 86.793 28.562 66.578-515-0.003906 47.973-79.871 78.883-43.871c2.1953-1.2148 4.125-2.8594 5.6758-4.832l63.539-80.969z" fill="#002d5d"/> + <path d="m566.31 84.559-40.504 135.09c-0.86328 2.9258-1.0039 6.0195-0.40234 9.0078l15.785 78.883-117.37 50.242v0.003906c-3.3633 1.4414-6.2266 3.8359-8.2461 6.8906-2.0156 3.0508-3.0977 6.625-3.1055 10.285v69.324l-66.32 99.535h-228.26l120.04-173.44 127.62-72.801v-0.003907c2.2266-1.3008 4.1562-3.0469 5.6758-5.125l110.71-147.69z" fill="#002d5d"/> + <path d="m610.11 69.215 144.21 112.1 57.238 100.12-49.73 19.887v-0.003906c-3.0547 1.2266-5.7305 3.2344-7.7617 5.8242l-64.379 82.066-79.98 44.422h-0.003906c-2.9141 1.5938-5.3516 3.9336-7.0664 6.7773l-54.383 90.527-17.066 12.891h-139.93l55.516-83.461h0.003906c2.0664-3.0742 3.1758-6.6953 3.1875-10.398v-62.551l119.86-51.488c3.9727-1.6797 7.2422-4.6758 9.2656-8.4844 2.0195-3.8086 2.668-8.1953 1.832-12.426l-17.871-89.137z" fill="#002d5d"/> + <path d="m131.21 731.22c-4.9766 0.015625-9.7383 2.0117-13.246 5.5391-3.5039 3.5312-5.4609 8.3086-5.4414 13.285 0.015625 4.9492 1.9922 9.6914 5.4922 13.191 3.5 3.5039 8.2422 5.4766 13.195 5.4922h150.04c4.9492-0.015625 9.6914-1.9883 13.195-5.4922 3.5-3.5 5.4727-8.2422 5.4883-13.191 0.019531-4.9766-1.9375-9.7539-5.4414-13.285-3.5039-3.5273-8.2695-5.5234-13.242-5.5391z" fill="#002d5d"/> + <path d="m206.23 862.43c-4.9727 0.019531-9.7383 2.0117-13.242 5.543-3.5039 3.5312-5.4609 8.3086-5.4414 13.281 0.015625 4.9531 1.9922 9.6953 5.4922 13.195s8.2422 5.4727 13.191 5.4922h131.21c4.9727 0.019532 9.7539-1.9375 13.281-5.4453 3.5312-3.5039 5.5234-8.2656 5.543-13.242 0.019531-4.9961-1.957-9.7969-5.4922-13.332-3.5352-3.5352-8.3359-5.5117-13.332-5.4922z" fill="#002d5d"/> + <path d="m712.54 875.72c-4.9961-0.019531-9.7969 1.957-13.332 5.4922-3.5312 3.5352-5.5117 8.332-5.4883 13.332 0.015625 4.9727 2.0078 9.7383 5.5391 13.242 3.5312 3.5039 8.3086 5.4609 13.281 5.4414h243.74c4.9492-0.015625 9.6953-1.9883 13.195-5.4883 3.5-3.5039 5.4727-8.2461 5.4922-13.195 0.019531-4.9766-1.9414-9.7539-5.4453-13.285-3.5039-3.5273-8.2656-5.5234-13.242-5.5391z" fill="#002d5d"/> + <path d="m881.26 690.11c-4.9961-0.019531-9.7969 1.957-13.332 5.4922-3.5352 3.5352-5.5117 8.3359-5.4922 13.332 0.019531 4.9766 2.0117 9.7383 5.543 13.242 3.5312 3.5039 8.3086 5.4648 13.281 5.4453h131.21c4.9727 0.019531 9.7539-1.9414 13.281-5.4453 3.5312-3.5039 5.5234-8.2656 5.543-13.242 0.019531-4.9961-1.957-9.7969-5.4922-13.332-3.5352-3.5352-8.3359-5.5117-13.332-5.4922z" fill="#002d5d"/> + <path d="m150.04 1012.5c-4.9961-0.019531-9.7969 1.957-13.332 5.4922-3.5312 3.5352-5.5078 8.332-5.4883 13.332 0.015625 4.9727 2.0078 9.7383 5.5391 13.242 3.5312 3.5039 8.3086 5.4609 13.281 5.4414h149.9c4.9766 0.019531 9.7539-1.9375 13.285-5.4414 3.5312-3.5039 5.5234-8.2695 5.5391-13.242 0.019532-5-1.957-9.7969-5.4883-13.332-3.5352-3.5352-8.3359-5.5117-13.336-5.4922z" fill="#002d5d"/> + <path d="m965.69 1012.5c-5-0.019531-9.8008 1.957-13.336 5.4922-3.5312 3.5352-5.5078 8.332-5.4883 13.332 0.015624 4.9727 2.0078 9.7383 5.5391 13.242 3.5312 3.5039 8.3086 5.4609 13.285 5.4414h131.21-0.003906c4.9492-0.015625 9.6953-1.9883 13.195-5.4922 3.5-3.5 5.4727-8.2422 5.4922-13.191 0.019531-4.9766-1.9414-9.7539-5.4453-13.285-3.5039-3.5273-8.2656-5.5234-13.242-5.5391z" fill="#002d5d"/> +</svg> diff --git a/src/assets/svgs/CW-temperature-1979336.svg b/src/assets/svgs/CW-temperature-1979336.svg new file mode 100644 index 0000000000000000000000000000000000000000..fcadc6762aae3d360325581c473be8de98b854a6 --- /dev/null +++ b/src/assets/svgs/CW-temperature-1979336.svg @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m489.6 1171.2c160.8 31.199 300-91.199 300-247.2 0-81.602-40.801-156-103.2-201.6l-0.003906-549.6c0-81.602-64.801-148.8-148.8-148.8-81.602 0-148.8 67.199-148.8 148.8v549.6c-74.398 55.199-117.6 148.8-96 254.4 19.203 96 98.402 175.2 196.8 194.4zm-69.602-403.2 21.602-16.801v-576c0-52.801 43.199-93.602 93.602-93.602 52.801 0 96 43.199 96 93.602v576l21.602 16.801c50.398 36 79.199 96 79.199 158.4 0 52.801-21.602 103.2-57.602 139.2-38.398 36-86.398 57.602-139.2 57.602-98.398 0-175.2-69.602-192-156-12.004-79.199 16.797-156 76.797-199.2z" fill="#002d5d"/> + <path d="m537.6 1065.6c38.398 0 74.398-14.398 100.8-40.801 26.398-26.398 40.801-62.398 40.801-100.8 0-96-81.602-127.2-103.2-146.4l-0.003906-405.6h-79.199v405.6c-16.801 19.199-122.4 57.602-98.398 175.2 11.996 62.398 67.199 112.8 139.2 112.8z" fill="#002d5d"/> + <path d="m885.6 187.2h-136.8v55.199h136.8c14.398 0 26.398-12 26.398-26.398 2.3984-16.801-9.6016-28.801-26.398-28.801z" fill="#002d5d"/> + <path d="m859.2 360c0-14.398-12-26.398-26.398-26.398h-81.602v55.199h81.602c14.398-2.4023 26.398-14.402 26.398-28.801z" fill="#002d5d"/> + <path d="m914.4 504c0-14.398-12-26.398-26.398-26.398h-136.8v55.199h136.8c14.398 0 26.398-14.402 26.398-28.801z" fill="#002d5d"/> +</svg> diff --git a/src/assets/svgs/CW-wind-7479181.svg b/src/assets/svgs/CW-wind-7479181.svg new file mode 100644 index 0000000000000000000000000000000000000000..b757154de4d7daaf010a03ebcc7d9800d5affc8c --- /dev/null +++ b/src/assets/svgs/CW-wind-7479181.svg @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m357.84 439.26h254.02c89.062 0 161.53-72.469 161.53-161.53s-72.469-161.53-161.53-161.53-161.53 72.469-161.53 161.53c0 20.766 16.828 37.594 37.594 37.594s37.594-16.828 37.594-37.594c0-47.625 38.719-86.344 86.344-86.344s86.344 38.766 86.344 86.344c0 47.625-38.719 86.344-86.344 86.344h-254.02c-20.766 0-37.594 16.828-37.594 37.594s16.828 37.594 37.594 37.594z" fill="#002d5d"/> + <path d="m1008.5 314.53c-89.062 0-161.53 72.469-161.53 161.53 0 20.766 16.828 37.594 37.594 37.594s37.594-16.828 37.594-37.594c0-47.625 38.719-86.344 86.344-86.344s86.344 38.719 86.344 86.344-38.719 86.344-86.344 86.344h-402.74c-20.766 0-37.594 16.828-37.594 37.594s16.828 37.594 37.594 37.594h402.74c89.062 0 161.53-72.469 161.53-161.53s-72.469-161.53-161.53-161.53z" fill="#002d5d"/> + <path d="m760.6 760.74h-303.61c-20.766 0-37.594 16.828-37.594 37.594s16.828 37.594 37.594 37.594h303.61c47.625 0 86.344 38.766 86.344 86.344 0 47.625-38.719 86.344-86.344 86.344s-86.344-38.766-86.344-86.344c0-20.766-16.828-37.594-37.594-37.594s-37.594 16.828-37.594 37.594c0 89.062 72.469 161.53 161.53 161.53s161.53-72.469 161.53-161.53-72.469-161.53-161.53-161.53z" fill="#002d5d"/> + <path d="m67.594 439.26h141.52c20.766 0 37.594-16.828 37.594-37.594s-16.828-37.594-37.594-37.594l-141.52 0.046875c-20.766 0-37.594 16.828-37.594 37.594s16.828 37.594 37.594 37.594z" fill="#002d5d"/> + <path d="m67.594 637.6h389.39c20.766 0 37.594-16.828 37.594-37.594s-16.828-37.594-37.594-37.594h-389.39c-20.766 0-37.594 16.828-37.594 37.594s16.828 37.594 37.594 37.594z" fill="#002d5d"/> + <path d="m308.26 760.74h-240.66c-20.766 0-37.594 16.828-37.594 37.594s16.828 37.594 37.594 37.594h240.66c20.766 0 37.594-16.828 37.594-37.594s-16.828-37.594-37.594-37.594z" fill="#002d5d"/> +</svg> diff --git a/src/assets/svgs/H-agriculture-5491228.svg b/src/assets/svgs/H-agriculture-5491228.svg new file mode 100644 index 0000000000000000000000000000000000000000..97bbe25e1992650de953b82bee20d2e9201a9bca --- /dev/null +++ b/src/assets/svgs/H-agriculture-5491228.svg @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m449.5 848.18c22.887 19.074 61.488 19.02 84.301 0.019531 37.023-30.871 95.215-30.926 132.39-0.019531 22.852 19 61.449 19 84.301 0 19.82-16.5 45.676-23.887 71.133-22.734l-39.992-64.984c-2.3125 1.4141-5.043 2.1562-7.1172 3.8828-37.062 30.852-95.289 30.852-132.35 0-22.852-18.98-61.488-19.055-84.34 0-18.527 15.441-42.332 23.156-66.172 23.156-23.805 0-47.609-7.7148-66.176-23.16-2.0742-1.7266-4.8047-2.4688-7.1172-3.8828l-39.992 64.984c25.457-1.1484 51.312 6.2383 71.133 22.738z" fill="#4d6c6e"/> + <path d="m449.5 960.68c22.887 19.074 61.488 19.02 84.301 0.019531 37.023-30.871 95.215-30.926 132.39-0.019531 22.852 19 61.449 19 84.301 0 37.062-30.852 95.289-30.852 132.35 0 8.2344 6.8477 18.703 10.344 29.555 12.258l-61.949-100.66c-23.094-13.348-55.52-12.406-75.93 4.5625-37.062 30.852-95.289 30.852-132.35 0-22.852-18.98-61.488-19.055-84.34 0-18.527 15.445-42.332 23.16-66.172 23.16-23.805 0-47.609-7.7148-66.176-23.16-20.41-16.973-52.836-17.91-75.93-4.5625l-61.945 100.66c10.852-1.9141 21.316-5.4141 29.555-12.258 37.059-30.852 95.285-30.852 132.34 0z" fill="#4d6c6e"/> + <path d="m449.5 735.68c22.887 19.074 61.488 19.02 84.301 0.019531 37.023-30.871 95.215-30.926 132.39-0.019531 22.852 19 61.449 19 84.301 0 3.5-2.9141 7.3438-5.2852 11.184-7.6484l-35.398-57.523c-15.77 5.5234-36.184 3.5586-48.094-6.3789-42.336-35.492-114-35.492-156.41 0-11.855 9.9375-32.281 11.902-48.055 6.375l-35.402 57.523c3.8438 2.3672 7.6914 4.7383 11.188 7.6523z" fill="#4d6c6e"/> + <path d="m858.82 989.34c-22.852-19-61.449-19-84.301 0-37.062 30.852-95.289 30.852-132.35 0-22.852-18.98-61.488-19.055-84.34 0-18.531 15.445-42.336 23.16-66.176 23.16-23.805 0-47.609-7.7148-66.176-23.16-22.852-19-61.449-19-84.301 0-21.441 17.852-49.938 25.035-77.352 22.23l-39.676 64.473c41.602 17.715 94.82 12.613 129.02-16.066 15.27-12.734 44.973-12.773 60.316 0 42.336 35.488 114.04 35.488 156.37 0 15.309-12.773 44.973-12.773 60.277 0 42.336 35.488 114.04 35.488 156.37 0 15.344-12.773 45.082-12.715 60.277-0.019531 21.207 17.762 48.969 27.543 78.227 27.543 18.031 0 35.305-4.1289 51.023-11.148l-39.863-64.777c-27.414 2.8008-55.91-4.3828-77.352-22.234z" fill="#4d6c6e"/> + <path d="m75 825v300h54.047c13.023 0 25.113-6.7539 31.938-17.848l289.02-469.65v-112.5z" fill="#4d6c6e"/> + <path d="m1087.5 187.5c20.727 0 37.5-16.773 37.5-37.5s-16.773-37.5-37.5-37.5c0-20.727-16.773-37.5-37.5-37.5s-37.5 16.773-37.5 37.5h-75c0-20.727-16.773-37.5-37.5-37.5s-37.5 16.773-37.5 37.5h-75c0-20.727-16.773-37.5-37.5-37.5s-37.5 16.773-37.5 37.5h-75c0-20.727-16.773-37.5-37.5-37.5s-37.5 16.773-37.5 37.5h-75c0-20.727-16.773-37.5-37.5-37.5s-37.5 16.773-37.5 37.5h-75c0-20.727-16.773-37.5-37.5-37.5s-37.5 16.773-37.5 37.5h-75c0-20.727-16.773-37.5-37.5-37.5s-37.5 16.773-37.5 37.5c-20.727 0-37.5 16.773-37.5 37.5s16.773 37.5 37.5 37.5v37.5h-37.5v375h221.21l116.29-93.035v-19.465c0-103.55 83.945-187.5 187.5-187.5s187.5 83.945 187.5 187.5v19.465l116.29 93.035h221.21v-375h-37.5zm-75 0v37.5h-75v-37.5zm-150 0v37.5h-75v-37.5zm-150 0v37.5h-75v-37.5zm-150 0v37.5h-75v-37.5zm-375 0h75v37.5h-75zm150 37.5v-37.5h75v37.5z" fill="#4d6c6e"/> + <path d="m1125 825v300h-54.047c-13.023 0-25.113-6.7539-31.938-17.848l-289.02-469.65v-112.5z" fill="#4d6c6e"/> +</svg> diff --git a/src/assets/svgs/H-aquaculture-5466605.svg b/src/assets/svgs/H-aquaculture-5466605.svg new file mode 100644 index 0000000000000000000000000000000000000000..edc99f5bb669865e8f6ce3cad185d3d4c1fb3411 --- /dev/null +++ b/src/assets/svgs/H-aquaculture-5466605.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m1199.8 701.14c-1.168-5.1289-6.2812-8.3398-11.402-7.168-19.41 4.4258-39.293 6.2344-59.078 5.375-3.8867-0.16797-7.6836-0.46484-11.434-0.82031v-373.27c0-52.215-85.645-85.656-157.49-104.52-97.746-25.656-227.55-39.785-365.48-39.785-137.94 0-267.74 14.129-365.49 39.785-71.848 18.859-157.49 52.301-157.49 104.52v374.28c-16.773 0.039063-33.539-1.8125-49.973-5.5625-5.1289-1.1719-10.234 2.0352-11.402 7.168-1.1719 5.125 2.0352 10.234 7.168 11.402 21.07 4.8125 42.645 6.7695 64.148 5.832 53.977-2.3555 95.836-22.039 122.81-39.535 26.977 17.5 68.832 37.18 122.81 39.535 66.109 2.8867 116.99-22.043 144.17-39.547 26.977 17.504 68.844 37.191 122.83 39.547 66.086 2.9023 116.99-22.043 144.17-39.547 26.977 17.504 68.844 37.191 122.83 39.547 3.5508 0.15625 7.0508 0.23047 10.512 0.23047 61.004-0.003907 107.94-23.211 133.66-39.777 26.973 17.504 68.836 37.191 122.83 39.547 21.496 0.9375 43.078-1.0273 64.148-5.832 5.125-1.1719 8.332-6.2773 7.1602-11.402zm-965.54-461.97c96.211-25.254 224.3-39.164 360.65-39.164 136.36 0 264.44 13.91 360.65 39.164 89.715 23.551 143.28 55.73 143.28 86.09 0 7.6562-3.418 15.426-9.9492 23.148-71.062-57.02-266.61-94.879-493.98-94.879-227.37 0-422.92 37.859-493.98 94.879-6.5352-7.7227-9.9492-15.492-9.9492-23.148-0.003906-30.359 53.559-62.539 143.28-86.09zm840.48 122.32c-23.965 18.234-64.953 35.621-119.18 49.855-96.211 25.254-224.29 39.164-360.65 39.164-136.36 0.003906-264.44-13.906-360.65-39.164-54.227-14.234-95.215-31.625-119.18-49.855 68.566-52.703 261.95-88.914 479.84-88.914 217.89 0 411.26 36.211 479.83 88.914zm-983.76 4.3828c29.277 29.68 87.336 50.484 138.45 63.898 97.746 25.656 227.54 39.789 365.49 39.789 137.94 0 267.74-14.133 365.48-39.789 51.109-13.418 109.17-34.219 138.45-63.898v31.957c0 30.355-53.562 62.543-143.28 86.094-96.211 25.254-224.29 39.164-360.65 39.164-136.36 0-264.44-13.91-360.65-39.164-89.719-23.551-143.28-55.734-143.28-86.094v-31.957zm108.31 293.67c-23.023 15.812-59.992 34.891-108.31 39.148v-260.25c29.277 29.68 87.336 50.484 138.45 63.898 15.215 3.9922 31.211 7.707 47.887 11.133v177.62c-28.539-8.0742-51.262-20.59-67.234-31.562-3.25-2.2305-7.5312-2.2305-10.785 0.003907zm267.01-0.011719c-23.516 16.094-72.766 42.656-137.97 39.816-11.246-0.49219-21.891-1.8359-31.969-3.7539v-178.39c84.203 15.719 184.08 24.402 289.03 24.898v156.59c-48.324-4.2578-85.293-23.34-108.31-39.148-3.25-2.2344-7.5273-2.2344-10.773-0.011719zm396.02 39.816c-53.211-2.3242-93.68-22.93-118.25-39.809-3.2461-2.2305-7.5273-2.2305-10.77-0.007812-22.406 15.332-68.18 40.133-128.86 40.004v-157.43c104.94-0.49609 204.82-9.1797 289.02-24.898v181.29c-9.9102 0.96875-20.297 1.3242-31.137 0.85156zm137.97-39.816c-17.02 11.648-47.516 28.77-87.789 36.27v-182.32c16.68-3.4258 32.672-7.1406 47.887-11.133 51.109-13.418 109.17-34.219 138.45-63.898v257.44c-38.328-7.0156-68.137-22.855-87.773-36.344-3.2461-2.2344-7.5234-2.2344-10.77-0.011719zm21.352 101.18c-4.6133-2.5234-6.3125-8.3086-3.7891-12.922 2.5234-4.6172 8.3125-6.3125 12.922-3.7891 21.227 11.602 55.551 25.824 98.543 27.699 9.8398 0.42969 19.773 0.19922 29.531-0.68359 5.2109-0.49609 9.8711 3.3867 10.344 8.625s-3.3867 9.8711-8.625 10.344c-7.1484 0.64453-14.387 0.97266-21.613 0.97266-3.4922 0-6.9844-0.078126-10.465-0.23047-36.926-1.6094-73.871-11.992-106.85-30.016zm-1011.1 12.777c1.168-5.1289 6.2734-8.332 11.402-7.168 19.41 4.4258 39.285 6.2305 59.082 5.375 30.711-1.3398 60.547-8.9492 88.672-22.613 4.7344-2.3008 10.43-0.32813 12.73 4.4062 2.3008 4.7305 0.32812 10.43-4.4062 12.73-30.484 14.809-62.84 23.059-96.168 24.508-3.4805 0.14844-6.9648 0.23047-10.445 0.23047-18.023 0-36.047-2.0312-53.703-6.0625-5.1289-1.1719-8.3359-6.2773-7.1641-11.406zm1171.8 135.82c-21.074 4.8086-42.656 6.7656-64.148 5.832-53.984-2.3555-95.852-22.047-122.83-39.547-27.18 17.504-78.086 42.445-144.17 39.547-53.996-2.3555-95.855-22.047-122.83-39.547-25.719 16.562-72.656 39.773-133.66 39.777-3.4609 0-6.9609-0.074219-10.512-0.23047-53.988-2.3555-95.852-22.047-122.83-39.547-27.18 17.504-78.059 42.445-144.17 39.547-53.984-2.3555-95.84-22.039-122.82-39.535-26.977 17.5-68.832 37.18-122.81 39.535-21.504 0.9375-43.078-1.0234-64.148-5.832-5.1289-1.168-8.3398-6.2773-7.168-11.402 1.168-5.1289 6.2773-8.332 11.402-7.168 19.406 4.4258 39.297 6.2344 59.078 5.375 53.219-2.3242 93.68-22.93 118.25-39.809 3.25-2.2344 7.5352-2.2344 10.785 0 24.574 16.879 65.035 37.484 118.25 39.809 65.199 2.8281 114.45-23.727 137.97-39.816 3.2461-2.2227 7.5234-2.2227 10.77 0.007813 24.574 16.879 65.043 37.484 118.25 39.809 65.203 2.8516 114.46-23.723 137.97-39.816 3.2461-2.2227 7.5234-2.2227 10.77 0.007813 24.574 16.879 65.035 37.484 118.25 39.809 65.203 2.8281 114.45-23.727 137.97-39.816 3.2461-2.2227 7.5234-2.2227 10.77 0.007813 24.574 16.879 65.043 37.484 118.25 39.809 19.789 0.85547 39.668-0.94531 59.078-5.375 5.1172-1.168 10.234 2.0352 11.402 7.168 1.1875 5.125-2.0234 10.23-7.1523 11.402zm-555.75-67.465c-0.94141-5.1758 2.4961-10.133 7.668-11.07 20.32-3.6914 40.227-10.203 59.172-19.363 4.7383-2.2812 10.43-0.30469 12.723 4.4297 2.2891 4.7344 0.30469 10.43-4.4297 12.723-20.492 9.9062-42.047 16.953-64.059 20.953-0.57812 0.10547-1.1484 0.15625-1.7148 0.15625-4.5156-0.003906-8.5234-3.2305-9.3594-7.8281zm-170.59-31.824c-4.3359-2.9766-5.4375-8.9062-2.457-13.242 2.9766-4.332 8.9023-5.4375 13.242-2.457 24.574 16.879 65.035 37.484 118.25 39.809 5.2539 0.23047 9.3281 4.6758 9.0977 9.9297-0.22266 5.1133-4.4375 9.1055-9.5078 9.1055-0.14062 0-0.28125-0.003906-0.42187-0.007812-57.723-2.5195-101.58-24.848-128.2-43.137zm688.53 165.67c-19.992 13.684-52.898 31.645-96.098 39.484-0.57812 0.10547-1.1484 0.15625-1.7148 0.15625-4.5156 0-8.5234-3.2227-9.3594-7.8242-0.94141-5.1758 2.4961-10.133 7.668-11.07 39.898-7.2422 70.281-23.824 88.746-36.461 4.3438-2.9688 10.27-1.8594 13.238 2.4805 2.9727 4.3398 1.8594 10.266-2.4805 13.234zm-277.43 0.21875c-4.3398-2.9727-5.4492-8.8984-2.4805-13.242 2.9727-4.3398 8.8984-5.4453 13.242-2.4805 20.484 14.023 54.156 31.973 98.25 37.855 5.2109 0.69531 8.875 5.4844 8.1797 10.699-0.64062 4.7852-4.7305 8.2656-9.4297 8.2656-0.41797 0-0.84375-0.027343-1.2695-0.082031-47.812-6.375-84.305-25.824-106.49-41.016zm-448.89 37.18c-5.1328-1.1602-8.3477-6.2617-7.1875-11.391 1.1602-5.1328 6.2773-8.3516 11.391-7.1875 12.918 2.9219 26.168 4.6992 39.391 5.2773 46.547 2.0273 84.641-11.234 108.4-22.715 4.7305-2.2852 10.43-0.30859 12.719 4.4297 2.2891 4.7344 0.30469 10.43-4.4297 12.719-33.746 16.312-70.621 24.82-107.26 24.82-3.4219 0-6.8438-0.074219-10.262-0.22266-14.352-0.62891-28.738-2.5547-42.762-5.7305zm-267.01-0.10547c-5.1289-1.168-8.3398-6.2773-7.168-11.402 1.168-5.1289 6.2773-8.3359 11.402-7.168 19.406 4.4258 39.289 6.2344 59.078 5.3711 53.211-2.3203 93.676-22.93 118.25-39.809 4.3398-2.9805 10.266-1.8789 13.242 2.457 2.9805 4.3359 1.8789 10.266-2.457 13.242-26.633 18.289-70.492 40.621-128.21 43.137-3.4805 0.14844-6.9648 0.23047-10.449 0.23047-18.023 0-36.035-2.0273-53.691-6.0586z" fill="#79552a"/> +</svg> diff --git a/src/assets/svgs/H-dams-3916913.svg b/src/assets/svgs/H-dams-3916913.svg new file mode 100644 index 0000000000000000000000000000000000000000..4bbab4d385e3266bbbe0b0f9c2266c6f67408f4a --- /dev/null +++ b/src/assets/svgs/H-dams-3916913.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m1125 271.88h-262.5c-5.25 0-9.375 4.125-9.375 9.375v103.12h-56.25v-103.12c0-5.25-4.125-9.375-9.375-9.375h-225c-5.25 0-9.375 4.125-9.375 9.375v103.12h-56.25v-103.12c0-5.25-4.125-9.375-9.375-9.375h-262.5c-5.25 0-9.375 4.125-9.375 9.375v286.12c6-4.875 12.375-9.75 18.75-14.25 33.75-24.375 71.625-42.75 113.25-55.125 6-2.25 12-3.75 18.375-5.25-0.375-1.875-0.375-3.375-0.375-5.25 0-36 29.625-65.625 65.625-65.625 33.375 0 61.5 25.5 64.875 58.125 0.375 0.375 0.375 0.75 0 1.5 0.375 0.375 0.75 1.125 0.375 1.875 0.375 1.125 0.375 2.625 0.375 4.125 0 4.875-0.375 9.375-1.5 13.5-1.5-2.25-4.5-4.125-7.875-4.125h-3-0.75c-2.25 0-4.5 0-6.75 0.375h-0.375c-6.75 0-12.75 0-19.125 0.375h-0.375c-16.875 1.125-33.375 3-49.125 5.25-6.375 1.125-12.75 2.25-19.125 3.75-2.625 0.375-4.875 1.125-7.5 1.5-3.75 0.75-7.5 1.875-11.25 3-6 1.125-12 3-18 4.875-3.75 1.125-7.5 2.25-10.875 3.375-5.625 1.875-10.875 3.75-16.125 6-7.875 3-15.375 6-22.875 9.75-5.625 2.625-11.625 5.625-17.25 8.625-18 9.375-34.875 20.25-50.625 32.625-5.25 4.125-10.5 8.25-15.375 12.75-1.125 1.125-2.25 1.875-3.375 3-138.38 122.62-149.62 317.62-150 326.25 0 2.625 0.75 4.875 2.625 6.75s4.125 3 6.75 3h187.5c5.25 0 9.375-4.125 9.375-9.375 0-23.625 1.125-45.375 3.75-65.625 0.375-2.625 0.75-5.625 1.125-8.25 0.375-3.75 0.75-7.125 1.5-10.5 0.75-6 1.5-12 2.625-18 3.375-18.375 7.5-35.625 12-52.125 4.875-16.125 10.125-31.5 15.75-45.75 0.375-0.375 0.375-0.75 0.375-1.125 2.25-6 4.875-11.625 7.875-17.25 1.875-4.875 4.125-9.375 6.75-13.875 1.125-2.625 2.625-5.25 4.125-7.875 3.375-7.125 7.5-13.875 11.625-20.625 7.125-12 15-23.25 22.875-33.375 4.125-6 8.625-11.625 13.125-16.875 7.5-9 15.375-17.25 22.875-24.75 4.125-4.125 8.25-8.25 12-11.625l2.25-1.875c0.375-0.75 1.125-1.125 1.875-1.5 0.75 0.375 1.125 0.75 1.875 1.125 6.375 3 12.375 3 15 3 2.25 0 4.875 0 7.125-0.75-55.5 46.125-121.88 127.88-141.38 263.25-0.75 4.125-1.5 8.25-1.875 12.75-0.375 1.875-0.375 4.125-0.75 6h39.75c-8.25 38.625-9.75 63.75-9.75 65.25 0 2.625 0.75 4.875 2.625 6.75s4.125 3 6.75 3h187.5c5.25 0 9.375-4.125 9.375-9.375 0-23.625 1.125-45.375 3.75-65.625 0.375-2.625 0.75-5.625 1.125-8.25 0.375-3.75 0.75-7.125 1.5-10.5 0.75-6 1.5-12 2.625-18 1.5-9 3.375-18 5.25-26.625s4.125-17.25 6.75-25.5c1.875-7.5 4.5-15 7.125-22.125 2.625-8.625 5.625-16.5 9-24.375 4.125-10.5 9-20.25 13.5-30 2.625-5.25 5.25-10.5 8.25-15.375 4.125-7.875 8.625-15 13.125-22.125 9.375-15 19.5-28.5 30-40.875 2.625-3 5.25-6 7.875-9 3.375-4.125 6.75-7.5 10.125-11.25 2.25-2.625 4.875-4.875 7.125-7.125 3.75-4.125 7.5-7.5 11.25-10.875l3.75-3.75h0.375c0.375 0.75 1.125 0.75 1.5 1.125 6.375 3.375 12.75 3.375 15.375 3.375 2.25 0 4.875 0 7.125-0.75-55.5 46.125-121.88 127.5-141.38 263.25-0.75 4.125-1.5 8.25-1.875 12.75-0.375 1.875-0.375 4.125-0.75 6h24c1.125-5.25 2.25-10.125 3.375-15.75 0.375-1.125 0.375-1.875 0.75-3 24-103.88 93.375-278.25 287.62-336.75 6-1.875 12-3.375 18.375-5.25-0.375-1.5-0.375-3.375-0.375-4.875 0-36 29.625-65.625 65.625-65.625 33.375 0 61.125 25.125 64.5 57.375h0.375c0.375 0.75 0.375 1.5 0 2.25 0.375 0.375 0.75 1.125 0.375 1.875 0.375 1.125 0.375 2.625 0.375 4.125 0 4.875-0.375 9.375-1.5 13.5-1.5-2.25-4.5-4.125-7.875-4.125h-3.75c-2.25 0-4.5 0-6.75 0.375h-0.375c-6.75 0-12.75 0-19.125 0.375h-0.75c-16.875 1.125-33 3-48.75 5.25-6.75 1.125-13.125 2.625-19.125 3.75-2.625 0.375-4.875 1.125-7.125 1.5-4.125 0.75-7.875 1.875-11.625 2.625v0.375c-6.375 1.5-12.375 3-18 4.875-2.625 0.75-4.875 1.5-7.125 2.25-18.375 6-35.625 13.125-51.375 21-9.75 4.875-19.125 9.75-27.75 15.375-10.875 6.75-21.375 13.875-30.75 21.375-3.75 2.625-7.875 6-11.625 9.375-6 4.875-12 10.125-17.25 15.375-1.5 1.5-3 2.625-4.5 4.5-5.625 5.25-10.875 10.875-15.75 16.5-2.625 2.625-4.875 5.25-7.125 7.875-6 7.125-11.625 13.875-16.875 21.375-5.25 7.125-10.5 14.625-15 21.75-3.375 4.875-6.375 9.75-9 14.625-3 4.875-6 9.75-8.625 14.25-0.375 1.125-0.75 1.875-1.125 2.625-4.125 7.875-8.25 15.375-11.625 23.25-6.75 14.25-12.75 28.125-17.625 42-1.5 3.375-2.625 6.75-3.75 10.125-1.5 3.375-2.25 6.75-3.375 10.125-1.5 3.75-2.625 7.5-3.375 11.25-2.25 6.75-4.125 13.5-6 20.25-1.125 4.5-2.25 9-3.375 13.125-0.375 2.625-1.125 4.875-1.5 7.125-0.75 4.125-1.875 7.875-2.25 11.625-8.25 38.625-9.75 63.75-9.75 65.25 0 2.625 0.75 4.875 2.625 6.75s4.125 3 6.75 3h187.5c5.25 0 9.375-4.125 9.375-9.375 0-23.625 1.125-45.375 3.75-65.625 0.375-2.625 0.75-5.625 1.125-8.25 0.375-3.75 0.75-7.125 1.5-10.5 0.75-6 1.5-12 2.625-18 1.5-9 3.375-18 5.25-26.625s4.125-17.25 6.75-25.5c1.875-7.5 4.5-15 7.125-22.125 2.625-8.625 5.625-16.5 9-24.375 4.125-10.5 9-20.25 13.5-30 2.625-5.25 5.25-10.5 8.25-15.375 4.125-7.875 8.625-15 13.125-22.125 9.375-15 19.5-28.5 30-40.875 2.625-3 5.25-6 7.875-9 3.375-4.125 6.75-7.5 10.125-11.25 2.25-2.625 4.875-4.875 7.125-7.125 3.75-4.125 7.5-7.5 11.25-10.875l3.75-3.75h0.375c0.375 0.75 1.125 0.75 1.5 1.125 6.375 3.375 12.75 3.375 15.375 3.375 2.25 0 4.875 0 7.125-0.75-55.5 46.125-121.88 127.5-141.38 263.25-0.75 4.125-1.5 8.25-1.875 12.75-0.375 1.875-0.375 4.125-0.75 6h309.38c5.25 0 9.375-4.125 9.375-9.375v-562.5c0-5.25-4.125-9.375-9.375-9.375zm-370.88 229.12c-1.5-2.25-4.5-4.125-7.875-4.125h-3.75c-2.25 0-4.5 0-6.75 0.375h-0.375c-6.75 0-12.75 0-19.125 0.375h-0.75c-16.875 1.125-33 3-48.75 5.25-6.75 1.125-13.125 2.625-19.125 3.75-2.625 0.375-4.875 1.125-7.125 1.5-4.125 0.75-7.875 1.875-11.625 2.625v0.375c-6.375 1.5-12.375 3-18 4.875-2.625 0.75-4.875 1.5-7.125 2.25-18.375 6-35.625 13.125-51.375 21-9.75 4.875-19.125 9.75-27.75 15.375-10.875 6.75-21.375 13.875-30.75 21.375-3.75 2.625-7.875 6-11.625 9.375-6 4.875-12 10.125-17.25 15.375-1.5 1.5-3 2.625-4.5 4.5-5.625 5.25-10.875 10.875-15.75 16.5-2.625 2.625-4.875 5.25-7.125 7.875-6 7.125-11.625 13.875-16.875 21.375-5.25 7.125-10.5 14.25-15 21.75-3.375 4.875-6.375 9.75-9 14.625-3 4.875-6 9.75-8.625 14.25-0.375 1.125-0.75 1.875-1.125 2.625-4.125 7.875-8.25 15.375-11.625 23.25-6.75 14.25-12.75 28.125-17.625 42-1.5 3.375-2.625 6.75-3.75 10.125-1.5 3.375-2.25 6.75-3.375 10.125-1.5 3.75-2.625 7.5-3.375 11.25-2.25 6.75-4.125 13.5-6 20.25-1.125 4.5-2.25 9-3.375 13.125h-19.125c24-103.88 93.375-278.25 287.62-336.75 6-1.875 12-3.375 18.375-5.25-0.375-1.5-0.375-3.375-0.375-4.875 0-36 29.625-65.625 65.625-65.625 33.375 0 61.125 25.125 64.5 57.375h0.375c0.375 0.375 0.375 1.125 0 1.875 0.375 0.75 0.75 1.5 0.375 2.25 0.375 1.125 0.375 2.625 0.375 4.125 0 4.875-0.375 9.375-1.5 13.5z" fill="#4d6c6e"/> +</svg> diff --git a/src/assets/svgs/H-deforestation-4811548.svg b/src/assets/svgs/H-deforestation-4811548.svg new file mode 100644 index 0000000000000000000000000000000000000000..3987ed478083046be8e4b93564b1c5677eba5927 --- /dev/null +++ b/src/assets/svgs/H-deforestation-4811548.svg @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m176.53 276.09c0.36328 0.40625 0.72656 0.80469 1.0938 1.2031 1.332 1.4531 2.6719 2.8711 4.0273 4.2383 0.16406 0.16797 0.32812 0.33984 0.49219 0.50781 1.6055 1.6055 3.2305 3.1523 4.8672 4.6406 0.12109 0.10937 0.24609 0.21875 0.36719 0.32812 1.6055 1.4492 3.2227 2.8516 4.8555 4.1953 0.058594 0.046875 0.11719 0.097656 0.17578 0.14844 12.254 10.082 25.07 17.176 37.41 22.145 3.2422 1.3047 6.4492 2.4688 9.6094 3.4961 0.70703 0.23047 1.4102 0.45312 2.1094 0.67187 0.53125 0.16797 1.0625 0.32422 1.5898 0.48047 31.344 9.4141 56.75 6.3555 56.75 6.3555s0.007813-0.023438 0.007813-0.03125c0.12891-0.40234 7.8633-24.629 4.8398-57.023-0.0625-0.67578-0.125-1.3477-0.19531-2.0312-0.066406-0.64062-0.14062-1.2852-0.21484-1.9297-1.8633-15.957-6.4531-33.688-15.887-51.465-0.027344-0.050781-0.054688-0.097656-0.078126-0.14844-1-1.8828-2.0586-3.7617-3.168-5.6406-0.082032-0.14062-0.16406-0.28125-0.24609-0.42188-1.1367-1.9062-2.3281-3.8125-3.5859-5.7109-0.125-0.1875-0.25781-0.375-0.38281-0.56641-1.0742-1.6094-2.1992-3.2109-3.3633-4.8125-0.32031-0.4375-0.63672-0.87891-0.96484-1.3164-1.332-1.7852-2.6953-3.5703-4.1445-5.3438-9.1367-11.195-19.371-20.648-30.004-28.672-49.062-37.02-106.8-43.043-106.8-43.043s-14.879 91.773 36.438 154.61c1.4453 1.7773 2.9219 3.4727 4.4062 5.1328z" fill="#4d6c6e"/> + <path d="m278.16 437.14c5.3945-8.2422 8.2461-14.164 8.2461-14.164s-5.3047-5.7109-14.297-12.891c-19.379-15.473-57.648-38.473-109.29-30.848-75.609 11.16-124.08 76.031-124.08 76.031s67.051 56.355 142.66 45.191c53.602-7.9141 83.621-43.246 96.762-63.32z" fill="#4d6c6e"/> + <path d="m1161.3 887.2c-18.699-16.871-46.887-39.754-88.301-68.211-15.926-6.457-85.602-47.891-74.957-275.52l5.3242-170.88c-50.848 50.176-162.93 84.352-296.45 84.352-132.56 0-243.94-33.699-295.28-83.289l3.5859 70.91-89.438-110.16-4.9531 15.215-16.527 2.1797 40.195 49.504-39.902 5.4414c8.9922 7.1797 14.297 12.891 14.297 12.891s-2.8477 5.9219-8.2461 14.164l54.23-7.3945 52.707 64.91 4.2695 84.414c0.11719 0 19.551 109.62-103.41 170.22l-78.352 36.438c29.207 5.918 69.562 13.094 104.92 16.293 25.207-32.008 35.098-56.613 35.277-57.086l25.836 9.7734c-1.543 4.1641-39.945 103.03-167.69 169.27-18.008 9.332-27.723 18.566-34.086 42.223 27.223-13.824 72.684-25.199 135.3-0.5 18.16 7.2109 29.383 8.6758 47.852-1.543 2.543-1.8906 91.926-63.293 141.89-2.543 4.125 5.0703 8.2891 10.547 12.414 16.309 35.203 49.434 101.22 60.883 150.38 26.219 84.559-59.922 160.06-70.445 218.36-30.48l17.93 12.242c37.52 25.527 46.426 31.578 80.82 67.402l32.312 33.699c6.4375-23.715 10.566-69.23-23.211-128.32-15.078-26.355-16.582-47.293-4.5117-62.195 23.441-28.977 96.164-18.18 147.41-5.9375zm-625.57-22.074h-27.609v-177.06h27.609zm82.859-40.602h-27.609l0.003906-264.79h27.609zm84.445-71.469h-27.609v-177.06h27.609zm86.102 112.07h-27.609v-305.39h27.609zm91.5 0.53906h-27.609v-264.78h27.609z" fill="#4d6c6e"/> + <path d="m706.88 429.29c178.41 0 298.25-60.902 298.25-117.78 0-10.176-3.9102-20.277-10.879-30.082-0.13672 10.629-3.3047 21.207-10.133 30.043-37.52 48.43-143.32 82.883-250.9 82.883-5.668 0-11.336-0.097656-17.004-0.28906-81.012-2.7773-147.45-25.258-173.36-58.668-10.488-13.535-14.305-28.59-10.988-43.57 9.4844-43.109 83.25-71.969 174.75-68.922 55.562 1.9102 103.49 18.605 122.04 42.551 9.4102 12.125 9.4844 23.387 7.8672 30.672-7.3242 33.508-67.746 49.473-123.39 47.137-37.52-1.2734-66.422-13.711-80.742-27.781-12.93-12.699-13.027-18.625-12.828-22.441 0.87109-16.555 23.723-26.82 51.203-26.82 27.484 0 49.766 10.27 49.766 22.941 0 9.3164-10.648 19.5-27.145 24.285 6.3125 0.99219 12.812 1.9375 20.668 2.207 58.262 1.7148 93.352-15.789 95.473-25.469 0.19141-0.82812 0.73438-3.3555-2.6992-7.8086-11.258-14.48-49.586-30.094-101.14-31.867-81.129-2.6406-141.32 22.191-146.83 47.254-1.5039 6.9023 0.38672 13.668 5.8594 20.707 15.695 20.242 65.047 44.98 152.42 47.988 115.25 3.9336 215.35-33.449 245.12-71.895 5.5156-7.1328 6.3633-16.328 2.1602-23.984-8.9844-16.387-39.754-40.219-99.059-57.875l0.058594-0.19922c-47.637-12.23-102.29-18.773-158.54-18.773-178.37 0-298.21 60.902-298.21 117.78-0.003907 56.875 119.84 117.78 298.21 117.78z" fill="#4d6c6e"/> +</svg> diff --git a/src/assets/svgs/H-industrial-659077.svg b/src/assets/svgs/H-industrial-659077.svg new file mode 100644 index 0000000000000000000000000000000000000000..2254cab3c4dde3279015970f84c2818d4ee4b2b8 --- /dev/null +++ b/src/assets/svgs/H-industrial-659077.svg @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m1185.6 1072.6c-10.121-1.375-68.223-6.6562-65.055-25.805 7.6562-46.297-13.762-61.969-36.113-66.551v-20.129c0-2.2031-1.7891-3.9922-3.9922-3.9922h-268.53v-167.32c0-5.4961-4.4531-9.957-9.9531-9.957h-17.449c-36.09-41.094-29.973-219.02-29.973-237.65 0-6.1641-2.6992-10.977-7.8398-14.68-10.621-7.6445-31.727-10.512-61.426-10.512-35.242 0-58.391 4.0352-66.266 15.309-1.9727 2.8242-3.0039 6.1016-3.0039 9.8867 0 17.418 5.3516 174.09-23.445 227.98-1.1016 2.0625-2.2578 3.957-3.4609 5.7031-1.2031-1.7461-2.3594-3.6406-3.4609-5.6992-26.844-50.246-24.012-189.82-23.504-222.6 0.039063-2.3828 0.0625-4.2031 0.0625-5.3789 0-5.0664-1.8281-9.2188-5.3281-12.598-9.5547-9.2148-31.68-12.598-63.938-12.598-31.449 0-53.27 3.2109-63.199 11.91-3.9883 3.4961-6.0664 7.8711-6.0664 13.281 0 2.2031 0.085938 6.6523 0.17578 12.812 0.48047 32.375 1.1133 112.63-9.6602 169.96l-27.164 27.164v-60.219c0-8.9219-5.1562-11.066-11.473-4.7578l-64.953 64.961v-60.203c0-8.9219-5.168-11.066-11.465-4.7578l-64.969 64.977v-60.219c0-8.9219-5.1562-11.066-11.473-4.7578l-11.512 11.512v-69.57h4.9766v-14.934h-39.82v14.934h4.9766v99.434l-19.914 19.91v-119.34h4.9766v-14.934h-39.82v14.934h4.9766v149.21l-1.5352 1.5352h-24.941c-5.5039 0-9.957 4.4609-9.957 9.957v262.43h-9.9531c-5.5039 0-9.9531 4.4609-9.9531 9.9531v29.867h756.64v-29.867c0-5.4922-4.4453-9.9531-9.957-9.9531h-9.9531v-41.188h268.52c2.2031 0 3.9922-1.7891 3.9922-3.9922v-0.050781c9.3242 22.855 0.70312 53.91-66.891 66.938-13.969 2.6953 0.33203 21.633 79.043 21.629 103.16 0 120.93-17.152 89.02-21.961zm-712.18-170.71v-49.777h49.777v49.777zm49.777 29.867v49.781h-49.777v-49.781zm-129.43-29.867v-49.777h49.785v49.777zm49.785 29.867v49.781h-49.785v-49.781zm-209.07-29.867v-49.777h49.777v49.777zm49.777 29.867v49.781h-49.777v-49.781zm-129.43 0h49.785v49.781h-49.785zm0-29.867v-49.777h49.785v49.777zm159.29 29.867h49.781v49.781h-49.781zm0-29.867v-49.777h49.781v49.777z" fill="#4d6c6e"/> + <path d="m249.36 169.73c7.9258 11.996 12.707 19.242 37.41 19.242 21.613 0 36.961 5.3281 45.613 15.836 7.5039 9.1055 9.7383 21.762 6.6484 37.613-1.4414 7.3828-1.2266 12.613 0.60156 15.117 2.2617 3.0938 8.5742 3.8242 15.883 4.6719 11.867 1.375 28.105 3.2578 40.438 17.676 6.9414 7.043 7.6758 13.992 8.2148 19.078 0.63281 5.9688 0.95312 9 11.508 12.902 0.23437 0.039063 0.57812 0.070313 1.0586 0.070313 3.3867 0 8.8711-1.625 14.172-3.1992l0.76172-0.22266c7.2188-2.1406 13.668-3.9141 19.441-3.9141 1.5977 0 3.1094 0.14062 4.4844 0.41797l0.14062 0.027344 0.14062 0.039062c8.8555 2.2148 32.156 13.93 35.719 28.684 4.0703 10.094-0.16406 17.129-3.582 22.801-3.2578 5.4062-5.8359 9.6797-3.2031 17.559 1.7227 5.1797 7.6758 8.5039 13.977 12.02 6.4102 3.5859 13.043 7.2891 16.914 13.738l0.11719 0.19922 0.10156 0.20703c1.8047 3.6094 2.8984 6.9375 3.5039 10.051 13.105-2.6641 26.473-7.5742 40.348-4.3711 26.949 6.7383 44.805-1.9531 56.121 14.02 11.098 15.668 7.3203 35.941 2.2695 48.863-5.1719 13.227 4.4922 24.703 20.211 33.684-6.5078 4.3867-11.543 10.363-15.031 17.121 14.344-8.1484 38.316-9.6562 61.969-9.6562 23.449 0 47.219 1.4766 61.602 9.4414-0.44141-5.1211-2.1797-9.5508-5.2227-12.594-20.215-20.211-42.68-6.5547-42.68-40.242 0-15.719 11.23-24.703 2.2461-42.668-6.7344-11.227-26.949-13.477-31.438-26.949-6.7383-20.211 13.473-24.699 6.7383-40.426-2.25-11.227-22.461-22.453-31.441-24.699-11.227-2.25-31.441 8.9844-40.426 6.7383-24.699-8.9844-8.9805-20.211-22.453-33.688-24.707-29.191-66.656-0.26562-58.391-42.668 3.4727-17.824 3.0273-46.312-46.383-46.312-44.914 0-33.672-24.344-65.113-46.801-26.949-20.211-58.293-25.281-85.242-14.055-17.961 8.9844-37.344-51.566-83.27-49.57-22.75 0.98828-36.512 11.777-46.797 22.414 9.7383 3.5469 19.234 8.7188 28.215 15.457 12.684 9.043 19.016 18.641 24.105 26.348z" fill="#4d6c6e"/> + <path d="m554.44 519.36c-2.7617-7.6328-6.9648-14.383-11.09-18.512-20.215-20.211-35.023-21.531-35.023-55.219 0-13.074 7.7578-21.492 5.2031-34.289-0.51562-2.5898-1.4453-5.3555-2.957-8.3789-6.7344-11.227-26.949-13.477-31.438-26.949-6.7383-20.211 13.473-24.699 6.7383-40.426-2.25-11.227-22.461-22.453-31.441-24.699-11.227-2.25-31.441 8.9844-40.426 6.7383-24.699-8.9844-8.9805-20.211-22.453-33.688-24.707-29.191-66.656-0.26562-58.391-42.668 3.4727-17.824 3.0273-46.312-46.383-46.312-44.914 0-33.672-24.344-65.113-46.801-9.3008-6.9766-19.125-12.102-29.113-15.422-18.953-6.3047-38.48-5.9844-56.129 1.3672-17.961 8.9844-5.375 51.027-27.832 48.781-15.719 0-24.703-15.719-42.672-15.719-51.656-0.007813-67.965 29.117-65.723 58.312 4.4922 31.441 27.543 53.969 72.457 58.457 13.473 0 31.438-8.9844 44.914-4.4883 22.457 8.9805 13.473 22.457 26.945 31.438 29.195 22.457 51.656 0 80.848 4.4883 15.719 0 35.934 8.9844 44.914 20.211 11.227 13.477 4.4922 26.949 15.719 40.426 26.949 31.441 53.898 2.2461 83.094 8.9844 26.949 6.7383-7.5234 26.617 11.523 26 20.633-0.66797 16.723 20.965 23.461 25.457 4.4922 4.4922 27.898-13.281 32.387-6.543 4.4922 6.7344-3.6758 9.0234-8.9844 17.969-8.9258 15.035 8.3008 44.988 24.02 53.969-5.6641 3.5391-11.477 9.0898-16.016 15.594 14.555-6.2188 36.152-7.4492 57.488-7.4492 23.379 0.003906 47.078 1.4727 61.473 9.3711z" fill="#4d6c6e"/> +</svg> diff --git a/src/assets/svgs/H-riparian-6291.svg b/src/assets/svgs/H-riparian-6291.svg new file mode 100644 index 0000000000000000000000000000000000000000..eb164369a146d230e888c59c4742d8dc29734531 --- /dev/null +++ b/src/assets/svgs/H-riparian-6291.svg @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m1200 850.04c-20.832 8.3281-41.676 16.668-66.672 16.668-50.004 0-83.328-33.324-133.33-33.324-49.992 0-83.328 33.324-133.33 33.324-49.992 0-83.328-33.324-133.32-33.324-50.004 0-83.328 33.324-133.33 33.324-50.004 0-83.328-33.324-133.33-33.324-50.004 0-83.328 33.324-133.33 33.324s-83.328-33.324-133.33-33.324-83.34 33.312-133.34 33.312c-24.996 0-45.84-8.293-66.672-16.633v99.996c20.832 8.3281 41.664 16.645 66.672 16.645 50.004 0 83.328-33.336 133.33-33.336s83.328 33.336 133.33 33.336c50.004 0 83.34-33.336 133.33-33.336 49.992 0 83.328 33.336 133.33 33.336s83.328-33.336 133.33-33.336c49.992 0 83.328 33.336 133.32 33.336 50.004 0 83.34-33.336 133.33-33.336 50.004 0 83.328 33.336 133.33 33.336 24.996 0 45.828-8.3281 66.672-16.68v-99.984z" fill="#4d6c6e"/> + <path d="m1200 1050c-20.832 8.3281-41.676 16.668-66.672 16.668-50.004 0-83.328-33.336-133.33-33.336-49.992 0-83.328 33.336-133.33 33.336-49.992 0-83.328-33.336-133.32-33.336-50.004 0-83.328 33.336-133.33 33.336-50.004 0-83.328-33.336-133.33-33.336-50.004 0-83.328 33.336-133.33 33.336s-83.328-33.336-133.33-33.336-83.328 33.336-133.33 33.336c-24.996 0-45.84-8.293-66.672-16.645v100.01c20.832 8.3281 41.664 16.633 66.672 16.633 50.004 0 83.328-33.324 133.33-33.324s83.328 33.324 133.33 33.324 83.34-33.324 133.33-33.324c49.992 0 83.316 33.312 133.32 33.312s83.328-33.324 133.33-33.324c49.992 0 83.328 33.324 133.32 33.324 50.004 0 83.34-33.324 133.33-33.324 50.004 0 83.328 33.324 133.33 33.324 24.996 0 45.828-8.3281 66.672-16.668v-99.984z" fill="#4d6c6e"/> + <path d="m1100 666.62-0.011719-466.67-216.65 133.34v200h-82.871v-267.36h-100.48v-232.64h-266.65v380.79h-133.33v-130.79l-108.34-66.672-108.32 66.672v233.33h-83.34v233.45c20.832 8.3281 41.664 16.633 66.672 16.633 50.004 0 83.328-33.324 133.33-33.324s83.328 33.324 133.33 33.324c50.004 0 83.34-33.324 133.33-33.324 49.992-0.003906 83.328 33.32 133.33 33.32s83.328-33.324 133.33-33.324c49.992 0 83.328 33.324 133.32 33.324 50.004 0 83.34-33.324 133.33-33.324 50.004 0 83.328 33.324 133.33 33.324 24.996 0 45.828-8.3281 66.672-16.668v-83.41z" fill="#4d6c6e"/> + <path d="m1e3 833.38c-49.992 0-83.328 33.324-133.33 33.324-49.992 0-83.328-33.324-133.32-33.324-50.004 0-83.328 33.324-133.33 33.324-50.004 0-83.328-33.324-133.33-33.324-50.004 0-83.328 33.324-133.33 33.324s-83.328-33.324-133.33-33.324-83.34 33.324-133.34 33.324c-24.996 0-45.84-8.293-66.672-16.633v99.996c20.832 8.3281 41.664 16.645 66.672 16.645 50.004 0 83.328-33.336 133.33-33.336s83.328 33.336 133.33 33.336c50.004 0 83.34-33.336 133.33-33.336 49.992 0 83.328 33.336 133.33 33.336s83.328-33.336 133.33-33.336c49.992 0 83.328 33.336 133.32 33.336 50.004 0 83.34-33.336 133.33-33.336 50.004 0 83.328 33.336 133.33 33.336 24.996 0 45.828-8.3281 66.672-16.68v-99.996c-20.832 8.3281-41.676 16.668-66.672 16.668-49.992 0-83.316-33.324-133.32-33.324z" fill="#4d6c6e"/> +</svg> diff --git a/src/assets/svgs/H-urban-7019973.svg b/src/assets/svgs/H-urban-7019973.svg new file mode 100644 index 0000000000000000000000000000000000000000..0cc9e72d302bc74c1fa771f4ae55600b2082ed3b --- /dev/null +++ b/src/assets/svgs/H-urban-7019973.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m500.44 624.61-12.938 44.812c-2.8594 9.9375 2.8594 20.344 12.844 23.203 1.7344 0.46875 3.4688 0.75 5.2031 0.75 8.1562 0 15.656-5.3438 18-13.547l12.938-44.812c2.8594-9.9375-2.8594-20.344-12.844-23.203-9.9844-2.8125-20.344 2.8594-23.203 12.844z" fill="#4d6c6e"/> + <path d="m471.74 724.78-8.4375 29.438c-2.8594 9.9375 2.9062 20.344 12.844 23.203 1.7344 0.46875 3.4688 0.75 5.1562 0.75 8.1562 0 15.656-5.3438 18-13.594l8.4375-29.438c2.8594-9.9375-2.9062-20.344-12.844-23.203-9.8438-2.8125-20.344 2.9062-23.156 12.844z" fill="#4d6c6e"/> + <path d="m529.03 592.74c1.7344 0.46875 3.4688 0.75 5.1562 0.75 8.1562 0 15.656-5.3906 18-13.641l8.4375-29.625c2.8125-9.9375-2.9531-20.344-12.891-23.156-9.9375-2.7656-20.344 2.9531-23.156 12.891l-8.4375 29.625c-2.8125 9.9375 2.9531 20.344 12.891 23.156z" fill="#4d6c6e"/> + <path d="m588 762.94c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-33.281c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75z" fill="#4d6c6e"/> + <path d="m606.74 602.16c10.359 0 18.75-8.3906 18.75-18.75v-26.766c0-10.359-8.3906-18.75-18.75-18.75-10.359 0-18.75 8.3906-18.75 18.75v26.766c0 10.359 8.3906 18.75 18.75 18.75z" fill="#4d6c6e"/> + <path d="m588 673.31c0 10.359 8.3906 18.75 18.75 18.75s18.75-8.3906 18.75-18.75v-34.781c0-10.359-8.3906-18.75-18.75-18.75s-18.75 8.3906-18.75 18.75z" fill="#4d6c6e"/> + <path d="m713.29 624.66c-2.8125-9.9844-13.219-15.75-23.156-12.891-9.9375 2.8125-15.75 13.219-12.891 23.156l12.75 44.812c2.3438 8.25 9.8438 13.641 18 13.641 1.6875 0 3.4219-0.23438 5.1562-0.75 9.9375-2.8125 15.75-13.219 12.891-23.156z" fill="#4d6c6e"/> + <path d="m705.94 735.1 8.4375 29.438c2.3438 8.25 9.8438 13.594 18 13.594 1.6875 0 3.4688-0.23438 5.1562-0.75 9.9375-2.8594 15.703-13.219 12.844-23.156l-8.4375-29.438c-2.8125-9.9844-13.312-15.703-23.156-12.891-9.9375 2.8594-15.703 13.219-12.844 23.156z" fill="#4d6c6e"/> + <path d="m688.92 539.9c-2.8125-9.9375-13.219-15.703-23.156-12.891s-15.75 13.219-12.891 23.156l8.4375 29.625c2.3438 8.25 9.8438 13.641 18 13.641 1.6875 0 3.4688-0.23438 5.1562-0.75 9.9375-2.8125 15.75-13.219 12.891-23.156z" fill="#4d6c6e"/> + <path d="m759.47 241.87h-58.219c-77.109 0-139.87 62.625-139.87 139.64v72.797h96.75v-72.797c0-23.766 19.312-43.078 43.125-43.078h266.86v-96.562z" fill="#4d6c6e"/> + <path d="m928.36 95.109c0-11.062-9-20.109-20.109-20.109h-218.63c-11.062 0-20.109 9-20.109 20.109s9 20.109 20.109 20.109h218.63c11.109 0 20.109-9 20.109-20.109z" fill="#4d6c6e"/> + <path d="m778.22 152.76h41.391v51.656h-41.391z" fill="#4d6c6e"/> + <path d="m1005.6 195.71v188.81c0 15 12.188 27.188 27.188 27.188h44.391v-243.19h-44.391c-15 0-27.188 12.188-27.188 27.188z" fill="#4d6c6e"/> + <path d="m848.63 840.1-232.97 116.91c-0.65625 0.32812-1.3125 0.60938-1.9688 0.84375-12.375 7.6875-27.047 11.297-41.625 9.9844l-159.74-13.969c-10.312-0.89062-17.953-9.9844-17.062-20.297s10.125-18 20.297-17.062l159.74 13.969c8.5312 0.79688 16.641-2.0156 22.969-7.7812 6.2812-5.7188 9.7031-13.594 9.7031-22.031 0-14.062-9.6094-26.062-23.391-29.203l-260.34-58.922c-10.078-2.2969-20.531 0.75-27.844 8.0625l-165.74 165.52 131.02 130.82 67.125-70.312c3.5625-3.7031 8.4375-5.8125 13.594-5.8125h0.046875l268.4 0.89062h0.23438c12.609 0 24.938-3.5156 35.625-10.172l229.5-142.45c13.125-8.1562 17.25-25.453 9.0938-38.625-7.7344-12.562-23.484-17.062-36.656-10.406z" fill="#4d6c6e"/> +</svg> diff --git a/src/assets/svgs/H-wetland-drainage-34007.svg b/src/assets/svgs/H-wetland-drainage-34007.svg new file mode 100644 index 0000000000000000000000000000000000000000..ac3c6566dc34dfa964a8c90c660f672ea6873f69 --- /dev/null +++ b/src/assets/svgs/H-wetland-drainage-34007.svg @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m143.76 831s-4.4414-18.719 21.121-36c25.441-17.281 73.68-3.1211 73.68-3.1211 1.8008 29.641 2.6406 54 3 70.68h-16.32l-4.1992-26.16c-0.23828-0.60156-3.3594-29.641-28.32-29.398-33.121 0.35938-48.961 24-48.961 24z" fill="#4d6c6e"/> + <path d="m174.72 373.08c-16.68 0-32.762-9-41.039-24.719l-71.879-136.68c-10.199-19.559-5.2812-42.84 10.559-56.398-2.2812-3.7188-3.3594-5.7617-3.4805-5.8789-4.4414-7.3203-2.1602-16.922 5.1602-21.238 7.1992-4.4414 16.801-2.1602 21.121 5.1602 0.12109 0.23828 2.2812 3.8398 6 10.441 0.48047-0.12109 1.0781-0.12109 1.5586-0.12109 16.68 0 32.762 9 41.16 24.719l71.762 136.8c10.078 18.84 5.6406 41.398-9.1211 55.32 16.801 41.879 32.52 86.641 44.879 132.24 38.641 141.48 45.48 311.64 46.559 369.84h-30.84c-1.3203-57.602-8.3984-225.84-45.359-361.8-12.121-44.039-27.238-87.359-43.441-127.8-1.1953 0.11719-2.3945 0.11719-3.5977 0.11719z" fill="#4d6c6e"/> + <path d="m344.76 862.56h-30.84c0.96094-67.559 7.1992-284.4 46.922-416.64 13.68-45.719 28.801-90.719 43.801-132.96-8.6406-8.5195-13.559-20.398-13.559-32.762 0-5.3984 0.96094-10.801 2.8789-16.199l54.836-144.6c7.1992-18.84 25.32-30.48 44.52-30 4.5586-10.32 7.0781-16.078 7.3203-16.32 3.4805-7.8008 12.602-11.16 20.398-7.5586 7.8008 3.4805 11.281 12.602 7.6797 20.398-0.12109 0.23828-2.5195 5.5195-6.6016 14.762 10.32 8.8789 16.32 21.84 16.32 35.398 0 5.3984-0.83984 10.801-2.8789 16.199l-54.719 144.48c-7.6797 20.039-27.84 31.801-48.238 29.641-14.398 40.801-28.922 84.359-42.121 128.4-38.16 126.48-44.52 341.04-45.719 407.76z" fill="#4d6c6e"/> + <path d="m514.68 697.56c29.879 15 45.359 58.922 46.199 61.68-2.8789-2.2695-54.359-42.602-80.52-30.121-21.602 38.398-26.281 99.73-27.121 133.44h-15.602c0.83984-35.398 4.1992-99.602 16.559-173.64 0.003907 0.003906 29.523-6.8398 60.484 8.6406z" fill="#4d6c6e"/> + <path d="m561 604.92c45 44.879 45.48 59.746 46.199 61.559-3.7188-2.7617-47.52-46.559-92.52-61.559-25.68-8.5195-62.16-3-75.719 3.8398-26.281 109.56-31.32 210.48-32.281 253.8h-30.84c0.71875-49.078 4.4414-178.08 21.602-291.36 0.60156-4.6797 1.3203-9.1211 2.1602-13.801 9.8398-0.72266 84.117-29.762 161.4 47.52z" fill="#4d6c6e"/> + <path d="m1132.3 875.52v72.121h-1.4414c-38.52 1.6914-60.359 17.398-76.441 29.172-12.359 8.6406-19.68 13.906-34.32 15.348-2.1602 0.13281-4.4414 0.13281-6.8281 0.13281-2.2812 0-4.8008 0-6.9609-0.13281-14.52-1.4414-21.961-6.7188-34.32-15.348-16.078-11.762-37.68-27.48-76.199-29.172-2.1719-0.12109-4.4414-0.12109-6.8398-0.12109-2.2812 0-4.6797 0-6.8398 0.12109-38.398 1.6914-60.238 17.398-76.309 29.172-12.254 8.6406-19.691 13.906-34.32 15.348-2.1602 0.13281-4.4414 0.13281-6.8398 0.13281-2.2695 0-4.6797 0-6.6016-0.13281-14.641-1.4414-22.199-6.7188-34.32-15.348-16.199-11.762-37.906-27.48-76.43-29.172-2.2812-0.12109-4.4414-0.12109-6.9609-0.12109-2.2812 0-4.4414 0-6.6133 0.12109-38.398 1.6914-60.238 17.398-76.441 29.172-12.121 8.6406-19.68 13.906-34.32 15.348-1.9219 0.13281-4.3203 0.13281-6.6016 0.13281-2.5195 0-4.6797 0-6.8398-0.13281-14.641-1.4414-22.078-6.7188-34.32-15.348-16.078-11.762-37.922-27.48-76.32-29.172-2.1602-0.12109-4.5586-0.12109-6.8398-0.12109s-4.6797 0-6.8398 0.12109c-38.398 1.6914-60.121 17.398-76.32 29.172-12 8.6406-19.68 13.906-34.32 15.348-2.1602 0.13281-4.3203 0.13281-6.8398 0.13281-2.2812 0-4.6797 0-6.6016-0.13281-14.641-1.4414-22.199-6.7188-34.32-15.348-16.199-11.762-37.801-27.48-76.32-29.172-2.1602-0.12109-4.4414-0.12109-6.7188-0.12109v-72.121h496.56c42.828 0 66.238 16.68 83.387 29.16 13.922 9.9609 21.613 15.602 40.922 15.602 19.559 0 27.133-5.6406 41.172-15.602 16.906-12.48 40.43-29.16 83.16-29.16 42.84 0 66.121 16.68 83.039 29.16 14.16 9.9609 21.84 15.602 41.281 15.602 19.559 0 27-5.6406 41.16-15.602 16.312-11.879 38.629-27.84 77.871-29.039z" fill="#4d6c6e"/> + <path d="m1132.3 1019.9v72.18c-15.648 0.89844-23.258 6.3477-35.953 15.383-16.922 12.336-40.297 29.113-83.137 29.113-42.707 0-66.215-16.766-83.113-29.113-14.113-9.8984-21.613-15.637-41.184-15.637-19.43 0-27.07 5.7344-41.039 15.637-17.039 12.336-40.402 29.113-83.258 29.113-42.574 0-65.953-16.766-83.113-29.113-13.836-9.8984-21.613-15.637-41.172-15.637-19.223 0-27.086 5.7344-40.934 15.637-17.16 12.336-40.547 29.113-83.125 29.113-42.707 0-66.215-16.766-83.363-29.113-13.848-9.8984-21.48-15.637-40.906-15.637-19.453 0-27.07 5.7344-40.934 15.637-17.172 12.336-40.68 29.113-83.375 29.113-42.562 0-65.953-16.766-83.113-29.113-13.969-9.8984-21.469-15.637-40.922-15.637v-72.047c2.4102 0 4.5859 0 6.7578 0.12109 14.605 1.2617 22.105 6.7422 34.176 15.371 16.152 11.688 38.004 27.324 76.379 28.98 2.2812 0.25391 4.4531 0.25391 6.7305 0.25391 2.293 0 4.7148 0 6.8633-0.25391 38.387-1.6562 60.254-17.293 76.512-28.98 12.086-8.6406 19.441-14.113 34.055-15.371 2.1719-0.12109 4.5859-0.12109 6.875-0.12109 2.2695 0 4.7031 0 6.8516 0.12109 14.617 1.2617 21.973 6.7422 34.055 15.371 16.262 11.688 38.137 27.324 76.512 28.98 2.1602 0.25391 4.4531 0.25391 6.8516 0.25391 2.293 0 4.4531 0 6.6133-0.25391 38.52-1.6562 60.254-17.293 76.512-28.98 12.07-8.6406 19.703-14.113 34.297-15.371 1.9219-0.12109 4.332-0.12109 6.6367-0.12109 2.5195 0 4.6797 0 6.8516 0.12109 14.605 1.2617 22.234 6.7422 34.309 15.371 16.246 11.688 37.98 27.324 76.512 28.98 2.1602 0.25391 4.3086 0.25391 6.6016 0.25391 2.4102 0 4.7148 0 6.8633-0.25391 38.484-1.6562 60.238-17.293 76.379-28.98 12.203-8.6406 19.57-14.113 34.188-15.371 2.1719-0.12109 4.3203-0.12109 6.8516-0.12109 2.5547 0 4.7148 0 6.8633 0.12109 14.629 1.2617 21.996 6.7422 34.309 15.371 16.02 11.688 37.871 27.324 76.246 28.98 2.1602 0.25391 4.5859 0.25391 6.8633 0.25391 2.4258 0 4.7031 0 6.8516-0.25391 38.387-1.6562 60.254-17.293 76.273-28.98 12.301-8.6406 19.812-14.113 34.547-15.371z" fill="#4d6c6e"/> +</svg> diff --git a/src/assets/svgs/P-agriculture-3634692.svg b/src/assets/svgs/P-agriculture-3634692.svg new file mode 100644 index 0000000000000000000000000000000000000000..3a365b70abedb370e657aea5729736260d91059b --- /dev/null +++ b/src/assets/svgs/P-agriculture-3634692.svg @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m637.5 243.75v-75h-75v75c0 10.352 8.3984 18.75 18.75 18.75h37.5c10.352 0 18.75-8.3984 18.75-18.75z" fill="#79552a"/> + <path d="m975 243.75v-75h-75v75c0 10.352 8.3984 18.75 18.75 18.75h37.5c10.352 0 18.75-8.3984 18.75-18.75z" fill="#79552a"/> + <path d="m300 243.75v-75h-75v75c0 10.352 8.3984 18.75 18.75 18.75h37.5c10.352 0 18.75-8.3984 18.75-18.75z" fill="#79552a"/> + <path d="m637.5 937.5c150 0 150-150 150-150-95.23 0-145.01 37.801-168.75 79.781v-154.78c62.137 0 112.5-50.363 112.5-112.5h-37.5c-54.863 0-100.5 39.301-110.44 91.258-19.781-32.215-55.238-53.758-95.812-53.758h-37.5c0 62.137 50.363 112.5 112.5 112.5h18.75v154.78c-23.738-41.98-73.52-79.781-168.75-79.781 0 0 0 150 150 150h18.75v93.75h-75v37.5h187.5v-37.5h-75v-131.25z" fill="#79552a"/> + <path d="m262.5 937.5c150 0 150-150 150-150-95.23 0-145.01 37.801-168.75 79.781v-154.78c62.137 0 112.5-50.363 112.5-112.5h-37.5c-54.863 0-100.5 39.301-110.44 91.258-19.781-32.215-55.238-53.758-95.812-53.758h-37.5c0 62.137 50.363 112.5 112.5 112.5h18.75v154.78c-23.738-41.98-73.52-79.781-168.75-79.781 0 0 0 150 150 150h18.75v93.75h-75v37.5h187.5v-37.5h-75v-131.25z" fill="#79552a"/> + <path d="m1012.5 937.5c150 0 150-150 150-150-95.23 0-145.01 37.801-168.75 79.781v-154.78c62.137 0 112.5-50.363 112.5-112.5h-37.5c-54.863 0-100.5 39.301-110.44 91.258-19.781-32.215-55.238-53.758-95.812-53.758h-37.5c0 62.137 50.363 112.5 112.5 112.5h18.75v154.78c-23.738-41.98-73.52-79.781-168.75-79.781 0 0 0 150 150 150h18.75v93.75h-75v37.5h187.5v-37.5h-75v-131.25z" fill="#79552a"/> + <path d="m56.25 56.25h1087.5v75h-1087.5z" fill="#79552a"/> + <path d="m510.36 288.28-79.105 98.906-79.105-98.906-29.289 23.438 84.395 105.47-46.895 58.594 29.289 23.438 41.605-52.031 41.605 52.031 29.289-23.438-46.895-58.594 84.395-105.47z" fill="#79552a"/> + <path d="m581.25 318.75h37.5v112.5h-37.5z" fill="#79552a"/> + <path d="m847.86 288.28-79.105 98.906-79.105-98.906-29.289 23.438 84.395 105.47-46.895 58.594 29.289 23.438 41.605-52.031 41.605 52.031 29.289-23.438-46.895-58.594 84.395-105.47z" fill="#79552a"/> + <path d="m997.84 311.74 29.285-23.422 149.97 187.5-29.285 23.422z" fill="#79552a"/> + <path d="m918.75 318.75h37.5v112.5h-37.5z" fill="#79552a"/> + <path d="m22.859 475.78 149.97-187.5 29.285 23.422-149.97 187.5z" fill="#79552a"/> + <path d="m243.75 318.75h37.5v112.5h-37.5z" fill="#79552a"/> + <path d="m18.75 1143.8h1162.5v37.5h-1162.5z" fill="#79552a"/> +</svg> diff --git a/src/assets/svgs/P-aquaculture-23815.svg b/src/assets/svgs/P-aquaculture-23815.svg new file mode 100644 index 0000000000000000000000000000000000000000..1e1b25df0fcd0312a78dd86c790b63903bbfb9c4 --- /dev/null +++ b/src/assets/svgs/P-aquaculture-23815.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m1140 908.18c-25.402-8.832-45.359-13.297-59.891-13.297s-34.512 4.4648-59.93 13.297c-25.402 8.9023-45.348 13.367-59.867 13.367-12.035 0-28.129-3.2266-47.867-9.3242-4.0781-1.2734-8.0898-2.5195-12.492-4.043-20.102-6.9961-36.625-11.125-49.883-12.59-3.4219-0.42188-6.707-0.71875-9.6016-0.71875-0.070313 0-0.14453 0.035156-0.23828 0.035156-0.046874 0-0.14453-0.035156-0.19141-0.035156-12.266 0-28.68 3.3594-48.73 9.707-3.7305 1.1523-7.3555 2.207-11.363 3.6016-25.656 8.8203-45.637 13.246-60.109 13.32-6.2656-0.046875-13.754-0.99609-22.078-2.6641-10.703-2.207-23.113-5.6523-37.645-10.668-12.707-4.3438-23.566-7.2617-33.469-9.4453-2.9766-19.512-7.4648-43.512-14.113-71.93 12.84 1.7539 28.645 5.7969 47.578 12.266 25.801 8.8906 45.551 13.344 59.281 13.344 14.531 0 34.691-4.4531 60.539-13.344 25.801-8.8203 45.984-13.273 60.516-13.273 13.68 0 33.434 4.4531 59.305 13.273 25.789 8.8906 45.984 13.344 60.539 13.344h12.109c0.78125 0 1.9688 0.035156 3.6016 0 6.2266-0.20312 12.613-1.8008 18.156-3.6836 20.23-6.8164 67.992-38.004 103.54-82.02 67.094-83.051 95.832-169.34 95.832-169.34l-284.39 44.102v-143.17h-154.87v-239.66h-54.562v394.85l-335.14-492.24-42.07 28.645 101.27 148.75h-128.17v50.914h53.074l-0.15625 0.9375c-0.27734 1.6094-27.504 162.68-78.098 279.45-45.828 105.74-111.67 181.96-156.01 225.32-14.016 0.88672-32.219 5.0742-55.066 12.91-25.812 8.9023-45.613 13.367-59.293 13.367v88.332c13.691 0 33.48-4.4141 59.293-13.332 25.801-8.8672 46.008-13.285 60.527-13.285 14.531 0 34.477 4.4141 59.914 13.285 25.43 8.9141 45.371 13.332 59.902 13.332 0.13281 0 0.27734-0.046875 0.43359-0.046875v0.046875c2.7969 0 6.0586-0.30078 9.3945-0.68359 13.309-1.4531 29.914-5.5664 50.102-12.66 5.3867-1.8594 10.379-3.4453 15.254-4.9336 18.371-5.4727 33.422-8.3164 44.844-8.3516 12.059 0.035156 28.164 3.2539 47.93 9.3477 3.9961 1.2461 7.9062 2.4375 12.215 3.9375 19.957 6.9961 36.395 11.113 49.633 12.625 3.5039 0.40625 6.875 0.71875 9.8281 0.71875h0.22656 0.19141c12.254 0 28.609-3.3359 48.574-9.6719 3.793-1.1641 7.4883-2.2695 11.566-3.6719 25.57-8.7969 45.613-13.223 60.109-13.285 6.0117 0.035156 13.199 0.96094 21.168 2.4961 10.871 2.1836 23.566 5.6641 38.52 10.789 14.531 5.0156 27.109 8.4727 38.074 10.645 8.2812 1.6797 15.672 2.6992 21.648 2.6992 0.12109 0 0.27734 0 0.43359-0.046875 0.097657 0.046875 0.26563 0.046875 0.39453 0.046875 14.531 0 34.453-4.4141 59.867-13.332 3.9375-1.3789 7.5234-2.4727 11.207-3.6367 20.23-6.2773 36.684-9.625 48.91-9.6602 3.0352 0 6.3477 0.30078 9.8281 0.67188 12.805 1.5 29.27 5.6172 49.715 12.625 4.4766 1.5352 8.5312 2.7734 12.672 4.043 19.453 6.0703 35.41 9.2891 47.426 9.2891v-0.046875c0.14453 0 0.28906 0.046875 0.44531 0.046875 14.52 0 34.465-4.4141 59.867-13.332 25.414-8.8672 45.395-13.285 59.93-13.285 14.531 0 34.488 4.4141 59.891 13.285 25.414 8.9141 45.422 13.332 59.941 13.332v-88.332c-14.5 0.019531-34.504-4.4414-59.918-13.348zm-369.86-343.55h78.301v78.266h-78.301zm-387.59-95.652c17.207 40.188 37.859 94.273 53.426 153.73-15.516-0.9375-32.605-1.0195-50.953-0.035156 1.5938-55.559-0.16797-110.94-2.4727-153.7zm1.332 182.53c21.91-1.2969 41.688-0.83984 59.281 0.67188 4.3438 19.391 8.0273 39.168 10.754 58.992 0.53906 3.9492 0.89844 7.6445 1.3789 11.484-20.723-5.9141-44.449-10.199-76.5-10.598 2.3281-19.488 3.9961-39.812 5.0859-60.551zm-28.801-152.27c1.5586 38.41 2.3867 83.352 0.99609 127.74-13.668 3.3359-29.305 8.1016-42.59 12.422 17.449-47.664 31.324-97.773 41.594-140.16zm-58.281 182.15c0.99609-2.2812 1.9219-4.6445 2.8906-6.9727 13.57-4.7656 36.086-12.254 55.066-17.398-1.0938 19.188-2.6992 37.906-4.9219 55.68-3.9258 0.19141-7.5234 0.25391-11.699 0.57422-19.859 1.4766-44.051 7.8477-63.383 13.906 7.6445-14.672 15.109-29.77 22.047-45.789zm7.3672 225.29c-1.6211 0.51562-3.0977 0.9375-4.7656 1.5-20.484 7.0664-37.043 11.23-49.883 12.66-3.4688 0.37109-6.8398 0.71875-9.8281 0.71875-14.531 0-34.477-4.4648-59.902-13.367-10.633-3.7188-20.074-6.4453-28.789-8.6289 11.867-12.312 24.648-26.594 37.859-42.637 8.4844-2.5664 81.086-24.254 115.46-27.949 8.7969-0.94922 16.945-1.5 24.875-1.9062-8.8906 37.238-17.723 62.68-25.031 79.609zm-2.918-106.32c-21.793 2.3516-56.113 10.883-82.777 18.156 11.914-16.512 23.773-34.402 35.316-53.711 10.895-4.1055 56.039-20.578 86.508-22.859 1.9062-0.14453 3.4805-0.16797 5.3164-0.26562-3.2539 20.82-6.6016 39.551-10.02 56.293-10.75 0.39453-22.055 1.0781-34.344 2.3867zm153.35 117.82c-9.9961-2.2188-21.371-5.4375-34.547-9.9961-4.3789-1.5-8.3516-2.6758-12.406-3.9258-19.598-6.1211-35.652-9.3711-47.711-9.3711-0.058593 0-0.13281 0.035156-0.21484 0.035156-0.070313 0-0.14453-0.035156-0.20313-0.035156-5.9766 0-12.949 0.81641-20.773 2.3516 6.5156-18.121 13.379-41.328 20.137-70.738 47.82 1.1641 77.734 11.953 101.16 20.375 0.38281 0.14453 0.71875 0.25391 1.0938 0.39453-1.0625 28.672-3.6523 52.453-6.5352 70.91zm-89.637-120.13c3.4062-17.23 6.7188-36.359 9.8984-57.301 36.492 0.12109 60.926 5.6055 83.711 12.984 1.957 22.656 2.9766 43.895 3.0859 63.227-23.352-8.2422-52.992-17.242-96.695-18.91zm101.46-172.31c-13.199-53.242-30.492-102.46-46.547-142.34 31.645 41.293 68.52 95.062 97.848 153.36-13.523-4.0781-30.695-8.1562-51.301-11.016zm6.9258 30.289c31.5 5.4258 52.414 13.57 61.535 17.664 5.6758 13.273 11.004 26.617 15.504 40.105 0.94922 2.7852 1.7383 5.4492 2.6523 8.2422h-68.855c-0.60156-4.9336-1.0781-9.707-1.7773-14.762-2.3633-17.277-5.5312-34.391-9.0586-51.25zm66.359 252.16c-4.0078 1.4141-7.6445 2.5078-11.387 3.707-18.227 5.6875-33.18 8.7969-44.93 9.3945 2.8789-18.66 5.3984-42.168 6.5039-70.152 14.004-1.7539 31.789-5.6523 50.387-12.059 16.98-5.7852 31.055-9.5391 42.793-11.52 6.2773 26.293 10.703 48.863 13.754 67.523-14.258 0.46875-33.168 4.7305-57.121 13.105zm43.547-186.16c-1.8359-5.7734-3.6016-11.387-5.5938-17.34-42.625-127.91-139.05-247.64-182.57-297.46h75.383l214.3 314.8z" fill="#79552a"/> +</svg> diff --git a/src/assets/svgs/P-industrial-200223.svg b/src/assets/svgs/P-industrial-200223.svg new file mode 100644 index 0000000000000000000000000000000000000000..78a08fa6b9abcd015abec7ca443c6d905103df69 --- /dev/null +++ b/src/assets/svgs/P-industrial-200223.svg @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m1167.5 946.41h-163.43v-30.227h163.43z" fill="#79552a"/> + <path d="m180.07 946.41h-163.44v-30.227h163.44z" fill="#79552a"/> + <path d="m669.06 1104.5h-277.85v-30.227h277.85z" fill="#79552a"/> + <path d="m775.29 1186.2h-204.29v-30.238h204.29z" fill="#79552a"/> + <path d="m485.51 1186.2h-204.29v-30.238h204.29z" fill="#79552a"/> + <path d="m897.86 1104.5h-163.44v-30.227h163.44z" fill="#79552a"/> + <path d="m812.54 992.53v-46.117h126.18v-30.238h-126.18v-326.81h-139.4v-95.688h-171.76v231.84h-109.81v190.66h-143.18v30.238h143.18v46.117h-196.48v30.238h792.66v-30.238zm-304.45-41.461h-51.434v-51.445h51.434zm0-103.99h-51.434v-51.434h51.434zm119.69 103.99h-51.445v-51.445h51.445zm0-103.99h-51.445v-51.434h51.445zm130.95-0.011719h-51.434v-51.422h51.434zm0-106.99h-51.434v-51.434h51.434z" fill="#79552a"/> + <path d="m1171.6 777.61v-30.238h-64.922v-182.2h-138.57v-280.48h-131.07v-276.8h-193.73v459.8h55.801v95.688h139.39v301.26l247.27 0.058593v-30.238h-117.7v-56.855zm-373.88-269.81h-50.398v-51.758h50.398zm0-106.24h-50.398v-51.758h50.398zm108.97 0h-50.398v-51.758h50.398z" fill="#79552a"/> + <path d="m391.4 148.32v392.33h-151.2v206.72h-151.36v30.238h151.34v56.855h-101.65v30.238h226.68l0.35938-165.17h109.81v-231.84h119.23l0.003906-319.38zm-10.402 500.1h-50.398v-51.758h50.398zm152.53-238.67h-50.398v-51.758h50.398zm0-106.25h-50.398v-51.758h50.398z" fill="#79552a"/> +</svg> diff --git a/src/assets/svgs/P-mining-7248907.svg b/src/assets/svgs/P-mining-7248907.svg new file mode 100644 index 0000000000000000000000000000000000000000..0092612b9883cb4a6b55d34ed907cab92f3f9f2e --- /dev/null +++ b/src/assets/svgs/P-mining-7248907.svg @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m273.47 148.31c202.5 92.062 330.28 219.94 441 441.28 3.2344 6.4688 9.8438 10.359 16.781 10.359 1.8281 0 3.6562-0.28125 5.5312-0.84375 8.7656-2.6719 14.297-11.344 13.078-20.391-19.5-146.16-64.922-253.22-138.94-327.19-73.969-73.969-181.03-119.44-327.19-138.94-9.1875-1.2188-17.906 4.5-20.531 13.406-2.5781 8.9062 1.7812 18.375 10.266 22.219z" fill="#79552a"/> + <path d="m1077.1 752.02 37.5 18.75c4.4531 2.25 7.8281 6.0938 9.375 10.828l15.797 47.344 60.188 20.062v-380.21c0-5.7656-2.625-11.25-7.2188-14.812-4.5469-3.5625-10.5-4.7812-16.078-3.4219l-75 18.75c-6.4688 1.5938-11.625 6.5625-13.5 13.031l-36.188 126.56-68.438 68.438-52.031 17.344c-6.375 2.1562-11.156 7.5-12.469 14.109l-17.625 88.172-48.562 48.562-60.938 15.234-86.484-69.188c-4.5938-3.6562-10.594-4.9688-16.266-3.5625l-75 18.75c-4.8281 1.2188-9 4.3125-11.531 8.5312l-43.875 73.125 48.984 48.984h48.469c4.9688 0 9.75 1.9688 13.266 5.4844l37.5 37.5c7.3125 7.3125 7.3125 19.219 0 26.531-3.6562 3.6562-8.4375 5.4844-13.266 5.4844s-9.5625-1.8281-13.266-5.4844l-32.016-32.016h-48.469c-4.9688 0-9.75-1.9688-13.266-5.4844l-60-60-100.59 28.734c-3.6094 1.0312-6.8438 3.1406-9.2812 6l-93.75 112.5c-4.6875 5.5781-5.6719 13.359-2.5781 19.969 3.0938 6.5625 9.7031 10.828 16.969 10.828h487.31l58.875-103.03c3.3281-5.8594 9.5625-9.4688 16.312-9.4688h64.969l31.922-47.906c3.4688-5.25 9.3281-8.3438 15.609-8.3438h75c10.359 0 18.75 8.3906 18.75 18.75s-8.3906 18.75-18.75 18.75h-64.969l-31.922 47.906c-3.4688 5.25-9.3281 8.3438-15.609 8.3438h-64.125l-42.844 75h313.22c10.359 0 18.75-8.3906 18.75-18.75v-180.24l-80.906-27c-5.625-1.875-9.9844-6.2812-11.859-11.859l-16.312-48.891-30.562-15.281c-9.2812-4.6406-13.031-15.891-8.3906-25.125 4.6406-9.2812 15.891-13.031 25.125-8.3906z" fill="#79552a"/> + <path d="m473.53 320.39-467.81 453.66c-3.6562 3.5156-5.6719 8.2969-5.7187 13.312-0.046875 5.0156 1.9687 9.8438 5.4844 13.406l56.25 56.25c3.5156 3.5156 8.2969 5.4844 13.266 5.4844h0.14062c5.0156-0.046875 9.8438-2.0625 13.312-5.7188l452.81-466.97c-21.422-24.938-43.922-48-67.734-69.469z" fill="#79552a"/> + <path d="m667.97 259.22 20.484-21.141c7.125-7.3594 7.0312-19.078-0.1875-26.344l-37.5-37.5c-7.2188-7.2188-18.938-7.3125-26.344-0.1875l-21.141 20.484c12 9.6562 23.391 19.781 34.125 30.562 10.734 10.734 20.906 22.125 30.562 34.125z" fill="#79552a"/> +</svg> diff --git a/src/assets/svgs/P-oil-gas-3723255.svg b/src/assets/svgs/P-oil-gas-3723255.svg new file mode 100644 index 0000000000000000000000000000000000000000..00f4645cb92dd83bb76406ac964b1c654a6441bd --- /dev/null +++ b/src/assets/svgs/P-oil-gas-3723255.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m1080 1060h-271.2l-26.602-178.6v-0.19922l-58.602-392.8 217.6 46.801v177.4h-29c-11 0-20 8.8008-20 20v170c0 11 9 20 20 20h98c11 0 20-9 20-20v-170c0-11.199-9-20-20-20h-29v-191.4l23.199-96.801c1.3984-5.1992 0.39844-10.602-2.3984-15.199-2.6016-4.6016-7.1992-7.8008-12.398-9l-620.4-133.4c5.8008-52.199 2.6016-103.8-10-151.8-1.6016-6.1992-6-11.199-11.801-13.398-5.6016-2.3984-12.398-2-17.602 1.1992-59.801 35-106.8 103.4-125.6 182.6-19 79.398-8 161.6 29.199 219.8 3.3984 5.1992 9 8.6016 15.199 9.1992h1.6016c5.8008 0 11.199-2.3984 15-6.6016 26.801-30 49-65 66.398-103.4l176 37.801-92.199 617.8h-295.4c-11 0-20 9-20 20s9 20 20 20h960c11 0 20-9 20-20s-9-20-20-20zm-345-224-210.8-173.6 160.6-163.6zm-81.199-362.4-130.2 132.6 23.199-155.6zm-144.6 228.4 218.6 180-269.2 159.4zm237.8 215 21.398 143h-262.8z" fill="#79552a"/> +</svg> diff --git a/src/assets/svgs/P-pharmaceuticals-164439.svg b/src/assets/svgs/P-pharmaceuticals-164439.svg new file mode 100644 index 0000000000000000000000000000000000000000..2d48ed88686d00caecad656352a73f28c5c5e0c8 --- /dev/null +++ b/src/assets/svgs/P-pharmaceuticals-164439.svg @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m798.67 433.33h-401.34c-13.332 0-25.332 12-25.332 25.332v401.33c0 13.332 12 25.332 25.332 25.332h401.33c13.332 0 25.332-12 25.332-25.332l0.003906-401.33c0-13.336-12-25.336-25.332-25.336zm-77.336 244c0 5.332-4 9.332-10.668 9.332l-83.996 0.003907v86.664c0 5.332-4 10.668-9.332 10.668h-36c-5.332 0-9.332-4-9.332-10.668v-85.332h-85.332c-5.332 0-10.668-4-10.668-9.332v-36c0-5.332 4-9.332 10.668-9.332h85.332l-0.003906-86.668c0-5.332 4-10.668 9.332-10.668h36c5.332 0 9.332 4 9.332 10.668v85.332h85.332c5.332 0 10.668 4 10.668 9.332l0.003907 36z" fill="#79552a"/> + <path d="m820 189.33h28c24 0 42.668-18.668 42.668-42.668v-63.996c0-24-18.668-42.668-42.668-42.668h-498.67c-24 0-42.664 18.668-42.664 42.668v64c0 24 18.668 42.668 42.668 42.668h28c-65.332 33.332-110.67 101.33-110.67 178.67v682.67c0 56 45.332 100 100 100h461.33c56 0 100-45.332 100-100v-682.67c1.332-77.332-44-145.33-108-178.67zm-414.67-36v-78.664h29.332v78.668zm58.668-78.664h29.332v78.668h-29.332zm297.33 78.664v-78.664h29.332v78.668zm-29.332 0h-29.332v-78.664h29.332zm-60 0h-29.332v-78.664h29.332zm-58.668 0h-29.332v-78.664h29.332zm-60 0h-29.332v-78.664h29.332zm301.34-70.664v64c0 4-2.668 8-8 8h-25.332l-0.003907-80h25.332c4.0039 0 8.0039 4 8.0039 8zm-512 64v-64c0-4 2.668-8 8-8h25.332v78.668h-25.332c-5.3359-0.003907-8-2.668-8-6.668zm552 904c0 36-29.332 65.332-65.332 65.332h-461.34c-36 0-65.332-29.332-65.332-65.332v-682.67c0-90.668 74.668-165.33 165.33-165.33h260c90.668 0 165.33 74.668 165.33 165.33v682.67z" fill="#79552a"/> +</svg> diff --git a/src/assets/svgs/P-plastics-2484814.svg b/src/assets/svgs/P-plastics-2484814.svg new file mode 100644 index 0000000000000000000000000000000000000000..585ebd548c071033aab05087a409cd6281a7a9b0 --- /dev/null +++ b/src/assets/svgs/P-plastics-2484814.svg @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m888.97 295.37 40.02-40.02c9.0117-9.0117 25.328-7.3047 32.633 0l60.957 60.957c9.0117 9.0117 9.0117 23.621 0 32.633l-40.02 40.02c-9.0117 9.0117-25.328 7.3047-32.633 0l-60.957-60.957c-9.0117-9.0117-9.0117-23.621 0-32.633z" fill="#79552a"/> + <path d="m608.52 423.13 54.797-54.797 246.29 246.29-54.797 54.797z" fill="#79552a"/> + <path d="m940.98 573.34c10.418-21.543 13.883-45.793 9.9141-69.395-3.9648-23.602-15.168-45.387-32.055-62.34l-82.504-82.508c-16.957-16.887-38.742-28.09-62.344-32.059-23.602-3.9648-47.852-0.5-69.395 9.918z" fill="#79552a"/> + <path d="m837.85 951.41c-47.16 1.0391-93.84-9.6289-135.86-31.047-32.875-17.215-69.613-25.715-106.71-24.68-37.082-1.0312-73.809 7.4648-106.67 24.68-41.98 21.418-88.621 32.086-135.74 31.047-47.129 1.0391-93.785-9.6289-135.78-31.047-32.867-17.211-69.602-25.711-106.69-24.68v-69.66c47.129-1.0391 93.785 9.6289 135.78 31.047 32.867 17.215 69.602 25.711 106.69 24.68 37.078 1.0312 73.801-7.4648 106.65-24.68 41.988-21.418 88.633-32.086 135.76-31.047 47.137-1.043 93.793 9.625 135.79 31.047 32.898 17.215 69.66 25.711 106.78 24.68 37.105 1.0273 73.855-7.4688 106.75-24.68 42.004-21.422 88.668-32.09 135.81-31.047v69.66c-37.105-1.0273-73.855 7.4688-106.75 24.68-42.004 21.426-88.668 32.094-135.81 31.047z" fill="#79552a"/> + <path d="m443.59 651.49c34.637-16.902 71.715-28.262 109.88-33.66 14.27-1.5977 28.613-2.4062 42.969-2.4219 35.598-0.30859 71 5.3477 104.73 16.734 13.062 4.543 25.688 10.121 38.258 15.727 11.949 5.3281 23.523 9.9805 35.109 13.93l-202.35-202.35-211.48 211.48c28.641-0.96484 56.805-7.5703 82.887-19.445z" fill="#79552a"/> + <path d="m1069.7 642.43c-86.316 28.016-188.56 67.793-280.63 49.738v-0.003906c-32.844-9.8203-64.945-21.961-96.066-36.332-44.059-14.383-90.754-18.848-136.74-13.07-35.598 5.082-70.164 15.762-102.42 31.652-34.41 15.719-72.004 23.223-109.81 21.926-39.469-2.8828-77.965-13.598-113.24-31.516-38.031-16.238-79.012-24.438-120.36-24.082-1.7461 19.867-1.7461 39.848 0 59.711 2.9375 15.574 4.2344 9.2383 24.227 10.887v0.003906c18.352 1.4102 36.438 5.2617 53.773 11.449 26.988 9.7656 51.836 24.227 79.512 32.316v0.003907c41.758 11.469 85.41 14.348 128.31 8.4609 68.523-8.6445 123.66-52.008 193.95-53.098h-0.003907c36.57-0.75781 72.844 6.7578 106.1 21.984 27.203 13.379 56.004 23.23 85.699 29.316 103.2 17.57 212.26-21.641 309.19-53.062z" fill="#79552a"/> +</svg> diff --git a/src/assets/svgs/P-urban-waste-25100.svg b/src/assets/svgs/P-urban-waste-25100.svg new file mode 100644 index 0000000000000000000000000000000000000000..9f4ad53a138bf4a5de330854c9efbe55b2ceedf5 --- /dev/null +++ b/src/assets/svgs/P-urban-waste-25100.svg @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m218.47 757.46c9.7812 0 17.785-7.9453 17.785-17.809 0-9.7812-8.0039-17.746-17.785-17.746-9.8398 0-17.809 7.957-17.809 17.746 0 9.8633 7.9688 17.809 17.809 17.809" fill="#79552a"/> + <path d="m105.54 830.62c9.8281 0 17.797-7.9453 17.797-17.762 0-9.8281-7.9688-17.762-17.797-17.762-9.8398 0-17.785 7.9336-17.785 17.762 0.003906 9.8164 7.957 17.762 17.785 17.762" fill="#79552a"/> + <path d="m157.74 874.03c9.8281 0 17.797-7.9219 17.797-17.746 0-9.8281-7.9688-17.773-17.797-17.773-9.7812 0-17.762 7.9453-17.762 17.773 0.003907 9.8281 7.9844 17.746 17.762 17.746" fill="#79552a"/> + <path d="m107.61 903.79c9.8281 0 17.809-7.9336 17.809-17.785 0-9.7812-7.9805-17.746-17.809-17.746-9.793 0-17.746 7.957-17.746 17.746-0.003906 9.8516 7.9531 17.785 17.746 17.785" fill="#79552a"/> + <path d="m19.824 824.35c9.8164 0 17.785-7.9453 17.785-17.809 0-9.7695-7.9805-17.734-17.785-17.734-9.8047 0-17.785 7.957-17.785 17.734-0.011718 9.8633 7.9688 17.809 17.785 17.809" fill="#79552a"/> + <path d="m216.7 1066.6c9.7422 0 17.762-7.9219 17.762-17.785 0-9.793-8.0156-17.746-17.762-17.746-9.8281 0-17.809 7.9453-17.809 17.746 0 9.8672 7.9688 17.785 17.809 17.785" fill="#79552a"/> + <path d="m216.36 849.46c9.793 0 17.762-7.957 17.762-17.809 0-9.7812-7.9805-17.723-17.762-17.723s-17.797 7.9336-17.797 17.723c0 9.8516 8.0156 17.809 17.797 17.809" fill="#79552a"/> + <path d="m492.41 965.04c9.793 0 17.762-7.9336 17.762-17.797 0-9.7812-7.9805-17.734-17.762-17.734s-17.809 7.9453-17.809 17.734c0.003906 9.8672 8.0195 17.797 17.809 17.797" fill="#79552a"/> + <path d="m552.21 1087.5c9.7812 0 17.762-7.9453 17.762-17.797 0-9.793-7.9805-17.734-17.762-17.734s-17.809 7.9336-17.809 17.734c0 9.8555 8.0195 17.797 17.809 17.797" fill="#79552a"/> + <path d="m557.96 965.04c9.793 0 17.762-7.9336 17.762-17.797 0-9.7812-7.9805-17.734-17.762-17.734s-17.809 7.9453-17.809 17.734c0 9.8672 8.0273 17.797 17.809 17.797" fill="#79552a"/> + <path d="m530.36 909.83c9.7812 0 17.762-7.9453 17.762-17.797 0-9.7812-7.9805-17.723-17.762-17.723-9.793 0-17.809 7.9336-17.809 17.723 0 9.8516 8.0156 17.797 17.809 17.797" fill="#79552a"/> + <path d="m623.52 928.81c9.793 0 17.762-7.9453 17.762-17.809 0-9.7812-7.9688-17.734-17.762-17.734-9.7812 0-17.797 7.9453-17.797 17.734 0 9.8633 8.0156 17.809 17.797 17.809" fill="#79552a"/> + <path d="m174.53 809.72c9.8398 0 17.809-7.9453 17.809-17.797 0-9.7812-7.9688-17.734-17.809-17.734-9.8164 0-17.785 7.9453-17.785 17.734 0 9.8438 7.9688 17.797 17.785 17.797" fill="#79552a"/> + <path d="m33.434 1115c-1.8477 0-3.7305-0.3125-5.5781-0.96094-8.7109-3.0859-13.285-12.648-10.199-21.348 1.4414-4.0781 14.902-40.176 44.398-53.543 21.684-9.8047 42.277-10.801 61.246-2.9414 33.973 14.09 48.539 52.141 49.152 53.746 3.2383 8.6523-1.1523 18.301-9.793 21.527-8.6875 3.2539-18.301-1.1289-21.539-9.7812-0.070313-0.20313-10.285-26.219-30.793-34.633-10.176-4.1758-21.445-3.3359-34.465 2.5664-14.172 6.4062-24.254 27.359-26.664 34.199-2.4336 6.8594-8.8789 11.168-15.766 11.168z" fill="#79552a"/> + <path d="m952.75 1087.2c-29.941 0-57.406-19.656-77.258-54.012-19.824 34.355-47.293 54.012-77.258 54.012-29.965 0-57.434-19.656-77.27-54.012-19.848 34.355-47.305 54.012-77.27 54.012-9.1562 0-16.57-7.4141-16.57-16.586 0-9.1445 7.4141-16.559 16.57-16.559 23.82 0 47.426-25.465 61.621-66.469 2.3047-6.6719 8.5938-11.16 15.66-11.16 7.0664 0 13.332 4.4883 15.66 11.16 14.184 41.004 37.777 66.469 61.621 66.469 23.809 0 47.426-25.465 61.609-66.469 2.3164-6.6719 8.6055-11.16 15.66-11.16s13.344 4.4883 15.66 11.16c14.207 41.004 37.789 66.469 61.609 66.469 23.832 0 47.449-25.465 61.633-66.469 2.3164-6.6719 8.5938-11.16 15.672-11.16 7.043 0 13.344 4.4883 15.637 11.16 13.391 38.688 35.699 64.094 58.234 66.289 9.1094 0.88672 15.742 8.9883 14.855 18.109-0.89844 9.0977-8.9648 15.695-18.109 14.855-27.672-2.6992-52.367-21.758-70.668-53.605-19.883 34.344-47.352 53.965-77.301 53.965z" fill="#79552a"/> + <path d="m664.84 230.22h-69.781v332.61c-63.012 11.891-166.74 47.773-254.99 155.55-45.18 55.188-72.18 140.16-83.688 183.09-10.922-6.6133-25.477-12.289-43.199-12.289-37.176 0-55.812 17.52-57.805 19.523-6.5391 6.5273-6.5508 17.125-0.023438 23.664 6.5391 6.5508 17.125 6.5273 23.664 0.023438 0.097656-0.10938 11.207-9.7578 34.176-9.7578 24.422 0 39.215 18.359 39.758 19.043 3.2031 4.1875 8.1484 6.5625 13.285 6.5625 1.2227 0 2.4609-0.13281 3.6953-0.40625 6.3711-1.4414 11.328-6.4688 12.684-12.852 0.26562-1.2617 27.371-126.98 83.363-195.38 78.203-95.496 170.96-129.79 229.09-142.14v38.484c-47.773 10.656-116.52 40.98-183.9 123.91-60.938 75.023-90.59 187-104.2 259.57-15.758-30.035-41.578-58.262-82.945-58.262-0.35938 0-0.74219 0-1.1172 0.023438-25.922 0.27734-49.043 13.824-64.223 25.523-14.363-25.273-41.773-51.781-84-45.047-63.07 10.094-73.969 61.246-74.398 63.406-1.8008 9.0703 4.0781 17.867 13.141 19.68 9.0469 1.8711 17.867-4.0781 19.68-13.129 0.058594-0.30078 6.5156-30.457 46.859-36.91 40.895-6.6836 55.969 42.551 56.566 44.578 1.6914 5.8438 6.4219 10.309 12.348 11.664 5.9531 1.3906 12.121-0.625 16.188-5.1484 0.27734-0.30078 28.465-30.816 58.223-31.176h0.625c57.625 0 72.602 98.941 72.742 99.961 1.1875 8.2422 8.2695 14.316 16.547 14.316h0.46875c8.4844-0.22656 15.457-6.7695 16.211-15.215 0.19141-2.0508 19.129-204.25 107.26-312.74 35.258-43.391 70.453-70.754 101.93-88.078-29.676 24.648-54.816 54.457-74.879 89.688-70.094 123.09-59.172 317.1-58.68 325.29 0.45703 7.4297 6.0234 13.523 13.391 14.664 0.80469 0.13281 1.5977 0.17969 2.3984 0.17969 6.4688 0 12.395-3.9727 14.762-10.176 0.22656-0.57422 22.766-58.512 64.836-79.535 41.664-20.82 81.121-9.4922 81.445-9.3828 8.3164 2.5078 17.195-2.125 19.766-10.453 2.5781-8.3398-2.125-17.184-10.465-19.754-2.0898-0.66016-51.516-15.348-104.88 11.316-20.82 10.402-37.465 27.023-50.074 43.559 1.8125-65.914 11.891-174.39 54.984-250.07 26.074-45.816 60.371-80.891 103.39-106.59v89.242h69.781v-56.809h0.33594v-438.38h-0.33594l-0.007813-55.434z" fill="#79552a"/> + <path d="m1156.4 36.996v248.64h-464.04v438.38h464.04v463.97h43.598v-1151z" fill="#79552a"/> +</svg> diff --git a/src/assets/svgs/climate-6795675.svg b/src/assets/svgs/climate-6795675.svg new file mode 100644 index 0000000000000000000000000000000000000000..2515a2712cc8a8da4ebb0d3a7d97b21fe01eae39 --- /dev/null +++ b/src/assets/svgs/climate-6795675.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m851.76 174.71c-79.547 0-146.53 53.531-167.06 126.47 6.375 12.234 11.859 25.219 16.219 38.531 12-2.8594 24.234-4.3125 36.609-4.3125 87.375 0 158.16 70.781 158.16 158.16 0 7.5469-0.60938 15.234-1.6875 22.688 75.375-18.844 131.06-87 131.06-168.24 0-95.766-77.625-173.39-173.39-173.39zm-350.16 793.31c21.844-12.609 25.312-39 16.781-62.766l-17.156-47.766c-0.9375-2.8594-4.5469-3.7031-6.8438-1.7812l-38.766 32.766c-19.312 16.312-29.391 40.781-16.781 62.766 12.609 21.844 40.781 29.391 62.766 16.781zm89.859 203.63c21.844-12.609 25.312-39 16.781-62.766l-17.156-47.766c-0.9375-2.8594-4.5469-3.7031-6.8438-1.7812l-38.766 32.766c-19.312 16.312-29.391 40.781-16.781 62.766 12.609 21.844 40.781 29.391 62.766 16.781zm137.39-203.63c21.844-12.609 25.312-39 16.781-62.766l-17.156-47.766c-0.9375-2.8594-4.5469-3.7031-6.8438-1.7812l-38.766 32.766c-19.312 16.312-29.391 40.781-16.781 62.766 12.609 21.844 40.781 29.391 62.766 16.781zm-409.92-262.31c23.625 23.391 38.297 55.781 38.297 91.547 0 71.156-57.703 128.76-128.76 128.76-71.062 0-128.76-57.703-128.76-128.76 0-35.859 14.625-68.297 38.297-91.547 4.6875-4.6875 7.0781-10.312 7.0781-16.922v-270.14c0-45.938 37.547-83.531 83.531-83.531 45.938 0 83.531 37.547 83.531 83.531v270.14c0 6.6094 2.3906 12.234 7.0781 16.922zm-73.688 16.688v-226.69c0-9.1406-7.6875-16.922-16.922-16.922s-16.922 7.6875-16.922 16.922v226.69c0 5.5312-2.625 10.312-6.8438 13.453l-16.688 14.156c-14.062 12-21.844 29.062-21.844 47.391 0 34.312 27.844 62.156 62.156 62.156s62.156-27.844 62.156-62.156c0-18.375-7.9219-35.531-21.844-47.391l-17.531-15c-3.7031-3.1406-5.8594-7.6875-5.8594-12.609zm33.234-226.69c0-27.469-22.547-50.062-50.062-50.062-27.469 0-50.062 22.547-50.062 50.062v213.61c0 3.6094-1.4531 6.7031-4.2188 9l-7.5469 6.4688c-21.375 18.141-33.609 44.531-33.609 72.609 0 52.688 42.703 95.391 95.391 95.391s95.391-42.703 95.391-95.391c0-27.938-12.234-54.469-33.609-72.609l-7.5469-6.4688c-2.7656-2.2969-4.2188-5.3906-4.2188-9v-213.61zm570.24 54.938c51.375 0 93.375 42 93.375 93.375s-42 93.375-93.375 93.375h-469.64c-6.7031-16.688-16.078-32.297-28.078-46.078-3.8438-4.4531-5.7656-9.6094-5.7656-15.609v-257.06c0-46.922-27.938-87.609-68.156-106.08 36.469-66.375 107.06-111.23 188.06-111.23 107.77 0 196.92 79.453 212.16 182.86 17.859-9.8438 38.391-15.469 60.234-15.469 69 0 124.92 55.922 124.92 124.92 0 19.781-4.6875 39.234-13.688 57zm-752.86 153.47c3.1406-4.4531 6.4688-8.625 9.9375-12.703 3.8438-4.4531 5.7656-9.6094 5.7656-15.469v-257.06c0-4.0781 0.23438-8.0625 0.60938-12-53.766 30.375-90.234 88.078-90.234 153.94 0 58.922 29.156 111.23 73.781 143.39zm525.52-562.97c-6.4688-6.4688-6.4688-17.062 0-23.531s17.062-6.4688 23.531 0l48.375 48.375c6.4688 6.4688 6.4688 17.062 0 23.531s-17.062 6.4688-23.531 0zm461.06 414c6.4688 6.4688 6.4688 17.062 0 23.531s-17.062 6.4688-23.531 0l-48.375-48.375c-6.4688-6.4688-6.4688-17.062 0-23.531s17.062-6.4688 23.531 0zm78.844-223.55c9.1406 0 16.547 7.4531 16.547 16.547 0 9.1406-7.4531 16.547-16.547 16.547h-68.391c-9.1406 0-16.547-7.4531-16.547-16.547 0-9.1406 7.4531-16.547 16.547-16.547zm-102.38-213.84c6.4688-6.4688 17.062-6.4688 23.531 0s6.4688 17.062 0 23.531l-48.375 48.375c-6.4688 6.4688-17.062 6.4688-23.531 0s-6.4688-17.062 0-23.531zm-223.55-78.844c0-9.1406 7.4531-16.547 16.547-16.547 9.1406 0 16.547 7.4531 16.547 16.547v68.391c0 9.1406-7.4531 16.547-16.547 16.547-9.1406 0-16.547-7.4531-16.547-16.547l-0.046875-68.438z" fill="#002d5d" fill-rule="evenodd"/> +</svg> diff --git a/src/assets/svgs/fishing-pressure-4847095.svg b/src/assets/svgs/fishing-pressure-4847095.svg new file mode 100644 index 0000000000000000000000000000000000000000..4fcf5486fa566581bdf09749f1120291c4c1703a --- /dev/null +++ b/src/assets/svgs/fishing-pressure-4847095.svg @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m406.8 549.6c19.199 12 37.199 24 55.199 37.199 8.3984 6 19.199 9.6016 30 9.6016l55.199-1.1992-14.398 25.199c-6 10.801-2.3984 24 8.3984 30 3.6016 2.3984 7.1992 2.3984 10.801 2.3984 7.1992 0 15.602-3.6016 19.199-10.801l27.602-49.199h8.3984c27.602-1.1992 49.199-24 49.199-51.602 0-10.801-4.8008-21.602-10.801-30l202.8-356.4c24 57.602 68.398 183.6 33.602 285.6-24 69.602-21.602 145.2-13.199 205.2h3.6016c6 0 10.801 1.1992 15.602 3.6016 3.6016-2.3984 8.3984-3.6016 13.199-3.6016-8.3984-56.398-12-128.4 10.801-194.4 43.199-130.8-25.199-289.2-45.602-331.2-4.8008-8.3984-8.3984-14.398-15.602-19.199-10.801-6-19.199-3.6016-25.199 6l-220.8 384h-2.3984l-97.199 2.3984c-34.801-24-112.8-74.398-158.4-85.199l-6-1.1992c-26.398-6-55.199-1.1992-78 15.602-22.801 15.602-37.199 40.801-40.801 68.398l-25.199 216v1.1992h194.4c5.9961-55.199 15.598-158.4 15.598-158.4z" fill="#825192"/> + <path d="m332.4 375.6c56.398 18 115.2-13.199 133.2-68.398s-13.199-115.2-68.398-133.2c-56.398-18-115.2 13.199-133.2 68.398-18 55.199 12 115.2 68.398 133.2z" fill="#825192"/> + <path d="m105.6 944.4c15.602-19.199 39.602-30 63.602-30s48 10.801 63.602 30c16.801 20.398 45.602 45.602 79.199 45.602 33.602 0 62.398-25.199 79.199-45.602 15.602-19.199 38.398-30 63.602-30 25.199 0 48 10.801 63.602 30 16.801 20.398 45.602 45.602 79.199 45.602 8.3984 0 16.801-1.1992 25.199-4.8008l85.199-177.6c10.801-22.801-6-49.199-31.199-49.199h-646.8v230.4c32.398-1.1953 58.801-25.195 75.602-44.398z" fill="#825192"/> + <path d="m1054.8 978c-12-14.398-36-14.398-48 0-24 28.801-64.801 63.602-118.8 63.602s-94.801-34.801-118.8-63.602c-6-7.1992-14.398-10.801-24-10.801-9.6016 0-18 3.6016-24 10.801-24 28.801-64.801 63.602-118.8 63.602s-94.801-34.801-118.8-63.602c-12-14.398-36-14.398-48 0-24 28.801-64.801 63.602-118.8 63.602s-94.801-34.801-118.8-63.602c-6-7.1992-14.398-10.801-24-10.801-9.6016 0-18 3.6016-24 10.801-24 28.801-63.602 62.398-115.2 63.602l0.003906 62.398c50.398-1.1992 98.398-21.602 140.4-60 42 39.602 92.398 61.199 144 61.199 51.602 0 100.8-21.602 144-61.199 42 39.602 92.398 61.199 144 61.199 51.602 0 100.8-21.602 144-61.199 42 39.602 92.398 61.199 144 61.199 51.602 0 100.8-21.602 144-61.199 40.801 38.398 90 60 139.2 60v-63.602c-61.199-1.1992-99.598-34.797-123.6-62.398z" fill="#825192"/> + <path d="m898.8 675.6-7.1992 27.602c-1.1992 3.6016-6 3.6016-7.1992 0l-7.1992-28.801c-1.1992-3.6016-4.8008-4.8008-7.1992-3.6016-21.602 9.6016-48 34.801-52.801 80.398-9.6016 12-26.398 37.199-31.199 68.398-1.1992 7.1992 6 12 12 8.3984 12-8.3984 20.398-10.801 27.602-6 9.6016 26.398 24 50.398 37.199 64.801-19.199 8.3984-34.801 26.398-42 49.199-2.3984 6 4.8008 12 10.801 9.6016 16.801-9.6016 36-14.398 55.199-14.398 20.398 0 39.602 4.8008 55.199 14.398 6 3.6016 13.199-2.3984 10.801-9.6016-7.1992-22.801-22.801-40.801-42-49.199 13.199-15.602 27.602-38.398 37.199-64.801 7.1992-4.8008 15.602-2.3984 27.602 6 6 3.6016 13.199-1.1992 12-8.3984-6-31.199-21.602-56.398-31.199-68.398-6-45.602-31.199-70.801-52.801-80.398-1.207 0-3.6055 2.3984-4.8047 4.8008zm-44.402 61.199c-7.1992 0-13.199-6-13.199-13.199 0-7.1992 6-13.199 13.199-13.199 7.1992 0 13.199 6 13.199 13.199 0.003906 7.1992-5.9961 13.199-13.199 13.199z" fill="#825192"/> +</svg> diff --git a/src/assets/svgs/habitat-29572.svg b/src/assets/svgs/habitat-29572.svg new file mode 100644 index 0000000000000000000000000000000000000000..9c8ece2d70e8afc6c58f6c7a7af93c56ef60fb9f --- /dev/null +++ b/src/assets/svgs/habitat-29572.svg @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m0 253.32v744h336l-235.21-744z" fill="#4d6c6e"/> + <path d="m864 997.32h336v-744h-100.78z" fill="#4d6c6e"/> + <path d="m599.99 989.59c49.906 0 83.207-36.012 133.12-36.012 24.84 0 51.516 11.508 72.227 20.438l28.68-97.367c-33.875-9.8047-62.484-31.055-100.89-31.055-49.906 0-83.195 35.988-133.12 35.988v-0.007813c-49.934 0-83.195-35.988-133.12-35.988-38.41 0-67.008 21.254-100.88 31.055l28.68 97.367c20.688-8.9297 47.375-20.438 72.203-20.438 49.922 0.003906 83.211 36.02 133.11 36.02z" fill="#4d6c6e"/> + <path d="m600.01 459.96c49.559 0 82.598-36 132.16-36 49.57 0 82.609 36 132.17 36 40.906 0 70.691-24.266 107.68-32.832l-37.078 125.15c-12.191 4.1641-56.496 15.695-70.621 15.695-49.547 0-82.586-36.012-132.16-36.012-49.559 0-82.609 36.012-132.16 36.012-49.559 0-82.598-36.012-132.16-36.012s-82.609 36.012-132.17 36.012c-14.113 0-58.414-11.52-70.609-15.695l-37.066-125.15c36.984 8.5664 66.742 32.832 107.66 32.832 49.559 0 82.598-36 132.17-36 49.559 0 82.586 36 132.16 36z" fill="#4d6c6e"/> + <path d="m600.01 670.78c49.906 0 83.172-36.012 133.07-36.012 49.906 0 83.184 36.012 133.09 36.012 12.098 0 23.207-2.1016 33.828-5.2695l-33.852 113.26c-49.895 0-83.16-35.988-133.08-35.988-49.895 0-83.172 35.988-133.07 35.988-49.895 0-83.16-35.988-133.07-35.988s-83.172 35.988-133.08 35.988l-33.84-113.26c10.621 3.1797 21.742 5.2695 33.828 5.2695 49.906 0 83.172-36.012 133.08-36.012s83.172 36.012 133.07 36.012z" fill="#4d6c6e"/> +</svg> diff --git a/src/assets/svgs/invasive-species-973991.svg b/src/assets/svgs/invasive-species-973991.svg new file mode 100644 index 0000000000000000000000000000000000000000..a40b673c5f119771124866969d26fed9f0879c66 --- /dev/null +++ b/src/assets/svgs/invasive-species-973991.svg @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m562.08 356.23c-6.8633-16.176-18.996-29.426-26.352-36.406 2.207-9.9258 4.6562-27.59 0-44.137l-3.0586-10.906-11.027 2.207c-31.379 6.1328-74.41 54.926-91.57 75.875-13.367-9.3125-27.949-22.922-27.949-36.527 0-12.266 23.293-38.734 43.883-62.027 42.168-47.809 94.766-107.39 77.723-166.36l-2.0898-7.3555-7.4766-1.3438c-29.914-5.2695-72.816 9.5625-114.25 38.375-0.23828 0.12109-0.37109 0.23828-0.49219 0.37109-7.7266 5.3867-15.324 11.027-22.801 17.281-17.773 14.953-33.215 31.02-46.211 47.809-13.848 4.043-56.387 18.516-72.203 48.301l-2.9414 5.7617 2.9414 5.6406c7.3555 14.461 20.23 21.457 30.156 25.008-2.9414 12.625-4.5352 25.246-4.5352 37.754 0 27.59 9.5625 49.031 28.199 63.863 21.949 17.531 53.074 22.188 79.559 22.188 23.902 0 44.004-3.6719 50.629-5.0273 6.8633 0.85156 29.051 3.4336 54.059 3.4336 19.98 0 41.809-1.7148 58.477-7.3555l12.383-4.2969zm-108.61-238.68c4.6562-5.2695 12.012-6.2539 16.43-2.3281 4.4141 3.9258 4.043 11.398-0.61328 16.547-4.7773 5.2695-12.133 6.3711-16.43 2.4492-4.4141-3.9219-4.1641-11.398 0.61328-16.668zm-55.07 26.715c0.12109-3.6602 0.66016-7.3555 1.5352-10.992 0.69531-2.5664 1.2109-4.0312 1.2109-4.0312s0.44531 1.4648 1.2109 4.0195c3.1914 10.621 5.2422 21.48 13.414 29.652 10.945 10.934 27.215 12.758 41.508 16.297 2.5664 0.63672 4.0664 1.1172 4.0664 1.1172s-1.4297 0.55078-3.9844 1.3203c-14.688 4.4297-32.23 3.8164-44.902-5.6523-10.434-7.8281-14.477-19.602-14.059-31.73z" fill="#b74e49"/> + <path d="m1147 413.16 0.32422-44.242-428.65 87.082h-651.35l140.96 522.5c21.684 80.723 95.219 137.5 178.8 137.5h14.34c81.816 0 154.91-54.191 177.77-132.73l137.75-472.93 2.9023-9.2031zm-530.73 102.84c-2.5938 24-5.7227 31.633-9.3477 50.016-7.7188-17.543-13.285-26.016-16.742-50.016zm-55.105 0h4.1055c4.0547 24 14.594 57.023 34.355 87.504-6.0352 28.691-13.043 60.758-20.879 93.035-15-22.402-28.262-52.703-39.301-82.105 12.289-49.918 19.656-86.434 21.719-98.434zm-261.49 259.82c8.7734 26.543 18.336 53.328 28.68 79.402-15.035 26.773-30.648 49.98-46.523 67.488-10.043-26.867-19.645-55.512-28.691-84.961 16.559-16.211 32.137-37.703 46.535-61.93zm-54.492 35.387c-8.1016-27.742-15.672-55.848-22.703-83.531 16.262-19.285 30.266-44.508 42.023-70.883 7.1758 27.156 15.516 56.676 24.926 87.035-13.98 26.352-28.859 49.766-44.246 67.379zm70.812-64.859c14.496-28.031 27.551-58.043 38.832-86.977 8.4727 24.996 18.035 51.492 28.535 78.203-12.395 30.887-25.727 61.129-39.719 88.895-9.8633-26.215-19.117-53.18-27.648-80.121zm80.844 24.324c12.695 30 26.543 59.41 41.316 86.387-12.887 31.766-26.711 61.645-41.316 88.141-14.605-26.496-28.43-56.387-41.316-88.152 14.785-26.977 28.621-56.375 41.316-86.375zm13.488-33.098c10.5-26.711 20.062-53.207 28.535-78.215 11.281 28.945 24.336 58.969 38.844 87-8.543 26.941-17.797 53.902-27.648 80.125-13.988-27.758-27.336-58.02-39.73-88.91zm83.688 38.246c14.398 24.227 29.977 45.719 46.547 61.945-9.0352 29.449-18.637 58.094-28.691 84.961-15.887-17.52-31.5-40.727-46.535-67.5 10.344-26.078 19.91-52.863 28.68-79.406zm10.238-31.992c9.4219-30.359 17.746-59.879 24.926-87.035 11.762 26.387 25.766 51.613 42.035 70.895-7.0312 27.672-14.605 55.777-22.703 83.52-15.387-17.613-30.277-41.027-44.258-67.379zm31.918-227.83c-3.1094 24-6.9492 33.926-11.496 53.797-6.2031-20.102-11.137-29.797-14.641-53.797zm-51.301 0c3.707 24 13.355 57.996 28.934 100.86-7.3672 29.387-15.938 61.848-25.523 94.117-13.68-29.219-26.172-61.609-37.055-91.391 15.504-48.746 25.82-79.586 29.77-103.59zm-29.242 0c-4.7891 24-10.848 39.492-18.059 63.133-7.8867-23.711-14.449-39.133-19.371-63.133zm-30.578 106.18c-8.4492 25.883-17.902 53.184-28.211 80.664-10.309-27.469-19.766-54.77-28.211-80.652 12.898-36.348 22.523-68.195 28.211-88.152 5.6992 19.969 15.312 51.805 28.211 88.141zm-49.559-106.18c-4.9219 24-11.484 39.422-19.379 63.133-7.2109-23.641-13.273-39.133-18.062-63.133zm-62.809 0c3.9492 24 14.27 55.273 29.762 104-10.871 29.785-23.363 61.738-37.043 90.949-9.5898-32.258-18.156-65.148-25.523-94.535 15.586-42.855 25.234-76.418 28.93-100.42zm-29.039 0c-3.5039 24-8.4375 33.695-14.641 53.785-4.5352-19.859-8.375-29.785-11.484-53.785zm-51.133 0c2.0625 12 9.4336 48.938 21.719 98.867-11.039 29.398-24.301 59.258-39.301 81.672-7.8359-32.305-14.855-64.812-20.891-93.516 19.68-30.406 30.219-63.023 34.309-87.023zm-28.895 0c-3.4453 24-9.0234 32.555-16.824 50.16-3.6367-18.445-6.7695-26.16-9.3711-50.16zm-93.746 0h42.648c2.2188 12 7.5586 44.438 15.742 84.371-8.5547 11.426-18.492 19.246-29.832 22.777zm34.238 130.86c11.219-3.1328 21.156-9.2773 29.902-17.352 5.9648 27.875 13.043 59.137 21.191 92.062-8.5078 8.1836-17.426 13.824-26.688 16.141zm30.754 114.47c9.4688-2.5078 18.457-7.1875 26.93-13.645 7.0195 27.203 14.723 55.164 23.051 82.957-9.1914 7.0195-18.492 11.688-27.805 13.273zm28.539 106.18c9.875-2.125 19.535-6.3594 28.934-12.59 9.3359 29.605 19.391 58.68 30.145 86.09-11.664 9.1094-23.398 14.617-35.062 15.84zm72.574 185.03c-24-18.863-35.316-43.465-44.316-71.82 12.828-2.2188 26.641-7.9805 38.914-16.727 12.574 29.773 24.156 56.965 38.375 79.934-10.195 5.1836-20.973 8.2422-32.973 8.375zm32.242 19.43c5.8789-2.0039 11.664-4.6094 17.363-7.7891 6.2148 8.5195 12.574 16.152 19.055 22.836-12.801-3.5273-25.016-8.6055-36.418-15.047zm23.512-41.125c-14.016-23.219-27.551-51.637-40.402-83.543 17.016-16.703 33.371-38.426 48.805-63.527 13.129 30.602 27.359 59.652 42.648 85.5-16.215 25.906-33.281 47.062-51.051 61.57zm65.109 61.164c-17.723-3.3125-35.113-17.93-51.887-41.004 18.336-14.734 35.664-35.051 51.887-59.293 16.234 24.254 33.562 44.566 51.898 59.305-16.773 23.062-34.172 37.668-51.898 40.992zm14.078-122.76c15.277-25.848 29.508-54.887 42.637-85.488 15.445 25.105 31.789 46.836 48.816 63.539-12.852 31.906-26.387 60.324-40.414 83.543-17.766-14.516-34.828-35.672-51.039-61.594zm40.344 115.52c5.7227-6.1211 11.328-13.031 16.836-20.578 4.5977 2.5664 9.2539 4.7891 13.957 6.6016-9.7227 5.6836-20.008 10.41-30.793 13.977zm57.047-32.941c-9.0117-0.76953-17.902-3.4453-26.641-7.9062 14.207-22.969 27.648-50.148 40.211-79.934 10.754 7.668 21.742 12.949 32.93 15.672-8.7969 28.414-25.152 53.148-46.5 72.168zm53.398-95.461c-10.152-2.0508-20.34-7.4297-30.48-15.348 10.738-27.406 20.809-56.484 30.145-86.09 8.5781 5.6875 17.398 9.6484 26.387 11.93zm32.844-112.88c-8.6172-1.8828-17.207-6.3359-25.727-12.84 8.3398-27.793 16.031-55.738 23.051-82.945 8.375 6.3828 17.258 11.039 26.605 13.57zm30.77-105.73c-9.3125-2.2812-18.289-7.9453-26.844-16.176 8.1367-32.914 15.215-64.176 21.18-92.039 9.2773 8.5547 19.871 14.988 31.945 17.902zm32.23-112.46c-12.324-3.0469-23.004-13.285-32.16-25.656 8.2109-39.984 13.551-71.617 15.77-83.617h47.699z" fill="#b74e49"/> +</svg> diff --git a/src/assets/svgs/pollution-6278.svg b/src/assets/svgs/pollution-6278.svg new file mode 100644 index 0000000000000000000000000000000000000000..67b0fcaaf34b20b13371a20c6755d414f4095450 --- /dev/null +++ b/src/assets/svgs/pollution-6278.svg @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg"> + <path d="m1200 900c0-33.324 0-66.672-16.668-66.672-66.672 0-150 83.328-200 83.328h-50.004c-67.355-31.895-144.57-56.207-225.14-72.863-48.781-37.969-109.12-127.13-124.85-127.13-11.281 0-75.961 61.031-116.62 100.51-220.07-3.6484-418.56 50.582-466.71 166.15 51.422 113.12 280.55 150.04 518.96 138.27 33.695 34.008 83.531 78.395 114.37 78.395 22.68 0 14.508-53.902 6.9727-88.43 43.848-5.1016 86.977-11.734 128.44-19.68 51.875 24.527 126.77 58.105 147.93 58.105 20.449 0 22.078-56.352 20.258-99.996h46.402c50.004 0 133.33 83.328 200 83.328 16.668 0 16.668-33.324 16.668-66.672 0-53.062-33.324-66.672-33.324-83.328-0.003907-16.656 33.32-30.254 33.32-83.316zm-1066.7 83.328c-18.406 0-33.336-14.914-33.336-33.324 0-18.406 14.93-33.336 33.336-33.336s33.324 14.93 33.324 33.336-14.918 33.324-33.324 33.324z" fill="#79552a"/> + <path d="m1200 533.33c-20.832 8.3281-41.676 16.668-66.672 16.668-50.004 0-83.328-33.336-133.33-33.336-49.992 0-83.328 33.336-133.32 33.336-50.004 0-83.34-33.336-133.33-33.336-50.004 0-83.328 33.336-133.33 33.336-50.004 0-83.328-33.336-133.33-33.336-50.004 0-83.328 33.336-133.33 33.336s-83.328-33.336-133.33-33.336-83.328 33.336-133.33 33.336c-24.996 0-45.828-8.3047-66.672-16.633v99.996c20.832 8.3281 41.664 16.645 66.672 16.645 50.004 0 83.328-33.336 133.33-33.336s83.34 33.336 133.33 33.336c49.992 0 83.328-33.336 133.33-33.336 50.004 0 83.34 33.336 133.33 33.336 50.004 0 83.328-33.336 133.33-33.336 49.992 0 83.328 33.336 133.33 33.336 49.992 0 83.328-33.336 133.32-33.336 50.004 0 83.328 33.336 133.33 33.336 24.996 0 45.828-8.3281 66.672-16.68z" fill="#79552a"/> + <path d="m750 316.67c0 82.848-67.164 150-150 150-82.848 0-150-67.152-150-150 0-82.848 150-316.67 150-316.67s150 233.82 150 316.67z" fill="#79552a"/> +</svg> diff --git a/src/assets/text/text.js b/src/assets/text/text.js index d9f9698d631476a8b31d6e8d3c8aebf11296fa75..c4eccf6a315bcfb7776d52df3be16c74935cdd8c 100644 --- a/src/assets/text/text.js +++ b/src/assets/text/text.js @@ -243,7 +243,7 @@ export default { tabTitle: "Habitat", tabContentTitle: "Habitat", tabContentTitleID: "habitat", - tabIcon: "noun-canal-29572-4E6D6E", + tabIcon: "habitat-29572", tabText: "Habitat text.", tabMapImageAlt: "Habitat alt.", tabLegendImageAlt: "Legend", @@ -252,37 +252,37 @@ export default { { subThreat: "Dams", subThreatText: "Dams text", - subThreatIcon: "noun-canal-29572-4E6D6E" + subThreatIcon: "H-dams-3916913" }, { subThreat: "Wetland drainage", subThreatText: "Wetland drainage text", - subThreatIcon: "noun-canal-29572-4E6D6E" + subThreatIcon: "H-wetland-drainage-34007" }, { subThreat: "Deforestation and associated runoff", subThreatText: "Deforestation and associated runoff text", - subThreatIcon: "noun-canal-29572-4E6D6E" + subThreatIcon: "H-deforestation-4811548" }, { subThreat: "Riparian degradation", subThreatText: "Riparian degradation text", - subThreatIcon: "noun-canal-29572-4E6D6E" + subThreatIcon: "H-riparian-6291" }, { subThreat: "Agricultural extraction", subThreatText: "Agricultural extraction text", - subThreatIcon: "noun-canal-29572-4E6D6E" + subThreatIcon: "H-agriculture-5491228" }, { subThreat: "Urban extraction", subThreatText: "Urban extraction text", - subThreatIcon: "noun-canal-29572-4E6D6E" + subThreatIcon: "H-urban-7019973" }, { subThreat: "Industrial extraction", subThreatText: "Industrial Extraction text", - subThreatIcon: "noun-canal-29572-4E6D6E" + subThreatIcon: "H-industrial-659077" } ] }, @@ -290,7 +290,7 @@ export default { tabTitle: "Pollution", tabContentTitle: "Pollution", tabContentTitleID: "pollution", - tabIcon: "noun-drain-7131918-7A562B", + tabIcon: "pollution-6278", tabText: "Pollution text.", tabMapImageAlt: "Pollution alt.", tabLegendImageAlt: "Legend", @@ -299,42 +299,42 @@ export default { { subThreat: "Agricultural effluents", subThreatText: "Agricultural effluents text", - subThreatIcon: "noun-drain-7131918-7A562B" + subThreatIcon: "P-agriculture-3634692" }, { subThreat: "Urban wastewater", subThreatText: "Urban wastewater text", - subThreatIcon: "noun-drain-7131918-7A562B" + subThreatIcon: "P-urban-waste-25100" }, { subThreat: "Industrial effluents", subThreatText: "Industrial effluents text", - subThreatIcon: "noun-drain-7131918-7A562B" + subThreatIcon: "P-industrial-200223" }, { subThreat: "Aquaculture effluents", subThreatText: "Aquaculture effluents text", - subThreatIcon: "noun-drain-7131918-7A562B" + subThreatIcon: "P-aquaculture-23815" }, { subThreat: "Pharmaceuticals", subThreatText: "Pharmaceuticals text", - subThreatIcon: "noun-drain-7131918-7A562B" + subThreatIcon: "P-pharmaceuticals-164439" }, { subThreat: "Oil or gas exploration", subThreatText: "Oil or gas exploration text", - subThreatIcon: "noun-drain-7131918-7A562B" + subThreatIcon: "P-oil-gas-3723255" }, { subThreat: "Plastics", subThreatText: "Plastics text", - subThreatIcon: "noun-drain-7131918-7A562B" + subThreatIcon: "P-plastics-2484814" }, { subThreat: "Mining", subThreatText: "Mining text", - subThreatIcon: "noun-drain-7131918-7A562B" + subThreatIcon: "P-mining-7248907" } ] }, @@ -342,36 +342,36 @@ export default { tabTitle: "Climate and weather", tabContentTitle: "Climate and weather", tabContentTitleID: "climate-and-weather", - tabIcon: "noun-drain-7131918-7A562B", - tabText: "Climate and weather text.", - tabMapImageAlt: "Climate and weather alt.", + tabIcon: "climate-6795675", + tabText: "Climate and Weather text.", + tabMapImageAlt: "Climate and Weather alt.", tabLegendImageAlt: "Legend", subThreatPrefix: "CW", subThreatData: [ { subThreat: "Change in water temperature", subThreatText: "Change in water temperature text", - subThreatIcon: "noun-drain-7131918-7A562B" + subThreatIcon: "CW-temperature-1979336" }, { subThreat: "Drought", subThreatText: "Drought text", - subThreatIcon: "noun-drain-7131918-7A562B" + subThreatIcon: "CW-drought-002D5E" }, { subThreat: "Change in flooding", subThreatText: "Change in flooding text", - subThreatIcon: "noun-drain-7131918-7A562B" + subThreatIcon: "CW-flooding-1760091" }, { subThreat: "Change in wind patterns", subThreatText: "Change in wind patterns text", - subThreatIcon: "noun-drain-7131918-7A562B" + subThreatIcon: "CW-wind-7479181" }, { subThreat: "Change in ice cover", subThreatText: "Change in ice cover text", - subThreatIcon: "noun-drain-7131918-7A562B" + subThreatIcon: "CW-ice-cover-5314745" } ] }, @@ -379,7 +379,7 @@ export default { tabTitle: "Invasive species", tabContentTitle: "Invasive species", tabContentTitleID: "invasive-species", - tabIcon: "noun-drain-7131918-7A562B", + tabIcon: "invasive-species-973991", tabText: "Invasive species text.", tabMapImageAlt: "Invasive species alt.", tabLegendImageAlt: "Legend", @@ -390,7 +390,7 @@ export default { tabTitle: "Fishing pressure", tabContentTitle: "Fishing pressure", tabContentTitleID: "fishing-pressure", - tabIcon: "noun-drain-7131918-7A562B", + tabIcon: "fishing-pressure-4847095", tabText: "Fishing pressure text.", tabMapImageAlt: "Fishing pressure alt.", tabLegendImageAlt: "Legend",